// qcalendar.sip generated by MetaSIP
//
// This file is part of the QtCore Python extension module.
//
// Copyright (c) 2024 Riverbank Computing Limited <info@riverbankcomputing.com>
// 
// This file is part of PyQt6.
// 
// This file may be used under the terms of the GNU General Public License
// version 3.0 as published by the Free Software Foundation and appearing in
// the file LICENSE included in the packaging of this file.  Please review the
// following information to ensure the GNU General Public License version 3.0
// requirements will be met: http://www.gnu.org/copyleft/gpl.html.
// 
// If you do not wish to use this file under the terms of the GPL version 3.0
// then you may purchase a commercial license.  For more information contact
// info@riverbankcomputing.com.
// 
// This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
// WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.


class QCalendar
{
%TypeHeaderCode
#include <qcalendar.h>
%End

public:
    enum
    {
        Unspecified,
    };

    struct YearMonthDay
    {
%TypeHeaderCode
#include <qcalendar.h>
%End

        YearMonthDay();
        YearMonthDay(int year, int month = 1, int day = 1);
        bool isValid() const;
        int year;
        int month;
        int day;
    };

    enum class System
    {
        Gregorian,
        Julian,
        Milankovic,
        Jalali,
        IslamicCivil,
    };

    QCalendar();
    explicit QCalendar(QCalendar::System system);
%If (Qt_6_4_0 -)
    explicit QCalendar(QAnyStringView name);
%End
%If (- Qt_6_4_0)
    explicit QCalendar(const char *name /Encoding="Latin-1"/) [(QLatin1String name)];
%MethodCode
        // This is currently the only occurence of a QLatin1String argument.
        sipCpp = new QCalendar(QLatin1String(a0));
%End

%End
    int daysInMonth(int month, int year = QCalendar::Unspecified) const;
    int daysInYear(int year) const;
    int monthsInYear(int year) const;
    bool isDateValid(int year, int month, int day) const;
    bool isLeapYear(int year) const;
    bool isGregorian() const;
    bool isLunar() const;
    bool isLuniSolar() const;
    bool isSolar() const;
    bool isProleptic() const;
    bool hasYearZero() const;
    int maximumDaysInMonth() const;
    int minimumDaysInMonth() const;
    int maximumMonthsInYear() const;
    QString name() const;
    QDate dateFromParts(int year, int month, int day) const;
    QDate dateFromParts(const QCalendar::YearMonthDay &parts) const;
    QCalendar::YearMonthDay partsFromDate(QDate date) const;
    int dayOfWeek(QDate date) const;
    QString monthName(const QLocale &locale, int month, int year = QCalendar::Unspecified, QLocale::FormatType format = QLocale::LongFormat) const;
    QString standaloneMonthName(const QLocale &locale, int month, int year = QCalendar::Unspecified, QLocale::FormatType format = QLocale::LongFormat) const;
    QString weekDayName(const QLocale &locale, int day, QLocale::FormatType format = QLocale::LongFormat) const;
    QString standaloneWeekDayName(const QLocale &locale, int day, QLocale::FormatType format = QLocale::LongFormat) const;
    QString dateTimeToString(QStringView format, const QDateTime &datetime, QDate dateOnly, QTime timeOnly, const QLocale &locale) const;
    static QStringList availableCalendars();
%If (Qt_6_7_0 -)
    QDate matchCenturyToWeekday(const QCalendar::YearMonthDay &parts, int dow) const;
%End
};
