aboutsummaryrefslogtreecommitdiff
path: root/src/qt/qrcodedialog.cpp
Commit message (Collapse)AuthorAgeFilesLines
* qt: rework "receive coins" workflowWladimir J. van der Laan2013-10-231-173/+0
|
* Qt5 compatibilityWladimir J. van der Laan2013-06-011-0/+2
| | | | | | | | | | | | This commit squashes all the changes in the Qt5 branch relative to master. Backward compatibility with Qt4 is retained. Original authors: - Philip Kaufmann <[email protected]> - Jonas Schnelli <[email protected]>
* update QRCodeDialogPhilip Kaufmann2012-07-061-22/+65
| | | | | | | | | | | | | | | | - remove unused #include <QDebug> and lblBTC label - update Bitcoin input field to a BitcoinAmountField to allow Bitcoin unit selection - use BitcoinUnits::format for the resulting amount parameter in the generated URI (always use BTC as per BIP21) - move MAX_URI_LENGTH and EXPORT_IMAGE_SIZE to guiconstants.h - add OptionsModel in AddressBookPage and use it in on_showQRCode_clicked() to pass it to QRCodeDialog - add OptionsModel in QRCodeDialog to enable display unit updates - add updateDisplayUnit() slot to be able to imediately update currently set bitcoin unit - make all labels in the UI-file plain text - resize dialog to match for an updated layout (fields are now stacked and new field) - remove unused parameters from private slots - only enable save button, when QR Code was generated - show message when entered amound is invalid - add read-only QPlainTextEdit field to output generated URI
* Add a menu option to verify a signed messagesje3972012-05-121-1/+0
| | | | (Also move 'setAttribute(Qt::WA_DeleteOnClose)' out of QRCodeDialog)
* harmonize the use of ellipsis ("...") to be used in menus, but not on ↵Philip Kaufmann2012-05-091-1/+1
| | | | buttons / update some strings to be more informative
* Bugfix: Check that QRcode_encodeString didn't return NULL (error)Luke Dashjr2012-04-141-0/+5
| | | | Without this, any error will segfault Bitcoin-Qt
* enable wordWrap on lblQRCode / small code comment changePhilip Kaufmann2012-04-121-1/+1
|
* limit length of generated URI to 255 chars to prevent a DoS against the ↵Philip Kaufmann2012-04-121-11/+23
| | | | QR-Code dialog
* updated to reflect pull-request suggestions / renamed some GUI elementsPhilip Kaufmann2012-04-121-16/+12
|
* fixed amount part of URI in QR-Codes / removed (no label) string if we have ↵Philip Kaufmann2012-04-121-14/+20
| | | | NO label / coding style updates / removed an unused variable
* fix default suffixes in save dialog in GNOME, make it more clear that PNG is ↵Wladimir J. van der Laan2012-02-151-3/+3
| | | | used (solves #833)
* (trivial) regularize coding styleWladimir J. van der Laan2012-02-151-6/+10
|
* Added QRCode generation functions via libqrencode. Switch on with ↵sje3972011-12-201-0/+106
USE_QRENCODE=1. Amended build docs for Linux and OSX, and OSX makefile. Added package 'qrencode' to gitian.yml