diff options
| author | Wladimir J. van der Laan <[email protected]> | 2014-08-26 17:41:03 +0200 |
|---|---|---|
| committer | Wladimir J. van der Laan <[email protected]> | 2014-08-26 17:41:33 +0200 |
| commit | d49b0876a4f4e5f8d7763fd2192f1efd0ddeec1e (patch) | |
| tree | 5394e31d833b3ae8d2cd925a88c12d4acb581b60 /src/qt/transactionview.h | |
| parent | Merge pull request #4649 (diff) | |
| parent | [Qt] Add column Watch-only to transactions list (diff) | |
| download | discoin-d49b0876a4f4e5f8d7763fd2192f1efd0ddeec1e.tar.xz discoin-d49b0876a4f4e5f8d7763fd2192f1efd0ddeec1e.zip | |
Merge pull request #4673
1c5f0af [Qt] Add column Watch-only to transactions list (Cozz Lovan)
939ed97 Add boolean HaveWatchonly and signal NotifyWatchonlyChanged (Cozz Lovan)
Diffstat (limited to 'src/qt/transactionview.h')
| -rw-r--r-- | src/qt/transactionview.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/qt/transactionview.h b/src/qt/transactionview.h index 618efbc56..b249e0041 100644 --- a/src/qt/transactionview.h +++ b/src/qt/transactionview.h @@ -50,6 +50,7 @@ public: enum ColumnWidths { STATUS_COLUMN_WIDTH = 23, + WATCHONLY_COLUMN_WIDTH = 23, DATE_COLUMN_WIDTH = 120, TYPE_COLUMN_WIDTH = 120, AMOUNT_MINIMUM_COLUMN_WIDTH = 120, @@ -63,6 +64,7 @@ private: QComboBox *dateWidget; QComboBox *typeWidget; + QComboBox *watchOnlyWidget; QLineEdit *addressWidget; QLineEdit *amountWidget; @@ -91,6 +93,7 @@ private slots: void copyAmount(); void copyTxID(); void openThirdPartyTxUrl(QString url); + void updateWatchOnlyColumn(bool fHaveWatchOnly); signals: void doubleClicked(const QModelIndex&); @@ -101,6 +104,7 @@ signals: public slots: void chooseDate(int idx); void chooseType(int idx); + void chooseWatchonly(int idx); void changedPrefix(const QString &prefix); void changedAmount(const QString &amount); void exportClicked(); |