2013-11-04 16:20:43 +01:00
|
|
|
// Copyright (c) 2011-2013 The Bitcoin developers
|
|
|
|
// Distributed under the MIT/X11 software license, see the accompanying
|
|
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
|
|
2011-05-31 22:24:53 +02:00
|
|
|
#ifndef OPTIONSMODEL_H
|
|
|
|
#define OPTIONSMODEL_H
|
|
|
|
|
|
|
|
#include <QAbstractListModel>
|
|
|
|
|
2013-12-20 18:47:49 +01:00
|
|
|
QT_BEGIN_NAMESPACE
|
|
|
|
class QNetworkProxy;
|
|
|
|
QT_END_NAMESPACE
|
|
|
|
|
2012-05-13 16:09:14 +02:00
|
|
|
/** Interface from Qt to configuration data structure for Bitcoin client.
|
|
|
|
To Qt, the options are presented as a list with the different options
|
2011-06-05 14:19:57 +02:00
|
|
|
laid out vertically.
|
|
|
|
This can be changed to a tree once the settings become sufficiently
|
|
|
|
complex.
|
|
|
|
*/
|
2011-05-31 22:24:53 +02:00
|
|
|
class OptionsModel : public QAbstractListModel
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
2012-07-09 13:40:22 +02:00
|
|
|
|
2011-05-31 22:24:53 +02:00
|
|
|
public:
|
2012-02-17 03:09:41 +01:00
|
|
|
explicit OptionsModel(QObject *parent = 0);
|
2011-05-31 22:24:53 +02:00
|
|
|
|
|
|
|
enum OptionID {
|
2013-11-16 17:37:31 +01:00
|
|
|
StartAtStartup, // bool
|
|
|
|
MinimizeToTray, // bool
|
|
|
|
MapPortUPnP, // bool
|
|
|
|
MinimizeOnClose, // bool
|
|
|
|
ProxyUse, // bool
|
|
|
|
ProxyIP, // QString
|
|
|
|
ProxyPort, // int
|
|
|
|
ProxySocksVersion, // int
|
|
|
|
Fee, // qint64
|
|
|
|
DisplayUnit, // BitcoinUnits::Unit
|
|
|
|
DisplayAddresses, // bool
|
2014-04-24 22:21:45 +02:00
|
|
|
ThirdPartyTxUrls, // QString
|
2013-11-16 17:37:31 +01:00
|
|
|
Language, // QString
|
|
|
|
CoinControlFeatures, // bool
|
2013-12-03 09:10:10 +01:00
|
|
|
ThreadsScriptVerif, // int
|
|
|
|
DatabaseCache, // int
|
2014-02-15 10:38:06 +01:00
|
|
|
SpendZeroConfChange, // bool
|
2012-04-17 23:03:24 +02:00
|
|
|
OptionIDRowCount,
|
2011-05-31 22:24:53 +02:00
|
|
|
};
|
|
|
|
|
2012-02-17 03:09:41 +01:00
|
|
|
void Init();
|
2012-08-18 15:54:39 +02:00
|
|
|
void Reset();
|
2012-02-17 03:09:41 +01:00
|
|
|
|
2011-05-31 22:24:53 +02:00
|
|
|
int rowCount(const QModelIndex & parent = QModelIndex()) const;
|
|
|
|
QVariant data(const QModelIndex & index, int role = Qt::DisplayRole) const;
|
|
|
|
bool setData(const QModelIndex & index, const QVariant & value, int role = Qt::EditRole);
|
|
|
|
|
2011-06-01 09:34:12 +02:00
|
|
|
/* Explicit getters */
|
2012-10-02 13:37:19 +02:00
|
|
|
bool getMinimizeToTray() { return fMinimizeToTray; }
|
|
|
|
bool getMinimizeOnClose() { return fMinimizeOnClose; }
|
|
|
|
int getDisplayUnit() { return nDisplayUnit; }
|
|
|
|
bool getDisplayAddresses() { return bDisplayAddresses; }
|
2014-04-24 22:21:45 +02:00
|
|
|
QString getThirdPartyTxUrls() { return strThirdPartyTxUrls; }
|
2013-12-20 18:47:49 +01:00
|
|
|
bool getProxySettings(QNetworkProxy& proxy) const;
|
2013-11-16 17:37:31 +01:00
|
|
|
bool getCoinControlFeatures() { return fCoinControlFeatures; }
|
2013-12-03 09:10:10 +01:00
|
|
|
const QString& getOverriddenByCommandLine() { return strOverriddenByCommandLine; }
|
|
|
|
|
|
|
|
/* Restart flag helper */
|
|
|
|
void setRestartRequired(bool fRequired);
|
|
|
|
bool isRestartRequired();
|
2012-07-09 13:40:22 +02:00
|
|
|
|
2011-06-26 19:23:24 +02:00
|
|
|
private:
|
2013-12-03 09:10:10 +01:00
|
|
|
/* Qt-only settings */
|
2012-02-17 03:09:41 +01:00
|
|
|
bool fMinimizeToTray;
|
|
|
|
bool fMinimizeOnClose;
|
2012-05-08 23:03:41 +02:00
|
|
|
QString language;
|
2013-12-03 09:10:10 +01:00
|
|
|
int nDisplayUnit;
|
|
|
|
bool bDisplayAddresses;
|
2014-04-24 22:21:45 +02:00
|
|
|
QString strThirdPartyTxUrls;
|
2013-08-12 17:03:03 +02:00
|
|
|
bool fCoinControlFeatures;
|
2013-12-03 09:10:10 +01:00
|
|
|
/* settings that were overriden by command-line */
|
|
|
|
QString strOverriddenByCommandLine;
|
2012-07-09 13:40:22 +02:00
|
|
|
|
2014-03-14 07:22:59 +01:00
|
|
|
/// Add option to list of GUI options overridden through command line/config file
|
|
|
|
void addOverriddenOption(const std::string &option);
|
|
|
|
|
2011-05-31 22:24:53 +02:00
|
|
|
signals:
|
2011-07-29 14:36:35 +02:00
|
|
|
void displayUnitChanged(int unit);
|
2013-08-12 17:03:03 +02:00
|
|
|
void transactionFeeChanged(qint64);
|
|
|
|
void coinControlFeaturesChanged(bool);
|
2011-05-31 22:24:53 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // OPTIONSMODEL_H
|