2011-05-31 22:24:53 +02:00
|
|
|
#ifndef OPTIONSMODEL_H
|
|
|
|
#define OPTIONSMODEL_H
|
|
|
|
|
|
|
|
#include <QAbstractListModel>
|
|
|
|
|
2011-11-13 13:19:52 +01:00
|
|
|
/** Interface from QT to configuration data structure for bitcoin client.
|
2011-06-05 14:19:57 +02:00
|
|
|
To QT, the options are presented as a list with the different options
|
|
|
|
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
|
|
|
|
public:
|
2012-02-17 03:09:41 +01:00
|
|
|
explicit OptionsModel(QObject *parent = 0);
|
2011-05-31 22:24:53 +02:00
|
|
|
|
|
|
|
enum OptionID {
|
2011-07-26 13:08:34 +02:00
|
|
|
StartAtStartup, // bool
|
|
|
|
MinimizeToTray, // bool
|
|
|
|
MapPortUPnP, // bool
|
|
|
|
MinimizeOnClose, // bool
|
|
|
|
ConnectSOCKS4, // bool
|
|
|
|
ProxyIP, // QString
|
|
|
|
ProxyPort, // QString
|
|
|
|
Fee, // qint64
|
2011-07-29 14:36:35 +02:00
|
|
|
DisplayUnit, // BitcoinUnits::Unit
|
2011-07-30 17:42:02 +02:00
|
|
|
DisplayAddresses, // bool
|
2012-04-17 23:03:24 +02:00
|
|
|
DetachDatabases, // bool
|
|
|
|
OptionIDRowCount,
|
2011-05-31 22:24:53 +02:00
|
|
|
};
|
|
|
|
|
2012-02-17 03:09:41 +01:00
|
|
|
void Init();
|
|
|
|
|
|
|
|
/* Migrate settings from wallet.dat after app initialization */
|
|
|
|
bool Upgrade(); /* returns true if settings upgraded */
|
|
|
|
|
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 */
|
|
|
|
qint64 getTransactionFee();
|
2011-06-01 14:40:06 +02:00
|
|
|
bool getMinimizeToTray();
|
|
|
|
bool getMinimizeOnClose();
|
2011-07-29 14:36:35 +02:00
|
|
|
int getDisplayUnit();
|
2011-07-30 17:42:02 +02:00
|
|
|
bool getDisplayAddresses();
|
2011-06-26 19:23:24 +02:00
|
|
|
private:
|
2011-07-29 14:36:35 +02:00
|
|
|
int nDisplayUnit;
|
2011-07-30 17:42:02 +02:00
|
|
|
bool bDisplayAddresses;
|
2012-02-17 03:09:41 +01:00
|
|
|
bool fMinimizeToTray;
|
|
|
|
bool fMinimizeOnClose;
|
2011-05-31 22:24:53 +02:00
|
|
|
signals:
|
2011-07-29 14:36:35 +02:00
|
|
|
void displayUnitChanged(int unit);
|
2011-05-31 22:24:53 +02:00
|
|
|
|
|
|
|
public slots:
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // OPTIONSMODEL_H
|