d4fd37c456414d813f2a997d5de86a4887b9f30a
[profile/ivi/qtbase.git] / src / widgets / kernel / qwidgetwindow_qpa_p.h
1 /****************************************************************************
2 **
3 ** Copyright (C) 2012 Nokia Corporation and/or its subsidiary(-ies).
4 ** Contact: http://www.qt-project.org/
5 **
6 ** This file is part of the QtGui module of the Qt Toolkit.
7 **
8 ** $QT_BEGIN_LICENSE:LGPL$
9 ** GNU Lesser General Public License Usage
10 ** This file may be used under the terms of the GNU Lesser General Public
11 ** License version 2.1 as published by the Free Software Foundation and
12 ** appearing in the file LICENSE.LGPL included in the packaging of this
13 ** file. Please review the following information to ensure the GNU Lesser
14 ** General Public License version 2.1 requirements will be met:
15 ** http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
16 **
17 ** In addition, as a special exception, Nokia gives you certain additional
18 ** rights. These rights are described in the Nokia Qt LGPL Exception
19 ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
20 **
21 ** GNU General Public License Usage
22 ** Alternatively, this file may be used under the terms of the GNU General
23 ** Public License version 3.0 as published by the Free Software Foundation
24 ** and appearing in the file LICENSE.GPL included in the packaging of this
25 ** file. Please review the following information to ensure the GNU General
26 ** Public License version 3.0 requirements will be met:
27 ** http://www.gnu.org/copyleft/gpl.html.
28 **
29 ** Other Usage
30 ** Alternatively, this file may be used in accordance with the terms and
31 ** conditions contained in a signed written agreement between you and Nokia.
32 **
33 **
34 **
35 **
36 **
37 **
38 ** $QT_END_LICENSE$
39 **
40 ****************************************************************************/
41
42 #ifndef QWIDGETWINDOW_QPA_P_H
43 #define QWIDGETWINDOW_QPA_P_H
44
45 #include <QtGui/qwindow.h>
46
47 #include <QtCore/private/qobject_p.h>
48 #include <QtGui/private/qevent_p.h>
49
50 QT_BEGIN_HEADER
51
52 QT_BEGIN_NAMESPACE
53
54
55 class QCloseEvent;
56 class QMoveEvent;
57
58 class QWidgetWindow : public QWindow
59 {
60     Q_OBJECT
61 public:
62     QWidgetWindow(QWidget *widget);
63
64     QWidget *widget() const { return m_widget; }
65 #ifndef QT_NO_ACCESSIBILITY
66     QAccessibleInterface *accessibleRoot() const;
67 #endif
68
69     QObject *focusObject() const;
70 protected:
71     bool event(QEvent *);
72
73     void handleCloseEvent(QCloseEvent *);
74     void handleEnterLeaveEvent(QEvent *);
75     void handleKeyEvent(QKeyEvent *);
76     void handleMouseEvent(QMouseEvent *);
77     void handleTouchEvent(QTouchEvent *);
78     void handleMoveEvent(QMoveEvent *);
79     void handleResizeEvent(QResizeEvent *);
80     void handleWheelEvent(QWheelEvent *);
81 #ifndef QT_NO_DRAGANDDROP
82     void handleDragEvent(QEvent *);
83 #endif
84     void handleExposeEvent(QExposeEvent *);
85     void handleWindowStateChangedEvent(QWindowStateChangeEvent *event);
86     bool nativeEvent(const QByteArray &eventType, void *message, long *result);
87 #ifndef QT_NO_TABLETEVENT
88     void handleTabletEvent(QTabletEvent *);
89 #endif
90
91 private slots:
92     void updateObjectName();
93
94 private:
95     void updateGeometry();
96
97     QWidget *m_widget;
98     QWeakPointer<QWidget> m_implicit_mouse_grabber;
99 #ifndef QT_NO_DRAGANDDROP
100     QWeakPointer<QWidget> m_dragTarget;
101 #endif
102 };
103
104 QT_END_NAMESPACE
105
106 QT_END_HEADER
107
108 #endif // QWIDGETWINDOW_QPA_P_H