Fix Minimize to the tray instead of the taskbar
[novacoin.git] / src / qt / optionsmodel.h
index bdb797a..7f489c5 100644 (file)
@@ -18,14 +18,16 @@ public:
     explicit OptionsModel(CWallet *wallet, QObject *parent = 0);
 
     enum OptionID {
-        StartAtStartup,
-        MinimizeToTray,
-        MapPortUPnP,
-        MinimizeOnClose,
-        ConnectSOCKS4,
-        ProxyIP,
-        ProxyPort,
-        Fee,
+        StartAtStartup, // bool
+        MinimizeToTray, // bool
+        MapPortUPnP, // bool
+        MinimizeOnClose, // bool
+        ConnectSOCKS4, // bool
+        ProxyIP, // QString
+        ProxyPort, // QString
+        Fee, // qint64
+        DisplayUnit, // BitcoinUnits::Unit
+        DisplayAddresses, // bool
         OptionIDRowCount
     };
 
@@ -37,10 +39,15 @@ public:
     qint64 getTransactionFee();
     bool getMinimizeToTray();
     bool getMinimizeOnClose();
+    int getDisplayUnit();
+    bool getDisplayAddresses();
 private:
     // Wallet stores persistent options
     CWallet *wallet;
+    int nDisplayUnit;
+    bool bDisplayAddresses;
 signals:
+    void displayUnitChanged(int unit);
 
 public slots: