Main Page | Namespace List | Class Hierarchy | Alphabetical List | Class List | Directories | File List | Namespace Members | Class Members | File Members | Related Pages

QDate Class Reference

The QDate class provides date functions. More...

#include </home/clem/local/src/opie/qmake/include/qdatetime.h>

List of all members.

Public Member Functions

 QDate ()
 QDate (int y, int m, int d)
bool isNull () const
bool isValid () const
int year () const
int month () const
int day () const
int dayOfWeek () const
int dayOfYear () const
int daysInMonth () const
int daysInYear () const
int weekNumber (int *yearNum=0) const
QString toString (Qt::DateFormat f=Qt::TextDate) const
QString toString (const QString &format) const
bool setYMD (int y, int m, int d)
QDate addDays (int days) const
QDate addMonths (int months) const
QDate addYears (int years) const
int daysTo (const QDate &) const
bool operator== (const QDate &d) const
bool operator!= (const QDate &d) const
bool operator< (const QDate &d) const
bool operator<= (const QDate &d) const
bool operator> (const QDate &d) const
bool operator>= (const QDate &d) const

Static Public Member Functions

static QString monthName (int month)
static QString dayName (int weekday)
static QString shortMonthName (int month)
static QString shortDayName (int weekday)
static QString longMonthName (int month)
static QString longDayName (int weekday)
static QDate currentDate ()
static QDate currentDate (Qt::TimeSpec)
static QDate fromString (const QString &s, Qt::DateFormat f=Qt::TextDate)
static bool isValid (int y, int m, int d)
static bool leapYear (int year)
static uint gregorianToJulian (int y, int m, int d)
static void julianToGregorian (uint jd, int &y, int &m, int &d)

Private Attributes

uint jd

Friends

class QDateTime
Q_EXPORT QDataStreamoperator<< (QDataStream &, const QDate &)
Q_EXPORT QDataStreamoperator>> (QDataStream &, QDate &)


Detailed Description

The QDate class provides date functions.

A QDate object contains a calendar date, i.e. year, month, and day numbers, in the modern Western (Gregorian) calendar. It can read the current date from the system clock. It provides functions for comparing dates and for manipulating dates, e.g. by adding a number of days or months or years.

A QDate object is typically created either by giving the year, month and day numbers explicitly, or by using the static function currentDate(), which creates a QDate object containing the system clock's date. An explicit date can also be set using setYMD(). The fromString() function returns a QDate given a string and a date format which is used to interpret the date within the string.

The year(), month(), and day() functions provide access to the year, month, and day numbers. Also, dayOfWeek() and dayOfYear() functions are provided. The same information is provided in textual format by the toString(), shortDayName(), longDayName(), shortMonthName() and longMonthName() functions.

QDate provides a full set of operators to compare two QDate objects where smaller means earlier and larger means later.

You can increment (or decrement) a date by a given number of days using addDays(). Similarly you can use addMonths() and addYears(). The daysTo() function returns the number of days between two dates.

The daysInMonth() and daysInYear() functions return how many days there are in this date's month and year, respectively. The leapYear() function indicates whether this date is in a leap year.

Note that QDate should not be used for date calculations for dates prior to the introduction of the Gregorian calendar. This calendar was adopted by England from the 14th September 1752 (hence this is the earliest valid QDate), and subsequently by most other Western countries, until 1923.

The end of time is reached around the year 8000, by which time we expect Qt to be obsolete.

See also:
QTime QDateTime QDateEdit QDateTimeEdit

Definition at line 51 of file qdatetime.h.


Constructor & Destructor Documentation

QDate::QDate  )  [inline]
 

Constructs a null date. Null dates are invalid.

See also:
isNull(), isValid()

Definition at line 54 of file qdatetime.h.

Referenced by fromString(), and weekNumber().

QDate::QDate int  y,
int  m,
int  d
 

Constructs a date with year y, month m and day d.

y must be in the range 1752..8000, m must be in the range 1..12, and d must be in the range 1..31.

Warning:
If y is in the range 0..99, it is interpreted as 1900..1999.
See also:
isValid()

Definition at line 285 of file qdatetime.cpp.

References jd, and setYMD().


Member Function Documentation

QDate QDate::addDays int  ndays  )  const
 

Returns a QDate object containing a date ndays later than the date of this object (or earlier if ndays is negative).

See also:
addMonths() addYears() daysTo()

Definition at line 829 of file qdatetime.cpp.

References d, and jd.

Referenced by QDateTime::addDays(), ChrisHoliday::calc_christmas(), ChrisHoliday::calc_easter(), DateBook::checkEvent(), Opie::OPimBase::convertOccurrenceFromBackend(), ORecur::doesRecur(), Opie::OPimRecurrence::doesRecur(), NationalHoliday::entries(), ChrisHoliday::entries(), DateBookDBHack::eventByUID(), NationalHoliday::events(), ChrisHoliday::events(), DateBookDay::findRealStart(), DatebookPluginWidget::getDates(), DateBookDB::getEffectiveEvents(), DateBookWeekLst::getEvents(), DateBookWeek::getEvents(), DateBookDayHeader::goBack(), DateBookDayHeader::goBackWeek(), DateBookDayHeader::goForward(), DateBookDayHeader::goForwardWeek(), DateBook::initWeek(), NationalHoliday::movedateday(), DateBookWeekLstHeader::nextMonth(), DateBookWeekHeader::nextMonth(), ORecur::nextOcurrence(), Opie::OPimRecurrence::nextOcurrence(), DateBookWeekLstHeader::nextWeek(), DateBookWeekHeader::nextWeek(), DateBookWeekLstHeader::prevMonth(), DateBookWeekHeader::prevMonth(), DateBookWeekLstHeader::prevWeek(), DateBookWeekHeader::prevWeek(), repeat(), DateBookWeekLstHeader::setDate(), DateBookWeekHeader::setDate(), DateBookDayHeader::setDay(), DateBookWeekLstView::setEvents(), DateBookWeekLstDblView::setEvents(), TransactionDisplay::setTransactionDisplayDate(), QashMoney::setTransactionDisplayDate(), NationalHoliday::setyear(), DateBookWeek::showDay(), DateBookWeek::slotYearChanged(), DateBookWeekLst::weekDate(), and DateBookWeek::weekDate().

QDate QDate::addMonths int  nmonths  )  const
 

Returns a QDate object containing a date nmonths later than the date of this object (or earlier if nmonths is negative).

See also:
addDays() addYears()

Definition at line 843 of file qdatetime.cpp.

References d, daysInMonth(), jd, julianToGregorian(), and Opie::MM::y.

Referenced by QDateTime::addMonths().

QDate QDate::addYears int  nyears  )  const
 

Returns a QDate object containing a date nyears later than the date of this object (or earlier if nyears is negative).

See also:
addDays(), addMonths()

Definition at line 892 of file qdatetime.cpp.

References d, daysInMonth(), jd, julianToGregorian(), and Opie::MM::y.

Referenced by QDateTime::addYears().

QDate QDate::currentDate Qt::TimeSpec  ts  )  [static]
 

Returns the current date, as reported by the system clock, for the TimeSpec ts. The default TimeSpec is LocalTime.

See also:
QTime::currentTime(), QDateTime::currentDateTime(), Qt::TimeSpec

Definition at line 986 of file qdatetime.cpp.

References d, gregorianToJulian(), jd, Qt::LocalTime, and t.

QDate QDate::currentDate  )  [static]
 

This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts. Returns the current date, as reported by the system clock.

See also:
QTime::currentTime(), QDateTime::currentDateTime()

Definition at line 975 of file qdatetime.cpp.

References Qt::LocalTime.

Referenced by AccountDisplay::addAccount(), KeyList::addKey(), TransactionDisplay::addTransaction(), BudgetDisplay::BudgetDisplay(), LauncherClock::changeTime(), DateEdit::clear(), Clock::Clock(), DateBook::currentDate(), QDateTime::currentDateTime(), ORecur::Data::Data(), Opie::OPimRecurrence::Data::Data(), Opie::DB::OSQLResultItem::dataToDate(), DateBookEvent::DateBookEvent(), DateBookMonth::DateBookMonth(), DateBookWeek::DateBookWeek(), DateBookWeekLstDayHdr::DateBookWeekLstDayHdr(), DateButton::DateButton(), DateBookDay::dateChanged(), EffectiveEvent::EffectiveEvent(), OTodoAccess::effectiveToDos(), Opie::OPimTodoAccess::effectiveToDos(), AddressBookPluginWidget::getAddress(), DatebookPluginWidget::getDates(), AccountDisplay::getTransferAccounts(), OTaskEditor::init(), initApplication(), OTodo::isOverdue(), Opie::OPimTodo::isOverdue(), KDateTable::KDateTable(), TaskEditorStatus::load(), OTaskEditor::load(), Today::loadShellContent(), Opie::OPimTodoAccessBackend::occurrences(), ODateBookMonth::ODateBookMonth(), OEffectiveEvent::OEffectiveEvent(), Todo::TableView::paintCell(), DateBookDayWidget::paintEvent(), OContactAccessBackend_XML::queryByExample(), Opie::OPimContactAccessBackend_SQL::queryByExample(), Opie::OPimContactAccessBackend::queryByExample(), KLocale::readDate(), Today::refresh(), DateBookDay::relayoutPage(), Transaction::selectAllTransactions(), DateBookMonth::selectedDate(), ODateBookMonth::selectedDate(), Server::Server(), KeyList::setKeyType(), DateBookDay::setStartViewTime(), TransactionDisplay::setTransactionDisplayDate(), QashMoney::setTransactionDisplayDate(), TransactionDisplay::showCalendar(), NewTransaction::showCalendar(), NewAccount::showCalendar(), TransferDialog::showCalendar(), Datebook::TemplateDialog::slotAdd(), MainWindow::slotDesktopReceive(), MainWindow::slotLoad(), DateBook::slotToday(), OTodoAccessBackendSQL::sorted(), TaskEditorStatus::TaskEditorStatus(), Server::timerEvent(), OTodoAccessBackendSQL::todo(), OTodo::toRichText(), Opie::OPimTodo::toRichText(), Transaction::Transaction(), MiscFunctions::uniqueString(), and Clock::updateClock().

int QDate::day  )  const
 

Returns the day of the month (1..31) of this date.

See also:
year(), month(), dayOfWeek()

Definition at line 346 of file qdatetime.cpp.

References d, jd, julianToGregorian(), and Opie::MM::y.

Referenced by AccountDisplay::addAccount(), TransactionDisplay::addTransaction(), BudgetDisplay::BudgetDisplay(), LauncherClock::changeTime(), DateEdit::clear(), KDateTable::contentsMousePressEvent(), OContactAccessBackend_VCard::convDateToVCardDate(), Opie::OPimContactAccessBackend_VCard::convDateToVCardDate(), DateBookDay::DateBookDay(), DateBookWeekLstDayHdr::DateBookWeekLstDayHdr(), EmailListItem::dateFromULCString(), DatePicker::DatePicker(), TranInfo::datestr(), OConversion::dateToString(), Opie::OPimDateConversion::dateToString(), DatePicker::displayDays(), NationalHoliday::entries(), HList::entries(), FileItem::FileItem(), ServerPI::fileListing(), FindWidget::FindWidget(), Score::formatDate(), KLocale::formatDate(), fromString(), AddressBookPluginWidget::getAddress(), AccountDisplay::getTransferAccounts(), DateBookDayHeader::goBack(), DateBookDayHeader::goBackWeek(), DateBookDayHeader::goForward(), DateBookDayHeader::goForwardWeek(), Transaction::initFromInfo(), KDateTable::keyPressEvent(), KDatePicker::monthBackwardClicked(), KDatePicker::monthForwardClicked(), DateFormat::numberDate(), Event::occurrence(), Opie::OPimContactAccessBackend::occurrences(), OCalendarHelper::ocurrence(), Opie::OCalendarHelper::ocurrence(), KDateTable::paintCell(), DateButton::pickDate(), DateBookWeekLstHeader::pickDate(), DateBookWeekHeader::pickDate(), DateBookDayHeader::pickDate(), OContactAccessBackend_XML::queryByExample(), Opie::OPimContactAccessBackend_SQL::queryByExample(), Opie::OPimContactAccessBackend::queryByExample(), Task::save(), DBXml::saveSource(), Transaction::selectAllTransactions(), KDatePicker::selectMonthClicked(), KDatePicker::selectYearClicked(), DateEdit::setDate(), DateBookMonth::setDate(), DateBookWeekLstHeader::setDate(), ODateBookMonth::setDate(), DateBookWeekHeader::setDate(), DateBookDayHeader::setDay(), DateBookDayHeader::setStartOfWeek(), ORecurranceWidget::setupYearly(), OPimRecurrenceWidget::setupYearly(), RepeatEntry::setupYearly(), NationalHoliday::setyear(), setYMD(), DateBookWeekLstDayHdr::showDay(), DateBookWeek::showDay(), ORecurranceWidget::slotMonthLabel(), OPimRecurrenceWidget::slotMonthLabel(), RepeatEntry::slotMonthLabel(), OTodoAccessBackendSQL::sorted(), to_Time_t(), Opie::to_Time_t(), OTodo::toMap(), ORecur::toMap(), Opie::OPimTodo::toMap(), Opie::OPimRecurrence::toMap(), QDateTime::toString(), toString(), TimeConversion::toString(), QDateTime::toTime_t(), DateBook::view(), OCalendarHelper::week(), Event::week(), Opie::OCalendarHelper::week(), week(), DateFormat::wordDate(), TranInfo::write(), KDatePicker::yearBackwardClicked(), and KDatePicker::yearForwardClicked().

QString QDate::dayName int  weekday  )  [inline, static]
 

Use shortDayName() instead.

Definition at line 72 of file qdatetime.h.

Referenced by Calendar::nameOfDay(), and DateFormat::wordDate().

int QDate::dayOfWeek  )  const
 

Returns the weekday (Monday=1..Sunday=7) for this date.

See also:
day(), dayOfYear()

Definition at line 359 of file qdatetime.cpp.

References jd.

Referenced by ChrisHoliday::calc_christmas(), DateBookWeekLstDayHdr::DateBookWeekLstDayHdr(), Calendar::daysOfMonth(), DateBookEvent::differDate(), DateBookMonthTable::findDay(), ODateBookMonthTable::findDay(), KLocale::formatDate(), DatebookPluginWidget::getDates(), NationalHoliday::movedateday(), nextOccurance(), ORecur::p_nextOccurrence(), Opie::OPimRecurrence::p_nextOccurrence(), KDateTable::setDate(), DateBookWeekLstHeader::setDate(), DateBookWeekHeader::setDate(), DateBookWeek::setDate(), DateBookDayHeader::setDay(), DateBookWeekLstView::setEvents(), ORecurranceWidget::setupWeekly(), OPimRecurrenceWidget::setupWeekly(), RepeatEntry::setupWeekly(), DateBookWeek::showDay(), ORecurranceWidget::slotMonthLabel(), OPimRecurrenceWidget::slotMonthLabel(), RepeatEntry::slotMonthLabel(), ORecurranceWidget::slotWeekLabel(), OPimRecurrenceWidget::slotWeekLabel(), RepeatEntry::slotWeekLabel(), DateEntry::startDateChanged(), QDateTime::toString(), toString(), OCalendarHelper::week(), Event::week(), Opie::OCalendarHelper::week(), week(), DateBookWeekLst::weekDate(), DateBookWeek::weekDate(), weekNumber(), and DateFormat::wordDate().

int QDate::dayOfYear  )  const
 

Returns the day of the year (1..365) for this date.

See also:
day(), dayOfWeek()

Definition at line 370 of file qdatetime.cpp.

References gregorianToJulian(), jd, and year().

Referenced by weekNumber().

int QDate::daysInMonth  )  const
 

Returns the number of days in the month (28..31) for this date.

See also:
day(), daysInYear()

Definition at line 381 of file qdatetime.cpp.

References d, jd, julianToGregorian(), leapYear(), monthDays, and Opie::MM::y.

Referenced by addMonths(), addYears(), Calendar::daysOfMonth(), DatePicker::displayDays(), DateBookMonthTable::getEvents(), ODateBookMonthTable::getEvents(), KDatePicker::monthBackwardClicked(), KDatePicker::monthForwardClicked(), nextOccurance(), ORecur::p_nextOccurrence(), Opie::OPimRecurrence::p_nextOccurrence(), KDatePicker::selectMonthClicked(), KDatePicker::selectYearClicked(), KDateTable::setDate(), DateBookMonth::setDate(), ODateBookMonth::setDate(), NationalHoliday::setyear(), KDatePicker::yearBackwardClicked(), and KDatePicker::yearForwardClicked().

int QDate::daysInYear  )  const
 

Returns the number of days in the year (365 or 366) for this date.

See also:
day(), daysInMonth()

Definition at line 397 of file qdatetime.cpp.

References d, jd, julianToGregorian(), leapYear(), and Opie::MM::y.

int QDate::daysTo const QDate d  )  const
 

Returns the number of days from this date to d (which is negative if d is earlier than this date).

Example:

        QDate d1( 1995, 5, 17 );  // May 17th 1995
        QDate d2( 1995, 5, 20 );  // May 20th 1995
        d1.daysTo( d2 );          // returns 3
        d2.daysTo( d1 );          // returns -3

See also:
addDays()

Definition at line 924 of file qdatetime.cpp.

References jd.

Referenced by Birthday::_entries(), TVVariant::closer(), QDateTime::daysTo(), NationalHoliday::entries(), ChrisHoliday::entries(), NationalHoliday::events(), ChrisHoliday::events(), OContactAccessBackend_XML::queryByExample(), Opie::OPimContactAccessBackend::queryByExample(), QDateTime::secsTo(), and DataElem::toSortableQString().

QDate QDate::fromString const QString s,
Qt::DateFormat  f = Qt::TextDate
[static]
 

Returns the QDate represented by the string s, using the format f, or an invalid date if the string cannot be parsed.

Note for Qt::TextDate: It is recommended that you use the English short month names (e.g. "Jan"). Although localized month names can also be used, they depend on the user's locale settings.

Warning:
Qt::LocalDate cannot be used here.

Definition at line 1033 of file qdatetime.cpp.

References day(), QString::find(), i, QString::isEmpty(), Qt::ISODate, Qt::LocalDate, QString::mid(), month(), monthName(), QDate(), qt_shortMonthNames, qWarning(), QString::right(), shortMonthName(), Qt::TextDate, and year().

Referenced by QDateTime::fromString().

uint QDate::gregorianToJulian int  y,
int  m,
int  d
[static]
 

For internal use only.

Converts a Gregorian date to a Julian day. This algorithm is taken from Communications of the ACM, Vol 6, No 8.

See also:
julianToGregorian()

Definition at line 1148 of file qdatetime.cpp.

Referenced by currentDate(), dayOfYear(), QDateTime::setTime_t(), and setYMD().

bool QDate::isNull  )  const [inline]
 

Returns TRUE if the date is null; otherwise returns FALSE. A null date is invalid.

See also:
isValid()

Definition at line 57 of file qdatetime.h.

Referenced by KDateValidator::date(), OConversion::dateToString(), Opie::OPimDateConversion::dateToString(), OContact::setAnniversary(), Opie::OPimContact::setAnniversary(), OContact::setBirthday(), Opie::OPimContact::setBirthday(), and Checkbook::slotNewTran().

bool QDate::isValid int  y,
int  m,
int  d
[static]
 

This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts. Returns TRUE if the specified date (year y, month m and day d) is valid; otherwise returns FALSE.

Example:

    QDate::isValid( 2002, 5, 17 );  // TRUE   May 17th 2002 is valid
    QDate::isValid( 2002, 2, 30 );  // FALSE  Feb 30th does not exist
    QDate::isValid( 2004, 2, 29 );  // TRUE   2004 is a leap year
    QDate::isValid( 1202, 6, 6 );   // FALSE  1202 is pre-Gregorian

Warning:
A y value in the range 00..99 is interpreted as 1900..1999.
See also:
isNull(), setYMD()

Definition at line 1120 of file qdatetime.cpp.

References FALSE, FIRST_YEAR, leapYear(), and monthDays.

bool QDate::isValid  )  const
 

Returns TRUE if this date is valid; otherwise returns FALSE.

See also:
isNull()

Definition at line 308 of file qdatetime.cpp.

References FIRST_DAY, and jd.

Referenced by OConversion::dateFromString(), Opie::OPimDateConversion::dateFromString(), OConversion::dateToString(), Opie::OPimDateConversion::dateToString(), Score::formatDate(), OTodo::hasCompletedDate(), Opie::OPimTodo::hasCompletedDate(), OTodo::hasStartDate(), Opie::OPimTodo::hasStartDate(), KDateTable::KDateTable(), KDateTable::keyPressEvent(), nextOccurance(), ORecur::p_nextOccurrence(), Opie::OPimRecurrence::p_nextOccurrence(), OContactAccessBackend_XML::queryByExample(), Opie::OPimContactAccessBackend::queryByExample(), KLocale::readDate(), TVBrowseKeyEntry::searchOnText(), OContact::setAnniversary(), Opie::OPimContact::setAnniversary(), OContact::setBirthday(), Opie::OPimContact::setBirthday(), KDateTable::setDate(), KDatePicker::setDate(), Task::setDueDate(), OEffectiveEvent::setEffectiveDates(), EffectiveEvent::setEffectiveDates(), setYMD(), Opie::Internal::OPimSortVector< T >::testDate(), TVVariant::toDate(), weekNumber(), and KDateInternalYearSelector::yearEnteredSlot().

void QDate::julianToGregorian uint  jd,
int &  y,
int &  m,
int &  d
[static]
 

For internal use only.

Converts a Julian day to a Gregorian date. This algorithm is taken from Communications of the ACM, Vol 6, No 8.

See also:
gregorianToJulian()

Definition at line 1172 of file qdatetime.cpp.

References Opie::MM::x.

Referenced by addMonths(), addYears(), day(), daysInMonth(), daysInYear(), month(), toString(), and year().

bool QDate::leapYear int  y  )  [static]
 

Returns TRUE if the specified year y is a leap year; otherwise returns FALSE.

Definition at line 1136 of file qdatetime.cpp.

Referenced by calcWeek(), daysInMonth(), daysInYear(), isValid(), and weekNumber().

QString QDate::longDayName int  weekday  )  [static]
 

Returns the long name of the weekday.

1 = "Monday", 2 = "Tuesday", ... 7 = "Sunday"

The day names will be localized according to the system's locale settings.

See also:
toString(), shortDayName(), shortMonthName(), longMonthName()

Definition at line 627 of file qdatetime.cpp.

References buf, QString::fromLocal8Bit(), QString::fromUcs2(), QString::null, and qWarning().

QString QDate::longMonthName int  month  )  [static]
 

Returns the long name of the month.

1 = "January", 2 = "February", ... 12 = "December"

The month names will be localized according to the system's locale settings.

See also:
toString(), shortMonthName(), shortDayName(), longDayName()

Definition at line 525 of file qdatetime.cpp.

References buf, QString::fromLocal8Bit(), QString::fromUcs2(), QString::null, and qWarning().

int QDate::month  )  const
 

Returns the month (January=1..December=12) of this date.

See also:
year(), day()

Definition at line 333 of file qdatetime.cpp.

References d, jd, julianToGregorian(), and Opie::MM::y.

Referenced by AccountDisplay::addAccount(), TransactionDisplay::addTransaction(), BudgetDisplay::BudgetDisplay(), LauncherClock::changeTime(), DateEdit::clear(), KDateTable::contentsMousePressEvent(), OContactAccessBackend_VCard::convDateToVCardDate(), Opie::OPimContactAccessBackend_VCard::convDateToVCardDate(), DateBookDay::DateBookDay(), EmailListItem::dateFromULCString(), DatePicker::DatePicker(), TranInfo::datestr(), OConversion::dateToString(), Opie::OPimDateConversion::dateToString(), DatePicker::displayMonths(), NationalHoliday::entries(), HList::entries(), FileItem::FileItem(), ServerPI::fileListing(), FindWidget::FindWidget(), Score::formatDate(), KLocale::formatDate(), fromString(), AddressBookPluginWidget::getAddress(), AccountDisplay::getTransferAccounts(), DateBookDayHeader::goBack(), DateBookDayHeader::goBackWeek(), DateBookDayHeader::goForward(), DateBookDayHeader::goForwardWeek(), Transaction::initFromInfo(), KDateTable::keyPressEvent(), KDatePicker::monthBackwardClicked(), OCalendarHelper::monthDiff(), Event::monthDiff(), Opie::OCalendarHelper::monthDiff(), KDatePicker::monthForwardClicked(), DateFormat::numberDate(), Opie::OPimContactAccessBackend::occurrences(), DateButton::pickDate(), DateBookWeekLstHeader::pickDate(), DateBookWeekHeader::pickDate(), DateBookDayHeader::pickDate(), OContactAccessBackend_XML::queryByExample(), Opie::OPimContactAccessBackend_SQL::queryByExample(), Opie::OPimContactAccessBackend::queryByExample(), Task::save(), DBXml::saveSource(), Transaction::selectAllTransactions(), KDatePicker::selectYearClicked(), KDateTable::setDate(), KDatePicker::setDate(), DateEdit::setDate(), DateBookMonth::setDate(), DateBookWeekLstHeader::setDate(), ODateBookMonth::setDate(), DateBookWeekHeader::setDate(), DateBookDayHeader::setDay(), DateBookDayHeader::setStartOfWeek(), ORecurranceWidget::setupYearly(), OPimRecurrenceWidget::setupYearly(), RepeatEntry::setupYearly(), NationalHoliday::setyear(), setYMD(), BudgetDisplay::showCalendar(), DateBookWeekLstDayHdr::showDay(), DateBookWeek::showDay(), OTodoAccessBackendSQL::sorted(), to_Time_t(), Opie::to_Time_t(), OTodo::toMap(), ORecur::toMap(), Opie::OPimTodo::toMap(), Opie::OPimRecurrence::toMap(), QDateTime::toString(), toString(), TimeConversion::toString(), QDateTime::toTime_t(), DateBook::view(), OCalendarHelper::week(), Event::week(), Opie::OCalendarHelper::week(), week(), DateFormat::wordDate(), TranInfo::write(), KDatePicker::yearBackwardClicked(), and KDatePicker::yearForwardClicked().

QString QDate::monthName int  month  )  [inline, static]
 

Use shortMonthName() instead.

Definition at line 71 of file qdatetime.h.

Referenced by ServerPI::fileListing(), fromString(), Calendar::nameOfMonth(), ORecurranceWidget::setupYearly(), OPimRecurrenceWidget::setupYearly(), RepeatEntry::setupYearly(), and DateFormat::wordDate().

bool QDate::operator!= const QDate d  )  const [inline]
 

Returns TRUE if this date is different from d; otherwise returns FALSE.

Definition at line 93 of file qdatetime.h.

References jd.

bool QDate::operator< const QDate d  )  const [inline]
 

Returns TRUE if this date is earlier than d, otherwise returns FALSE.

Definition at line 94 of file qdatetime.h.

References jd.

bool QDate::operator<= const QDate d  )  const [inline]
 

Returns TRUE if this date is earlier than or equal to d, otherwise returns FALSE.

Definition at line 95 of file qdatetime.h.

References jd.

bool QDate::operator== const QDate d  )  const [inline]
 

Returns TRUE if this date is equal to d; otherwise returns FALSE.

Definition at line 92 of file qdatetime.h.

References jd.

bool QDate::operator> const QDate d  )  const [inline]
 

Returns TRUE if this date is later than d, otherwise returns FALSE.

Definition at line 96 of file qdatetime.h.

References jd.

bool QDate::operator>= const QDate d  )  const [inline]
 

Returns TRUE if this date is later than or equal to d, otherwise returns FALSE.

Definition at line 97 of file qdatetime.h.

References jd.

bool QDate::setYMD int  y,
int  m,
int  d
 

Sets the date's year y, month m and day d.

y must be in the range 1752..8000, m must be in the range 1..12, and d must be in the range 1..31.

Warning:
If y is in the range 0..99, it is interpreted as 1900..1999.
Returns TRUE if the date is valid; otherwise returns FALSE.

Definition at line 808 of file qdatetime.cpp.

References day(), FALSE, gregorianToJulian(), isValid(), jd, month(), qWarning(), TRUE, and year().

Referenced by Birthday::_entries(), DateBookDay::dateChanged(), OConversion::dateFromString(), Opie::OPimDateConversion::dateFromString(), Calendar::daysOfMonth(), ORecurranceWidget::endDateChanged(), OPimRecurrenceWidget::endDateChanged(), RepeatEntry::endDateChanged(), DateEntry::endDateChanged(), AddressBookPluginWidget::getAddress(), KDatePicker::monthBackwardClicked(), KDatePicker::monthForwardClicked(), QDate(), OContactAccessBackend_XML::queryByExample(), Opie::OPimContactAccessBackend::queryByExample(), KDatePicker::selectMonthClicked(), KDatePicker::selectYearClicked(), KDateTable::setDate(), DateBookDayHeader::setDate(), NationalHoliday::setyear(), ContactEditor::slotAnniversaryDateChanged(), ContactEditor::slotBirthdayDateChanged(), TaskEditorStatus::slotCompChanged(), Transaction::slotDateChanged(), FindWidget::slotDateChanged(), DateBookDayView::slotDateChanged(), TaskEditorStatus::slotDueChanged(), ORecurranceWidget::slotNoEnd(), OPimRecurrenceWidget::slotNoEnd(), RepeatEntry::slotNoEnd(), TaskEditorStatus::slotStartChanged(), DateEntry::startDateChanged(), TranInfo::TranInfo(), KDatePicker::yearBackwardClicked(), KDateInternalYearSelector::yearEnteredSlot(), and KDatePicker::yearForwardClicked().

QString QDate::shortDayName int  weekday  )  [static]
 

Returns the name of the weekday.

1 = "Mon", 2 = "Tue", ... 7 = "Sun"

The day names will be localized according to the system's locale settings.

See also:
toString(), shortMonthName(), longMonthName(), longDayName()

Definition at line 579 of file qdatetime.cpp.

References buf, QString::fromLocal8Bit(), QString::fromUcs2(), QString::null, and qWarning().

Referenced by QDateTime::toString(), and toString().

QString QDate::shortMonthName int  month  )  [static]
 

Returns the name of the month.

1 = "Jan", 2 = "Feb", ... 12 = "Dec"

The month names will be localized according to the system's locale settings.

See also:
toString(), longMonthName(), shortDayName(), longDayName()

Definition at line 479 of file qdatetime.cpp.

References buf, QString::fromLocal8Bit(), QString::fromUcs2(), QString::null, and qWarning().

Referenced by QDateTime::fromString(), fromString(), QDateTime::toString(), and toString().

QString QDate::toString const QString format  )  const
 

Returns the date as a string. The format parameter determines the format of the result string.

These expressions may be used:

Expression Output d the day as number without a leading zero (1-31) dd the day as number with a leading zero (01-31) ddd the abbreviated localized day name (e.g. 'Mon'..'Sun'). Uses QDate::shortDayName(). dddd the long localized day name (e.g. 'Monday'..'Sunday'). Uses QDate::longDayName(). M the month as number without a leading zero (1-12) MM the month as number with a leading zero (01-12) MMM the abbreviated localized month name (e.g. 'Jan'..'Dec'). Uses QDate::shortMonthName(). MMMM the long localized month name (e.g. 'January'..'December'). Uses QDate::longMonthName(). yy the year as two digit number (00-99) yyyy the year as four digit number (1752-8000)

All other input characters will be ignored.

Example format strings (assuming that the QDate is the 20th July 1969): Format Result dd.MM.yyyy 20.07.1969 ddd MMMM d yy Sun July 20 69

See also:
QDate::toString() QTime::toString()

Definition at line 790 of file qdatetime.cpp.

References fmtDateTime().

QString QDate::toString Qt::DateFormat  f = Qt::TextDate  )  const
 

This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts. Returns the date as a string. The f parameter determines the format of the string.

If f is Qt::TextDate, the string format is "Sat May 20 1995" (using the shortDayName() and shortMonthName() functions to generate the string, so the day and month names are locale specific).

If f is Qt::ISODate, the string format corresponds to the ISO 8601 specification for representations of dates, which is YYYY-MM-DD where YYYY is the year, MM is the month of the year (between 01 and 12), and DD is the day of the month between 01 and 31.

If f is Qt::LocalDate, the string format depends on the locale settings of the system.

See also:
shortDayName(), shortMonthName()

Definition at line 690 of file qdatetime.cpp.

References buf, d, day(), dayOfWeek(), QString::fromLocal8Bit(), QString::fromUcs2(), Qt::ISODate, jd, julianToGregorian(), Qt::LocalDate, month(), QString::null, QString::number(), shortDayName(), shortMonthName(), QString::sprintf(), t, Qt::TextDate, Opie::MM::y, and year().

Referenced by DateEdit::clear(), AddressBookPluginWidget::getAddress(), OTodo::match(), Task::match(), Opie::OPimTodo::match(), Opie::Core::odbgstream::operator<<(), OContactAccessBackend_XML::queryByExample(), DateEdit::setDate(), ODateBookAccessBackend_XML::setField(), DateEdit::subValueChanged(), OTodo::toRichText(), Opie::OPimTodo::toRichText(), and QDateTime::toString().

int QDate::weekNumber int *  yearNumber = 0  )  const
 

Returns the week number (1 to 53), and stores the year in yearNumber unless yearNumber is null (the default).

Returns 0 if the date is invalid.

In accordance with ISO 8601, weeks start on Monday and the first Thursday of a year is always in week 1 of that year. Most years have 52 weeks, but some have 53.

*yearNumber is not always the same as year(). For example, 1 January 2000 has week number 52 in the year 1999, and 31 December 2002 has week number 1 in the year 2003.

See also:
isValid()

Definition at line 421 of file qdatetime.cpp.

References dayOfWeek(), dayOfYear(), isValid(), leapYear(), QDate(), and year().

int QDate::year  )  const
 

Returns the year (1752..8000) of this date.

See also:
month(), day()

Definition at line 320 of file qdatetime.cpp.

References d, jd, julianToGregorian(), and Opie::MM::y.

Referenced by Birthday::_entries(), AccountDisplay::addAccount(), TransactionDisplay::addTransaction(), BudgetDisplay::BudgetDisplay(), DateEdit::clear(), KDateTable::contentsMousePressEvent(), OContactAccessBackend_VCard::convDateToVCardDate(), Opie::OPimContactAccessBackend_VCard::convDateToVCardDate(), DateBookDay::DateBookDay(), EmailListItem::dateFromULCString(), DatePicker::DatePicker(), TranInfo::datestr(), OConversion::dateToString(), Opie::OPimDateConversion::dateToString(), dayOfYear(), DatePicker::displayYears(), ChrisHoliday::entries(), FileItem::FileItem(), FindWidget::FindWidget(), Score::formatDate(), KLocale::formatDate(), fromString(), AccountDisplay::getTransferAccounts(), DateBookDayHeader::goBack(), DateBookDayHeader::goBackWeek(), DateBookDayHeader::goForward(), DateBookDayHeader::goForwardWeek(), Transaction::initFromInfo(), KDateTable::keyPressEvent(), KDatePicker::monthBackwardClicked(), OCalendarHelper::monthDiff(), Event::monthDiff(), Opie::OCalendarHelper::monthDiff(), KDatePicker::monthForwardClicked(), DateFormat::numberDate(), DateButton::pickDate(), DateBookWeekLstHeader::pickDate(), DateBookWeekHeader::pickDate(), DateBookDayHeader::pickDate(), OContactAccessBackend_XML::queryByExample(), Opie::OPimContactAccessBackend_SQL::queryByExample(), Opie::OPimContactAccessBackend::queryByExample(), Task::save(), DBXml::saveSource(), Transaction::selectAllTransactions(), KDatePicker::selectMonthClicked(), KDateTable::setDate(), KDatePicker::setDate(), DateEdit::setDate(), DateBookMonth::setDate(), ODateBookMonth::setDate(), DateBookDayHeader::setDay(), DateBookDayHeader::setStartOfWeek(), NationalHoliday::setyear(), setYMD(), DateBookWeekLstDayHdr::showDay(), DateBookWeek::showDay(), OTodoAccessBackendSQL::sorted(), to_Time_t(), Opie::to_Time_t(), OTodo::toMap(), ORecur::toMap(), Opie::OPimTodo::toMap(), Opie::OPimRecurrence::toMap(), QDateTime::toString(), toString(), TimeConversion::toString(), QDateTime::toTime_t(), DateBook::view(), OCalendarHelper::week(), Event::week(), Opie::OCalendarHelper::week(), week(), weekNumber(), DateFormat::wordDate(), TranInfo::write(), KDatePicker::yearBackwardClicked(), and KDatePicker::yearForwardClicked().


Friends And Related Function Documentation

QDataStream & operator<< QDataStream s,
const QDate d
[friend]
 

Writes the date, d, to the data stream, s.

See also:
Format of the QDataStream operators

Definition at line 2460 of file qdatetime.cpp.

QDataStream & operator>> QDataStream s,
QDate d
[friend]
 

Reads a date from the stream s into d.

See also:
Format of the QDataStream operators

Definition at line 2473 of file qdatetime.cpp.

friend class QDateTime [friend]
 

Definition at line 111 of file qdatetime.h.


Member Data Documentation

uint QDate::jd [private]
 

Definition at line 110 of file qdatetime.h.

Referenced by addDays(), addMonths(), QDateTime::addSecs(), addYears(), currentDate(), day(), dayOfWeek(), dayOfYear(), daysInMonth(), daysInYear(), daysTo(), isValid(), month(), operator!=(), operator<(), operator<=(), operator==(), operator>(), operator>=(), QDate(), QDateTime::setTime_t(), setYMD(), toString(), and year().


The documentation for this class was generated from the following files:
Generated on Sat Nov 5 17:46:31 2005 for OPIE by  doxygen 1.4.2