aboutsummaryrefslogtreecommitdiff
path: root/src/qt/overviewpage.h
Commit message (Collapse)AuthorAgeFilesLines
* Add boolean HaveWatchonly and signal NotifyWatchonlyChangedCozz Lovan2014-08-111-0/+1
|
* Watchonly balances are shown separately in gui.JaSK2014-07-021-1/+5
|
* Cleanup code using forward declarations.Brandon Dahler2013-11-101-4/+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: remove transaction count from overview pageWladimir J. van der Laan2013-03-311-1/+0
| | | | | It was needlessly confusing people, as it doesn't necessarily match the number of transactions in the transaction list.
* Bitcoin-Qt: massive header and cpp cleanupPhilip Kaufmann2013-03-171-4/+4
| | | | | | | - 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
* Show warning when using prerelease versionWladimir J. van der Laan2012-10-251-2/+6
| | | | | | | | | | | Implements #1948 - Add macro `CLIENT_VERSION_IS_RELEASE` to clientversion.h - When running a prerelease (the above macro is `false`): - In UI, show an orange warning bar at the top. This will be used for other warnings (and alerts) as well, instead of the status bar. - For `bitcoind`, show the warning in the "errors" field in `getinfo` response.
* add the slot updateDisplayUnit() to overviewpage, sendcoinsdialog, ↵Philip Kaufmann2012-06-171-1/+1
| | | | sendcoinsentry and connect it to displayUnitChanged() - this ensures all fields in the GUI, who use a display unit are imediately updated, when the user changes this setting in the optionsdialog / ensure used fields init with the current set display unit
* Added 'immature balance' for miners. Only displayed if the balance is ↵sje3972012-05-251-1/+2
| | | | | | | | | | | | | | | | | | | | | greater than zero. This adds a field labelled 'Immature' in the overview section under the 'unconfirmed' field, which shows mined income that has not yet matured (which is currently not displayed anywhere, even though the transactions exist in the transaction list). To do that I added a 'GetImmatureBalance' method to the wallet, and connected that through to the GUI as per the 'GetBalance' and 'GetUnconfirmedBalance' methods. I did a small 'no-op' change to make the code in adjacent functions a little more readable (imo); it was a change I had made in my repo earlier...but I thought it wouldn't hurt so left it in. Immature balance comes from mined income that is at least two blocks deep in the chain (same logic as displayed transactions). My reasoning is: - as a miner, it's a critical stat I want to see - as a miner, and taking into account the label 'immature', the uncertainty is pretty clearly implied - those numbers are already displayed in the transaction list - this makes the overview numbers add up to what's in the transaction list - it's not displayed if the immature balance is 0, so won't bother non-miners I also 'cleaned' the overview UI a little, moving code to the XML and removing HTML.
* add 2 labels to the overviewpage that display Wallet and Transaction status ↵Philip Kaufmann2012-05-171-0/+1
| | | | (obsolete or current) / cleanup overviewpage XML ui-file
* When a transaction is clicked on overview page, focus it on history pageWladimir J. van der Laan2012-05-121-0/+3
|
* 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-0/+1
|
* when clicking a transaction on the overview page, send the user to the ↵Wladimir J. van der Laan2011-08-041-0/+7
| | | | transactions page
* show last few transactions on overview pageWladimir J. van der Laan2011-08-031-0/+3
|
* Full support for other units, add configuration option for default unit ↵Wladimir J. van der Laan2011-07-291-0/+4
| | | | (used when displaying amounts)
* Show unconfirmed balance on overview pageWladimir J. van der Laan2011-07-111-1/+5
|
* Rename "History" tab to more logical "Transactions", move "Number of ↵Wladimir J. van der Laan2011-07-071-0/+1
| | | | transactions" from status bar to overview page
* tab reorg phase 1: split main gui into "overview" and "history"Wladimir J. van der Laan2011-07-051-0/+26