aboutsummaryrefslogtreecommitdiff
path: root/src/qt/qtwin.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/qt/qtwin.h')
-rw-r--r--src/qt/qtwin.h37
1 files changed, 0 insertions, 37 deletions
diff --git a/src/qt/qtwin.h b/src/qt/qtwin.h
deleted file mode 100644
index 4008c7fa28..0000000000
--- a/src/qt/qtwin.h
+++ /dev/null
@@ -1,37 +0,0 @@
-/****************************************************************************
-**
-** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies).
-**
-** Use, modification and distribution is allowed without limitation,
-** warranty, liability or support of any kind.
-**
-****************************************************************************/
-
-#ifndef QTWIN_H
-#define QTWIN_H
-
-#include <QColor>
-#include <QWidget>
-/**
- * This is a helper class for using the Desktop Window Manager
- * functionality on Windows 7 and Windows Vista. On other platforms
- * these functions will simply not do anything.
- */
-
-class WindowNotifier;
-
-class QtWin
-{
-public:
- static bool enableBlurBehindWindow(QWidget *widget, bool enable = true);
- static bool extendFrameIntoClientArea(QWidget *widget,
- int left = -1, int top = -1,
- int right = -1, int bottom = -1);
- static bool isCompositionEnabled();
- static QColor colorizatinColor();
-
-private:
- static WindowNotifier *windowNotifier();
-};
-
-#endif // QTWIN_H