Somewhat confident now, tested on GNOME+KDE, with all types of transactions. Next...
[novacoin.git] / gui / include / optionsmodel.h
index 3e0bcc1..0124e2a 100644 (file)
@@ -3,7 +3,12 @@
 
 #include <QAbstractListModel>
 
-/* Configuration data structure for bitcoin client */
+/* Interface from QT to configuration data structure for bitcoin client.
+   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.
+ */
 class OptionsModel : public QAbstractListModel
 {
     Q_OBJECT
@@ -28,6 +33,8 @@ public:
 
     /* Explicit getters */
     qint64 getTransactionFee();
+    bool getMinimizeToTray();
+    bool getMinimizeOnClose();
 signals:
 
 public slots: