aboutsummaryrefslogtreecommitdiff
path: root/src/qt/transactiontablemodel.cpp
Commit message (Collapse)AuthorAgeFilesLines
* Fix for Boost 1.74John-Gee2021-02-021-4/+15
|
* Increment MIT Licence copyright header year on files modified in 2016isle29832016-12-311-1/+1
| | | | | | Edited via: $ contrib/devtools/copyright_header.py update .
* Rename the remaining main.{h,cpp} to validation.{h,cpp}Matt Corallo2016-12-021-1/+1
|
* Do not shadow in src/qtPavel Janík2016-09-231-9/+9
|
* [Qt] Support for abandoned/abandoning transactionsJonas Schnelli2016-04-041-0/+10
|
* QT: Add 'copy full transaction details' optionEric Shaw2016-03-071-0/+28
| | | | | | | | Adds feature from issue #7484 modifies the ctrl-c binding to copy full transaction details in transaction view. Added translation
* Bump copyright headers to 2015MarcoFalke2015-12-131-1/+1
|
* ui: Add "Copy raw transaction data" to transaction list context menuWladimir J. van der Laan2015-11-191-0/+15
| | | | | | | Add a way to quickly copy transaction hex. Primarily useful when manually submitting transactions, e.g. `-walletbroadcast=0` is set.
* qt: Introduce PlatformStyleWladimir J. van der Laan2015-07-311-4/+5
| | | | | | | | | | | | | | Introduce a PlatformStyle to handle platform-specific customization of the UI. This replaces 'scicon', as well as #ifdefs to determine whether to place icons on buttons. The selected PlatformStyle defaults to the platform that the application was compiled on, but can be overridden from the command line with `-uiplatform=<x>`. Also fixes the warning from #6328.
* TRIVIAL: Missing includesJorge Timón2015-07-231-0/+2
|
* qt: define QT_NO_KEYWORDSWladimir J. van der Laan2015-07-151-5/+5
| | | | | | | | QT_NO_KEYWORDS prevents Qt from defining the `foreach`, `signals`, `slots` and `emit` macros. Avoid overlap between Qt macros and boost - for example #undef hackiness in #6421.
* Merge pull request #5833Wladimir J. van der Laan2015-04-011-2/+2
|\ | | | | | | | | 721cb55 GUI: Display label rather than address on popups (Luke Dashjr) e96028c GUI: Clarify terminology; use "Label" heading for labels row, and "Node/Service" rather than [IP] "Address" (Luke Dashjr)
| * GUI: Clarify terminology; use "Label" heading for labels row, and ↵Luke Dashjr2015-02-261-2/+2
| | | | | | | | "Node/Service" rather than [IP] "Address"
* | [Move Only] Move wallet related things to src/wallet/Jonas Schnelli2015-03-121-1/+1
|/ | | | could once be renamed from /src/wallet to /src/legacywallet.
* Remove whitespaces before double colon in errors and logsPavel Janík2015-01-311-5/+5
|
* Adopt style colour for button iconsLuke Dashjr2014-12-271-1/+7
|
* Added "Core" to copyright headerssandakersmann2014-12-191-1/+1
| | | | | Github-Pull: #5494 Rebased-From: 15de949bb9277e442302bdd8dee299a8d6deee60
* Remove references to X11 licenceMichael Ford2014-12-161-1/+1
|
* qt: Move transaction notification to transaction table modelWladimir J. van der Laan2014-10-281-65/+141
| | | | | | | | | | Move transaction new/update notification to TransactionTableModel. This moves the concerns to where they're actually handled. No need to bounce this through wallet model. - Do wallet transaction preprocessing on signal handler side; avoids locking cs_main/cs_wallet on notification in GUI thread (except for new transactions)
* Use a typedef for monetary valuesMark Friedenbach2014-09-261-2/+2
|
* Merge pull request #4667Wladimir J. van der Laan2014-09-181-19/+10
|\ | | | | | | | | bbad683 [Qt] simplify return code and return values in txtablemodel (Philip Kaufmann) 21f1516 [Qt] add all used colors in txtablemodel to guiconstants (Philip Kaufmann)
| * [Qt] simplify return code and return values in txtablemodelPhilip Kaufmann2014-08-281-16/+6
| | | | | | | | - also move an added space in a string where it belongs
| * [Qt] add all used colors in txtablemodel to guiconstantsPhilip Kaufmann2014-08-281-3/+4
| | | | | | | | - add colors used in TX status decoration
* | [Qt] minor watch-only changesPhilip Kaufmann2014-08-281-4/+10
|/ | | | | | - use watch-only, not watchonly - add back a tooltip hint when hovering addresses and attach "(watch-only)" at the end
* [Qt] Add column Watch-only to transactions listCozz Lovan2014-08-111-8/+24
|
* qt: Remove an obscure option no-one cares aboutWladimir J. van der Laan2014-07-311-1/+1
| | | | | | | Remove the "Display addresses" setting checkbox. It doesn't do what the tooltip says, and seems kind of pointless in any case. Fixes #4580.
* [Qt] small Qt-only include cleanupPhilip Kaufmann2014-07-251-1/+1
|
* Revert "UI to alert of respend attempt affecting wallet."Wladimir J. van der Laan2014-07-211-13/+5
| | | | | | | | This reverts commit ada5a067c75f19a724cc054286ecf2254e5dbe8f. Conflicts: src/qt/guiconstants.h src/wallet.h
* Revert "Formatting, spelling, comment fixes."Wladimir J. van der Laan2014-07-211-2/+2
| | | | This reverts commit 7a19efe04069d9a1e251cdc94b25184f76d9d901.
* Remove unused fAlign argument from BitcoinUnits::format and friendsRoy Badami2014-07-071-3/+3
|
* Merge remote-tracking branch 'upstream/master'Roy Badami2014-07-071-15/+33
|\ | | | | | | | | | | Conflicts: src/qt/overviewpage.cpp src/qt/transactiondesc.cpp
| * Merge pull request #4045Wladimir J. van der Laan2014-07-071-4/+7
| |\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | a3e192a replaced MINE_ with ISMINE_ (JaSK) 53a2148 fixed bug where validateaddress doesn't display information (JaSK) f28707a fixed bug in ListReceived() (JaSK) 519dd1c Added MINE_ALL = (spendable|watchonly) (JaSK) 23b0506 Fixed some stuff in TransactionDesc (JaSK) 80dda36 removed default argument values for ismine filter (JaSK) d5087d1 Use script matching rather than destination matching for watch-only. (Pieter Wuille) 0fa2f88 added includedWatchonly argument to listreceivedbyaddress/...account (JaSK) f87ba3d added includeWatchonly argument to 'gettransaction' because it affects balance calculation (JaSK) a5c6c5d fixed tiny glitch and improved readability like laanwj suggested (JaSK) d7d5d23 Added argument to listtransactions and listsinceblock to include watchonly addresses (JaSK) 952877e Showing 'involvesWatchonly' property for transactions returned by 'listtransactions' and 'listsinceblock'. It is only appended when the transaction involves a watchonly address. (JaSK) 83f3543 Added argument to listaccounts to include watchonly addresses (JaSK) d4640d7 Added argument to getbalance to include watchonly addresses and fixed errors in balance calculation. (JaSK) d2692f6 Watchonly transactions are marked in transaction history (JaSK) ffd40da Watchonly balances are shown separately in gui. (JaSK) 2935b21 qt: Hide unspendable outputs in coin control (Wladimir J. van der Laan) c898846 Add support for watch-only addresses (Pieter Wuille)
| | * Watchonly transactions are marked in transaction historyJaSK2014-07-021-4/+7
| | |
| * | Merge pull request #4302Wladimir J. van der Laan2014-07-031-2/+9
| |\ \ | | |/ | |/| | | | 8969828 [Qt] New status bar Unit Display Control and related changes. (gubatron)
| | * [Qt] New status bar Unit Display Control and related changes.gubatron2014-06-251-2/+9
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - New status bar control shows the current Unit of Display. When clicked (left,or right button) it shows a context menu that allows the user to switch the current Unit of Display (BTC, mBTC, uBTC) - Recent Requests and Transaction Table headers are now updated when unit of display is changed, because their "Amount" column now displays the current unit of display. - Takes care of issue #3970 Units in transaction export csv file. - Small refactors for reusability. - Demo Video https://www.youtube.com/watch?v=wwcr0Yh68go&list=UUG3jF2hgofmLWP0tRPisQAQ - changes after Diapolo's feedback. Have not been able to build after last pool, issues with boost on MacOSX, will test on Ubuntu these changes. - removed return statement on switch - renamed onDisplayUnitsChanged(int) to updateDisplayUnit(int) - now getAmountColumnTitle(int unit) takes a simple unit parameter. moved to BitcoinUnits.
| * | qt: Change serious messages from qDebug to qWarningWladimir J. van der Laan2014-07-011-3/+3
| | | | | | | | | | | | | | | By changing the logging stream for warnings from qDebug to qWarning, these will always be logged to debug.log.
| * | Formatting, spelling, comment fixes.Tom Harding2014-06-271-2/+2
| | |
| * | UI to alert of respend attempt affecting wallet.Tom Harding2014-06-271-5/+13
| |/ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Respend transactions that conflict with transactions already in the wallet are added to it. They are not displayed unless they also involve the wallet, or get into a block. If they do not involve the wallet, they continue not to affect balance. Transactions that involve the wallet, and have conflicting non-equivalent transactions, are highlighted in red. When the conflict first occurs, a modal dialog is thrown. CWallet::SyncMetaData is changed to sync only to equivalent transactions. When a conflict is added to the wallet, counter nConflictsReceived is incremented. This acts like a change in active block height for the purpose of triggering UI updates.
| * [Qt] Fix Transaction details shows wrong To:Cozz Lovan2014-05-281-1/+1
| |
* | Implement SI-style (thin space) thoudands separatorRoy Badami2014-05-171-5/+5
|/
* [Qt] Optionally add third party links to transaction context menuCozz Lovan2014-04-251-0/+2
|
* qt: get required locks upfront in polling functionsWladimir J. van der Laan2014-04-231-7/+14
| | | | | | This avoids the GUI from getting stuck on periodical polls if the core is holding the locks for a longer time - for example, during a wallet rescan.
* Solve chainActive-related locking issuesWladimir J. van der Laan2014-04-181-26/+15
| | | | | | | | | | | - In wallet and GUI code LOCK cs_main as well as cs_wallet when necessary - In main.cpp SendMessages move the TRY_LOCK(cs_main) up, to encompass the call to IsInitialBlockDownload. - Make ActivateBestChain, AddToBlockIndex, IsInitialBlockDownload, InitBlockIndex acquire the cs_main lock Fixes #3997
* qt: Modernize 'confirmed' terminology in shown tx statusWladimir J. van der Laan2014-02-281-81/+62
| | | | | | | | | | | | These days we regard transactions with one confirmation to be 'Confirmed'. Waiting for 6 confirmations is a recommendation but should not keep the transaction shown as unconfirmed. Misc code sanity: - Merge maturity/status enums, they had become completely disjunct - 'confirmed' flag is now called 'countsForBalance' for clarity
* Merge pull request #3646Wladimir J. van der Laan2014-02-161-1/+1
|\ | | | | | | 5770254 Copyright header updates s/2013/2014 on files whose last git commit was done in 2014. contrib/devtools/fix-copyright-headers.py script to be able to perform this maintenance task with ease during the rest of the year, every year. Modifications to contrib/devtools/README.md to document what fix-copyright-headers.py does. (gubatron)
| * Copyright header updates s/2013/2014 on files whose last git commit was done ↵gubatron2014-02-091-1/+1
| | | | | | | | | | | | in 2014. contrib/devtools/fix-copyright-headers.py script to be able to perform this maintenance task with ease during the rest of the year, every year. Modifications to contrib/devtools/README.md to document what fix-copyright-headers.py does.
* | qt: GUI for conflicted transactionsWladimir J. van der Laan2014-02-141-2/+8
|/ | | | | | - Exclamation mark icon for conflicted transactions - Show mouseover status for conflicted transactions as "conflicted" - Don't show inactive transactions on overview page overview
* qt: Better status text for mined transactionsWladimir J. van der Laan2014-01-061-21/+23
| | | | Fixes ancient issue #614.
* Cleanup code using forward declarations.Brandon Dahler2013-11-101-9/+12
| | | | | | | | | 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