show rotating spinner when block download out of date, tick otherwise
[novacoin.git] / src / qt / bitcoin.cpp
index 78a20c5..63d1d70 100644 (file)
@@ -4,6 +4,7 @@
 #include "bitcoingui.h"
 #include "clientmodel.h"
 #include "walletmodel.h"
+#include "qtwin.h"
 
 #include "headers.h"
 #include "init.h"
@@ -119,10 +120,29 @@ int main(int argc, char *argv[])
                 BitcoinGUI window;
                 ClientModel clientModel(pwalletMain);
                 WalletModel walletModel(pwalletMain);
+
                 guiref = &window;
                 window.setClientModel(&clientModel);
                 window.setWalletModel(&walletModel);
 
+                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);
+                }
+
                 window.show();
 
                 app.exec();