Qt
Internal/Contributor docs for the Qt SDK. Note: These are NOT official API docs; those are found at https://doc.qt.io/
Loading...
Searching...
No Matches
qquickdayofweekmodel_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// Qt-Security score:significant reason:default
4
5#ifndef QQUICKDAYOFWEEKMODEL_P_H
6#define QQUICKDAYOFWEEKMODEL_P_H
7
8//
9// W A R N I N G
10// -------------
11//
12// This file is not part of the Qt API. It exists purely as an
13// implementation detail. This header file may change from version to
14// version without notice, or even be removed.
15//
16// We mean it.
17//
18
19#include <QtCore/qabstractitemmodel.h>
20#include <QtCore/qlocale.h>
21#include <QtQml/qqml.h>
22#include <QtCore/private/qglobal_p.h>
23
24QT_BEGIN_NAMESPACE
25
26class QQuickDayOfWeekModelPrivate;
27
29{
30 Q_OBJECT
31 Q_PROPERTY(QLocale locale READ locale WRITE setLocale NOTIFY localeChanged FINAL)
33
34public:
35 explicit QQuickDayOfWeekModel(QObject *parent = nullptr);
36
37 QLocale locale() const;
38 void setLocale(const QLocale &locale);
39
40 Q_INVOKABLE int dayAt(int index) const;
41
42 enum {
43 DayRole = Qt::UserRole + 1,
47 };
48
49 QHash<int, QByteArray> roleNames() const override;
50 QVariant data(const QModelIndex &index, int role) const override;
51 int rowCount(const QModelIndex &parent = QModelIndex()) const override;
52
55
56private:
59};
60
61QT_END_NAMESPACE
62
63#endif // QQUICKDAYOFWEEKMODEL_P_H
Q_INVOKABLE int dayAt(int index) const
int rowCount(const QModelIndex &parent=QModelIndex()) const override
Returns the number of rows under the given parent.
QHash< int, QByteArray > roleNames() const override
void setLocale(const QLocale &locale)
QVariant data(const QModelIndex &index, int role) const override
Returns the data stored under the given role for the item referred to by the index.