aboutsummaryrefslogtreecommitdiff
path: root/src/qt/signverifymessagedialog.cpp
Commit message (Collapse)AuthorAgeFilesLines
* [Qt] don't allow translation of our example btc addressPhilip Kaufmann2014-06-231-1/+0
|
* [Qt] extend validate line edit and btc address validatorPhilip Kaufmann2014-01-291-5/+0
| | | | | | | | | | | | | - remove btc address length from address validator - add an optional btc address check in validated line edit that defaults to off and is used in GUIUtil::setupAddressWidget() - an isAcceptable() check is added to validated line edit on focus out which only kicks in, when a validator is used with that widget - remove an isAcceptable() check from sendcoinsentry.cpp - remove obsolete attributes from ui files, which are set by calling GUIUtil::setupAddressWidget() - move some more things to GUIUtil::setupAddressWidget() and remove them from normal code e.g. placeholder text
* [Qt] use GUIUtil::setClipboard() where possiblePhilip Kaufmann2013-11-161-4/+2
|
* Cleanup code using forward declarations.Brandon Dahler2013-11-101-6/+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: add license header to source filesWladimir J. van der Laan2013-11-041-0/+4
| | | | Closes #839
* qt: rework "receive coins" workflowWladimir J. van der Laan2013-10-231-2/+2
|
* Bitcoin-Qt: extend some checks for valid model pointersPhilip Kaufmann2013-08-231-0/+3
|
* CSecret/CKey -> CKey/CPubKey split/refactorPieter Wuille2013-05-301-3/+3
|
* Bitcoin-Qt: massive header and cpp cleanupPhilip Kaufmann2013-03-171-2/+2
| | | | | | | - try to enforce the same style to all Qt related files - remove unneeded includes from the files - add missing Q_OBJECT, QT_BEGIN_NAMESPACE / QT_END_NAMESPACE - prepares for a pull-req to include Qt5 compatibility
* Bitcoin-Qt: use reference in setAddress_SM() and setAddress_VM()Philip Kaufmann2013-01-101-2/+2
|
* Bugfix: Fix a variety of misspellingsLuke Dashjr2012-08-011-1/+1
|
* GUI: merge sign/verify message into a single window with tabbed UIPhilip Kaufmann2012-07-061-0/+274
- 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