aboutsummaryrefslogtreecommitdiff
path: root/src/qt/bitcoinamountfield.h
Commit message (Collapse)AuthorAgeFilesLines
* qt: Use fixed-point arithmetic in amount spinboxWladimir J. van der Laan2014-07-231-9/+5
| | | | | | | | | Fixes various issues and cleans up code - Fixes issue #4500: Amount widget +/- has floating point rounding artifacts - Amount box can now be emptied again, without clearing to 0 Also aligns the amount to the right, as in other places.
* [Qt] Improve single step in bitcoinamountfieldCozz Lovan2014-02-021-0/+4
|
* qt: add license header to source filesWladimir J. van der Laan2013-11-041-0/+4
| | | | Closes #839
* Payment Protocol: X509-validated payment requestsGavin Andresen2013-08-221-0/+3
| | | | | | | | Add support for a Payment Protocol to Bitcoin-Qt. Payment messages are protocol-buffer encoded and communicated over http(s), so this adds a dependency on the Google protocol buffer library, and requires Qt with OpenSSL support.
* Bitcoin-Qt: massive header and cpp cleanupPhilip Kaufmann2013-03-171-1/+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
* Qt: small header changes / fixesPhilip Kaufmann2012-11-081-3/+3
| | | | | | - 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
* Update Bugreport Linksfanquake2012-09-221-1/+1
| | | | | | | | Update Qt Links Revert Qt source link Update Qt links
* Bugfix: Fix a variety of misspellingsLuke Dashjr2012-08-011-1/+1
|
* Revert "Use standard C99 (and Qt) types for 64-bit integers"Wladimir J. van der Laan2011-12-211-1/+0
| | | | This reverts commit 21d9f36781604e4ca9fc35dc65265593423b73e9.
* Use standard C99 (and Qt) types for 64-bit integersLuke Dashjr2011-12-201-0/+1
|
* Improve documentation for UI classesWladimir J. van der Laan2011-11-131-8/+10
|
* Improved Mac experience; QDoubleSpinBox for BitcoinAmountFieldp2k2011-10-091-5/+4
| | | | | | | | Now it can't be told if this is was a Windows App before. All Mac design principles are fulfilled and some cosmetics have been applied to suit the native look and feel. The biggest change there is the proper use of the Dock icon which takes the role of the Tray icon on Mac. The QDoubleSpinBox improves entering of Bitcoin amounts, no two separate fields are required anymore. All functionality and validation effects have been retained; pressing the comma key will be internally translated to a period to keep it consistent throughout the application and eases entering in countries which use the comma as decimal separator. Additionally, Notificator now supports Growl, Mac's native notification system. This is provided via Apple Script in order to avoid linking to Growl on compile time. Other changes involve encapsulation of Toolbar and Menubar creation, loading of Qt's own translation and some clean up.
* Full support for other units, add configuration option for default unit ↵Wladimir J. van der Laan2011-07-291-3/+5
| | | | (used when displaying amounts)
* allow multiple units in bitcoin amount widget (for example, for sending) ↵Wladimir J. van der Laan2011-07-261-4/+20
| | | | using a combobox
* fix clear() (clear red/invalid status)Wladimir J. van der Laan2011-07-221-0/+2
|
* add sendmany supportWladimir J. van der Laan2011-07-161-3/+7
|
* Fix some padding and focus issues with the new BitcoinAmountWidgetWladimir J. van der Laan2011-06-211-0/+2
|
* introduce bitcoin amount field with split amount/decimals, to protect ↵Wladimir J. van der Laan2011-06-201-0/+33
against mistakes (https://forum.bitcoin.org/index.php?topic=19168.0)