1 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
3 %% Purpose: wxDateTime documentation
4 %% Author: Vadim Zeitlin
8 %% Copyright: (c) Vadim Zeitlin
9 %% License: wxWidgets license
10 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
12 \section{\class{wxDateTime
}}\label{wxdatetime
}
14 wxDateTime class represents an absolute moment in the time.
18 The type
{\tt wxDateTime
\_t} is typedefed as
{\tt unsigned short
} and is used
19 to contain the number of years, hours, minutes, seconds and milliseconds.
23 Global constant
{\tt wxDefaultDateTime
} and synonym for it
{\tt wxInvalidDateTime
} are defined. This constant will be different from any valid
26 All the following constants are defined inside wxDateTime class (i.e., to refer to
27 them you should prepend their names with
{\tt wxDateTime::
}).
29 Time zone symbolic names:
34 // the time in the current time zone
37 // zones from GMT (= Greenwhich Mean Time): they're guaranteed to be
38 // consequent numbers, so writing something like `GMT0 + offset' is
39 // safe if abs(offset) <=
12
41 // underscore stands for minus
42 GMT_12, GMT_11, GMT_10, GMT_9, GMT_8, GMT_7,
43 GMT_6, GMT_5, GMT_4, GMT_3, GMT_2, GMT_1,
45 GMT1, GMT2, GMT3, GMT4, GMT5, GMT6,
46 GMT7, GMT8, GMT9, GMT10, GMT11, GMT12,
47 // Note that GMT12 and GMT_12 are not the same: there is a difference
48 // of exactly one day between them
50 // some symbolic names for TZ
53 WET = GMT0, // Western Europe Time
54 WEST = GMT1, // Western Europe Summer Time
55 CET = GMT1, // Central Europe Time
56 CEST = GMT2, // Central Europe Summer Time
57 EET = GMT2, // Eastern Europe Time
58 EEST = GMT3, // Eastern Europe Summer Time
59 MSK = GMT3, // Moscow Time
60 MSD = GMT4, // Moscow Summer Time
63 AST = GMT_4, // Atlantic Standard Time
64 ADT = GMT_3, // Atlantic Daylight Time
65 EST = GMT_5, // Eastern Standard Time
66 EDT = GMT_4, // Eastern Daylight Saving Time
67 CST = GMT_6, // Central Standard Time
68 CDT = GMT_5, // Central Daylight Saving Time
69 MST = GMT_7, // Mountain Standard Time
70 MDT = GMT_6, // Mountain Daylight Saving Time
71 PST = GMT_8, // Pacific Standard Time
72 PDT = GMT_7, // Pacific Daylight Saving Time
73 HST = GMT_10, // Hawaiian Standard Time
74 AKST = GMT_9, // Alaska Standard Time
75 AKDT = GMT_8, // Alaska Daylight Saving Time
79 A_WST = GMT8, // Western Standard Time
80 A_CST = GMT12 +
1, // Central Standard Time (+
9.5)
81 A_EST = GMT10, // Eastern Standard Time
82 A_ESST = GMT11, // Eastern Summer Time
84 // Universal Coordinated Time = the new and politically correct name
90 Month names: Jan, Feb, Mar, Apr, May, Jun, Jul, Aug, Sep, Oct, Nov, Dec and
91 Inv
\_Month for an invalid.month value are the values of
{\tt wxDateTime::Month
}
94 Likewise, Sun, Mon, Tue, Wed, Thu, Fri, Sat, and Inv
\_WeekDay are the values in
95 {\tt wxDateTime::WeekDay
} enum.
97 Finally, Inv
\_Year is defined to be an invalid value for year parameter.
99 \helpref{GetMonthName()
}{wxdatetimegetmonthname
} and
100 \helpref{GetWeekDayName
}{wxdatetimegetweekdayname
} functions use the followign
106 Name_Full =
0x01, // return full name
107 Name_Abbr =
0x02 // return abbreviated name
111 Several functions accept an extra parameter specifying the calendar to use
112 (although most of them only support now the Gregorian calendar). This
113 parameters is one of the following values:
118 Gregorian, // calendar currently in use in Western countries
119 Julian // calendar in use since -
45 until the
1582 (or later)
123 Date calculations often depend on the country and wxDateTime allows to set the
124 country whose conventions should be used using
125 \helpref{SetCountry
}{wxdatetimesetcountry
}. It takes one of the following
131 Country_Unknown, // no special information for this country
132 Country_Default, // set the default country with SetCountry() method
133 // or use the default country with any other
135 Country_WesternEurope_Start,
136 Country_EEC = Country_WesternEurope_Start,
140 Country_WesternEurope_End = UK,
148 Different parts of the world use different conventions for the week start.
149 In some countries, the week starts on Sunday, while in others -- on Monday.
150 The ISO standard doesn't address this issue, so we support both conventions in
151 the functions whose result depends on it (
\helpref{GetWeekOfYear
}{wxdatetimegetweekofyear
} and
152 \helpref{GetWeekOfMonth
}{wxdatetimegetweekofmonth
}).
154 The desired behvaiour may be specified by giving one of the following
155 constants as argument to these functions:
160 Default_First, // Sunday_First for US, Monday_First for the rest
161 Monday_First, // week starts with a Monday
162 Sunday_First // week starts with a Sunday
166 \wxheading{Derived from
}
170 \wxheading{Include files
}
176 \helpref{Date classes overview
}{wxdatetimeoverview
},
\rtfsp
177 \helpref{wxTimeSpan
}{wxtimespan
},
\rtfsp
178 \helpref{wxDateSpan
}{wxdatespan
},
\rtfsp
179 \helpref{wxCalendarCtrl
}{wxcalendarctrl
}
181 \latexignore{\rtfignore{\wxheading{Function groups
}}}
183 \membersection{Static functions
}
185 For convenience, all static functions are collected here. These functions
186 either set or return the static variables of wxDateSpan (the country), return
187 the current moment, year, month or number of days in it, or do some general
188 calendar-related actions.
190 Please note that although several function accept an extra
{\it Calendar
}
191 parameter, it is currently ignored as only the Gregorian calendar is
192 supported. Future versions will support other calendars.
194 \pythonnote{These methods are standalone functions named
195 {\tt wxDateTime
\_<StaticMethodName>
} in wxPython.
}
197 \helpref{SetCountry
}{wxdatetimesetcountry
}\\
198 \helpref{GetCountry
}{wxdatetimegetcountry
}\\
199 \helpref{IsWestEuropeanCountry
}{wxdatetimeiswesteuropeancountry
}\\
200 \helpref{GetCurrentYear
}{wxdatetimegetcurrentyear
}\\
201 \helpref{ConvertYearToBC
}{wxdatetimeconvertyeartobc
}\\
202 \helpref{GetCurrentMonth
}{wxdatetimegetcurrentmonth
}\\
203 \helpref{IsLeapYear
}{wxdatetimeisleapyear
}\\
204 \helpref{GetCentury
}{wxdatetimegetcentury
}\\
205 \helpref{GetNumberOfDays
}{wxdatetimegetnumberofdays
}\\
206 \helpref{GetNumberOfDays
}{wxdatetimegetnumberofdays
}\\
207 \helpref{GetMonthName
}{wxdatetimegetmonthname
}\\
208 \helpref{GetWeekDayName
}{wxdatetimegetweekdayname
}\\
209 \helpref{GetAmPmStrings
}{wxdatetimegetampmstrings
}\\
210 \helpref{IsDSTApplicable
}{wxdatetimeisdstapplicable
}\\
211 \helpref{GetBeginDST
}{wxdatetimegetbegindst
}\\
212 \helpref{GetEndDST
}{wxdatetimegetenddst
}\\
213 \helpref{Now
}{wxdatetimenow
}\\
214 \helpref{UNow
}{wxdatetimeunow
}\\
215 \helpref{Today
}{wxdatetimetoday
}
217 \membersection{Constructors, assignment operators and setters
}
219 Constructors and various
{\tt Set()
} methods are collected here. If you
220 construct a date object from separate values for day, month and year, you
221 should use
\helpref{IsValid
}{wxdatetimeisvalid
} method to check that the
222 values were correct as constructors can not return an error code.
224 \helpref{wxDateTime()
}{wxdatetimewxdatetimedef
}\\
225 \helpref{wxDateTime(time
\_t)
}{wxdatetimewxdatetimetimet
}\\
226 \helpref{wxDateTime(struct tm)
}{wxdatetimewxdatetimetm
}\\
227 %\helpref{wxDateTime(struct Tm)}{wxdatetimewxdatetimetm} - Tm not documented yet\\
228 \helpref{wxDateTime(double jdn)
}{wxdatetimewxdatetimejdn
}\\
229 \helpref{wxDateTime(h, m, s, ms)
}{wxdatetimewxdatetimetime
}\\
230 \helpref{wxDateTime(day, mon, year, h, m, s, ms)
}{wxdatetimewxdatetimedate
}\\
231 \helpref{SetToCurrent
}{wxdatetimesettocurrent
}\\
232 \helpref{Set(time
\_t)
}{wxdatetimesettimet
}\\
233 \helpref{Set(struct tm)
}{wxdatetimesettm
}\\
234 %\helpref{Set(struct Tm)}{wxdatetimesettm} - Tm not documented yet\\
235 \helpref{Set(double jdn)
}{wxdatetimesetjdn
}\\
236 \helpref{Set(h, m, s, ms)
}{wxdatetimesettime
}\\
237 \helpref{Set(day, mon, year, h, m, s, ms)
}{wxdatetimesetdate
}\\
238 \helpref{SetFromDOS(unsigned long ddt)
}{wxdatetimesetfromdos
}\\
239 \helpref{ResetTime
}{wxdatetimeresettime
}\\
240 \helpref{SetYear
}{wxdatetimesetyear
}\\
241 \helpref{SetMonth
}{wxdatetimesetmonth
}\\
242 \helpref{SetDay
}{wxdatetimesetdate
}\\
243 \helpref{SetHour
}{wxdatetimesethour
}\\
244 \helpref{SetMinute
}{wxdatetimesetminute
}\\
245 \helpref{SetSecond
}{wxdatetimesetsecond
}\\
246 \helpref{SetMillisecond
}{wxdatetimesetmillisecond
}\\
247 \helpref{operator$=$(time
\_t)
}{wxdatetimeoperatoreqtimet
}\\
248 \helpref{operator$=$(struct tm)
}{wxdatetimeoperatoreqtm
}\rtfsp
250 \membersection{Accessors
}
252 Here are the trivial accessors. Other functions, which might have to perform
253 some more complicated calculations to find the answer are under the
254 \helpref{Calendar calculations
}{wxdatetimecalculations
} section.
256 \helpref{IsValid
}{wxdatetimeisvalid
}\\
257 \helpref{GetTicks
}{wxdatetimegetticks
}\\
258 \helpref{GetYear
}{wxdatetimegetyear
}\\
259 \helpref{GetMonth
}{wxdatetimegetmonth
}\\
260 \helpref{GetDay
}{wxdatetimegetday
}\\
261 \helpref{GetWeekDay
}{wxdatetimegetweekday
}\\
262 \helpref{GetHour
}{wxdatetimegethour
}\\
263 \helpref{GetMinute
}{wxdatetimegetminute
}\\
264 \helpref{GetSecond
}{wxdatetimegetsecond
}\\
265 \helpref{GetMillisecond
}{wxdatetimegetmillisecond
}\\
266 \helpref{GetDayOfYear
}{wxdatetimegetdayofyear
}\\
267 \helpref{GetWeekOfYear
}{wxdatetimegetweekofyear
}\\
268 \helpref{GetWeekOfMonth
}{wxdatetimegetweekofmonth
}\\
269 \helpref{GetYearDay
}{wxdatetimegetyearday
}\\
270 \helpref{IsWorkDay
}{wxdatetimeisworkday
}\\
271 \helpref{IsGregorianDate
}{wxdatetimeisgregoriandate
}\\
272 \helpref{GetAsDOS
}{wxdatetimegetasdos
}
274 \membersection{Date comparison
}
276 There are several function to allow date comparison. To supplement them, a few
277 global operators $>$, $<$ etc taking wxDateTime are defined.
279 \helpref{IsEqualTo
}{wxdatetimeisequalto
}\\
280 \helpref{IsEarlierThan
}{wxdatetimeisearlierthan
}\\
281 \helpref{IsLaterThan
}{wxdatetimeislaterthan
}\\
282 \helpref{IsStrictlyBetween
}{wxdatetimeisstrictlybetween
}\\
283 \helpref{IsBetween
}{wxdatetimeisbetween
}\\
284 \helpref{IsSameDate
}{wxdatetimeissamedate
}\\
285 \helpref{IsSameTime
}{wxdatetimeissametime
}\\
286 \helpref{IsEqualUpTo
}{wxdatetimeisequalupto
}
288 \membersection{Date arithmetics
}
290 These functions carry out
\helpref{arithmetics
}{tdatearithm
} on the wxDateTime
291 objects. As explained in the overview, either wxTimeSpan or wxDateSpan may be
292 added to wxDateTime, hence all functions are overloaded to accept both
295 Also, both
{\tt Add()
} and
{\tt Subtract()
} have both const and non-const
296 version. The first one returns a new obejct which represents the
297 sum/difference of the original one with the argument while the second form
298 modifies the object to which it is applied. The operators $-=$ and $+=$ are
299 defined to be equivalent to the second forms of these functions.
301 \helpref{Add(wxTimeSpan)
}{wxdatetimeaddts
}\\
302 \helpref{Add(wxDateSpan)
}{wxdatetimeaddds
}\\
303 \helpref{Subtract(wxTimeSpan)
}{wxdatetimesubtractts
}\\
304 \helpref{Subtract(wxDateSpan)
}{wxdatetimesubtractds
}\\
305 \helpref{Subtract(wxDateTime)
}{wxdatetimesubtractdt
}\\
306 \helpref{oparator$+=$(wxTimeSpan)
}{wxdatetimeaddts
}\\
307 \helpref{oparator$+=$(wxDateSpan)
}{wxdatetimeaddds
}\\
308 \helpref{oparator$-=$(wxTimeSpan)
}{wxdatetimesubtractts
}\\
309 \helpref{oparator$-=$(wxDateSpan)
}{wxdatetimesubtractds
}
311 \membersection{Parsing and formatting dates
}
313 These functions convert wxDateTime obejcts to and from text. The
314 conversions to text are mostly trivial: you can either do it using the default
315 date and time representations for the current locale (
316 \helpref{FormatDate
}{wxdatetimeformatdate
} and
317 \helpref{FormatTime
}{wxdatetimeformattime
}), using the international standard
318 representation defined by ISO
8601 (
319 \helpref{FormatISODate
}{wxdatetimeformatisodate
} and
320 \helpref{FormatISOTime
}{wxdatetimeformatisotime
}) or by specifying any format
321 at all and using
\helpref{Format
}{wxdatetimeformat
} directly.
323 The conversions from text are more interesting, as there are much more
324 possibilities to care about. The simplest cases can be taken care of with
325 \helpref{ParseFormat
}{wxdatetimeparseformat
} which can parse any date in the
326 given (rigid) format.
\helpref{ParseRfc822Date
}{wxdatetimeparserfc822date
} is
327 another function for parsing dates in predefined format -- the one of RFC
822
328 which (still...) defines the format of email messages on the Internet. This
329 format can not be described with
{\tt strptime(
3)
}-like format strings used by
330 \helpref{Format
}{wxdatetimeformat
}, hence the need for a separate function.
332 But the most interesting functions are
333 \helpref{ParseTime
}{wxdatetimeparsetime
},
334 \helpref{ParseDate
}{wxdatetimeparsedate
} and
335 \helpref{ParseDateTime
}{wxdatetimeparsedatetime
}. They try to parse the date
336 ans time (or only one of them) in `free' format, i.e. allow them to be
337 specified in any of possible ways. These functions will usually be used to
338 parse the (interactive) user input which is not bound to be in any predefined
339 format. As an example,
\helpref{ParseDateTime
}{wxdatetimeparsedatetime
} can
340 parse the strings such as
{\tt "tomorrow"
},
{\tt "March first"
} and even
343 \helpref{ParseRfc822Date
}{wxdatetimeparserfc822date
}\\
344 \helpref{ParseFormat
}{wxdatetimeparseformat
}\\
345 \helpref{ParseDateTime
}{wxdatetimeparsedatetime
}\\
346 \helpref{ParseDate
}{wxdatetimeparsedate
}\\
347 \helpref{ParseTime
}{wxdatetimeparsetime
}\\
348 \helpref{Format
}{wxdatetimeformat
}\\
349 \helpref{FormatDate
}{wxdatetimeformatdate
}\\
350 \helpref{FormatTime
}{wxdatetimeformattime
}\\
351 \helpref{FormatISODate
}{wxdatetimeformatisodate
}\\
352 \helpref{FormatISOTime
}{wxdatetimeformatisotime
}
354 \membersection{Calendar calculations
}\label{wxdatetimecalculations
}
356 The functions in this section perform the basic calendar calculations, mostly
357 related to the week days. They allow to find the given week day in the
358 week with given number (either in the month or in the year) and so on.
360 All (non-const) functions in this section don't modify the time part of the
361 wxDateTime -- they only work with the date part of it.
363 \helpref{SetToWeekDayInSameWeek
}{wxdatetimesettoweekdayinsameweek
}\\
364 \helpref{GetWeekDayInSameWeek
}{wxdatetimegetweekdayinsameweek
}\\
365 \helpref{SetToNextWeekDay
}{wxdatetimesettonextweekday
}\\
366 \helpref{GetNextWeekDay
}{wxdatetimegetnextweekday
}\\
367 \helpref{SetToPrevWeekDay
}{wxdatetimesettoprevweekday
}\\
368 \helpref{GetPrevWeekDay
}{wxdatetimegetprevweekday
}\\
369 \helpref{SetToWeekDay
}{wxdatetimesettoweekday
}\\
370 \helpref{GetWeekDay
}{wxdatetimegetweekday2
}\\
371 \helpref{SetToLastWeekDay
}{wxdatetimesettolastweekday
}\\
372 \helpref{GetLastWeekDay
}{wxdatetimegetlastweekday
}\\
373 \helpref{SetToTheWeek
}{wxdatetimesettotheweek
}\\
374 \helpref{GetWeek
}{wxdatetimegetweek
}\\
375 \helpref{SetToLastMonthDay
}{wxdatetimesettolastmonthday
}\\
376 \helpref{GetLastMonthDay
}{wxdatetimegetlastmonthday
}\\
377 \helpref{SetToYearDay
}{wxdatetimesettoyearday
}\\
378 \helpref{GetYearDay
}{wxdatetimegetyearday
}
380 \membersection{Astronomical/historical functions
}
382 Some degree of support for the date units used in astronomy and/or history is
383 provided. You can construct a wxDateTime object from a
384 \helpref{JDN
}{wxdatetimesetjdn
} and you may also get its JDN,
385 \helpref{MJD
}{wxdatetimegetmodifiedjuliandaynumber
} or
386 \helpref{Rata Die number
}{wxdatetimegetratadie
} from it.
388 \helpref{wxDateTime(double jdn)
}{wxdatetimewxdatetimejdn
}\\
389 \helpref{Set(double jdn)
}{wxdatetimesetjdn
}\\
390 \helpref{GetJulianDayNumber
}{wxdatetimegetjuliandaynumber
}\\
391 \helpref{GetJDN
}{wxdatetimegetjdn
}\\
392 \helpref{GetModifiedJulianDayNumber
}{wxdatetimegetmodifiedjuliandaynumber
}\\
393 \helpref{GetMJD
}{wxdatetimegetmjd
}\\
394 \helpref{GetRataDie
}{wxdatetimegetratadie
}
396 \membersection{Time zone and DST support
}
398 Please see the
\helpref{time zone overview
}{tdatetimezones
} for more
399 information about time zones. ormally, these functions should be rarely used.
401 \helpref{ToTimezone
}{wxdatetimetotimezone
}\\
402 \helpref{MakeTimezone
}{wxdatetimemaketimezone
}\\
403 \helpref{ToGMT
}{wxdatetimetogmt
}\\
404 \helpref{MakeGMT
}{wxdatetimemakegmt
}\\
405 \helpref{GetBeginDST
}{wxdatetimegetbegindst
}\\
406 \helpref{GetEndDST
}{wxdatetimegetenddst
}\\
407 \helpref{IsDST
}{wxdatetimeisdst
}
409 \helponly{\insertatlevel{2}{
415 %%%%%%%%%%%%%%%%%%%%%%%%%%% static functions %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
417 \membersection{wxDateTime::ConvertYearToBC
}\label{wxdatetimeconvertyeartobc
}
419 \func{static int
}{ConvertYearToBC
}{\param{int
}{year
}}
421 Converts the year in absolute notation (i.e. a number which can be negative,
422 positive or zero) to the year in BC/AD notation. For the positive years,
423 nothing is done, but the year
0 is year
1 BC and so for other years there is a
426 This function should be used like this:
430 int y = dt.GetYear();
431 printf("The year is
%d%s", wxDateTime::ConvertYearToBC(y), y > 0 ? "AD" : "BC");
434 \membersection{wxDateTime::GetAmPmStrings
}\label{wxdatetimegetampmstrings
}
436 \func{static void
}{GetAmPmStrings
}{\param{wxString *
}{am
},
\param{wxString *
}{pm
}}
438 Returns the translations of the strings
{\tt AM
} and
{\tt PM
} used for time
439 formatting for the current locale. Either of the pointers may be
{\tt NULL
} if
440 the corresponding value is not needed.
442 \membersection{wxDateTime::GetBeginDST
}\label{wxdatetimegetbegindst
}
444 \func{static wxDateTime
}{GetBeginDST
}{\param{int
}{year = Inv
\_Year},
\param{Country
}{country = Country
\_Default}}
446 Get the beginning of DST for the given country in the given year (current one
447 by default). This function suffers from limitations described in
448 \helpref{DST overview
}{tdatedst
}.
452 \helpref{GetEndDST
}{wxdatetimegetenddst
}
454 \membersection{wxDateTime::GetCountry
}\label{wxdatetimegetcountry
}
456 \func{static Country
}{GetCountry
}{\void}
458 Returns the current default country. The default country is used for DST
459 calculations, for example.
463 \helpref{SetCountry
}{wxdatetimesetcountry
}
465 \membersection{wxDateTime::GetCurrentYear
}\label{wxdatetimegetcurrentyear
}
467 \func{static int
}{GetCurrentYear
}{\param{Calendar
}{cal = Gregorian
}}
469 Get the current year in given calendar (only Gregorian is currently supported).
471 \membersection{wxDateTime::GetCurrentMonth
}\label{wxdatetimegetcurrentmonth
}
473 \func{static Month
}{GetCurrentMonth
}{\param{Calendar
}{cal = Gregorian
}}
475 Get the current month in given calendar (only Gregorian is currently supported).
477 \membersection{wxDateTime::GetCentury
}\label{wxdatetimegetcentury
}
479 \func{static int
}{GetCentury
}{\param{int
}{year = Inv
\_Year}}
481 Get the current century, i.e. first two digits of the year, in given calendar
482 (only Gregorian is currently supported).
484 \membersection{wxDateTime::GetEndDST
}\label{wxdatetimegetenddst
}
486 \func{static wxDateTime
}{GetEndDST
}{\param{int
}{year = Inv
\_Year},
\param{Country
}{country = Country
\_Default}}
488 Returns the end of DST for the given country in the given year (current one by
493 \helpref{GetBeginDST
}{wxdatetimegetbegindst
}
495 \membersection{wxDateTime::GetMonthName
}\label{wxdatetimegetmonthname
}
497 \func{static wxString
}{GetMonthName
}{\param{Month
}{month
},
\param{NameFlags
}{flags = Name
\_Full}}
499 Gets the full (default) or abbreviated (specify
{\tt Name
\_Abbr} name of the
504 \helpref{GetWeekDayName
}{wxdatetimegetweekdayname
}
506 \membersection{wxDateTime::GetNumberOfDays
}\label{wxdatetimegetnumberofdays
}
508 \func{static wxDateTime
\_t}{GetNumberOfDays
}{\param{int
}{year
},
\param{Calendar
}{cal = Gregorian
}}
510 \func{static wxDateTime
\_t}{GetNumberOfDays
}{\param{Month
}{month
},
\param{int
}{year = Inv
\_Year},
\param{Calendar
}{cal = Gregorian
}}
512 Returns the number of days in the given year or in the given month of the
515 The only supported value for
{\it cal
} parameter is currently
{\tt Gregorian
}.
517 \pythonnote{These two methods are named
{\tt GetNumberOfDaysInYear
}
518 and
{\tt GetNumberOfDaysInMonth
} in wxPython.
}
520 \membersection{wxDateTime::GetWeekDayName
}\label{wxdatetimegetweekdayname
}
522 \func{static wxString
}{GetWeekDayName
}{\param{WeekDay
}{weekday
},
\param{NameFlags
}{flags = Name
\_Full}}
524 Gets the full (default) or abbreviated (specify
{\tt Name
\_Abbr} name of the
529 \helpref{GetMonthName
}{wxdatetimegetmonthname
}
531 \membersection{wxDateTime::IsLeapYear
}\label{wxdatetimeisleapyear
}
533 \func{static bool
}{IsLeapYear
}{\param{int
}{year = Inv
\_Year},
\param{Calendar
}{cal = Gregorian
}}
535 Returns
{\tt true
} if the
{\it year
} is a leap one in the specified calendar.
537 This functions supports Gregorian and Julian calendars.
539 \membersection{wxDateTime::IsWestEuropeanCountry
}\label{wxdatetimeiswesteuropeancountry
}
541 \func{static bool
}{IsWestEuropeanCountry
}{\param{Country
}{country = Country
\_Default}}
543 This function returns
{\tt true
} if the specified (or default) country is one
544 of Western European ones. It is used internally by wxDateTime to determine the
545 DST convention and date and time formatting rules.
547 \membersection{wxDateTime::IsDSTApplicable
}\label{wxdatetimeisdstapplicable
}
549 \func{static bool
}{IsDSTApplicable
}{\param{int
}{year = Inv
\_Year},
\param{Country
}{country = Country
\_Default}}
551 Returns
{\tt true
} if DST was used n the given year (the current one by
552 default) in the given country.
554 \membersection{wxDateTime::Now
}\label{wxdatetimenow
}
556 \func{static wxDateTime
}{Now
}{\void}
558 Returns the object corresponding to the current time.
563 wxDateTime now = wxDateTime::Now();
564 printf("Current time in Paris:
\t%s\n", now.Format("%c", wxDateTime::CET).c_str());
567 Note that this function is accurate up to second:
568 \helpref{wxDateTime::UNow
}{wxdatetimeunow
} should be used for better precision
569 (but it is less efficient and might not be available on all platforms).
573 \helpref{Today
}{wxdatetimetoday
}
575 \membersection{wxDateTime::SetCountry
}\label{wxdatetimesetcountry
}
577 \func{static void
}{SetCountry
}{\param{Country
}{country
}}
579 Sets the country to use by default. This setting influences the DST
580 calculations, date formatting and other things.
582 The possible values for
{\it country
} parameter are enumerated in
583 \helpref{wxDateTime constants section
}{wxdatetime
}.
587 \helpref{GetCountry
}{wxdatetimegetcountry
}
589 \membersection{wxDateTime::Today
}\label{wxdatetimetoday
}
591 \func{static wxDateTime
}{Today
}{\void}
593 Returns the object corresponding to the midnight of the current day (i.e. the
594 same as
\helpref{Now()
}{wxdatetimenow
}, but the time part is set to $
0$).
598 \helpref{Now
}{wxdatetimenow
}
600 \membersection{wxDateTime::UNow
}\label{wxdatetimeunow
}
602 \func{static wxDateTime
}{UNow
}{\void}
604 Returns the object corresponding to the current time including the
605 milliseconds if a function to get time with such precision is available on the
606 current platform (supported under most Unices and Win32).
610 \helpref{Now
}{wxdatetimenow
}
612 %%%%%%%%%%%%%%%%%%%%%%%%%%% constructors &c %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
614 \membersection{wxDateTime::wxDateTime
}\label{wxdatetimewxdatetimedef
}
616 \func{}{wxDateTime
}{\void}
618 Default constructor. Use one of
{\tt Set()
} functions to initialize the object
621 \membersection{wxDateTime::wxDateTime
}\label{wxdatetimewxdatetimetimet
}
623 \func{wxDateTime\&
}{wxDateTime
}{\param{time
\_t }{timet
}}
625 Same as
\helpref{Set
}{wxdatetimewxdatetimetimet
}.
627 \pythonnote{This constructor is named
{\tt wxDateTimeFromTimeT
} in wxPython.
}
629 \membersection{wxDateTime::wxDateTime
}\label{wxdatetimewxdatetimetm
}
631 \func{wxDateTime\&
}{wxDateTime
}{\param{const struct tm\&
}{tm
}}
633 Same as
\helpref{Set
}{wxdatetimewxdatetimetm
}
635 \pythonnote{Unsupported.
}
637 \membersection{wxDateTime::wxDateTime
}\label{wxdatetimewxdatetimejdn
}
639 \func{wxDateTime\&
}{wxDateTime
}{\param{double
}{jdn
}}
641 Same as
\helpref{Set
}{wxdatetimewxdatetimejdn
}
643 \pythonnote{This constructor is named
{\tt wxDateTimeFromJDN
} in wxPython.
}
645 \membersection{wxDateTime::wxDateTime
}\label{wxdatetimewxdatetimetime
}
647 \func{wxDateTime\&
}{wxDateTime
}{\param{wxDateTime
\_t }{hour
},
\param{wxDateTime
\_t }{minute =
0},
\param{wxDateTime
\_t }{second =
0},
\param{wxDateTime
\_t }{millisec =
0}}
649 Same as
\helpref{Set
}{wxdatetimewxdatetimetime
}
651 \pythonnote{This constructor is named
{\tt wxDateTimeFromHMS
} in wxPython.
}
653 \membersection{wxDateTime::wxDateTime
}\label{wxdatetimewxdatetimedate
}
655 \func{wxDateTime\&
}{wxDateTime
}{\param{wxDateTime
\_t }{day
},
\param{Month
}{month = Inv
\_Month},
\param{int
}{ Inv
\_Year},
656 \param{wxDateTime
\_t }{hour =
0},
\param{wxDateTime
\_t }{minute =
0},
\param{wxDateTime
\_t }{second =
0},
\param{wxDateTime
\_t }{millisec =
0}}
658 Same as
\helpref{Set
}{wxdatetimesetdate
}
660 \pythonnote{This constructor is named
{\tt wxDateTimeFromDMY
} in wxPython.
}
662 \membersection{wxDateTime::SetToCurrent
}\label{wxdatetimesettocurrent
}
664 \func{wxDateTime\&
}{SetToCurrent
}{\void}
666 Sets the date and time of to the current values. Same as assigning the result
667 of
\helpref{Now()
}{wxdatetimenow
} to this object.
669 \membersection{wxDateTime::Set
}\label{wxdatetimesettimet
}
671 \func{wxDateTime\&
}{Set
}{\param{time
\_t }{timet
}}
673 Constructs the object from
{\it timet
} value holding the number of seconds
676 \pythonnote{This method is named
{\tt SetTimeT
} in wxPython.
}
678 \membersection{wxDateTime::Set
}\label{wxdatetimesettm
}
680 \func{wxDateTime\&
}{Set
}{\param{const struct tm\&
}{tm
}}
682 Sets the date and time from the broken down representation in the standard
685 \pythonnote{Unsupported.
}
687 \membersection{wxDateTime::Set
}\label{wxdatetimesetjdn
}
689 \func{wxDateTime\&
}{Set
}{\param{double
}{jdn
}}
691 Sets the date from the so-called
{\it Julian Day Number
}.
693 By definition, the Julian Day Number, usually abbreviated as JDN, of a
694 particular instant is the fractional number of days since
12 hours Universal
695 Coordinated Time (Greenwich mean noon) on January
1 of the year -
4712 in the
696 Julian proleptic calendar.
698 \pythonnote{This method is named
{\tt SetJDN
} in wxPython.
}
700 \membersection{wxDateTime::Set
}\label{wxdatetimesettime
}
702 \func{wxDateTime\&
}{Set
}{\param{wxDateTime
\_t }{hour
},
\param{wxDateTime
\_t }{minute =
0},
\param{wxDateTime
\_t }{second =
0},
\param{wxDateTime
\_t }{millisec =
0}}
704 Sets the date to be equal to
\helpref{Today
}{wxdatetimetoday
} and the time
705 from supplied parameters.
707 \pythonnote{This method is named
{\tt SetHMS
} in wxPython.
}
709 \membersection{wxDateTime::Set
}\label{wxdatetimesetdate
}
711 \func{wxDateTime\&
}{Set
}{\param{wxDateTime
\_t }{day
},
\param{Month
}{month = Inv
\_Month},
\param{int
}{year = Inv
\_Year},
\param{wxDateTime
\_t }{hour =
0},
\param{wxDateTime
\_t }{minute =
0},
\param{wxDateTime
\_t }{second =
0},
\param{wxDateTime
\_t }{millisec =
0}}
713 Sets the date and time from the parameters.
715 \membersection{wxDateTime::ResetTime
}\label{wxdatetimeresettime
}
717 \func{wxDateTime\&
}{ResetTime
}{\void}
719 Reset time to midnight (
00:
00:
00) without changing the date.
721 \membersection{wxDateTime::SetYear
}\label{wxdatetimesetyear
}
723 \func{wxDateTime\&
}{SetYear
}{\param{int
}{year
}}
725 Sets the year without changing other date components.
727 \membersection{wxDateTime::SetMonth
}\label{wxdatetimesetmonth
}
729 \func{wxDateTime\&
}{SetMonth
}{\param{Month
}{month
}}
731 Sets the month without changing other date components.
733 \membersection{wxDateTime::SetDay
}\label{wxdatetimesetday
}
735 \func{wxDateTime\&
}{SetDay
}{\param{wxDateTime
\_t }{day
}}
737 Sets the day without changing other date components.
739 \membersection{wxDateTime::SetHour
}\label{wxdatetimesethour
}
741 \func{wxDateTime\&
}{SetHour
}{\param{wxDateTime
\_t }{hour
}}
743 Sets the hour without changing other date components.
745 \membersection{wxDateTime::SetMinute
}\label{wxdatetimesetminute
}
747 \func{wxDateTime\&
}{SetMinute
}{\param{wxDateTime
\_t }{minute
}}
749 Sets the minute without changing other date components.
751 \membersection{wxDateTime::SetSecond
}\label{wxdatetimesetsecond
}
753 \func{wxDateTime\&
}{SetSecond
}{\param{wxDateTime
\_t }{second
}}
755 Sets the second without changing other date components.
757 \membersection{wxDateTime::SetMillisecond
}\label{wxdatetimesetmillisecond
}
759 \func{wxDateTime\&
}{SetMillisecond
}{\param{wxDateTime
\_t }{millisecond
}}
761 Sets the millisecond without changing other date components.
763 \membersection{wxDateTime::operator$=$
}\label{wxdatetimeoperatoreqtimet
}
765 \func{wxDateTime\&
}{operator
}{\param{time
\_t }{timet
}}
767 Same as
\helpref{Set
}{wxdatetimesettimet
}.
769 \membersection{wxDateTime::operator$=$
}\label{wxdatetimeoperatoreqtm
}
771 \func{wxDateTime\&
}{operator
}{\param{const struct tm\&
}{tm
}}
773 Same as
\helpref{Set
}{wxdatetimesettm
}.
775 %%%%%%%%%%%%%%%%%%%%%%%%%%% accessors %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
777 \membersection{wxDateTime::IsValid
}\label{wxdatetimeisvalid
}
779 \constfunc{bool
}{IsValid
}{\void}
781 Returns
{\tt true
} if the object represents a valid time moment.
783 \membersection{wxDateTime::GetTm
}\label{wxdatetimegettm
}
785 \constfunc{Tm
}{GetTm
}{\param{const TimeZone\&
}{tz = Local
}}
787 Returns broken down representation of the date and time.
789 \membersection{wxDateTime::GetTicks
}\label{wxdatetimegetticks
}
791 \constfunc{time
\_t}{GetTicks
}{\void}
793 Returns the number of seconds since Jan
1,
1970. An assert failure will occur
794 if the date is not in the range covered by
{\tt time
\_t} type.
796 \membersection{wxDateTime::GetYear
}\label{wxdatetimegetyear
}
798 \constfunc{int
}{GetYear
}{\param{const TimeZone\&
}{tz = Local
}}
800 Returns the year in the given timezone (local one by default).
802 \membersection{wxDateTime::GetMonth
}\label{wxdatetimegetmonth
}
804 \constfunc{Month
}{GetMonth
}{\param{const TimeZone\&
}{tz = Local
}}
806 Returns the month in the given timezone (local one by default).
808 \membersection{wxDateTime::GetDay
}\label{wxdatetimegetday
}
810 \constfunc{wxDateTime
\_t}{GetDay
}{\param{const TimeZone\&
}{tz = Local
}}
812 Returns the day in the given timezone (local one by default).
814 \membersection{wxDateTime::GetWeekDay
}\label{wxdatetimegetweekday
}
816 \constfunc{WeekDay
}{GetWeekDay
}{\param{const TimeZone\&
}{tz = Local
}}
818 Returns the week day in the given timezone (local one by default).
820 \membersection{wxDateTime::GetHour
}\label{wxdatetimegethour
}
822 \constfunc{wxDateTime
\_t}{GetHour
}{\param{const TimeZone\&
}{tz = Local
}}
824 Returns the hour in the given timezone (local one by default).
826 \membersection{wxDateTime::GetMinute
}\label{wxdatetimegetminute
}
828 \constfunc{wxDateTime
\_t}{GetMinute
}{\param{const TimeZone\&
}{tz = Local
}}
830 Returns the minute in the given timezone (local one by default).
832 \membersection{wxDateTime::GetSecond
}\label{wxdatetimegetsecond
}
834 \constfunc{wxDateTime
\_t}{GetSecond
}{\param{const TimeZone\&
}{tz = Local
}}
836 Returns the seconds in the given timezone (local one by default).
838 \membersection{wxDateTime::GetMillisecond
}\label{wxdatetimegetmillisecond
}
840 \constfunc{wxDateTime
\_t}{GetMillisecond
}{\param{const TimeZone\&
}{tz = Local
}}
842 Returns the milliseconds in the given timezone (local one by default).
844 \membersection{wxDateTime::GetDayOfYear
}\label{wxdatetimegetdayofyear
}
846 \constfunc{wxDateTime
\_t}{GetDayOfYear
}{\param{const TimeZone\&
}{tz = Local
}}
848 Returns the day of the year (in $
1\ldots366$ range) in the given timezone
849 (local one by default).
851 \membersection{wxDateTime::GetWeekOfYear
}\label{wxdatetimegetweekofyear
}
853 \constfunc{wxDateTime
\_t}{GetWeekOfYear
}{\param{WeekFlags
}{flags = Monday
\_First},
\param{const TimeZone\&
}{tz = Local
}}
855 Returns the number of the week of the year this date is in. The first week of
856 the year is, according to international standards, the one containing Jan
4.
857 The week number is in $
1\ldots53$ range ($
52$ for non leap years).
859 The function depends on the
\helpref{week start
}{wxdatetime
} convention
860 specified by the
{\it flags
} argument.
862 \membersection{wxDateTime::GetWeekOfMonth
}\label{wxdatetimegetweekofmonth
}
864 \constfunc{wxDateTime
\_t}{GetWeekOfMonth
}{\param{WeekFlags
}{flags = Monday
\_First},
\param{const TimeZone\&
}{tz = Local
}}
866 Returns the ordinal number of the week in the month (in $
1\ldots5$ range).
868 As
\helpref{GetWeekOfYear
}{wxdatetimegetweekofyear
}, this function supports
869 both conventions for the week start. See the description of these
870 \helpref{week start
}{wxdatetime
} conventions.
872 \membersection{wxDateTime::IsWorkDay
}\label{wxdatetimeisworkday
}
874 \constfunc{bool
}{IsWorkDay
}{\param{Country
}{country = Country
\_Default}}
876 Returns
{\tt true
} is this day is not a holiday in the given country.
878 \membersection{wxDateTime::IsGregorianDate
}\label{wxdatetimeisgregoriandate
}
880 \constfunc{bool
}{IsGregorianDate
}{\param{GregorianAdoption
}{country = Gr
\_Standard}}
882 Returns
{\tt true
} if the given date os later than the date of adoption of the
883 Gregorian calendar in the given country (and hence the Gregorian calendar
884 calculations make sense for it).
886 %%%%%%%%%%%%%%%%%%%%%% dos date and time format %%%%%%%%%%%%%%%%%%%%%%%
888 \membersection{wxDateTime::SetFromDOS
}\label{wxdatetimesetfromdos
}
890 \func{wxDateTime\&
}{Set
}{\param{unsigned long
}{ddt
}}
892 Sets the date from the date and time in
893 \urlref{DOS
}{http://developer.novell.com/ndk/doc/smscomp/index.html?page=/ndk/doc/smscomp/sms
\_docs/data/hc2vlu5i.html
}
896 \membersection{wxDateTime::GetAsDOS
}\label{wxdatetimegetasdos
}
898 \constfunc{unsigned long
}{GetAsDOS
}{\void}
900 Returns the date and time in
901 \urlref{DOS
}{http://developer.novell.com/ndk/doc/smscomp/index.html?page=/ndk/doc/smscomp/sms
\_docs/data/hc2vlu5i.html
}
904 %%%%%%%%%%%%%%%%%%%%%%%%%%% comparison %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
906 \membersection{wxDateTime::IsEqualTo
}\label{wxdatetimeisequalto
}
908 \constfunc{bool
}{IsEqualTo
}{\param{const wxDateTime\&
}{datetime
}}
910 Returns
{\tt true
} if the two dates are strictly identical.
912 \membersection{wxDateTime::IsEarlierThan
}\label{wxdatetimeisearlierthan
}
914 \constfunc{bool
}{IsEarlierThan
}{\param{const wxDateTime\&
}{datetime
}}
916 Returns
{\tt true
} if this date precedes the given one.
918 \membersection{wxDateTime::IsLaterThan
}\label{wxdatetimeislaterthan
}
920 \constfunc{bool
}{IsLaterThan
}{\param{const wxDateTime\&
}{datetime
}}
922 Returns
{\tt true
} if this date is later than the given one.
924 \membersection{wxDateTime::IsStrictlyBetween
}\label{wxdatetimeisstrictlybetween
}
926 \constfunc{bool
}{IsStrictlyBetween
}{\param{const wxDateTime\&
}{t1
},
\param{const wxDateTime\&
}{t2
}}
928 Returns
{\tt true
} if this date lies strictly between the two others,
932 \helpref{IsBetween
}{wxdatetimeisbetween
}
934 \membersection{wxDateTime::IsBetween
}\label{wxdatetimeisbetween
}
936 \constfunc{bool
}{IsBetween
}{\param{const wxDateTime\&
}{t1
},
\param{const wxDateTime\&
}{t2
}}
938 Returns
{\tt true
} if
\helpref{IsStrictlyBetween
}{wxdatetimeisstrictlybetween
}
939 is
{\tt true
} or if the date is equal to one of the limit values.
943 \helpref{IsStrictlyBetween
}{wxdatetimeisstrictlybetween
}
945 \membersection{wxDateTime::IsSameDate
}\label{wxdatetimeissamedate
}
947 \constfunc{bool
}{IsSameDate
}{\param{const wxDateTime\&
}{dt
}}
949 Returns
{\tt true
} if the date is the same without comparing the time parts.
951 \membersection{wxDateTime::IsSameTime
}\label{wxdatetimeissametime
}
953 \constfunc{bool
}{IsSameTime
}{\param{const wxDateTime\&
}{dt
}}
955 Returns
{\tt true
} if the time is the same (although dates may differ).
957 \membersection{wxDateTime::IsEqualUpTo
}\label{wxdatetimeisequalupto
}
959 \constfunc{bool
}{IsEqualUpTo
}{\param{const wxDateTime\&
}{dt
},
\param{const wxTimeSpan\&
}{ts
}}
961 Returns
{\tt true
} if the date is equal to another one up to the given time
962 interval, i.e. if the absolute difference between the two dates is less than
965 %%%%%%%%%%%%%%%%%%%%%%%%%%% arithmetics %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
967 \membersection{wxDateTime::Add
}\label{wxdatetimeaddts
}
969 \constfunc{wxDateTime
}{Add
}{\param{const wxTimeSpan\&
}{diff
}}
971 \func{wxDateTime\&
}{Add
}{\param{const wxTimeSpan\&
}{diff
}}
973 \func{wxDateTime\&
}{operator$+=$
}{\param{const wxTimeSpan\&
}{diff
}}
975 Adds the given time span to this object.
977 \pythonnote{This method is named
{\tt AddTS
} in wxPython.
}
980 \membersection{wxDateTime::Add
}\label{wxdatetimeaddds
}
982 \constfunc{wxDateTime
}{Add
}{\param{const wxDateSpan\&
}{diff
}}
984 \func{wxDateTime\&
}{Add
}{\param{const wxDateSpan\&
}{diff
}}
986 \func{wxDateTime\&
}{operator$+=$
}{\param{const wxDateSpan\&
}{diff
}}
988 Adds the given date span to this object.
990 \pythonnote{This method is named
{\tt AddDS
} in wxPython.
}
993 \membersection{wxDateTime::Subtract
}\label{wxdatetimesubtractts
}
995 \constfunc{wxDateTime
}{Subtract
}{\param{const wxTimeSpan\&
}{diff
}}
997 \func{wxDateTime\&
}{Subtract
}{\param{const wxTimeSpan\&
}{diff
}}
999 \func{wxDateTime\&
}{operator$-=$
}{\param{const wxTimeSpan\&
}{diff
}}
1001 Subtracts the given time span from this object.
1003 \pythonnote{This method is named
{\tt SubtractTS
} in wxPython.
}
1006 \membersection{wxDateTime::Subtract
}\label{wxdatetimesubtractds
}
1008 \constfunc{wxDateTime
}{Subtract
}{\param{const wxDateSpan\&
}{diff
}}
1010 \func{wxDateTime\&
}{Subtract
}{\param{const wxDateSpan\&
}{diff
}}
1012 \func{wxDateTime\&
}{operator$-=$
}{\param{const wxDateSpan\&
}{diff
}}
1014 Subtracts the given date span from this object.
1016 \pythonnote{This method is named
{\tt SubtractDS
} in wxPython.
}
1019 \membersection{wxDateTime::Subtract
}\label{wxdatetimesubtractdt
}
1021 \constfunc{wxTimeSpan
}{Subtract
}{\param{const wxDateTime\&
}{dt
}}
1023 Subtracts another date from this one and returns the difference between them
1026 %%%%%%%%%%%%%%%%%%%%%%%%%%% parsing/formatting %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1028 \membersection{wxDateTime::ParseRfc822Date
}\label{wxdatetimeparserfc822date
}
1030 \func{const wxChar *
}{ParseRfc822Date
}{\param{const wxChar*
}{date
}}
1032 Parses the string
{\it date
} looking for a date formatted according to the RFC
1033 822 in it. The exact description of this format may, of course, be found in
1034 the RFC (section $
5$), but, briefly, this is the format used in the headers of
1035 Internet email messages and one of the most common strings expressing date in
1036 this format may be something like
{\tt "Sat,
18 Dec
1999 00:
48:
30 +
0100"
}.
1038 Returns
{\tt NULL
} if the conversion failed, otherwise return the pointer to
1039 the character immediately following the part of the string which could be
1040 parsed. If the entire string contains only the date in RFC
822 format,
1041 the returned pointer will be pointing to a
{\tt NUL
} character.
1043 This function is intentionally strict, it will return an error for any string
1044 which is not RFC
822 compliant. If you need to parse date formatted in more
1045 free ways, you should use
\helpref{ParseDateTime
}{wxdatetimeparsedatetime
} or
1046 \helpref{ParseDate
}{wxdatetimeparsedate
} instead.
1048 \membersection{wxDateTime::ParseFormat
}\label{wxdatetimeparseformat
}
1050 \func{const wxChar *
}{ParseFormat
}{\param{const wxChar *
}{date
},
\param{const wxChar *
}{format = "\%c"
},
\param{const wxDateTime\&
}{dateDef = wxDefaultDateTime
}}
1052 This function parses the string
{\it date
} according to the given
1053 {\it format
}. The system
{\tt strptime(
3)
} function is used whenever available,
1054 but even if it is not, this function is still implemented, although support
1055 for locale-dependent format specifiers such as
{\tt "\%c"
},
{\tt "\%x"
} or
{\tt "\%X"
} may
1056 not be perfect and GNU extensions such as
{\tt "\%z"
} and
{\tt "\%Z"
} are
1057 not implemented. This function does handle the month and weekday
1058 names in the current locale on all platforms, however.
1060 Please see the description of the ANSI C function
{\tt strftime(
3)
} for the syntax
1061 of the format string.
1063 The
{\it dateDef
} parameter is used to fill in the fields which could not be
1064 determined from the format string. For example, if the format is
{\tt "\%d"
} (the
1065 ay of the month), the month and the year are taken from
{\it dateDef
}. If
1066 it is not specified,
\helpref{Today
}{wxdatetimetoday
} is used as the
1069 Returns
{\tt NULL
} if the conversion failed, otherwise return the pointer to
1070 the character which stopped the scan.
1072 \membersection{wxDateTime::ParseDateTime
}\label{wxdatetimeparsedatetime
}
1074 \func{const wxChar *
}{ParseDateTime
}{\param{const wxChar *
}{datetime
}}
1076 Parses the string
{\it datetime
} containing the date and time in free format.
1077 This function tries as hard as it can to interpret the given string as date
1078 and time. Unlike
\helpref{ParseRfc822Date
}{wxdatetimeparserfc822date
}, it
1079 will accept anything that may be accepted and will only reject strings which
1080 can not be parsed in any way at all.
1082 Returns
{\tt NULL
} if the conversion failed, otherwise return the pointer to
1083 the character which stopped the scan. This method is currently not
1084 implemented, so always returns NULL.
1086 \membersection{wxDateTime::ParseDate
}\label{wxdatetimeparsedate
}
1088 \func{const wxChar *
}{ParseDate
}{\param{const wxChar *
}{date
}}
1090 This function is like
\helpref{ParseDateTime
}{wxdatetimeparsedatetime
}, but it
1091 only allows the date to be specified. It is thus less flexible then
1092 \helpref{ParseDateTime
}{wxdatetimeparsedatetime
}, but also has less chances to
1093 misinterpret the user input.
1095 Returns
{\tt NULL
} if the conversion failed, otherwise return the pointer to
1096 the character which stopped the scan.
1098 \membersection{wxDateTime::ParseTime
}\label{wxdatetimeparsetime
}
1100 \func{const wxChar *
}{ParseTime
}{\param{const wxChar *
}{time
}}
1102 This functions is like
\helpref{ParseDateTime
}{wxdatetimeparsedatetime
}, but
1103 only allows the time to be specified in the input string.
1105 Returns
{\tt NULL
} if the conversion failed, otherwise return the pointer to
1106 the character which stopped the scan.
1108 \membersection{wxDateTime::Format
}\label{wxdatetimeformat
}
1110 \constfunc{wxString
}{Format
}{\param{const wxChar *
}{format = "\%c"
},
\param{const TimeZone\&
}{tz = Local
}}
1112 This function does the same as the standard ANSI C
{\tt strftime(
3)
} function.
1113 Please see its description for the meaning of
{\it format
} parameter.
1115 It also accepts a few wxWidgets-specific extensions: you can optionally specify
1116 the width of the field to follow using
{\tt printf(
3)
}-like syntax and the
1117 format specification
{\tt \%l
} can be used to get the number of milliseconds.
1119 \wxheading{See also
}
1121 \helpref{ParseFormat
}{wxdatetimeparseformat
}
1123 \membersection{wxDateTime::FormatDate
}\label{wxdatetimeformatdate
}
1125 \constfunc{wxString
}{FormatDate
}{\void}
1127 Identical to calling
\helpref{Format()
}{wxdatetimeformat
} with
{\tt "\%x"
}
1128 argument (which means `preferred date representation for the current locale').
1130 \membersection{wxDateTime::FormatTime
}\label{wxdatetimeformattime
}
1132 \constfunc{wxString
}{FormatTime
}{\void}
1134 Identical to calling
\helpref{Format()
}{wxdatetimeformat
} with
{\tt "\%X"
}
1135 argument (which means `preferred time representation for the current locale').
1137 \membersection{wxDateTime::FormatISODate
}\label{wxdatetimeformatisodate
}
1139 \constfunc{wxString
}{FormatISODate
}{\void}
1141 This function returns the date representation in the ISO
8601 format
1144 \membersection{wxDateTime::FormatISOTime
}\label{wxdatetimeformatisotime
}
1146 \constfunc{wxString
}{FormatISOTime
}{\void}
1148 This function returns the time representation in the ISO
8601 format
1151 %%%%%%%%%%%%%%%%%%%%%%%%%%% calendar calculations %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1153 \membersection{wxDateTime::SetToWeekDayInSameWeek
}\label{wxdatetimesettoweekdayinsameweek
}
1155 \func{wxDateTime\&
}{SetToWeekDayInSameWeek
}{\param{WeekDay
}{weekday
},
\param{WeekFlags
}{flags =
{\tt Monday
\_First}}}
1157 Adjusts the date so that it will still lie in the same week as before, but its
1158 week day will be the given one.
1160 Returns the reference to the modified object itself.
1162 \membersection{wxDateTime::GetWeekDayInSameWeek
}\label{wxdatetimegetweekdayinsameweek
}
1164 \constfunc{wxDateTime
}{GetWeekDayInSameWeek
}{\param{WeekDay
}{weekday
},
\param{WeekFlags
}{flags =
{\tt Monday
\_First}}}
1166 Returns the copy of this object to which
1167 \helpref{SetToWeekDayInSameWeek
}{wxdatetimesettoweekdayinsameweek
} was
1170 \membersection{wxDateTime::SetToNextWeekDay
}\label{wxdatetimesettonextweekday
}
1172 \func{wxDateTime\&
}{SetToNextWeekDay
}{\param{WeekDay
}{weekday
}}
1174 Sets the date so that it will be the first
{\it weekday
} following the current
1177 Returns the reference to the modified object itself.
1179 \membersection{wxDateTime::GetNextWeekDay
}\label{wxdatetimegetnextweekday
}
1181 \constfunc{wxDateTime
}{GetNextWeekDay
}{\param{WeekDay
}{weekday
}}
1183 Returns the copy of this object to which
1184 \helpref{SetToNextWeekDay
}{wxdatetimesettonextweekday
} was applied.
1186 \membersection{wxDateTime::SetToPrevWeekDay
}\label{wxdatetimesettoprevweekday
}
1188 \func{wxDateTime\&
}{SetToPrevWeekDay
}{\param{WeekDay
}{weekday
}}
1190 Sets the date so that it will be the last
{\it weekday
} before the current
1193 Returns the reference to the modified object itself.
1195 \membersection{wxDateTime::GetPrevWeekDay
}\label{wxdatetimegetprevweekday
}
1197 \constfunc{wxDateTime
}{GetPrevWeekDay
}{\param{WeekDay
}{weekday
}}
1199 Returns the copy of this object to which
1200 \helpref{SetToPrevWeekDay
}{wxdatetimesettoprevweekday
} was applied.
1202 \membersection{wxDateTime::SetToWeekDay
}\label{wxdatetimesettoweekday
}
1204 \func{bool
}{SetToWeekDay
}{\param{WeekDay
}{weekday
},
\param{int
}{n =
1},
\param{Month
}{month = Inv
\_Month},
\param{int
}{year = Inv
\_Year}}
1206 Sets the date to the
{\it n
}-th
{\it weekday
} in the given month of the given
1207 year (the current month and year are used by default). The parameter
{\it n
}
1208 may be either positive (counting from the beginning of the month) or negative
1209 (counting from the end of it).
1211 For example,
{\tt SetToWeekDay(
2, wxDateTime::Wed)
} will set the date to the
1212 second Wednesday in the current month and
1213 {\tt SetToWeekDay(-
1, wxDateTime::Sun)
} -- to the last Sunday in it.
1215 Returns
{\tt true
} if the date was modified successfully,
{\tt false
}
1216 otherwise meaning that the specified date doesn't exist.
1218 \membersection{wxDateTime::GetWeekDay
}\label{wxdatetimegetweekday2
}
1220 \constfunc{wxDateTime
}{GetWeekDay
}{\param{WeekDay
}{weekday
},
\param{int
}{n =
1},
\param{Month
}{month = Inv
\_Month},
\param{int
}{year = Inv
\_Year}}
1222 Returns the copy of this object to which
1223 \helpref{SetToWeekDay
}{wxdatetimesettoweekday
} was applied.
1225 \membersection{wxDateTime::SetToLastWeekDay
}\label{wxdatetimesettolastweekday
}
1227 \func{bool
}{SetToLastWeekDay
}{\param{WeekDay
}{weekday
},
\param{Month
}{month = Inv
\_Month},
\param{int
}{year = Inv
\_Year}}
1229 The effect of calling this function is the same as of calling
1230 {\tt SetToWeekDay(-
1, weekday, month, year)
}. The date will be set to the last
1231 {\it weekday
} in the given month and year (the current ones by default).
1233 Always returns
{\tt true
}.
1235 \membersection{wxDateTime::GetLastWeekDay
}\label{wxdatetimegetlastweekday
}
1237 \func{wxDateTime
}{GetLastWeekDay
}{\param{WeekDay
}{weekday
},
\param{Month
}{month = Inv
\_Month},
\param{int
}{year = Inv
\_Year}}
1239 Returns the copy of this object to which
1240 \helpref{SetToLastWeekDay
}{wxdatetimesettolastweekday
} was applied.
1242 \membersection{wxDateTime::SetToTheWeek
}\label{wxdatetimesettotheweek
}
1244 \func{bool
}{SetToTheWeek
}{\param{wxDateTime
\_t }{numWeek
},
\param{WeekDay
}{weekday = Mon
},
\param{WeekFlags
}{flags =
{\tt Monday
\_First}}}
1246 Set the date to the given
{\it weekday
} in the week with given number
1247 {\it numWeek
}. The number should be in range $
1\ldots53$ and
{\tt false
} will
1248 be returned if the specified date doesn't exist.
{\tt true
} is returned if the
1249 date was changed successfully.
1251 \membersection{wxDateTime::GetWeek
}\label{wxdatetimegetweek
}
1253 \constfunc{wxDateTime
}{GetWeek
}{\param{wxDateTime
\_t }{numWeek
},
\param{WeekDay
}{weekday = Mon
},
\param{WeekFlags
}{flags =
{\tt Monday
\_First}}}
1255 Returns the copy of this object to which
1256 \helpref{SetToTheWeek
}{wxdatetimesettotheweek
} was applied.
1258 \membersection{wxDateTime::SetToLastMonthDay
}\label{wxdatetimesettolastmonthday
}
1260 \func{wxDateTime\&
}{SetToLastMonthDay
}{\param{Month
}{month = Inv
\_Month},
\param{int
}{year = Inv
\_Year}}
1262 Sets the date to the last day in the specified month (the current one by
1265 Returns the reference to the modified object itself.
1267 \membersection{wxDateTime::GetLastMonthDay
}\label{wxdatetimegetlastmonthday
}
1269 \constfunc{wxDateTime
}{GetLastMonthDay
}{\param{Month
}{month = Inv
\_Month},
\param{int
}{year = Inv
\_Year}}
1271 Returns the copy of this object to which
1272 \helpref{SetToLastMonthDay
}{wxdatetimesettolastmonthday
} was applied.
1274 \membersection{wxDateTime::SetToYearDay
}\label{wxdatetimesettoyearday
}
1276 \func{wxDateTime\&
}{SetToYearDay
}{\param{wxDateTime
\_t }{yday
}}
1278 Sets the date to the day number
{\it yday
} in the same year (i.e., unlike the
1279 other functions, this one does not use the current year). The day number
1280 should be in the range $
1\ldots366$ for the leap years and $
1\ldots365$ for
1283 Returns the reference to the modified object itself.
1285 \membersection{wxDateTime::GetYearDay
}\label{wxdatetimegetyearday
}
1287 \constfunc{wxDateTime
}{GetYearDay
}{\param{wxDateTime
\_t }{yday
}}
1289 Returns the copy of this object to which
1290 \helpref{SetToYearDay
}{wxdatetimesettoyearday
} was applied.
1292 %%%%%%%%%%%%%%%%%%%%%%%%%%% astronomical functions %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1294 \membersection{wxDateTime::GetJulianDayNumber
}\label{wxdatetimegetjuliandaynumber
}
1296 \constfunc{double
}{GetJulianDayNumber
}{\void}
1298 Returns the
\helpref{JDN
}{wxdatetimesetjdn
} corresponding to this date. Beware
1301 \wxheading{See also
}
1303 \helpref{GetModifiedJulianDayNumber
}{wxdatetimegetmodifiedjuliandaynumber
}
1305 \membersection{wxDateTime::GetJDN
}\label{wxdatetimegetjdn
}
1307 \constfunc{double
}{GetJDN
}{\void}
1309 Synonym for
\helpref{GetJulianDayNumber
}{wxdatetimegetjuliandaynumber
}.
1311 \membersection{wxDateTime::GetModifiedJulianDayNumber
}\label{wxdatetimegetmodifiedjuliandaynumber
}
1313 \constfunc{double
}{GetModifiedJulianDayNumber
}{\void}
1315 Returns the
{\it Modified Julian Day Number
} (MJD) which is, by definition,
1316 equal to $JDN -
2400000.5$. The MJDs are simpler to work with as the integral
1317 MJDs correspond to midnights of the dates in the Gregorian calendar and not th
1318 noons like JDN. The MJD $
0$ is Nov
17,
1858.
1320 \membersection{wxDateTime::GetMJD
}\label{wxdatetimegetmjd
}
1322 \constfunc{double
}{GetMJD
}{\void}
1324 Synonym for
\helpref{GetModifiedJulianDayNumber
}{wxdatetimegetmodifiedjuliandaynumber
}.
1326 \membersection{wxDateTime::GetRataDie
}\label{wxdatetimegetratadie
}
1328 \constfunc{double
}{GetRataDie
}{\void}
1330 Return the
{\it Rata Die number
} of this date.
1332 By definition, the Rata Die number is a date specified as the number of days
1333 relative to a base date of December
31 of the year
0. Thus January
1 of the
1334 year
1 is Rata Die day
1.
1336 %%%%%%%%%%%%%%%%%%%%%%%%%%% timezone and DST %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1338 \membersection{wxDateTime::ToTimezone
}\label{wxdatetimetotimezone
}
1340 \constfunc{wxDateTime
}{ToTimezone
}{\param{const TimeZone\&
}{tz
},
\param{bool
}{noDST = false
}}
1342 Transform the date to the given time zone. If
{\it noDST
} is
{\tt true
}, no
1343 DST adjustments will be made.
1345 Returns the date in the new time zone.
1347 \membersection{wxDateTime::MakeTimezone
}\label{wxdatetimemaketimezone
}
1349 \func{wxDateTime\&
}{MakeTimezone
}{\param{const TimeZone\&
}{tz
},
\param{bool
}{noDST = false
}}
1351 Modifies the object in place to represent the date in another time zone. If
1352 {\it noDST
} is
{\tt true
}, no DST adjustments will be made.
1354 \membersection{wxDateTime::ToGMT
}\label{wxdatetimetogmt
}
1356 \constfunc{wxDateTime
}{ToGMT
}{\param{bool
}{noDST = false
}}
1358 This is the same as calling
\helpref{ToTimezone
}{wxdatetimetotimezone
} with
1359 the argument
{\tt GMT0
}.
1361 \membersection{wxDateTime::MakeGMT
}\label{wxdatetimemakegmt
}
1363 \func{wxDateTime\&
}{MakeGMT
}{\param{bool
}{noDST = false
}}
1365 This is the same as calling
\helpref{MakeTimezone
}{wxdatetimemaketimezone
} with
1366 the argument
{\tt GMT0
}.
1368 \membersection{wxDateTime::IsDST
}\label{wxdatetimeisdst
}
1370 \constfunc{int
}{IsDST
}{\param{Country
}{country = Country
\_Default}}
1372 Returns
{\tt true
} if the DST is applied for this date in the given country.
1374 \wxheading{See also
}
1376 \helpref{GetBeginDST
}{wxdatetimegetbegindst
} and
1377 \helpref{GetEndDST
}{wxdatetimegetenddst
}
1379 \section{\class{wxDateTimeHolidayAuthority
}}\label{wxdatetimeholidayauthority
}
1383 \section{\class{wxDateTimeWorkDays
}}\label{wxdatetimeworkdays
}