Pull request #21: windows fixes/cleanup by Matoking

This commit is contained in:
Janne Pulkkinen
2011-09-03 20:05:54 +03:00
committed by Wladimir J. van der Laan
parent cf9195c808
commit 94723e27ad
3 changed files with 53 additions and 21 deletions

View File

@@ -5,7 +5,6 @@
#include "clientmodel.h"
#include "walletmodel.h"
#include "optionsmodel.h"
#include "qtwin.h"
#include "headers.h"
#include "init.h"
@@ -150,24 +149,6 @@ int main(int argc, char *argv[])
window.setClientModel(&clientModel);
window.setWalletModel(&walletModel);
if (QtWin::isCompositionEnabled())
{
#ifdef Q_OS_WIN
// 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();