Qt
Internal/Contributor docs for the Qt SDK. <b>Note:</b> These are NOT official API docs; those are found <a href='https://doc.qt.io/'>here</a>.
Loading...
Searching...
No Matches
qquickbasicprogressbar_p.h
Go to the documentation of this file.
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 QQUICKDEFAULTPROGRESSBAR_P_H
5#define QQUICKDEFAULTPROGRESSBAR_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 <QtQuick/qquickitem.h>
19#include <QtGui/qcolor.h>
20#include <QtCore/private/qglobal_p.h>
21
23
25{
30 QML_NAMED_ELEMENT(ProgressBarImpl)
32
33public:
35
38
41
44
45protected:
46 void itemChange(ItemChange change, const ItemChangeData &data) override;
48
50 qreal m_progress = 0;
51 bool m_indeterminate = false;
52 QColor m_color;
53};
54
56
57#endif // QQUICKDEFAULTPROGRESSBAR_P_H
The QColor class provides colors based on RGB, HSV or CMYK values.
Definition qcolor.h:31
void setIndeterminate(bool indeterminate)
void setColor(const QColor &color)
void itemChange(ItemChange change, const ItemChangeData &data) override
Called when change occurs for this item.
QSGNode * updatePaintNode(QSGNode *oldNode, UpdatePaintNodeData *) override
Called on the render thread when it is time to sync the state of the item with the scene graph.
The QQuickItem class provides the most basic of all visual items in \l {Qt Quick}.
Definition qquickitem.h:63
qreal y const
Definition qquickitem.h:347
QQuickItem * parent
\qmlproperty Item QtQuick::Item::parent This property holds the visual parent of the item.
Definition qquickitem.h:67
ItemChange
Used in conjunction with QQuickItem::itemChange() to notify the item about certain types of changes.
Definition qquickitem.h:144
\group qtquick-scenegraph-nodes \title Qt Quick Scene Graph Node classes
Definition qsgnode.h:37
Combined button and popup list for selecting options.
GLint GLsizei GLsizei GLenum GLenum GLsizei void * data
GLuint color
[2]
#define QML_NAMED_ELEMENT(NAME)
#define QML_ADDED_IN_VERSION(MAJOR, MINOR)
#define Q_PROPERTY(...)
#define Q_OBJECT
double qreal
Definition qtypes.h:187
#define explicit
\inmodule QtQuick
Definition qquickitem.h:159