aboutsummaryrefslogtreecommitdiffstats
path: root/src/quickcontrols2/ios/qquickiosstyle_p.h
blob: 2134440377a9c1898c57f14e8853610c5094c9b0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
// Copyright (C) 2022 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 QQUICKIOSSTYLE_P_H
#define QQUICKIOSSTYLE_P_H

//
//  W A R N I N G
//  -------------
//
// This file is not part of the Qt API.  It exists purely as an
// implementation detail.  This header file may change from version to
// version without notice, or even be removed.
//
// We mean it.
//

#include <QtCore/qvariant.h>
#include <QtQml/qqml.h>
#include <QtQuickControls2Impl/private/qquickattachedobject_p.h>

QT_BEGIN_NAMESPACE

class QQuickIOSStyle : public QQuickAttachedObject
{
    Q_OBJECT
    Q_PROPERTY(QUrl url READ url CONSTANT)
    Q_PROPERTY(Theme theme READ theme WRITE setTheme NOTIFY themeChanged FINAL)
    QML_NAMED_ELEMENT(IOS)
    QML_ATTACHED(QQuickIOSStyle)
    QML_UNCREATABLE("")
    QML_ADDED_IN_VERSION(2, 3)

public:
    enum Theme {
        Light,
        Dark
    };
    Q_ENUM(Theme)

    explicit QQuickIOSStyle(QObject *parent = nullptr);

    static QQuickIOSStyle *qmlAttachedProperties(QObject *object);

    Theme theme() const;
    void setTheme(Theme theme);

    QUrl url() const;

Q_SIGNALS:
    void themeChanged();

private:
    void init();

    Theme m_theme = Light;
};

QT_END_NAMESPACE

QML_DECLARE_TYPEINFO(QQuickIOSStyle, QML_HAS_ATTACHED_PROPERTIES)

#endif // QQUICKIOSSTYLE_P_H