1// Copyright (C) 2021 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 QQUICKUNIVERSALBUSYINDICATOR_P_H
5#define QQUICKUNIVERSALBUSYINDICATOR_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 <QtGui/qcolor.h>
19#include <QtQuick/qquickitem.h>
20#include <QtCore/private/qglobal_p.h>
21
22QT_BEGIN_NAMESPACE
23
24class QQuickUniversalBusyIndicator : public QQuickItem
25{
26 Q_OBJECT
27 Q_PROPERTY(int count READ count WRITE setCount FINAL)
28 Q_PROPERTY(QColor color READ color WRITE setColor FINAL)
29 QML_NAMED_ELEMENT(BusyIndicatorImpl)
30 QML_ADDED_IN_VERSION(2, 0)
31
32public:
33 explicit QQuickUniversalBusyIndicator(QQuickItem *parent = nullptr);
34
35 int count() const;
36 void setCount(int count);
37
38 QColor color() const;
39 void setColor(const QColor &color);
40
41 int elapsed() const;
42
43protected:
44 void itemChange(ItemChange change, const ItemChangeData &data) override;
45 QSGNode *updatePaintNode(QSGNode *oldNode, UpdatePaintNodeData *) override;
46
47private:
48 int m_count = 5;
49 int m_elapsed = 0;
50 QColor m_color = Qt::black;
51};
52
53QT_END_NAMESPACE
54
55QML_DECLARE_TYPE(QQuickUniversalBusyIndicator)
56
57#endif // QQUICKUNIVERSALBUSYINDICATOR_P_H
58

source code of qtdeclarative/src/quickcontrols/universal/impl/qquickuniversalbusyindicator_p.h