aboutsummaryrefslogtreecommitdiff
path: root/src/qt/walletview.h
Commit message (Collapse)AuthorAgeFilesLines
* [Qt] rescan progressCozz Lovan2014-04-021-0/+6
|
* [Qt] small notificator and style changesPhilip Kaufmann2013-12-031-0/+1
| | | | | | - remove default arguments for notificator - re-order some calls to use same ordering in Qt files - style police changes (spaces, comments and such)
* Cleanup code using forward declarations.Brandon Dahler2013-11-101-6/+3
| | | | | | | | | 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-6/+4
| | | | Closes #839
* qt: clean up signal handling in walletframe/walletviewWladimir J. van der Laan2013-10-271-5/+7
| | | | | | | Use proper signals everywhere. Removes the need to store a pointer to the BitcoinGUI object in the walletview. Also removes the interdependence between setWalletModel / setBitcoinGUI.
* allow emit message() in sendcoinsdialog and walletviewPhilip Kaufmann2013-10-251-0/+3
| | | | | | | - this allows us to use emit message() over MessageBox:: or gui->message() calls in sendcoinsdialog and walletview - move main handlePaymentRequest() functionality back to BitcoinGUI - move a showNormalIfMinimized() before gotoSendCoinsPage()
* qt: rework "receive coins" workflowWladimir J. van der Laan2013-10-231-5/+7
|
* qt: merge walletstack and walletframeWladimir J. van der Laan2013-10-181-2/+1
| | | | | | There were too many levels of indirection here, and the functionality of walletframe and walletstack can easily be merged. This commit merges the two which cuts a lot of lines of boilerplate code.
* Bitcoin-Qt: tweak Qt walletXXX.cpp/h codePhilip Kaufmann2013-08-231-0/+4
| | | | | | | | | | | | | | | | | | | | | WalletView: - add new signal showNormalIfMinimized() - emit the new signal in handleURI() to fix a bug, preventing the main window to show up when using bitcoin: URIs WalletStack: - connect the showNormalIfMinimized() signal from WalletView with the showNormalIfMinimized() slot in BitcoinGUI - rework setCurrentWallet() to return a bool - add check for valid walletModel in addWallet() - add missing gui attribute initialisation in constructor WalletFrame: - remove unused or unneded class attributes gui and clientModel - add a check for valid clientModel in setClientModel() General: - small code formatting changes
* Payment Protocol: X509-validated payment requestsGavin Andresen2013-08-221-1/+2
| | | | | | | | 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: fix GUI after initial multi-wallet patchPhilip Kaufmann2013-04-031-29/+1
| | | | | | | | | | - adds 6 methods in BitcoinGUI to access some actions needed by the new WalletView class - updates WalletView class to use these instead of trying to duplicate these - cleanup walletview.{cpp/h} and remove all unneeded stuff - this fixes problems with tabs toolbar (#2451) and export broken (#2436) - more details in #2447
* fix "send coins" via context menu in address bookPhilip Kaufmann2013-04-011-4/+4
| | | | | | | - the send coins context menu entry was not working anymore, because a non current version of #2220 was merged onto current master - also removes some unneeded spaces and adds a comment to WalletModel::getNumTransactions()
* Minimal architectural changes necessary to support multiple wallets in ↵Eric Lombrozo2013-03-221-0/+132
bitcoin-qt - This commit is a minimal restructuring necessary to support multiple wallets in the UI. Please see multiwallet-qt.txt for details.