aboutsummaryrefslogtreecommitdiff
path: root/src/qt/bitcoingui.cpp
Commit message (Collapse)AuthorAgeFilesLines
...
* | Fix status bar not displaying Alerts.Matt Corallo2011-12-131-5/+35
|/
* Prevent window from being shown momentarily when using -minWladimir J. van der Laan2011-12-091-5/+5
| | | | | - In a previous patch, show() was added to all the page switcher functions. As the contructor calls showOverviewPage(), this means the window is shown in the constructor. - This change prevents this by connecting show() to the signal instead.
* Add model null pointer check (solves issue #595 and ↵Wladimir J. van der Laan2011-11-131-3/+3
| | | | | | https://github.com/laanwj/bitcoin-qt/issues/29) Missed this one before, which can be triggered in race condition if window event arrives before model is set
* Add robustness against null modelsWladimir J. van der Laan2011-11-081-39/+56
|
* Add alt-1..alt-5 shortcut to switch between tabsWladimir J. van der Laan2011-10-091-0/+5
|
* Improved Mac experience; QDoubleSpinBox for BitcoinAmountFieldp2k2011-10-091-33/+103
| | | | | | | | 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.
* Make "Quit" menu sanerWladimir J. van der Laan2011-10-091-4/+2
| | | | | - Use 'x' for Exit shortcut - Set Ctrl-Q as global quit key sequence
* Removing the if statement entirely - not needed.Janne Pulkkinen2011-09-271-7/+0
|
* Send Coins page not cleared when changing tabs. Clear all button for ↵Janne Pulkkinen2011-09-271-1/+3
| | | | clearing the entries
* remove transparency effect and windows-specific code for now, it's not ↵Wladimir J. van der Laan2011-09-111-47/+0
| | | | working as supposed
* clarify function signature (GetNumBlocksOfPeers) and use number of 'frozen' ↵Wladimir J. van der Laan2011-09-111-1/+1
| | | | blocks as initial value for number of peer blocks
* The synchronization progress bar now compares the amount of total blocks to ↵Janne Pulkkinen2011-09-111-2/+3
| | | | amount of blocks downloaded at application start-up. Could be probably implemented better.
* fix the build (moved code use 'this' instead of 'window')Wladimir J. van der Laan2011-09-071-2/+2
|
* Pull request #21: windows fixes/cleanup by MatokingJanne Pulkkinen2011-09-071-2/+51
|
* (k)ubuntu 10.04+ notification support (based on @zwierzak his code)Wladimir J. van der Laan2011-09-031-23/+21
|
* comments and readme updateWladimir J. van der Laan2011-08-311-1/+1
|
* Wallet encryption part 2: ask passphrase when needed, add menu optionsWladimir J. van der Laan2011-08-311-0/+53
|
* add russian translation and add unicode compatibility (merges pull request #20)Misbakh-Soloviev Vadim A2011-08-281-4/+4
|
* Wallet encryption part 1: show wallet encryption statusWladimir J. van der Laan2011-08-231-2/+28
|
* QtUI code cleanup / comment improvementsWladimir J. van der Laan2011-08-081-27/+20
|
* don't include <QDebug>Wladimir J. van der Laan2011-08-071-2/+0
|
* Accept "bitcoin:" URL drops from browsersWladimir J. van der Laan2011-08-071-2/+33
|
* speling fixWladimir J. van der Laan2011-08-051-1/+1
|
* minimize amount of text in status bar; show only icons, if the user wants ↵Wladimir J. van der Laan2011-08-041-27/+14
| | | | explanation they can view the tooltip
* when clicking a transaction on the overview page, send the user to the ↵Wladimir J. van der Laan2011-08-041-1/+4
| | | | transactions page
* Full support for other units, add configuration option for default unit ↵Wladimir J. van der Laan2011-07-291-1/+1
| | | | (used when displaying amounts)
* normalize SIGNAL/SLOT signatures ↵Wladimir J. van der Laan2011-07-271-3/+3
| | | | (http://marcmutz.wordpress.com/effective-qt/prefer-to-use-normalised-signalslot-signatures/)
* preparations for multiple unit (uBTC, mBTC, BTC) support, fix amount entry issueWladimir J. van der Laan2011-07-251-3/+4
|
* improve tooltip textsWladimir J. van der Laan2011-07-241-1/+3
|
* Fix "Last received block was generated Up to date"Wladimir J. van der Laan2011-07-181-6/+14
|
* show rotating spinner when block download out of date, tick otherwiseWladimir J. van der Laan2011-07-171-16/+48
|
* make initial block download reporting somewhat better by tracking version ↵Wladimir J. van der Laan2011-07-171-2/+9
| | | | responses
* Revert "Now that send coins / receive coins etc are tabs, remove them from ↵Wladimir J. van der Laan2011-07-161-1/+5
| | | | | | menu, and reorganize menu bar" This reverts commit ea37fb9187195d746a4b8a84da5cb6bd9e0e4aab.
* Now that send coins / receive coins etc are tabs, remove them from menu, and ↵Wladimir J. van der Laan2011-07-151-5/+1
| | | | reorganize menu bar
* solve warnings at startupWladimir J. van der Laan2011-07-141-1/+1
|
* also show balloon on sent transaction, to notify when coins sentWladimir J. van der Laan2011-07-111-2/+3
|
* Show unconfirmed balance on overview pageWladimir J. van der Laan2011-07-111-17/+1
|
* Make tooltip on refresh more clearWladimir J. van der Laan2011-07-111-1/+1
|
* add export functionality for address book / receiving addressesWladimir J. van der Laan2011-07-091-10/+15
|
* Add context menu on transaction list: copy label, copy address, edit label, ↵Wladimir J. van der Laan2011-07-081-10/+3
| | | | show details
* forgot synced iconsWladimir J. van der Laan2011-07-081-0/+1
|
* Display a "freshness" indicator instead of nr of blocksWladimir J. van der Laan2011-07-081-3/+33
|
* add [testnet] to whatever the current window title isWladimir J. van der Laan2011-07-071-1/+1
|
* convert to full tab-based uiWladimir J. van der Laan2011-07-071-65/+86
|
* Export functionality for transaction listWladimir J. van der Laan2011-07-071-2/+19
|
* Rename "History" tab to more logical "Transactions", move "Number of ↵Wladimir J. van der Laan2011-07-071-8/+2
| | | | transactions" from status bar to overview page
* minor language/text updatesWladimir J. van der Laan2011-07-071-3/+4
|
* tab reorg phase 1: split main gui into "overview" and "history"Wladimir J. van der Laan2011-07-051-17/+40
|
* make balance selectable / copyableWladimir J. van der Laan2011-07-051-0/+1
|
* "Receive coins" instead of "Receiving addresses"Wladimir J. van der Laan2011-07-021-15/+13
|