aboutsummaryrefslogtreecommitdiff
path: root/src/qt/receiverequestdialog.cpp
Commit message (Collapse)AuthorAgeFilesLines
* build: fix build weirdness after 54372482.Cory Fields2014-06-231-1/+1
| | | | | | | | | | | | | bitcoin-config.h moved, but the old file is likely to still exist when reconfiguring or switching branches. This would've caused files to not rebuild correctly, and other strange problems. Make the path explicit so that the old one cannot be found. Core libs use config/bitcoin-config.h. Libs (like crypto) which don't want access to bitcoin's headers continue to use -Iconfig and #include bitcoin-config.h.
* [Qt] style police and small addition in rpcconsolePhilip Kaufmann2014-06-031-1/+1
| | | | - fix spaces, indentation and coding style glitches
* ui: Check for !pixmap() before trying to export QR codeWladimir J. van der Laan2014-05-071-6/+19
| | | | | | | Adds null pointer checks as well as prevents the Save/Copy context menu from appearing at all if no image is shown. Fixes issue #4140
* qt: keep a list of requested paymentsWladimir J. van der Laan2013-11-191-2/+0
| | | | | | | | | Keep a list of requested payments in the Receive tab so that a user can recall previously created requests after closing their windows. Currently this list is not stored between bitcoin-qt sessions. This can be implemented later, but it is not clear where it should be stored as I don't think it belongs in the wallet (maybe in QSettings?)
* [Qt] use GUIUtil::setClipboard() where possiblePhilip Kaufmann2013-11-161-7/+4
|
* [Qt] remove GUIUtil::getSaveFileName() default argumentsPhilip Kaufmann2013-11-111-1/+1
| | | | | - harmonize function with GUIUtil::getOpenFileName() - also make PNG Image singular (grammar)
* qt: add license header to source filesWladimir J. van der Laan2013-11-041-0/+4
| | | | Closes #839
* [Qt] misc small fixes for #3099 (new receive flow)Philip Kaufmann2013-10-251-0/+2
| | | | | | | | | - changes some strings that were forgotton or made no sense in the conext they are used - remove an orphan file from the qt project file - revert a small change in signverifymessagedialog.ui - guard #include "bitcoin-config.h" with #if defined(HAVE_CONFIG_H) - remove windowTitle from addressbookpage.ui
* qt: general polish after adding new receive flowWladimir J. van der Laan2013-10-251-2/+10
| | | | | | | | - We no longer have an address book, but "address lists", update message accordingly - Add tooltips here and there - Clarify text on buttons - add Copy Address button to receive request dialog
* qt: show payment information in one text areaWladimir J. van der Laan2013-10-231-42/+41
| | | | | | Simplifies the dialog (makes it look less crowded) as well as the code and makes it possible to copy multiple fields at once. Also format bitcoin URI as URI, add copy button for URI.
* qt: move bitcoin URI formatting to guiutilWladimir J. van der Laan2013-10-231-57/+27
| | | | Follow the same pattern as the parseBitcoinURI function.
* qt: use SendCoinsRecipient for payment request informationWladimir J. van der Laan2013-10-231-10/+11
| | | | | | This brings some symmetry into the design by using the same object both for incoming URIs that are parsed as for outgoing URIs that are formatted.
* qt: allow dragging, copying and saving QR codeWladimir J. van der Laan2013-10-231-10/+49
| | | | Add context menu and drag handling to QR code widget.
* qt: rework "receive coins" workflowWladimir J. van der Laan2013-10-231-0/+166