aboutsummaryrefslogtreecommitdiffstats
path: root/src/quicknativestyle/items/qquickstyleitemtreeindicator.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/quicknativestyle/items/qquickstyleitemtreeindicator.h')
-rw-r--r--src/quicknativestyle/items/qquickstyleitemtreeindicator.h28
1 files changed, 28 insertions, 0 deletions
diff --git a/src/quicknativestyle/items/qquickstyleitemtreeindicator.h b/src/quicknativestyle/items/qquickstyleitemtreeindicator.h
new file mode 100644
index 0000000000..6e8d3b0d82
--- /dev/null
+++ b/src/quicknativestyle/items/qquickstyleitemtreeindicator.h
@@ -0,0 +1,28 @@
+// Copyright (C) 2021 The Qt Company Ltd.
+// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
+
+#ifndef QQUICKSTYLEITEMTREEINDICATOR_H
+#define QQUICKSTYLEITEMTREEINDICATOR_H
+
+#include "qquickstyleitem.h"
+#include <QtQuickTemplates2/private/qquicktreeviewdelegate_p.h>
+
+QT_BEGIN_NAMESPACE
+
+class QQuickStyleItemTreeIndicator : public QQuickStyleItem
+{
+ Q_OBJECT
+ QML_NAMED_ELEMENT(TreeIndicator)
+
+protected:
+ void connectToControl() const override;
+ void paintEvent(QPainter *painter) const override;
+ StyleItemGeometry calculateGeometry() override;
+
+private:
+ void initStyleOption(QStyleOptionViewItem &styleOption) const;
+};
+
+QT_END_NAMESPACE
+
+#endif // QQUICKSTYLEITEMTREEINDICATOR_H