The QDateTime class provides date and time functions. More...
#include <qdatetime.h>
Public Member Functions | |
QDateTime () | |
QDateTime (const QDate &) | |
QDateTime (const QDate &, const QTime &) | |
bool | isNull () const |
bool | isValid () const |
QDate | date () const |
QTime | time () const |
void | setDate (const QDate &date) |
void | setTime (const QTime &time) |
void | setTime_t (uint secsSince1Jan1970UTC) |
QString | toString () const |
QDateTime | addDays (int days) const |
QDateTime | addSecs (int secs) const |
int | daysTo (const QDateTime &) const |
int | secsTo (const QDateTime &) const |
bool | operator== (const QDateTime &dt) const |
bool | operator!= (const QDateTime &dt) const |
bool | operator< (const QDateTime &dt) const |
bool | operator<= (const QDateTime &dt) const |
bool | operator> (const QDateTime &dt) const |
bool | operator>= (const QDateTime &dt) const |
Static Public Member Functions | |
static QDateTime | currentDateTime () |
Private Attributes | |
QDate | d |
QTime | t |
Friends | |
Q_EXPORT QDataStream & | operator<< (QDataStream &, const QDateTime &) |
Q_EXPORT QDataStream & | operator>> (QDataStream &, QDateTime &) |
The QDateTime class provides date and time functions.
A QDateTime object contains a calendar date and a clock time (a "datetime"). It is a combination of the QDate and QTime classes. It can read the current datetime from the system clock. It provides functions for comparing datetimes and for manipulating a datetime by adding a number of seconds or days.
A QDateTime object is typically created either by giving a date and time explicitly, or by using the static function currentTime(), which makes a QDateTime object which contains the system's clock time.
The date() and time() functions provide access to the date and time parts of the datetime. The same information is provided in textual format by the toString() function.
QDateTime provides a full set of operators to compare two QDateTime objects. A datetime is considered smaller than another if it is earlier than the other.
The datetime a given number of days or seconds later than a given datetime can be found using the addDays() and addSecs() functions. Correspondingly, the number of days or seconds between two times can be found using the daysTo() or secsTo() functions.
A datetime can also be set using the setTime_t() function, which takes a POSIX-standard "number of seconds since 00:00:00 on January 1, 1970" value.
The limitations regarding range and resolution mentioned in the QDate and QTime documentation apply for QDateTime also.
Definition at line 161 of file qdatetime.h.
|
inline |
Constructs a null datetime (i.e. null date and null time). A null datetime is invalid, since the date is invalid.
Definition at line 164 of file qdatetime.h.
QDateTime::QDateTime | ( | const QDate & | date | ) |
Constructs a datetime with date date and null time (00:00:00.000).
Definition at line 1068 of file qdatetime.cpp.
QDateTime QDateTime::addDays | ( | int | ndays | ) | const |
Returns a QDateTime object containing a datetime ndays days later than the datetime of this object (or earlier if ndays is negative).
Definition at line 1192 of file qdatetime.cpp.
QDateTime QDateTime::addSecs | ( | int | nsecs | ) | const |
Returns a QDateTime object containing a datetime nsecs seconds later than the datetime of this object (or earlier if nsecs is negative).
Definition at line 1205 of file qdatetime.cpp.
|
static |
Returns the current datetime, as reported by the system clock.
Definition at line 1340 of file qdatetime.cpp.
|
inline |
int QDateTime::daysTo | ( | const QDateTime & | dt | ) | const |
Returns the number of days from this datetime to dt (which is negative if dt is earlier than this datetime).
Definition at line 1241 of file qdatetime.cpp.
|
inline |
Returns TRUE if both the date and the time are null. A null date is invalid.
Definition at line 168 of file qdatetime.h.
|
inline |
Returns TRUE if both the date and the time are valid.
Definition at line 169 of file qdatetime.h.
Returns TRUE if this datetime is different from dt, or FALSE if they are equal.
Definition at line 1283 of file qdatetime.cpp.
Returns TRUE if this datetime is earlier than dt, otherwise FALSE.
Definition at line 1292 of file qdatetime.cpp.
Returns TRUE if this datetime is earlier than or equal to dt, otherwise FALSE.
Definition at line 1304 of file qdatetime.cpp.
Returns TRUE if this datetime is equal to dt, or FALSE if they are different.
Definition at line 1272 of file qdatetime.cpp.
Returns TRUE if this datetime is later than dt, otherwise FALSE.
Definition at line 1315 of file qdatetime.cpp.
Returns TRUE if this datetime is later than or equal to dt, otherwise FALSE.
Definition at line 1327 of file qdatetime.cpp.
int QDateTime::secsTo | ( | const QDateTime & | dt | ) | const |
Returns the number of seconds from this datetime to dt (which is negative if dt is earlier than this datetime).
Definition at line 1260 of file qdatetime.cpp.
|
inline |
|
inline |
void QDateTime::setTime_t | ( | uint | secsSince1Jan1970UTC | ) |
Sets the local date and time given the number of seconds that have passed since 00:00:00 on January 1, 1970, Coordinated Universal Time (UTC). On systems that do not support timezones this function will behave as if local time were UTC.
Note that Microsoft Windows supports only a limited range of values for secsSince1Jan1970UTC.
Definition at line 1142 of file qdatetime.cpp.
|
inline |
QString QDateTime::toString | ( | ) | const |
Returns the datetime as a string.
The string format is "Sat May 20 03:40:13 1998".
This function uses QDate::dayName(), QDate::monthName(), and QTime::toString() to generate the string.
Definition at line 1170 of file qdatetime.cpp.
|
friend |
|
friend |
|
private |
Definition at line 194 of file qdatetime.h.
|
private |
Definition at line 195 of file qdatetime.h.