aboutsummaryrefslogtreecommitdiff
path: root/src/qt/bitcoinamountfield.cpp
AgeCommit message (Collapse)Author
2012-02-05Change up/down increment in UI to 0.001 BTC (issue #760)Wladimir J. van der Laan
2011-12-21Revert "Use standard C99 (and Qt) types for 64-bit integers"Wladimir J. van der Laan
This reverts commit 21d9f36781604e4ca9fc35dc65265593423b73e9.
2011-12-20Use standard C99 (and Qt) types for 64-bit integersLuke Dashjr
2011-10-09Improved Mac experience; QDoubleSpinBox for BitcoinAmountFieldp2k
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.
2011-08-31comments and readme updateWladimir J. van der Laan
2011-08-08QtUI code cleanup / comment improvementsWladimir J. van der Laan
2011-08-07don't include <QDebug>Wladimir J. van der Laan
2011-08-03make amount field the same width as decimals fieldWladimir J. van der Laan
2011-07-30Make dot in amount field more apparentWladimir J. van der Laan
2011-07-29Full support for other units, add configuration option for default unit ↵Wladimir J. van der Laan
(used when displaying amounts)
2011-07-26Reset unit to default when clearing the field, to prevent confusionWladimir J. van der Laan
2011-07-26allow multiple units in bitcoin amount widget (for example, for sending) ↵Wladimir J. van der Laan
using a combobox
2011-07-25preparations for multiple unit (uBTC, mBTC, BTC) support, fix amount entry issueWladimir J. van der Laan
2011-07-24Merge pull request #9 from celil-kj/masterWladimir J. van der Laan
allow decimals such as .05 for amount of bitcoins to send
2011-07-22Allow ammount field to be empty so that one can specify .05 instead ofCelil
having to type the leading zero as in 0.05
2011-07-22fix clear() (clear red/invalid status)Wladimir J. van der Laan
2011-07-16add sendmany supportWladimir J. van der Laan
2011-07-07convert to full tab-based uiWladimir J. van der Laan
2011-07-06Add "BTC" to all amount widgets, to make clear what the unit isWladimir J. van der Laan
2011-06-30show an error if amount is not valid (either the amount or decimals is empty)Wladimir J. van der Laan
2011-06-25compile fixes by UnthinkingbitWladimir J. van der Laan
2011-06-21when going to decimals field using ./, select it all, so that entry starts ↵Wladimir J. van der Laan
from scratch instead of appending to previous value
2011-06-21Fix some padding and focus issues with the new BitcoinAmountWidgetWladimir J. van der Laan
2011-06-20introduce bitcoin amount field with split amount/decimals, to protect ↵Wladimir J. van der Laan
against mistakes (https://forum.bitcoin.org/index.php?topic=19168.0)