aboutsummaryrefslogtreecommitdiffstats
path: root/src/quicknativestyle/items/qquickstyleitemscrollviewcorner.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/quicknativestyle/items/qquickstyleitemscrollviewcorner.h')
-rw-r--r--src/quicknativestyle/items/qquickstyleitemscrollviewcorner.h23
1 files changed, 23 insertions, 0 deletions
diff --git a/src/quicknativestyle/items/qquickstyleitemscrollviewcorner.h b/src/quicknativestyle/items/qquickstyleitemscrollviewcorner.h
new file mode 100644
index 0000000000..b6a8d14c53
--- /dev/null
+++ b/src/quicknativestyle/items/qquickstyleitemscrollviewcorner.h
@@ -0,0 +1,23 @@
+// Copyright (C) 2020 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 QQUICKSTYLEITEMSCROLLVIEWCORNER_H
+#define QQUICKSTYLEITEMSCROLLVIEWCORNER_H
+
+#include "qquickstyleitem.h"
+#include <QtQuickTemplates2/private/qquickscrollbar_p.h>
+
+class QQuickStyleItemScrollViewCorner : public QQuickStyleItem
+{
+ Q_OBJECT
+ QML_NAMED_ELEMENT(ScrollViewCorner)
+
+protected:
+ void paintEvent(QPainter *painter) const override;
+ StyleItemGeometry calculateGeometry() override;
+
+private:
+ void initStyleOption(QStyleOptionSlider &styleOption) const;
+};
+
+#endif // QQUICKSTYLEITEMSCROLLVIEWCORNER_H