Full support for other units, add configuration option for default unit (used when...
[novacoin.git] / src / qt / bitcoin.cpp
index bcc73de..bc652d3 100644 (file)
@@ -4,6 +4,7 @@
 #include "bitcoingui.h"
 #include "clientmodel.h"
 #include "walletmodel.h"
+#include "optionsmodel.h"
 #include "qtwin.h"
 
 #include "headers.h"
@@ -118,27 +119,28 @@ int main(int argc, char *argv[])
                 // Put this in a block, so that BitcoinGUI is cleaned up properly before
                 // calling shutdown.
                 BitcoinGUI window;
-                ClientModel clientModel(pwalletMain);
-                WalletModel walletModel(pwalletMain);
+                OptionsModel optionsModel(pwalletMain);
+                ClientModel clientModel(&optionsModel);
+                WalletModel walletModel(pwalletMain, &optionsModel);
 
                 guiref = &window;
                 window.setClientModel(&clientModel);
                 window.setWalletModel(&walletModel);
 
-#ifdef Q_WS_WIN32
-                // Windows-specific customization
-                window.setAttribute(Qt::WA_TranslucentBackground);
-                window.setAttribute(Qt::WA_NoSystemBackground, false);
-                QPalette pal = window.palette();
-                QColor bg = pal.window().color();
-                bg.setAlpha(0);
-                pal.setColor(QPalette::Window, bg);
-                window.setPalette(pal);
-                window.ensurePolished();
-                window.setAttribute(Qt::WA_StyledBackground, false);
-#endif
                 if (QtWin::isCompositionEnabled())
                 {
+#ifdef Q_WS_WIN32
+                    // Windows-specific customization
+                    window.setAttribute(Qt::WA_TranslucentBackground);
+                    window.setAttribute(Qt::WA_NoSystemBackground, false);
+                    QPalette pal = window.palette();
+                    QColor bg = pal.window().color();
+                    bg.setAlpha(0);
+                    pal.setColor(QPalette::Window, bg);
+                    window.setPalette(pal);
+                    window.ensurePolished();
+                    window.setAttribute(Qt::WA_StyledBackground, false);
+#endif
                     QtWin::extendFrameIntoClientArea(&window);
                     window.setContentsMargins(0, 0, 0, 0);
                 }