aboutsummaryrefslogtreecommitdiffstats
path: root/src/quicknativestyle/items/qquickstyleitemprogressbar.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/quicknativestyle/items/qquickstyleitemprogressbar.h')
-rw-r--r--src/quicknativestyle/items/qquickstyleitemprogressbar.h32
1 files changed, 32 insertions, 0 deletions
diff --git a/src/quicknativestyle/items/qquickstyleitemprogressbar.h b/src/quicknativestyle/items/qquickstyleitemprogressbar.h
new file mode 100644
index 0000000000..75031137df
--- /dev/null
+++ b/src/quicknativestyle/items/qquickstyleitemprogressbar.h
@@ -0,0 +1,32 @@
+// 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 QQUICKSTYLEITEMPROGRESSBAR_H
+#define QQUICKSTYLEITEMPROGRESSBAR_H
+
+#include "qquickstyleitem.h"
+#include <QtQuickTemplates2/private/qquickprogressbar_p.h>
+
+QT_BEGIN_NAMESPACE
+
+class QQuickStyleItemProgressBar : public QQuickStyleItem
+{
+ Q_OBJECT
+
+ QML_NAMED_ELEMENT(ProgressBar)
+
+public:
+ QFont styleFont(QQuickItem *control) const override;
+
+protected:
+ void connectToControl() const override;
+ void paintEvent(QPainter *painter) const override;
+ StyleItemGeometry calculateGeometry() override;
+
+private:
+ void initStyleOption(QStyleOptionProgressBar &styleOption) const;
+};
+
+QT_END_NAMESPACE
+
+#endif // QQUICKSTYLEITEMPROGRESSBAR_H