diff options
| author | Cozz Lovan <[email protected]> | 2013-08-12 17:03:03 +0200 |
|---|---|---|
| committer | Wladimir J. van der Laan <[email protected]> | 2013-11-14 14:25:10 +0100 |
| commit | 6a86c24db146d9ca5d1d5c83099d935c3feb63bb (patch) | |
| tree | 84ea08401061e81d178a4c2caf34233281227da4 /src/qt/optionsmodel.h | |
| parent | pass nBytes as parameter to GetMinFee(..) (diff) | |
| download | discoin-6a86c24db146d9ca5d1d5c83099d935c3feb63bb.tar.xz discoin-6a86c24db146d9ca5d1d5c83099d935c3feb63bb.zip | |
Coin Control Features
Diffstat (limited to 'src/qt/optionsmodel.h')
| -rw-r--r-- | src/qt/optionsmodel.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/qt/optionsmodel.h b/src/qt/optionsmodel.h index 2d41cf889..c716f74c0 100644 --- a/src/qt/optionsmodel.h +++ b/src/qt/optionsmodel.h @@ -33,6 +33,7 @@ public: DisplayUnit, // BitcoinUnits::Unit DisplayAddresses, // bool Language, // QString + CoinControlFeatures, // bool OptionIDRowCount, }; @@ -54,6 +55,7 @@ public: bool getDisplayAddresses() { return bDisplayAddresses; } QString getLanguage() { return language; } bool getProxySettings(QString& proxyIP, quint16 &proxyPort) const; + bool getCoinControlFeatures(); private: int nDisplayUnit; @@ -61,9 +63,12 @@ private: bool fMinimizeToTray; bool fMinimizeOnClose; QString language; + bool fCoinControlFeatures; signals: void displayUnitChanged(int unit); + void transactionFeeChanged(qint64); + void coinControlFeaturesChanged(bool); }; #endif // OPTIONSMODEL_H |