aboutsummaryrefslogtreecommitdiff
path: root/src/qt/addressbookpage.h
Commit message (Collapse)AuthorAgeFilesLines
* [Qt] make most Windows appear centered on main GUIPhilip Kaufmann2013-11-141-1/+1
| | | | | | - remove default value for parent variable in dialogs, which should appear centered over main GUI and pass appropriate value - add some addition NULL pointer checks
* Cleanup code using forward declarations.Brandon Dahler2013-11-101-3/+5
| | | | | | | | | Use misc methods of avoiding unnecesary header includes. Replace int typedefs with int##_t from stdint.h. Replace PRI64[xdu] with PRI[xdu]64 from inttypes.h. Normalize QT_VERSION ifs where possible. Resolve some indirect dependencies as direct ones. Remove extern declarations from .cpp files.
* [Qt] remove unused optionsmodel from addressbookpagePhilip Kaufmann2013-11-051-3/+0
|
* qt: add license header to source filesWladimir J. van der Laan2013-11-041-0/+4
| | | | Closes #839
* qt: remove verify/send message and send coins from address bookWladimir J. van der Laan2013-10-231-8/+0
| | | | | | | These no longer make sense in the new workflow. It's less clicks to reach sign/verify message from the menu. And sending from the address book is one kind of automatic address reuse we're trying to avoid.
* qt: rework "receive coins" workflowWladimir J. van der Laan2013-10-231-3/+1
|
* qt: move export button to tabsWladimir J. van der Laan2013-04-121-1/+2
| | | | | | | | Having the export button at the top was confusing people into thinking the entire wallet was exported. This commit moves the export button to the address book, receiving addresses and transaction tabs separately.
* Bitcoin-Qt: updates to addressbookpagePhilip Kaufmann2013-04-031-4/+4
| | | | | | | | | | - use labelExplanation for sending and receiving tab and move the string from the ui-file to the source - ensure that the table holding the label and address is resized so that the address column fits the address and the label column is stretched to fit the window size - rename some stuff for much easier readbility in the code (I find it hard to get the meaning of stuff like labels or buttons)
* Bitcoin-Qt: add "send coins" to context menu in addressbookPhilip Kaufmann2013-03-181-0/+3
| | | | | | - allows to directly select an address from the addressbook, chose "send coins" from the context menu, which sends you to sendcoins tab and fills in the selected address
* Bitcoin-Qt: cleanup / optimise addressbookpagePhilip Kaufmann2013-01-231-7/+12
| | | | | | | | | | | - don't show QR Code context menu, when USE_QRCODE=1 was not specified when compiling the client - re-work on_showQRCode_clicked() for better readability and remove an unneeded duplicate check - re-work on_signMessage_clicked() and on_verifyMessage_clicked() to match foreach in on_showQRCode_clicked(), which seems more robust / cleaner - re-order context menu stuff to match real context menu layout - add comments for all private slots in the class
* Bitcoin-Qt: comment out unused parameter in addressbookpagePhilip Kaufmann2012-12-151-1/+1
|
* Qt: small header changes / fixesPhilip Kaufmann2012-11-081-1/+1
| | | | | | - ensure header inclusion guard is named after the header file - add missing comments at the end of some inclusion guards - add a small Qt5 compatibility fix in macdockiconhandler.h
* replace some ugly code in addressbookpage.cppPhilip Kaufmann2012-07-081-0/+4
| | | | | | - add signals signMessage() and verifyMessage() in addressbookpage.cpp - connect to them in bitcoingui.cpp to switch to the corresponding tab in the Sign/Verify Message dialog - make gotoSignMessageTab() and gotoVerifyMessageTab() private slots
* Merge pull request #1469 from Diapolo/signverifymessagedialogWladimir J. van der Laan2012-07-071-0/+1
|\ | | | | GUI: merge sign/verify message into a single window with tabbed UI
| * GUI: merge sign/verify message into a single window with tabbed UIPhilip Kaufmann2012-07-061-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | - add UI-feedback via QValidatedLineEdit - copy button for generated signature was moved to the signature output field - add an addressbook button to verify message tab - input fields are now evenly ordered for sign and verify tabs - update FIRST_CLASS_MESSAGING support to ensure a good UX - add a button and context menu entry in addressbook for verify message (to be consistent with sign message) - focus is now only set/changed, when clearing input fields or adding an address via addressbook - re-work / update some strings - ensure model gets initialized in the SignVerifyMessageDialog constructor - add checks for a valid model to both addressbook buttons - remove unneeded includes for Qt GUI elements that are listed in ui_signverifymessagedialog.h anyway
* | update QRCodeDialogPhilip Kaufmann2012-07-061-0/+3
|/ | | | | | | | | | | | | | | | - 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
* Process address book updates incrementallyWladimir J. van der Laan2012-05-201-0/+5
| | | | | - No longer invalidates selection model, thus retains selection on address book changes - Fixes selection of new address when added
* Bitcoin-Qt signmessage GUI (pull request #582)Luke Dashjr2012-01-271-0/+1
|
* Add context menu for address book page (implements part 1 of issue #648)Wladimir J. van der Laan2011-12-231-0/+11
|
* Added QRCode generation functions via libqrencode. Switch on with ↵sje3972011-12-201-0/+1
| | | | | | | USE_QRENCODE=1. Amended build docs for Linux and OSX, and OSX makefile. Added package 'qrencode' to gitian.yml
* Improve documentation for UI classesWladimir J. van der Laan2011-11-131-2/+4
|
* Add robustness against null modelsWladimir J. van der Laan2011-11-081-2/+0
|
* add export functionality for address book / receiving addressesWladimir J. van der Laan2011-07-091-0/+3
|
* Selection/tab navigation fixesWladimir J. van der Laan2011-07-071-1/+0
|
* convert to full tab-based uiWladimir J. van der Laan2011-07-071-0/+57