X-Git-Url: https://git.novaco.in/?a=blobdiff_plain;f=src%2Fqt%2Foptionsmodel.h;h=09197f71c55353c939c95951dcaeb41ff0267ebf;hb=24b2f2d42d10153c24ccef4a14ba57ad24aac183;hp=34724ad032b36dc71be6a598b71fc33a3105e9e9;hpb=84a4a7763f386934da90e2bd1e355b70023fa9ca;p=novacoin.git diff --git a/src/qt/optionsmodel.h b/src/qt/optionsmodel.h index 34724ad..09197f7 100644 --- a/src/qt/optionsmodel.h +++ b/src/qt/optionsmodel.h @@ -25,11 +25,17 @@ public: ProxyIP, // QString ProxyPort, // int ProxySocksVersion, // int + TorUse, // bool + TorIP, // QString + TorPort, // int + TorOnly, // bool Fee, // qint64 DisplayUnit, // BitcoinUnits::Unit DisplayAddresses, // bool + ThirdPartyTxUrls, // QString DetachDatabases, // bool Language, // QString + CoinControlFeatures, // bool OptionIDRowCount, }; @@ -48,6 +54,8 @@ public: bool getMinimizeOnClose(); int getDisplayUnit(); bool getDisplayAddresses(); + bool getCoinControlFeatures(); + QString getThirdPartyTxUrls() { return strThirdPartyTxUrls; } QString getLanguage() { return language; } private: @@ -55,10 +63,14 @@ private: bool bDisplayAddresses; bool fMinimizeToTray; bool fMinimizeOnClose; + bool fCoinControlFeatures; QString language; + QString strThirdPartyTxUrls; signals: void displayUnitChanged(int unit); + void transactionFeeChanged(qint64); + void coinControlFeaturesChanged(bool); }; #endif // OPTIONSMODEL_H