1 | /**************************************************************************** |
2 | ** |
3 | ** Copyright (C) 2017 The Qt Company Ltd. |
4 | ** Contact: http://www.qt.io/licensing/ |
5 | ** |
6 | ** This file is part of the Qt Quick Templates 2 module of the Qt Toolkit. |
7 | ** |
8 | ** $QT_BEGIN_LICENSE:LGPL3$ |
9 | ** Commercial License Usage |
10 | ** Licensees holding valid commercial Qt licenses may use this file in |
11 | ** accordance with the commercial license agreement provided with the |
12 | ** Software or, alternatively, in accordance with the terms contained in |
13 | ** a written agreement between you and The Qt Company. For licensing terms |
14 | ** and conditions see http://www.qt.io/terms-conditions. For further |
15 | ** information use the contact form at http://www.qt.io/contact-us. |
16 | ** |
17 | ** GNU Lesser General Public License Usage |
18 | ** Alternatively, this file may be used under the terms of the GNU Lesser |
19 | ** General Public License version 3 as published by the Free Software |
20 | ** Foundation and appearing in the file LICENSE.LGPLv3 included in the |
21 | ** packaging of this file. Please review the following information to |
22 | ** ensure the GNU Lesser General Public License version 3 requirements |
23 | ** will be met: https://www.gnu.org/licenses/lgpl.html. |
24 | ** |
25 | ** GNU General Public License Usage |
26 | ** Alternatively, this file may be used under the terms of the GNU |
27 | ** General Public License version 2.0 or later as published by the Free |
28 | ** Software Foundation and appearing in the file LICENSE.GPL included in |
29 | ** the packaging of this file. Please review the following information to |
30 | ** ensure the GNU General Public License version 2.0 requirements will be |
31 | ** met: http://www.gnu.org/licenses/gpl-2.0.html. |
32 | ** |
33 | ** $QT_END_LICENSE$ |
34 | ** |
35 | ****************************************************************************/ |
36 | |
37 | #ifndef QQUICKDRAWER_P_H |
38 | #define QQUICKDRAWER_P_H |
39 | |
40 | // |
41 | // W A R N I N G |
42 | // ------------- |
43 | // |
44 | // This file is not part of the Qt API. It exists purely as an |
45 | // implementation detail. This header file may change from version to |
46 | // version without notice, or even be removed. |
47 | // |
48 | // We mean it. |
49 | // |
50 | |
51 | #include <QtQuickTemplates2/private/qquickpopup_p.h> |
52 | |
53 | QT_BEGIN_NAMESPACE |
54 | |
55 | class QQuickDrawerPrivate; |
56 | |
57 | class Q_QUICKTEMPLATES2_PRIVATE_EXPORT QQuickDrawer : public QQuickPopup |
58 | { |
59 | Q_OBJECT |
60 | Q_PROPERTY(Qt::Edge edge READ edge WRITE setEdge NOTIFY edgeChanged FINAL) |
61 | Q_PROPERTY(qreal position READ position WRITE setPosition NOTIFY positionChanged FINAL) |
62 | Q_PROPERTY(qreal dragMargin READ dragMargin WRITE setDragMargin RESET resetDragMargin NOTIFY dragMarginChanged FINAL) |
63 | // 2.2 (Qt 5.9) |
64 | Q_PROPERTY(bool interactive READ isInteractive WRITE setInteractive NOTIFY interactiveChanged FINAL REVISION 2) |
65 | |
66 | public: |
67 | explicit QQuickDrawer(QObject *parent = nullptr); |
68 | |
69 | Qt::Edge edge() const; |
70 | void setEdge(Qt::Edge edge); |
71 | |
72 | qreal position() const; |
73 | void setPosition(qreal position); |
74 | |
75 | qreal dragMargin() const; |
76 | void setDragMargin(qreal margin); |
77 | void resetDragMargin(); |
78 | |
79 | // 2.2 (Qt 5.9) |
80 | bool isInteractive() const; |
81 | void setInteractive(bool interactive); |
82 | |
83 | Q_SIGNALS: |
84 | void edgeChanged(); |
85 | void positionChanged(); |
86 | void dragMarginChanged(); |
87 | // 2.2 (Qt 5.9) |
88 | Q_REVISION(2) void interactiveChanged(); |
89 | |
90 | protected: |
91 | bool childMouseEventFilter(QQuickItem *child, QEvent *event) override; |
92 | void mouseMoveEvent(QMouseEvent *event) override; |
93 | bool overlayEvent(QQuickItem *item, QEvent *event) override; |
94 | #if QT_CONFIG(quicktemplates2_multitouch) |
95 | void touchEvent(QTouchEvent *event) override; |
96 | #endif |
97 | |
98 | void geometryChanged(const QRectF &newGeometry, const QRectF &oldGeometry) override; |
99 | |
100 | private: |
101 | Q_DISABLE_COPY(QQuickDrawer) |
102 | Q_DECLARE_PRIVATE(QQuickDrawer) |
103 | }; |
104 | |
105 | QT_END_NAMESPACE |
106 | |
107 | QML_DECLARE_TYPE(QQuickDrawer) |
108 | |
109 | #endif // QQUICKDRAWER_P_H |
110 | |