2016-12-31 15:01:21 -03:00
|
|
|
// Copyright (c) 2011-2016 The Bitcoin Core developers
|
2014-12-13 01:09:33 -03:00
|
|
|
// Distributed under the MIT software license, see the accompanying
|
2013-11-04 12:20:43 -03:00
|
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
|
|
2014-11-03 12:16:40 -03:00
|
|
|
#ifndef BITCOIN_QT_OPTIONSMODEL_H
|
|
|
|
#define BITCOIN_QT_OPTIONSMODEL_H
|
2011-05-31 16:24:53 -04:00
|
|
|
|
2014-04-22 19:46:19 -03:00
|
|
|
#include "amount.h"
|
|
|
|
|
2011-05-31 16:24:53 -04:00
|
|
|
#include <QAbstractListModel>
|
|
|
|
|
2013-12-20 14:47:49 -03:00
|
|
|
QT_BEGIN_NAMESPACE
|
|
|
|
class QNetworkProxy;
|
|
|
|
QT_END_NAMESPACE
|
|
|
|
|
2012-05-13 10:09:14 -04: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 08:19:57 -04:00
|
|
|
laid out vertically.
|
|
|
|
This can be changed to a tree once the settings become sufficiently
|
|
|
|
complex.
|
|
|
|
*/
|
2011-05-31 16:24:53 -04:00
|
|
|
class OptionsModel : public QAbstractListModel
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
2012-07-09 07:40:22 -04:00
|
|
|
|
2011-05-31 16:24:53 -04:00
|
|
|
public:
|
2015-11-13 12:27:42 -03:00
|
|
|
explicit OptionsModel(QObject *parent = 0, bool resetSettings = false);
|
2011-05-31 16:24:53 -04:00
|
|
|
|
|
|
|
enum OptionID {
|
2013-11-16 13:37:31 -03:00
|
|
|
StartAtStartup, // bool
|
2016-05-11 23:28:02 -03:00
|
|
|
HideTrayIcon, // bool
|
2013-11-16 13:37:31 -03:00
|
|
|
MinimizeToTray, // bool
|
|
|
|
MapPortUPnP, // bool
|
|
|
|
MinimizeOnClose, // bool
|
|
|
|
ProxyUse, // bool
|
|
|
|
ProxyIP, // QString
|
|
|
|
ProxyPort, // int
|
2014-07-25 12:20:40 -04:00
|
|
|
ProxyUseTor, // bool
|
|
|
|
ProxyIPTor, // QString
|
|
|
|
ProxyPortTor, // int
|
2013-11-16 13:37:31 -03:00
|
|
|
DisplayUnit, // BitcoinUnits::Unit
|
2014-04-24 17:21:45 -03:00
|
|
|
ThirdPartyTxUrls, // QString
|
2013-11-16 13:37:31 -03:00
|
|
|
Language, // QString
|
|
|
|
CoinControlFeatures, // bool
|
2013-12-03 05:10:10 -03:00
|
|
|
ThreadsScriptVerif, // int
|
|
|
|
DatabaseCache, // int
|
2014-02-15 06:38:06 -03:00
|
|
|
SpendZeroConfChange, // bool
|
2014-05-29 07:02:22 -04:00
|
|
|
Listen, // bool
|
2012-04-17 18:03:24 -03:00
|
|
|
OptionIDRowCount,
|
2011-05-31 16:24:53 -04:00
|
|
|
};
|
|
|
|
|
2015-11-13 12:27:42 -03:00
|
|
|
void Init(bool resetSettings = false);
|
2012-08-18 09:54:39 -04:00
|
|
|
void Reset();
|
2012-02-16 23:09:41 -03:00
|
|
|
|
2011-05-31 16:24:53 -04: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);
|
2014-06-07 02:20:22 -04:00
|
|
|
/** Updates current unit in memory, settings and emits displayUnitChanged(newUnit) signal */
|
|
|
|
void setDisplayUnit(const QVariant &value);
|
2011-05-31 16:24:53 -04:00
|
|
|
|
2011-06-01 03:34:12 -04:00
|
|
|
/* Explicit getters */
|
2017-03-09 09:34:54 -03:00
|
|
|
bool getHideTrayIcon() const { return fHideTrayIcon; }
|
|
|
|
bool getMinimizeToTray() const { return fMinimizeToTray; }
|
|
|
|
bool getMinimizeOnClose() const { return fMinimizeOnClose; }
|
|
|
|
int getDisplayUnit() const { return nDisplayUnit; }
|
|
|
|
QString getThirdPartyTxUrls() const { return strThirdPartyTxUrls; }
|
2013-12-20 14:47:49 -03:00
|
|
|
bool getProxySettings(QNetworkProxy& proxy) const;
|
2017-03-09 09:34:54 -03:00
|
|
|
bool getCoinControlFeatures() const { return fCoinControlFeatures; }
|
2013-12-03 05:10:10 -03:00
|
|
|
const QString& getOverriddenByCommandLine() { return strOverriddenByCommandLine; }
|
|
|
|
|
|
|
|
/* Restart flag helper */
|
|
|
|
void setRestartRequired(bool fRequired);
|
2017-03-09 09:34:54 -03:00
|
|
|
bool isRestartRequired() const;
|
2012-07-09 07:40:22 -04:00
|
|
|
|
2011-06-26 13:23:24 -04:00
|
|
|
private:
|
2013-12-03 05:10:10 -03:00
|
|
|
/* Qt-only settings */
|
2016-05-11 23:28:02 -03:00
|
|
|
bool fHideTrayIcon;
|
2012-02-16 23:09:41 -03:00
|
|
|
bool fMinimizeToTray;
|
|
|
|
bool fMinimizeOnClose;
|
2012-05-08 17:03:41 -04:00
|
|
|
QString language;
|
2013-12-03 05:10:10 -03:00
|
|
|
int nDisplayUnit;
|
2014-04-24 17:21:45 -03:00
|
|
|
QString strThirdPartyTxUrls;
|
2013-08-12 11:03:03 -04:00
|
|
|
bool fCoinControlFeatures;
|
2016-11-28 05:19:05 -03:00
|
|
|
/* settings that were overridden by command-line */
|
2013-12-03 05:10:10 -03:00
|
|
|
QString strOverriddenByCommandLine;
|
2012-07-09 07:40:22 -04:00
|
|
|
|
2016-07-26 08:01:36 -04:00
|
|
|
// Add option to list of GUI options overridden through command line/config file
|
2014-03-14 03:22:59 -03:00
|
|
|
void addOverriddenOption(const std::string &option);
|
|
|
|
|
2016-07-26 08:01:36 -04:00
|
|
|
// Check settings version and upgrade default values if required
|
|
|
|
void checkAndMigrate();
|
2015-07-14 08:59:05 -03:00
|
|
|
Q_SIGNALS:
|
2011-07-29 08:36:35 -04:00
|
|
|
void displayUnitChanged(int unit);
|
2013-08-12 11:03:03 -04:00
|
|
|
void coinControlFeaturesChanged(bool);
|
2016-05-11 23:28:02 -03:00
|
|
|
void hideTrayIconChanged(bool);
|
2011-05-31 16:24:53 -04:00
|
|
|
};
|
|
|
|
|
2014-11-03 12:16:40 -03:00
|
|
|
#endif // BITCOIN_QT_OPTIONSMODEL_H
|