1 | // Copyright (C) 2017 The Qt Company Ltd. |
2 | // SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only |
3 | |
4 | #ifndef QQUICKSWIPEDELEGATE_P_P_H |
5 | #define QQUICKSWIPEDELEGATE_P_P_H |
6 | |
7 | // |
8 | // W A R N I N G |
9 | // ------------- |
10 | // |
11 | // This file is not part of the Qt API. It exists purely as an |
12 | // implementation detail. This header file may change from version to |
13 | // version without notice, or even be removed. |
14 | // |
15 | // We mean it. |
16 | // |
17 | |
18 | #include <QtQuickTemplates2/private/qquickitemdelegate_p_p.h> |
19 | #include <QtQuickTemplates2/private/qquickswipe_p.h> |
20 | |
21 | QT_BEGIN_NAMESPACE |
22 | |
23 | class QQuickSwipeDelegate; |
24 | |
25 | class QQuickSwipeDelegatePrivate : public QQuickItemDelegatePrivate |
26 | { |
27 | Q_DECLARE_PUBLIC(QQuickSwipeDelegate) |
28 | |
29 | public: |
30 | QQuickSwipeDelegatePrivate(QQuickSwipeDelegate *control); |
31 | |
32 | bool handleMousePressEvent(QQuickItem *item, QMouseEvent *event); |
33 | bool handleMouseMoveEvent(QQuickItem *item, QMouseEvent *event); |
34 | bool handleMouseReleaseEvent(QQuickItem *item, QMouseEvent *event); |
35 | void forwardMouseEvent(QMouseEvent *event, QQuickItem *destination, QPointF localPos); |
36 | bool attachedObjectsSetPressed(QQuickItem *item, QPointF scenePos, bool pressed, bool cancel = false); |
37 | QQuickItem *getPressedItem(QQuickItem *childItem, QMouseEvent *event) const; |
38 | |
39 | void resizeContent() override; |
40 | void resizeBackground() override; |
41 | |
42 | QPalette defaultPalette() const override; |
43 | |
44 | QQuickSwipe swipe; |
45 | QQuickItem *pressedItem = nullptr; |
46 | }; |
47 | |
48 | QT_END_NAMESPACE |
49 | |
50 | #endif // QQUICKSWIPEDELEGATE_P_P_H |
51 | |