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
qquickweeknumbermodel_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 QQUICKWEEKNUMBERMODEL_P_H
5#define QQUICKWEEKNUMBERMODEL_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 <QtCore/qabstractitemmodel.h>
19#include <QtCore/qlocale.h>
20#include <QtQml/qqml.h>
21#include <QtCore/private/qglobal_p.h>
22
24
26
28{
30 Q_PROPERTY(int month READ month WRITE setMonth NOTIFY monthChanged FINAL)
31 Q_PROPERTY(int year READ year WRITE setYear NOTIFY yearChanged FINAL)
33 Q_PROPERTY(int count READ rowCount CONSTANT FINAL)
34
35public:
37
38 int month() const;
39 void setMonth(int month);
40
41 int year() const;
42 void setYear(int year);
43
44 QLocale locale() const;
45 void setLocale(const QLocale &locale);
46
47 Q_INVOKABLE int weekNumberAt(int index) const;
48 Q_INVOKABLE int indexOf(int weekNumber) const;
49
50 enum {
52 };
53
54 QHash<int, QByteArray> roleNames() const override;
55 QVariant data(const QModelIndex &index, int role) const override;
56 int rowCount(const QModelIndex &parent = QModelIndex()) const override;
57
62
63private:
64 Q_DISABLE_COPY(QQuickWeekNumberModel)
65 Q_DECLARE_PRIVATE(QQuickWeekNumberModel)
66};
67
69
70#endif // QQUICKWEEKNUMBERMODEL_P_H
QObject * parent() const
Returns a pointer to the parent object.
Definition qobject.h:346
\inmodule QtCore
\inmodule QtCore
Definition qobject.h:103
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)
Q_INVOKABLE int indexOf(int weekNumber) const
Q_INVOKABLE int weekNumberAt(int index) const
\inmodule QtCore
Definition qvariant.h:65
Combined button and popup list for selecting options.
@ UserRole
GLuint index
[2]
GLenum GLenum GLsizei count
GLint GLsizei GLsizei GLenum GLenum GLsizei void * data
#define Q_PROPERTY(...)
#define Q_OBJECT
#define Q_INVOKABLE
#define Q_SIGNALS
#define explicit