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
qquickmonthmodel_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 QQUICKMONTHMODEL_P_H
5#define QQUICKMONTHMODEL_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/qdatetime.h>
20#include <QtCore/qlocale.h>
21#include <QtQml/qqml.h>
22#include <QtCore/private/qglobal_p.h>
23
25
27
29{
31 Q_PROPERTY(int month READ month WRITE setMonth NOTIFY monthChanged FINAL)
32 Q_PROPERTY(int year READ year WRITE setYear NOTIFY yearChanged FINAL)
35 Q_PROPERTY(int count READ rowCount CONSTANT FINAL)
36
37public:
39
40 int month() const;
41 void setMonth(int month);
42
43 int year() const;
44 void setYear(int year);
45
46 QLocale locale() const;
47 void setLocale(const QLocale &locale);
48
49 QString title() const;
50 void setTitle(const QString &title);
51
52 Q_INVOKABLE QDate dateAt(int index) const;
53 Q_INVOKABLE int indexOf(QDate date) const;
54
55 enum {
62 };
63
64 QHash<int, QByteArray> roleNames() const override;
65 QVariant data(const QModelIndex &index, int role) const override;
66 int rowCount(const QModelIndex &parent = QModelIndex()) const override;
67
73
74private:
75 Q_DISABLE_COPY(QQuickMonthModel)
76 Q_DECLARE_PRIVATE(QQuickMonthModel)
77};
78
80
81#endif // QQUICKMONTHMODEL_P_H
QObject * parent() const
Returns a pointer to the parent object.
Definition qobject.h:346
\inmodule QtCore \reentrant
Definition qdatetime.h:29
\inmodule QtCore
\inmodule QtCore
Definition qobject.h:103
Q_INVOKABLE QDate dateAt(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
Q_INVOKABLE int indexOf(QDate date) const
void setMonth(int month)
void setYear(int year)
void setLocale(const QLocale &locale)
void setTitle(const QString &title)
\macro QT_RESTRICTED_CAST_FROM_ASCII
Definition qstring.h:129
\inmodule QtCore
Definition qvariant.h:65
QDate date
[1]
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