Notation used in Ruby API documentation
Module: QtCore
Description: Binding of QDate
Sub-classes: MonthNameType, QFlags_MonthNameType
new QDate | new | Constructor QDate::QDate() | |
new QDate | new | (int y, int m, int d) | Constructor QDate::QDate(int y, int m, int d) |
[const] | bool | != | (const QDate other) | Method bool QDate::operator!=(const QDate &other) |
[const] | bool | < | (const QDate other) | Method bool QDate::operator<(const QDate &other) |
[const] | bool | <= | (const QDate other) | Method bool QDate::operator<=(const QDate &other) |
[const] | bool | == | (const QDate other) | Method bool QDate::operator==(const QDate &other) |
[const] | bool | > | (const QDate other) | Method bool QDate::operator>(const QDate &other) |
[const] | bool | >= | (const QDate other) | Method bool QDate::operator>=(const QDate &other) |
[const] | QDate ptr | _const_cast | Returns a non-const reference to self. | |
void | _create | Ensures the C++ object is created | ||
void | _destroy | Explicitly destroys the object | ||
[const] | bool | _destroyed? | Returns a value indicating whether the object was already destroyed | |
[const] | bool | _is_const_object? | Returns a value indicating whether the reference is a const reference | |
void | _manage | Marks the object as managed by the script side. | ||
void | _unmanage | Marks the object as no longer owned by the script side. | ||
[const] | QDate | addDays | (long long days) | Method QDate QDate::addDays(qint64 days) |
[const] | QDate | addMonths | (int months) | Method QDate QDate::addMonths(int months) |
[const] | QDate | addYears | (int years) | Method QDate QDate::addYears(int years) |
void | assign | (const QDate other) | Assigns another object to self | |
[const] | int | day | Method int QDate::day() | |
[const] | int | dayOfWeek | Method int QDate::dayOfWeek() | |
[const] | int | dayOfYear | Method int QDate::dayOfYear() | |
[const] | int | daysInMonth | Method int QDate::daysInMonth() | |
[const] | int | daysInYear | Method int QDate::daysInYear() | |
[const] | long long | daysTo | (const QDate arg1) | Method qint64 QDate::daysTo(const QDate &) |
[const] | new QDate ptr | dup | Creates a copy of self | |
void | getDate | (int ptr year, int ptr month, int ptr day) | Method void QDate::getDate(int *year, int *month, int *day) | |
[const] | void | getDate | (int ptr year, int ptr month, int ptr day) | Method void QDate::getDate(int *year, int *month, int *day) |
[const] | bool | isNull? | Method bool QDate::isNull() | |
[const] | bool | isValid? | Method bool QDate::isValid() | |
[const] | int | month | Method int QDate::month() | |
bool | setDate | (int year, int month, int day) | Method bool QDate::setDate(int year, int month, int day) | |
[const] | long long | toJulianDay | Method qint64 QDate::toJulianDay() | |
[const] | string | toString | (const Qt_DateFormat f = Qt::TextDate) | Method QString QDate::toString(Qt::DateFormat f) |
[const] | string | toString | (string format) | Method QString QDate::toString(const QString &format) |
[const] | int | weekNumber | (int ptr yearNum = nullptr) | Method int QDate::weekNumber(int *yearNum) |
[const] | int | year | Method int QDate::year() |
[static,const] | QDate_MonthNameType | DateFormat | Enum constant QDate::DateFormat | |
[static,const] | QDate_MonthNameType | StandaloneFormat | Enum constant QDate::StandaloneFormat | |
QDate | currentDate | Static method QDate QDate::currentDate() | ||
QDate | fromJulianDay | (long long jd_) | Static method QDate QDate::fromJulianDay(qint64 jd_) | |
QDate | fromString | (string s, const Qt_DateFormat f = Qt::TextDate) | Static method QDate QDate::fromString(const QString &s, Qt::DateFormat f) | |
QDate | fromString | (string s, string format) | Static method QDate QDate::fromString(const QString &s, const QString &format) | |
bool | isLeapYear? | (int year) | Static method bool QDate::isLeapYear(int year) | |
bool | isValid? | (int y, int m, int d) | Static method bool QDate::isValid(int y, int m, int d) | |
string | longDayName | (int weekday, const QDate_MonthNameType type = QDate::DateFormat) | Static method QString QDate::longDayName(int weekday, QDate::MonthNameType type) | |
string | longMonthName | (int month, const QDate_MonthNameType type = QDate::DateFormat) | Static method QString QDate::longMonthName(int month, QDate::MonthNameType type) | |
string | shortDayName | (int weekday, const QDate_MonthNameType type = QDate::DateFormat) | Static method QString QDate::shortDayName(int weekday, QDate::MonthNameType type) | |
string | shortMonthName | (int month, const QDate_MonthNameType type = QDate::DateFormat) | Static method QString QDate::shortMonthName(int month, QDate::MonthNameType type) |
void | create | Use of this method is deprecated. Use _create instead | ||
void | destroy | Use of this method is deprecated. Use _destroy instead | ||
[const] | bool | destroyed? | Use of this method is deprecated. Use _destroyed? instead | |
[const] | bool | is_const_object? | Use of this method is deprecated. Use _is_const_object? instead |
!= | Signature: [const] bool != (const QDate other) Description: Method bool QDate::operator!=(const QDate &other) |
< | Signature: [const] bool < (const QDate other) Description: Method bool QDate::operator<(const QDate &other) |
<= | Signature: [const] bool <= (const QDate other) Description: Method bool QDate::operator<=(const QDate &other) |
== | Signature: [const] bool == (const QDate other) Description: Method bool QDate::operator==(const QDate &other) |
> | Signature: [const] bool > (const QDate other) Description: Method bool QDate::operator>(const QDate &other) |
>= | Signature: [const] bool >= (const QDate other) Description: Method bool QDate::operator>=(const QDate &other) |
DateFormat | Signature: [static,const] QDate_MonthNameType DateFormat Description: Enum constant QDate::DateFormat Python specific notes: |
StandaloneFormat | Signature: [static,const] QDate_MonthNameType StandaloneFormat Description: Enum constant QDate::StandaloneFormat Python specific notes: |
_const_cast | Signature: [const] QDate ptr _const_cast Description: Returns a non-const reference to self. Basically, this method allows turning a const object reference to a non-const one. This method is provided as last resort to remove the constness from an object. Usually there is a good reason for a const object reference, so using this method may have undesired side effects. This method has been introduced in version 0.29.6. |
_create | Signature: void _create Description: Ensures the C++ object is created Use this method to ensure the C++ object is created, for example to ensure that resources are allocated. Usually C++ objects are created on demand and not necessarily when the script object is created. |
_destroy | Signature: void _destroy Description: Explicitly destroys the object Explicitly destroys the object on C++ side if it was owned by the script interpreter. Subsequent access to this object will throw an exception. If the object is not owned by the script, this method will do nothing. |
_destroyed? | Signature: [const] bool _destroyed? Description: Returns a value indicating whether the object was already destroyed This method returns true, if the object was destroyed, either explicitly or by the C++ side. The latter may happen, if the object is owned by a C++ object which got destroyed itself. |
_is_const_object? | Signature: [const] bool _is_const_object? Description: Returns a value indicating whether the reference is a const reference This method returns true, if self is a const reference. In that case, only const methods may be called on self. |
_manage | Signature: void _manage Description: Marks the object as managed by the script side. After calling this method on an object, the script side will be responsible for the management of the object. This method may be called if an object is returned from a C++ function and the object is known not to be owned by any C++ instance. If necessary, the script side may delete the object if the script's reference is no longer required. Usually it's not required to call this method. It has been introduced in version 0.24. |
_unmanage | Signature: void _unmanage Description: Marks the object as no longer owned by the script side. Calling this method will make this object no longer owned by the script's memory management. Instead, the object must be managed in some other way. Usually this method may be called if it is known that some C++ object holds and manages this object. Technically speaking, this method will turn the script's reference into a weak reference. After the script engine decides to delete the reference, the object itself will still exist. If the object is not managed otherwise, memory leaks will occur. Usually it's not required to call this method. It has been introduced in version 0.24. |
addDays | Signature: [const] QDate addDays (long long days) Description: Method QDate QDate::addDays(qint64 days) |
addMonths | Signature: [const] QDate addMonths (int months) Description: Method QDate QDate::addMonths(int months) |
addYears | Signature: [const] QDate addYears (int years) Description: Method QDate QDate::addYears(int years) |
assign | Signature: void assign (const QDate other) Description: Assigns another object to self |
create | Signature: void create Description: Ensures the C++ object is created Use of this method is deprecated. Use _create instead Use this method to ensure the C++ object is created, for example to ensure that resources are allocated. Usually C++ objects are created on demand and not necessarily when the script object is created. |
currentDate | Signature: [static] QDate currentDate Description: Static method QDate QDate::currentDate() This method is static and can be called without an instance. |
day | Signature: [const] int day Description: Method int QDate::day() |
dayOfWeek | Signature: [const] int dayOfWeek Description: Method int QDate::dayOfWeek() |
dayOfYear | Signature: [const] int dayOfYear Description: Method int QDate::dayOfYear() |
daysInMonth | Signature: [const] int daysInMonth Description: Method int QDate::daysInMonth() |
daysInYear | Signature: [const] int daysInYear Description: Method int QDate::daysInYear() |
daysTo | Signature: [const] long long daysTo (const QDate arg1) Description: Method qint64 QDate::daysTo(const QDate &) |
destroy | Signature: void destroy Description: Explicitly destroys the object Use of this method is deprecated. Use _destroy instead Explicitly destroys the object on C++ side if it was owned by the script interpreter. Subsequent access to this object will throw an exception. If the object is not owned by the script, this method will do nothing. |
destroyed? | Signature: [const] bool destroyed? Description: Returns a value indicating whether the object was already destroyed Use of this method is deprecated. Use _destroyed? instead This method returns true, if the object was destroyed, either explicitly or by the C++ side. The latter may happen, if the object is owned by a C++ object which got destroyed itself. |
dup | Signature: [const] new QDate ptr dup Description: Creates a copy of self Python specific notes: |
fromJulianDay | Signature: [static] QDate fromJulianDay (long long jd_) Description: Static method QDate QDate::fromJulianDay(qint64 jd_) This method is static and can be called without an instance. |
fromString | (1) Signature: [static] QDate fromString (string s, const Qt_DateFormat f = Qt::TextDate) Description: Static method QDate QDate::fromString(const QString &s, Qt::DateFormat f) This method is static and can be called without an instance. |
(2) Signature: [static] QDate fromString (string s, string format) Description: Static method QDate QDate::fromString(const QString &s, const QString &format) This method is static and can be called without an instance. | |
getDate | (1) Signature: void getDate (int ptr year, int ptr month, int ptr day) Description: Method void QDate::getDate(int *year, int *month, int *day) |
(2) Signature: [const] void getDate (int ptr year, int ptr month, int ptr day) Description: Method void QDate::getDate(int *year, int *month, int *day) | |
isLeapYear? | Signature: [static] bool isLeapYear? (int year) Description: Static method bool QDate::isLeapYear(int year) This method is static and can be called without an instance. |
isNull? | Signature: [const] bool isNull? Description: Method bool QDate::isNull() |
isValid? | (1) Signature: [const] bool isValid? Description: Method bool QDate::isValid() Python specific notes: |
(2) Signature: [static] bool isValid? (int y, int m, int d) Description: Static method bool QDate::isValid(int y, int m, int d) This method is static and can be called without an instance. Python specific notes: | |
is_const_object? | Signature: [const] bool is_const_object? Description: Returns a value indicating whether the reference is a const reference Use of this method is deprecated. Use _is_const_object? instead This method returns true, if self is a const reference. In that case, only const methods may be called on self. |
longDayName | Signature: [static] string longDayName (int weekday, const QDate_MonthNameType type = QDate::DateFormat) Description: Static method QString QDate::longDayName(int weekday, QDate::MonthNameType type) This method is static and can be called without an instance. |
longMonthName | Signature: [static] string longMonthName (int month, const QDate_MonthNameType type = QDate::DateFormat) Description: Static method QString QDate::longMonthName(int month, QDate::MonthNameType type) This method is static and can be called without an instance. |
month | Signature: [const] int month Description: Method int QDate::month() |
new | (1) Signature: [static] new QDate new Description: Constructor QDate::QDate() This method creates an object of class QDate. Python specific notes: |
(2) Signature: [static] new QDate new (int y, int m, int d) Description: Constructor QDate::QDate(int y, int m, int d) This method creates an object of class QDate. Python specific notes: | |
setDate | Signature: bool setDate (int year, int month, int day) Description: Method bool QDate::setDate(int year, int month, int day) |
shortDayName | Signature: [static] string shortDayName (int weekday, const QDate_MonthNameType type = QDate::DateFormat) Description: Static method QString QDate::shortDayName(int weekday, QDate::MonthNameType type) This method is static and can be called without an instance. |
shortMonthName | Signature: [static] string shortMonthName (int month, const QDate_MonthNameType type = QDate::DateFormat) Description: Static method QString QDate::shortMonthName(int month, QDate::MonthNameType type) This method is static and can be called without an instance. |
toJulianDay | Signature: [const] long long toJulianDay Description: Method qint64 QDate::toJulianDay() |
toString | (1) Signature: [const] string toString (const Qt_DateFormat f = Qt::TextDate) Description: Method QString QDate::toString(Qt::DateFormat f) |
(2) Signature: [const] string toString (string format) Description: Method QString QDate::toString(const QString &format) | |
weekNumber | Signature: [const] int weekNumber (int ptr yearNum = nullptr) Description: Method int QDate::weekNumber(int *yearNum) |
year | Signature: [const] int year Description: Method int QDate::year() |