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
21QT_BEGIN_NAMESPACE
22
23class QQuickSwipeDelegate;
24
25class QQuickSwipeDelegatePrivate : public QQuickItemDelegatePrivate
26{
27 Q_DECLARE_PUBLIC(QQuickSwipeDelegate)
28
29public:
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
48QT_END_NAMESPACE
49
50#endif // QQUICKSWIPEDELEGATE_P_P_H
51

source code of qtdeclarative/src/quicktemplates/qquickswipedelegate_p_p.h