Fix game:addSpawnShapesByZone
[ryzomcore.git] / studio / src / plugins / core / qtwin.h
blob5692a34fb2078915489681e260c70c51d088e513
1 /****************************************************************************
2 **
3 ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies).
4 **
5 ** Use, modification and distribution is allowed without limitation,
6 ** warranty, liability or support of any kind.
7 **
8 ****************************************************************************/
10 #ifndef QTWIN_H
11 #define QTWIN_H
13 #include <QColor>
14 #include <QWidget>
15 /**
16 * This is a helper class for using the Desktop Window Manager
17 * functionality on Windows 7 and Windows Vista. On other platforms
18 * these functions will simply not do anything.
21 class WindowNotifier;
23 class QtWin
25 public:
26 static bool enableBlurBehindWindow(QWidget *widget, bool enable = true);
27 static bool extendFrameIntoClientArea(QWidget *widget,
28 int left = -1, int top = -1,
29 int right = -1, int bottom = -1);
30 static bool isCompositionEnabled();
31 static QColor colorizatinColor();
33 private:
34 static WindowNotifier *windowNotifier();
37 #endif // QTWIN_H