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
qquickstyleitemslider.h
Go to the documentation of this file.
1// Copyright (C) 2020 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 QQUICKSTYLEITEMSLIDER_H
5#define QQUICKSTYLEITEMSLIDER_H
6
7#include "qquickstyleitem.h"
8#include <QtQuickTemplates2/private/qquickslider_p.h>
9
11
13{
15
16 Q_PROPERTY(SubControl subControl MEMBER m_subControl)
17
18 QML_NAMED_ELEMENT(Slider)
19
20public:
22 Groove = 1,
24 };
26
27 QFont styleFont(QQuickItem *control) const override;
28
29protected:
30 void connectToControl() const override;
31 void paintEvent(QPainter *painter) const override;
33
34private:
35 void initStyleOption(QStyleOptionSlider &styleOption) const;
36
37private:
38 SubControl m_subControl = Groove;
39};
40
42
43#endif // QQUICKSTYLEITEMSLIDER_H
\reentrant
Definition qfont.h:22
The QPainter class performs low-level painting on widgets and other paint devices.
Definition qpainter.h:46
The QQuickItem class provides the most basic of all visual items in \l {Qt Quick}.
Definition qquickitem.h:63
void connectToControl() const override
StyleItemGeometry calculateGeometry() override
void paintEvent(QPainter *painter) const override
QFont styleFont(QQuickItem *control) const override
QQuickItem * control
Combined button and popup list for selecting options.
#define QML_NAMED_ELEMENT(NAME)
#define Q_ENUM(x)
#define Q_PROPERTY(...)
#define Q_OBJECT
QPainter painter(this)
[7]