fix includes
[presencevnc] / src / fullscreenexitbutton.h
1 /****************************************************************************
2 **
3 ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies).
4 ** All rights reserved.
5 ** Contact: Nokia Corporation (qt-info@nokia.com)
6 **
7 ** This file is part of the examples of the Qt Toolkit.
8 **
9 ** $QT_BEGIN_LICENSE:LGPL$
10 ** No Commercial Usage
11 ** This file contains pre-release code and may not be distributed.
12 ** You may use this file in accordance with the terms and conditions
13 ** contained in the Technology Preview License Agreement accompanying
14 ** this package.
15 **
16 ** GNU Lesser General Public License Usage
17 ** Alternatively, this file may be used under the terms of the GNU Lesser
18 ** General Public License version 2.1 as published by the Free Software
19 ** Foundation and appearing in the file LICENSE.LGPL included in the
20 ** packaging of this file.  Please review the following information to
21 ** ensure the GNU Lesser General Public License version 2.1 requirements
22 ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
23 **
24 ** In addition, as a special exception, Nokia gives you certain additional
25 ** rights.  These rights are described in the Nokia Qt LGPL Exception
26 ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
27 **
28 ** If you have questions regarding the use of this file, please contact
29 ** Nokia at qt-info@nokia.com.
30
31 ** $QT_END_LICENSE$
32 **
33 ****************************************************************************/
34
35 #ifndef FULLSCREENEXITBUTTON_H
36 #define FULLSCREENEXITBUTTON_H
37
38 #include <QToolButton>
39 #include <QEvent>
40 #include <QTimer>
41
42 class FullScreenExitButton : public QToolButton
43 {
44     Q_OBJECT
45 public:
46     inline explicit FullScreenExitButton(QWidget *parent);
47
48 public slots:
49     inline void reenable();
50 protected:
51     inline bool eventFilter(QObject *obj, QEvent *ev);
52
53 private:
54     QTimer hide_timer;
55 };
56
57 FullScreenExitButton::FullScreenExitButton(QWidget *parent)
58     : QToolButton(parent)
59 {
60     Q_ASSERT(parent);
61
62 #ifdef Q_WS_MAEMO_5
63     // set the fullsize icon from Maemo's theme
64     setIcon(QIcon("/usr/share/icons/hicolor/48x48/hildon/general_fullsize.png"));
65 #else
66     setText(tr("Toggle Fullscreen"));
67 #endif
68
69     // ensure that our size is fixed to our ideal size
70     setFixedSize(sizeHint());
71
72     // set the background to 0.5 alpha
73     QPalette pal = palette();
74     QColor backgroundColor = pal.color(backgroundRole());
75     backgroundColor.setAlpha(128);
76     pal.setColor(backgroundRole(), backgroundColor);
77     setPalette(pal);
78
79     // ensure that we're painting our background
80     setAutoFillBackground(true);
81
82     // hide after 4s of inactivity
83     connect(&hide_timer, SIGNAL(timeout()), this, SLOT(hide()));
84     hide_timer.setInterval(4000);
85     hide_timer.setSingleShot(true);
86
87     // install an event filter to listen for the parent's events
88     parent->installEventFilter(this);
89
90     setVisible(false); //assuming we don't start in fullscreen
91 }
92
93 bool FullScreenExitButton::eventFilter(QObject *obj, QEvent *ev)
94 {
95     if(!isEnabled())
96         return QToolButton::eventFilter(obj, ev);
97     if (obj != parent())
98         return QToolButton::eventFilter(obj, ev);
99
100     const QWidget *parent = parentWidget();
101     const bool isFullScreen = parent->windowState() & Qt::WindowFullScreen;
102
103     switch (ev->type()) {
104     case QEvent::MouseButtonPress:
105     case QEvent::MouseButtonRelease:
106     case QEvent::MouseMove:
107     case QEvent::HoverMove:
108         //fall through to show button
109     case QEvent::WindowStateChange:
110         setVisible(isFullScreen);
111         if (isFullScreen)
112             raise();
113         hide_timer.start();
114         break;
115         // fall through
116     case QEvent::Resize:
117         if (isVisible()) {
118             move(parent->width() - width(), parent->height() - height());
119             hide_timer.start();
120         }
121         break;
122     default:
123         break;
124     }
125
126     return QToolButton::eventFilter(obj, ev);
127 }
128
129 void FullScreenExitButton::reenable()
130 {
131     setEnabled(true);
132
133     const QWidget *parent = parentWidget();
134     const bool isFullScreen = parent->windowState() & Qt::WindowFullScreen;
135     setVisible(isFullScreen);
136     if (isFullScreen)
137         raise();
138     hide_timer.start();
139 }
140
141 #endif