1 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
3 %% Purpose: wxDateTime documentation
4 %% Author: Vadim Zeitlin
8 %% Copyright: (c) Vadim Zeitlin
9 %% License: wxWindows 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 following
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
}}}
184 \membersection{Static functions
}\label{datetimestaticfunctions
}
186 For convenience, all static functions are collected here. These functions
187 either set or return the static variables of wxDateSpan (the country), return
188 the current moment, year, month or number of days in it, or do some general
189 calendar-related actions.
191 Please note that although several function accept an extra
{\it Calendar
}
192 parameter, it is currently ignored as only the Gregorian calendar is
193 supported. Future versions will support other calendars.
195 \pythonnote{These methods are standalone functions named
196 {\tt wxDateTime
\_<StaticMethodName>
} in wxPython.
}
198 \helpref{SetCountry
}{wxdatetimesetcountry
}\\
199 \helpref{GetCountry
}{wxdatetimegetcountry
}\\
200 \helpref{IsWestEuropeanCountry
}{wxdatetimeiswesteuropeancountry
}\\
201 \helpref{GetCurrentYear
}{wxdatetimegetcurrentyear
}\\
202 \helpref{ConvertYearToBC
}{wxdatetimeconvertyeartobc
}\\
203 \helpref{GetCurrentMonth
}{wxdatetimegetcurrentmonth
}\\
204 \helpref{IsLeapYear
}{wxdatetimeisleapyear
}\\
205 \helpref{GetCentury
}{wxdatetimegetcenturystatic
}\\
206 \helpref{GetNumberOfDays
}{wxdatetimegetnumberofdays
}\\
207 \helpref{GetNumberOfDays
}{wxdatetimegetnumberofdays
}\\
208 \helpref{GetMonthName
}{wxdatetimegetmonthname
}\\
209 \helpref{GetWeekDayName
}{wxdatetimegetweekdayname
}\\
210 \helpref{GetAmPmStrings
}{wxdatetimegetampmstrings
}\\
211 \helpref{IsDSTApplicable
}{wxdatetimeisdstapplicable
}\\
212 \helpref{GetBeginDST
}{wxdatetimegetbegindst
}\\
213 \helpref{GetEndDST
}{wxdatetimegetenddst
}\\
214 \helpref{Now
}{wxdatetimenow
}\\
215 \helpref{UNow
}{wxdatetimeunow
}\\
216 \helpref{Today
}{wxdatetimetoday
}
219 \membersection{Constructors, assignment operators and setters
}\label{datetimeconstructors
}
221 Constructors and various
{\tt Set()
} methods are collected here. If you
222 construct a date object from separate values for day, month and year, you
223 should use
\helpref{IsValid
}{wxdatetimeisvalid
} method to check that the
224 values were correct as constructors can not return an error code.
226 \helpref{wxDateTime()
}{wxdatetimewxdatetimedef
}\\
227 \helpref{wxDateTime(time
\_t)
}{wxdatetimewxdatetimetimet
}\\
228 \helpref{wxDateTime(struct tm)
}{wxdatetimewxdatetimetm
}\\
229 %\helpref{wxDateTime(struct Tm)}{wxdatetimewxdatetimetm} - Tm not documented yet\\
230 \helpref{wxDateTime(double jdn)
}{wxdatetimewxdatetimejdn
}\\
231 \helpref{wxDateTime(h, m, s, ms)
}{wxdatetimewxdatetimetime
}\\
232 \helpref{wxDateTime(day, mon, year, h, m, s, ms)
}{wxdatetimewxdatetimedate
}\\
233 \helpref{SetToCurrent
}{wxdatetimesettocurrent
}\\
234 \helpref{Set(time
\_t)
}{wxdatetimesettimet
}\\
235 \helpref{Set(struct tm)
}{wxdatetimesettm
}\\
236 %\helpref{Set(struct Tm)}{wxdatetimesettm} - Tm not documented yet\\
237 \helpref{Set(double jdn)
}{wxdatetimesetjdn
}\\
238 \helpref{Set(h, m, s, ms)
}{wxdatetimesettime
}\\
239 \helpref{Set(day, mon, year, h, m, s, ms)
}{wxdatetimesetdate
}\\
240 \helpref{SetFromDOS(unsigned long ddt)
}{wxdatetimesetfromdos
}\\
241 \helpref{ResetTime
}{wxdatetimeresettime
}\\
242 \helpref{SetYear
}{wxdatetimesetyear
}\\
243 \helpref{SetMonth
}{wxdatetimesetmonth
}\\
244 \helpref{SetDay
}{wxdatetimesetdate
}\\
245 \helpref{SetHour
}{wxdatetimesethour
}\\
246 \helpref{SetMinute
}{wxdatetimesetminute
}\\
247 \helpref{SetSecond
}{wxdatetimesetsecond
}\\
248 \helpref{SetMillisecond
}{wxdatetimesetmillisecond
}\\
249 \helpref{operator$=$(time
\_t)
}{wxdatetimeoperatoreqtimet
}\\
250 \helpref{operator$=$(struct tm)
}{wxdatetimeoperatoreqtm
}\rtfsp
253 \membersection{Accessors
}\label{datetimeaccessors
}
255 Here are the trivial accessors. Other functions, which might have to perform
256 some more complicated calculations to find the answer are under the
257 \helpref{Calendar calculations
}{datetimecalculations
} section.
259 \helpref{IsValid
}{wxdatetimeisvalid
}\\
260 \helpref{GetTicks
}{wxdatetimegetticks
}\\
261 \helpref{GetCentury
}{wxdatetimegetcentury
}\\
262 \helpref{GetYear
}{wxdatetimegetyear
}\\
263 \helpref{GetMonth
}{wxdatetimegetmonth
}\\
264 \helpref{GetDay
}{wxdatetimegetday
}\\
265 \helpref{GetWeekDay
}{wxdatetimegetweekday
}\\
266 \helpref{GetHour
}{wxdatetimegethour
}\\
267 \helpref{GetMinute
}{wxdatetimegetminute
}\\
268 \helpref{GetSecond
}{wxdatetimegetsecond
}\\
269 \helpref{GetMillisecond
}{wxdatetimegetmillisecond
}\\
270 \helpref{GetDayOfYear
}{wxdatetimegetdayofyear
}\\
271 \helpref{GetWeekOfYear
}{wxdatetimegetweekofyear
}\\
272 \helpref{GetWeekOfMonth
}{wxdatetimegetweekofmonth
}\\
273 \helpref{GetYearDay
}{wxdatetimegetyearday
}\\
274 \helpref{IsWorkDay
}{wxdatetimeisworkday
}\\
275 \helpref{IsGregorianDate
}{wxdatetimeisgregoriandate
}\\
276 \helpref{GetAsDOS
}{wxdatetimegetasdos
}
279 \membersection{Date comparison
}\label{datecomparison
}
281 There are several function to allow date comparison. To supplement them, a few
282 global operators $>$, $<$ etc taking wxDateTime are defined.
284 \helpref{IsEqualTo
}{wxdatetimeisequalto
}\\
285 \helpref{IsEarlierThan
}{wxdatetimeisearlierthan
}\\
286 \helpref{IsLaterThan
}{wxdatetimeislaterthan
}\\
287 \helpref{IsStrictlyBetween
}{wxdatetimeisstrictlybetween
}\\
288 \helpref{IsBetween
}{wxdatetimeisbetween
}\\
289 \helpref{IsSameDate
}{wxdatetimeissamedate
}\\
290 \helpref{IsSameTime
}{wxdatetimeissametime
}\\
291 \helpref{IsEqualUpTo
}{wxdatetimeisequalupto
}
294 \membersection{Date arithmetics
}\label{datearithmetics
}
296 These functions carry out
\helpref{arithmetics
}{tdatearithm
} on the wxDateTime
297 objects. As explained in the overview, either wxTimeSpan or wxDateSpan may be
298 added to wxDateTime, hence all functions are overloaded to accept both
301 Also, both
{\tt Add()
} and
{\tt Subtract()
} have both const and non-const
302 version. The first one returns a new object which represents the
303 sum/difference of the original one with the argument while the second form
304 modifies the object to which it is applied. The operators $-=$ and $+=$ are
305 defined to be equivalent to the second forms of these functions.
307 \helpref{Add(wxTimeSpan)
}{wxdatetimeaddts
}\\
308 \helpref{Add(wxDateSpan)
}{wxdatetimeaddds
}\\
309 \helpref{Subtract(wxTimeSpan)
}{wxdatetimesubtractts
}\\
310 \helpref{Subtract(wxDateSpan)
}{wxdatetimesubtractds
}\\
311 \helpref{Subtract(wxDateTime)
}{wxdatetimesubtractdt
}\\
312 \helpref{oparator$+=$(wxTimeSpan)
}{wxdatetimeaddts
}\\
313 \helpref{oparator$+=$(wxDateSpan)
}{wxdatetimeaddds
}\\
314 \helpref{oparator$-=$(wxTimeSpan)
}{wxdatetimesubtractts
}\\
315 \helpref{oparator$-=$(wxDateSpan)
}{wxdatetimesubtractds
}
318 \membersection{Parsing and formatting dates
}\label{datetimeparsing
}
320 These functions convert wxDateTime objects to and from text. The
321 conversions to text are mostly trivial: you can either do it using the default
322 date and time representations for the current locale (
323 \helpref{FormatDate
}{wxdatetimeformatdate
} and
324 \helpref{FormatTime
}{wxdatetimeformattime
}), using the international standard
325 representation defined by ISO
8601 (
326 \helpref{FormatISODate
}{wxdatetimeformatisodate
} and
327 \helpref{FormatISOTime
}{wxdatetimeformatisotime
}) or by specifying any format
328 at all and using
\helpref{Format
}{wxdatetimeformat
} directly.
330 The conversions from text are more interesting, as there are much more
331 possibilities to care about. The simplest cases can be taken care of with
332 \helpref{ParseFormat
}{wxdatetimeparseformat
} which can parse any date in the
333 given (rigid) format.
\helpref{ParseRfc822Date
}{wxdatetimeparserfc822date
} is
334 another function for parsing dates in predefined format -- the one of RFC
822
335 which (still...) defines the format of email messages on the Internet. This
336 format can not be described with
{\tt strptime(
3)
}-like format strings used by
337 \helpref{Format
}{wxdatetimeformat
}, hence the need for a separate function.
339 But the most interesting functions are
340 \helpref{ParseTime
}{wxdatetimeparsetime
},
341 \helpref{ParseDate
}{wxdatetimeparsedate
} and
342 \helpref{ParseDateTime
}{wxdatetimeparsedatetime
}. They try to parse the date
343 ans time (or only one of them) in `free' format, i.e. allow them to be
344 specified in any of possible ways. These functions will usually be used to
345 parse the (interactive) user input which is not bound to be in any predefined
346 format. As an example,
\helpref{ParseDateTime
}{wxdatetimeparsedatetime
} can
347 parse the strings such as
{\tt "tomorrow"
},
{\tt "March first"
} and even
350 \helpref{ParseRfc822Date
}{wxdatetimeparserfc822date
}\\
351 \helpref{ParseFormat
}{wxdatetimeparseformat
}\\
352 \helpref{ParseDateTime
}{wxdatetimeparsedatetime
}\\
353 \helpref{ParseDate
}{wxdatetimeparsedate
}\\
354 \helpref{ParseTime
}{wxdatetimeparsetime
}\\
355 \helpref{Format
}{wxdatetimeformat
}\\
356 \helpref{FormatDate
}{wxdatetimeformatdate
}\\
357 \helpref{FormatTime
}{wxdatetimeformattime
}\\
358 \helpref{FormatISODate
}{wxdatetimeformatisodate
}\\
359 \helpref{FormatISOTime
}{wxdatetimeformatisotime
}
362 \membersection{Calendar calculations
}\label{datetimecalculations
}
364 The functions in this section perform the basic calendar calculations, mostly
365 related to the week days. They allow to find the given week day in the
366 week with given number (either in the month or in the year) and so on.
368 All (non-const) functions in this section don't modify the time part of the
369 wxDateTime -- they only work with the date part of it.
371 \helpref{SetToWeekDayInSameWeek
}{wxdatetimesettoweekdayinsameweek
}\\
372 \helpref{GetWeekDayInSameWeek
}{wxdatetimegetweekdayinsameweek
}\\
373 \helpref{SetToNextWeekDay
}{wxdatetimesettonextweekday
}\\
374 \helpref{GetNextWeekDay
}{wxdatetimegetnextweekday
}\\
375 \helpref{SetToPrevWeekDay
}{wxdatetimesettoprevweekday
}\\
376 \helpref{GetPrevWeekDay
}{wxdatetimegetprevweekday
}\\
377 \helpref{SetToWeekDay
}{wxdatetimesettoweekday
}\\
378 \helpref{GetWeekDay
}{wxdatetimegetweekday2
}\\
379 \helpref{SetToLastWeekDay
}{wxdatetimesettolastweekday
}\\
380 \helpref{GetLastWeekDay
}{wxdatetimegetlastweekday
}\\
381 \helpref{SetToWeekOfYear
}{wxdatetimesettoweekofyear
}\\
382 \helpref{SetToLastMonthDay
}{wxdatetimesettolastmonthday
}\\
383 \helpref{GetLastMonthDay
}{wxdatetimegetlastmonthday
}\\
384 \helpref{SetToYearDay
}{wxdatetimesettoyearday
}\\
385 \helpref{GetYearDay
}{wxdatetimegetyearday
}
388 \membersection{Astronomical/historical functions
}\label{astronomyhistoryfunctions
}
390 Some degree of support for the date units used in astronomy and/or history is
391 provided. You can construct a wxDateTime object from a
392 \helpref{JDN
}{wxdatetimesetjdn
} and you may also get its JDN,
393 \helpref{MJD
}{wxdatetimegetmodifiedjuliandaynumber
} or
394 \helpref{Rata Die number
}{wxdatetimegetratadie
} from it.
396 \helpref{wxDateTime(double jdn)
}{wxdatetimewxdatetimejdn
}\\
397 \helpref{Set(double jdn)
}{wxdatetimesetjdn
}\\
398 \helpref{GetJulianDayNumber
}{wxdatetimegetjuliandaynumber
}\\
399 \helpref{GetJDN
}{wxdatetimegetjdn
}\\
400 \helpref{GetModifiedJulianDayNumber
}{wxdatetimegetmodifiedjuliandaynumber
}\\
401 \helpref{GetMJD
}{wxdatetimegetmjd
}\\
402 \helpref{GetRataDie
}{wxdatetimegetratadie
}
405 \membersection{Time zone and DST support
}\label{datetimedstzone
}
407 Please see the
\helpref{time zone overview
}{tdatetimezones
} for more
408 information about time zones. Normally, these functions should be rarely used.
410 \helpref{FromTimezone
}{wxdatetimefromtimezone
}\\
411 \helpref{ToTimezone
}{wxdatetimetotimezone
}\\
412 \helpref{MakeTimezone
}{wxdatetimemaketimezone
}\\
413 \helpref{MakeFromTimezone
}{wxdatetimemakefromtimezone
}\\
414 \helpref{ToUTC
}{wxdatetimetoutc
}\\
415 \helpref{MakeUTC
}{wxdatetimemakeutc
}\\
416 \helpref{GetBeginDST
}{wxdatetimegetbegindst
}\\
417 \helpref{GetEndDST
}{wxdatetimegetenddst
}\\
418 \helpref{IsDST
}{wxdatetimeisdst
}
420 \helponly{\insertatlevel{2}{
426 %%%%%%%%%%%%%%%%%%%%%%%%%%% static functions %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
429 \membersection{wxDateTime::ConvertYearToBC
}\label{wxdatetimeconvertyeartobc
}
431 \func{static int
}{ConvertYearToBC
}{\param{int
}{year
}}
433 Converts the year in absolute notation (i.e. a number which can be negative,
434 positive or zero) to the year in BC/AD notation. For the positive years,
435 nothing is done, but the year
0 is year
1 BC and so for other years there is a
438 This function should be used like this:
442 int y = dt.GetYear();
443 printf("The year is
%d%s", wxDateTime::ConvertYearToBC(y), y > 0 ? "AD" : "BC");
447 \membersection{wxDateTime::GetAmPmStrings
}\label{wxdatetimegetampmstrings
}
449 \func{static void
}{GetAmPmStrings
}{\param{wxString *
}{am
},
\param{wxString *
}{pm
}}
451 Returns the translations of the strings
{\tt AM
} and
{\tt PM
} used for time
452 formatting for the current locale. Either of the pointers may be
{\tt NULL
} if
453 the corresponding value is not needed.
456 \membersection{wxDateTime::GetBeginDST
}\label{wxdatetimegetbegindst
}
458 \func{static wxDateTime
}{GetBeginDST
}{\param{int
}{year = Inv
\_Year},
\param{Country
}{country = Country
\_Default}}
460 Get the beginning of DST for the given country in the given year (current one
461 by default). This function suffers from limitations described in
462 \helpref{DST overview
}{tdatedst
}.
466 \helpref{GetEndDST
}{wxdatetimegetenddst
}
469 \membersection{wxDateTime::GetCountry
}\label{wxdatetimegetcountry
}
471 \func{static Country
}{GetCountry
}{\void}
473 Returns the current default country. The default country is used for DST
474 calculations, for example.
478 \helpref{SetCountry
}{wxdatetimesetcountry
}
481 \membersection{wxDateTime::GetCurrentYear
}\label{wxdatetimegetcurrentyear
}
483 \func{static int
}{GetCurrentYear
}{\param{Calendar
}{cal = Gregorian
}}
485 Get the current year in given calendar (only Gregorian is currently supported).
488 \membersection{wxDateTime::GetCurrentMonth
}\label{wxdatetimegetcurrentmonth
}
490 \func{static Month
}{GetCurrentMonth
}{\param{Calendar
}{cal = Gregorian
}}
492 Get the current month in given calendar (only Gregorian is currently supported).
495 \membersection{wxDateTime::GetCentury
}\label{wxdatetimegetcenturystatic
}
497 \func{static int
}{GetCentury
}{\param{int
}{year
}}
499 Get the current century, i.e. first two digits of the year, in given calendar
500 (only Gregorian is currently supported).
503 \membersection{wxDateTime::GetEndDST
}\label{wxdatetimegetenddst
}
505 \func{static wxDateTime
}{GetEndDST
}{\param{int
}{year = Inv
\_Year},
\param{Country
}{country = Country
\_Default}}
507 Returns the end of DST for the given country in the given year (current one by
512 \helpref{GetBeginDST
}{wxdatetimegetbegindst
}
515 \membersection{wxDateTime::GetMonthName
}\label{wxdatetimegetmonthname
}
517 \func{static wxString
}{GetMonthName
}{\param{Month
}{month
},
\param{NameFlags
}{flags = Name
\_Full}}
519 Gets the full (default) or abbreviated (specify
{\tt Name
\_Abbr} name of the
524 \helpref{GetWeekDayName
}{wxdatetimegetweekdayname
}
527 \membersection{wxDateTime::GetNumberOfDays
}\label{wxdatetimegetnumberofdays
}
529 \func{static wxDateTime
\_t}{GetNumberOfDays
}{\param{int
}{year
},
\param{Calendar
}{cal = Gregorian
}}
531 \func{static wxDateTime
\_t}{GetNumberOfDays
}{\param{Month
}{month
},
\param{int
}{year = Inv
\_Year},
\param{Calendar
}{cal = Gregorian
}}
533 Returns the number of days in the given year or in the given month of the
536 The only supported value for
{\it cal
} parameter is currently
{\tt Gregorian
}.
538 \pythonnote{These two methods are named
{\tt GetNumberOfDaysInYear
}
539 and
{\tt GetNumberOfDaysInMonth
} in wxPython.
}
542 \membersection{wxDateTime::GetTimeNow
}\label{wxdatetimegettimenow
}
544 \func{static time
\_t}{GetTimeNow
}{\void}
546 Returns the current time.
549 \membersection{wxDateTime::GetTmNow
}\label{wxdatetimegettmnow
}
551 \func{static struct tm *
}{GetTmNow
}{\param{struct tm *
}{tm
}}
553 Returns the current time broken down, uses the buffer whose adress is
554 passed to the function via
{\it tm
} to store the result.
556 \membersection{wxDateTime::GetTmNow
}
558 \func{static struct tm *
}{GetTmNow
}{\void}
560 Returns the current time broken down. Note that this function returns a
561 pointer to a static buffer that's reused by calls to this function and
562 certain C library functions (e.g. localtime). If there is any chance your
563 code might be used in a multi-threaded application, you really should use
564 the flavour of function
\helpref{wxDateTime::GetTmNow
}{wxdatetimegettmnow
}
567 \membersection{wxDateTime::GetWeekDayName
}\label{wxdatetimegetweekdayname
}
569 \func{static wxString
}{GetWeekDayName
}{\param{WeekDay
}{weekday
},
\param{NameFlags
}{flags = Name
\_Full}}
571 Gets the full (default) or abbreviated (specify
{\tt Name
\_Abbr} name of the
576 \helpref{GetMonthName
}{wxdatetimegetmonthname
}
579 \membersection{wxDateTime::IsLeapYear
}\label{wxdatetimeisleapyear
}
581 \func{static bool
}{IsLeapYear
}{\param{int
}{year = Inv
\_Year},
\param{Calendar
}{cal = Gregorian
}}
583 Returns
{\tt true
} if the
{\it year
} is a leap one in the specified calendar.
585 This functions supports Gregorian and Julian calendars.
588 \membersection{wxDateTime::IsWestEuropeanCountry
}\label{wxdatetimeiswesteuropeancountry
}
590 \func{static bool
}{IsWestEuropeanCountry
}{\param{Country
}{country = Country
\_Default}}
592 This function returns
{\tt true
} if the specified (or default) country is one
593 of Western European ones. It is used internally by wxDateTime to determine the
594 DST convention and date and time formatting rules.
597 \membersection{wxDateTime::IsDSTApplicable
}\label{wxdatetimeisdstapplicable
}
599 \func{static bool
}{IsDSTApplicable
}{\param{int
}{year = Inv
\_Year},
\param{Country
}{country = Country
\_Default}}
601 Returns
{\tt true
} if DST was used n the given year (the current one by
602 default) in the given country.
605 \membersection{wxDateTime::Now
}\label{wxdatetimenow
}
607 \func{static wxDateTime
}{Now
}{\void}
609 Returns the object corresponding to the current time.
614 wxDateTime now = wxDateTime::Now();
615 printf("Current time in Paris:
\t%s\n", now.Format("%c", wxDateTime::CET).c_str());
618 Note that this function is accurate up to second:
619 \helpref{wxDateTime::UNow
}{wxdatetimeunow
} should be used for better precision
620 (but it is less efficient and might not be available on all platforms).
624 \helpref{Today
}{wxdatetimetoday
}
627 \membersection{wxDateTime::SetCountry
}\label{wxdatetimesetcountry
}
629 \func{static void
}{SetCountry
}{\param{Country
}{country
}}
631 Sets the country to use by default. This setting influences the DST
632 calculations, date formatting and other things.
634 The possible values for
{\it country
} parameter are enumerated in
635 \helpref{wxDateTime constants section
}{wxdatetime
}.
639 \helpref{GetCountry
}{wxdatetimegetcountry
}
642 \membersection{wxDateTime::Today
}\label{wxdatetimetoday
}
644 \func{static wxDateTime
}{Today
}{\void}
646 Returns the object corresponding to the midnight of the current day (i.e. the
647 same as
\helpref{Now()
}{wxdatetimenow
}, but the time part is set to $
0$).
651 \helpref{Now
}{wxdatetimenow
}
654 \membersection{wxDateTime::UNow
}\label{wxdatetimeunow
}
656 \func{static wxDateTime
}{UNow
}{\void}
658 Returns the object corresponding to the current time including the
659 milliseconds if a function to get time with such precision is available on the
660 current platform (supported under most Unices and Win32).
664 \helpref{Now
}{wxdatetimenow
}
666 %%%%%%%%%%%%%%%%%%%%%%%%%%% constructors &c %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
669 \membersection{wxDateTime::wxDateTime
}\label{wxdatetimewxdatetimedef
}
671 \func{}{wxDateTime
}{\void}
673 Default constructor. Use one of
{\tt Set()
} functions to initialize the object
677 \membersection{wxDateTime::wxDateTime
}\label{wxdatetimewxdatetimetimet
}
679 \func{wxDateTime\&
}{wxDateTime
}{\param{time
\_t }{timet
}}
681 Same as
\helpref{Set
}{wxdatetimewxdatetimetimet
}.
683 \pythonnote{This constructor is named
{\tt wxDateTimeFromTimeT
} in wxPython.
}
686 \membersection{wxDateTime::wxDateTime
}\label{wxdatetimewxdatetimetm
}
688 \func{wxDateTime\&
}{wxDateTime
}{\param{const struct tm\&
}{tm
}}
690 Same as
\helpref{Set
}{wxdatetimewxdatetimetm
}
692 \pythonnote{Unsupported.
}
695 \membersection{wxDateTime::wxDateTime
}\label{wxdatetimewxdatetimejdn
}
697 \func{wxDateTime\&
}{wxDateTime
}{\param{double
}{jdn
}}
699 Same as
\helpref{Set
}{wxdatetimewxdatetimejdn
}
701 \pythonnote{This constructor is named
{\tt wxDateTimeFromJDN
} in wxPython.
}
704 \membersection{wxDateTime::wxDateTime
}\label{wxdatetimewxdatetimetime
}
706 \func{wxDateTime\&
}{wxDateTime
}{\param{wxDateTime
\_t }{hour
},
\param{wxDateTime
\_t }{minute =
0},
\param{wxDateTime
\_t }{second =
0},
\param{wxDateTime
\_t }{millisec =
0}}
708 Same as
\helpref{Set
}{wxdatetimewxdatetimetime
}
710 \pythonnote{This constructor is named
{\tt wxDateTimeFromHMS
} in wxPython.
}
713 \membersection{wxDateTime::wxDateTime
}\label{wxdatetimewxdatetimedate
}
715 \func{wxDateTime\&
}{wxDateTime
}{\param{wxDateTime
\_t }{day
},
\param{Month
}{month = Inv
\_Month},
\param{int
}{ Inv
\_Year},
716 \param{wxDateTime
\_t }{hour =
0},
\param{wxDateTime
\_t }{minute =
0},
\param{wxDateTime
\_t }{second =
0},
\param{wxDateTime
\_t }{millisec =
0}}
718 Same as
\helpref{Set
}{wxdatetimesetdate
}
720 \pythonnote{This constructor is named
{\tt wxDateTimeFromDMY
} in wxPython.
}
723 \membersection{wxDateTime::SetToCurrent
}\label{wxdatetimesettocurrent
}
725 \func{wxDateTime\&
}{SetToCurrent
}{\void}
727 Sets the date and time of to the current values. Same as assigning the result
728 of
\helpref{Now()
}{wxdatetimenow
} to this object.
731 \membersection{wxDateTime::Set
}\label{wxdatetimesettimet
}
733 \func{wxDateTime\&
}{Set
}{\param{time
\_t }{timet
}}
735 Constructs the object from
{\it timet
} value holding the number of seconds
738 \pythonnote{This method is named
{\tt SetTimeT
} in wxPython.
}
741 \membersection{wxDateTime::Set
}\label{wxdatetimesettm
}
743 \func{wxDateTime\&
}{Set
}{\param{const struct tm\&
}{tm
}}
745 Sets the date and time from the broken down representation in the standard
748 \pythonnote{Unsupported.
}
751 \membersection{wxDateTime::Set
}\label{wxdatetimesetjdn
}
753 \func{wxDateTime\&
}{Set
}{\param{double
}{jdn
}}
755 Sets the date from the so-called
{\it Julian Day Number
}.
757 By definition, the Julian Day Number, usually abbreviated as JDN, of a
758 particular instant is the fractional number of days since
12 hours Universal
759 Coordinated Time (Greenwich mean noon) on January
1 of the year -
4712 in the
760 Julian proleptic calendar.
762 \pythonnote{This method is named
{\tt SetJDN
} in wxPython.
}
765 \membersection{wxDateTime::Set
}\label{wxdatetimesettime
}
767 \func{wxDateTime\&
}{Set
}{\param{wxDateTime
\_t }{hour
},
\param{wxDateTime
\_t }{minute =
0},
\param{wxDateTime
\_t }{second =
0},
\param{wxDateTime
\_t }{millisec =
0}}
769 Sets the date to be equal to
\helpref{Today
}{wxdatetimetoday
} and the time
770 from supplied parameters.
772 \pythonnote{This method is named
{\tt SetHMS
} in wxPython.
}
775 \membersection{wxDateTime::Set
}\label{wxdatetimesetdate
}
777 \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}}
779 Sets the date and time from the parameters.
782 \membersection{wxDateTime::ResetTime
}\label{wxdatetimeresettime
}
784 \func{wxDateTime\&
}{ResetTime
}{\void}
786 Reset time to midnight (
00:
00:
00) without changing the date.
789 \membersection{wxDateTime::SetYear
}\label{wxdatetimesetyear
}
791 \func{wxDateTime\&
}{SetYear
}{\param{int
}{year
}}
793 Sets the year without changing other date components.
796 \membersection{wxDateTime::SetMonth
}\label{wxdatetimesetmonth
}
798 \func{wxDateTime\&
}{SetMonth
}{\param{Month
}{month
}}
800 Sets the month without changing other date components.
803 \membersection{wxDateTime::SetDay
}\label{wxdatetimesetday
}
805 \func{wxDateTime\&
}{SetDay
}{\param{wxDateTime
\_t }{day
}}
807 Sets the day without changing other date components.
810 \membersection{wxDateTime::SetHour
}\label{wxdatetimesethour
}
812 \func{wxDateTime\&
}{SetHour
}{\param{wxDateTime
\_t }{hour
}}
814 Sets the hour without changing other date components.
817 \membersection{wxDateTime::SetMinute
}\label{wxdatetimesetminute
}
819 \func{wxDateTime\&
}{SetMinute
}{\param{wxDateTime
\_t }{minute
}}
821 Sets the minute without changing other date components.
824 \membersection{wxDateTime::SetSecond
}\label{wxdatetimesetsecond
}
826 \func{wxDateTime\&
}{SetSecond
}{\param{wxDateTime
\_t }{second
}}
828 Sets the second without changing other date components.
831 \membersection{wxDateTime::SetMillisecond
}\label{wxdatetimesetmillisecond
}
833 \func{wxDateTime\&
}{SetMillisecond
}{\param{wxDateTime
\_t }{millisecond
}}
835 Sets the millisecond without changing other date components.
838 \membersection{wxDateTime::operator$=$
}\label{wxdatetimeoperatoreqtimet
}
840 \func{wxDateTime\&
}{operator
}{\param{time
\_t }{timet
}}
842 Same as
\helpref{Set
}{wxdatetimesettimet
}.
845 \membersection{wxDateTime::operator$=$
}\label{wxdatetimeoperatoreqtm
}
847 \func{wxDateTime\&
}{operator
}{\param{const struct tm\&
}{tm
}}
849 Same as
\helpref{Set
}{wxdatetimesettm
}.
851 %%%%%%%%%%%%%%%%%%%%%%%%%%% accessors %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
854 \membersection{wxDateTime::IsValid
}\label{wxdatetimeisvalid
}
856 \constfunc{bool
}{IsValid
}{\void}
858 Returns
{\tt true
} if the object represents a valid time moment.
861 \membersection{wxDateTime::GetTm
}\label{wxdatetimegettm
}
863 \constfunc{Tm
}{GetTm
}{\param{const TimeZone\&
}{tz = Local
}}
865 Returns broken down representation of the date and time.
868 \membersection{wxDateTime::GetTicks
}\label{wxdatetimegetticks
}
870 \constfunc{time
\_t}{GetTicks
}{\void}
872 Returns the number of seconds since Jan
1,
1970. An assert failure will occur
873 if the date is not in the range covered by
{\tt time
\_t} type.
876 \membersection{wxDateTime::GetCentury
}\label{wxdatetimegetcentury
}
878 \constfunc{int
}{GetCentury
}{\param{const TimeZone\&
}{tz = Local
}}
880 Returns the century of this date.
883 \membersection{wxDateTime::GetYear
}\label{wxdatetimegetyear
}
885 \constfunc{int
}{GetYear
}{\param{const TimeZone\&
}{tz = Local
}}
887 Returns the year in the given timezone (local one by default).
890 \membersection{wxDateTime::GetMonth
}\label{wxdatetimegetmonth
}
892 \constfunc{Month
}{GetMonth
}{\param{const TimeZone\&
}{tz = Local
}}
894 Returns the month in the given timezone (local one by default).
897 \membersection{wxDateTime::GetDay
}\label{wxdatetimegetday
}
899 \constfunc{wxDateTime
\_t}{GetDay
}{\param{const TimeZone\&
}{tz = Local
}}
901 Returns the day in the given timezone (local one by default).
904 \membersection{wxDateTime::GetWeekDay
}\label{wxdatetimegetweekday
}
906 \constfunc{WeekDay
}{GetWeekDay
}{\param{const TimeZone\&
}{tz = Local
}}
908 Returns the week day in the given timezone (local one by default).
911 \membersection{wxDateTime::GetHour
}\label{wxdatetimegethour
}
913 \constfunc{wxDateTime
\_t}{GetHour
}{\param{const TimeZone\&
}{tz = Local
}}
915 Returns the hour in the given timezone (local one by default).
918 \membersection{wxDateTime::GetMinute
}\label{wxdatetimegetminute
}
920 \constfunc{wxDateTime
\_t}{GetMinute
}{\param{const TimeZone\&
}{tz = Local
}}
922 Returns the minute in the given timezone (local one by default).
925 \membersection{wxDateTime::GetSecond
}\label{wxdatetimegetsecond
}
927 \constfunc{wxDateTime
\_t}{GetSecond
}{\param{const TimeZone\&
}{tz = Local
}}
929 Returns the seconds in the given timezone (local one by default).
932 \membersection{wxDateTime::GetMillisecond
}\label{wxdatetimegetmillisecond
}
934 \constfunc{wxDateTime
\_t}{GetMillisecond
}{\param{const TimeZone\&
}{tz = Local
}}
936 Returns the milliseconds in the given timezone (local one by default).
939 \membersection{wxDateTime::GetDayOfYear
}\label{wxdatetimegetdayofyear
}
941 \constfunc{wxDateTime
\_t}{GetDayOfYear
}{\param{const TimeZone\&
}{tz = Local
}}
943 Returns the day of the year (in $
1\ldots366$ range) in the given timezone
944 (local one by default).
947 \membersection{wxDateTime::GetWeekOfYear
}\label{wxdatetimegetweekofyear
}
949 \constfunc{wxDateTime
\_t}{GetWeekOfYear
}{\param{WeekFlags
}{flags = Monday
\_First},
\param{const TimeZone\&
}{tz = Local
}}
951 Returns the number of the week of the year this date is in. The first week of
952 the year is, according to international standards, the one containing Jan
4 or,
953 equivalently, the first week which has Thursday in this year. Both of these
954 definitions are the same as saying that the first week of the year must contain
955 more than half of its days in this year. Accordingly, the week number will
956 always be in $
1\ldots53$ range ($
52$ for non-leap years).
958 The function depends on the
\helpref{week start
}{wxdatetime
} convention
959 specified by the
{\it flags
} argument but its results for
960 \texttt{Sunday
\_First} are not well-defined as the ISO definition quoted above
961 applies to the weeks starting on Monday only.
964 \membersection{wxDateTime::GetWeekOfMonth
}\label{wxdatetimegetweekofmonth
}
966 \constfunc{wxDateTime
\_t}{GetWeekOfMonth
}{\param{WeekFlags
}{flags = Monday
\_First},
\param{const TimeZone\&
}{tz = Local
}}
968 Returns the ordinal number of the week in the month (in $
1\ldots5$ range).
970 As
\helpref{GetWeekOfYear
}{wxdatetimegetweekofyear
}, this function supports
971 both conventions for the week start. See the description of these
972 \helpref{week start
}{wxdatetime
} conventions.
975 \membersection{wxDateTime::IsWorkDay
}\label{wxdatetimeisworkday
}
977 \constfunc{bool
}{IsWorkDay
}{\param{Country
}{country = Country
\_Default}}
979 Returns
{\tt true
} is this day is not a holiday in the given country.
982 \membersection{wxDateTime::IsGregorianDate
}\label{wxdatetimeisgregoriandate
}
984 \constfunc{bool
}{IsGregorianDate
}{\param{GregorianAdoption
}{country = Gr
\_Standard}}
986 Returns
{\tt true
} if the given date is later than the date of adoption of the
987 Gregorian calendar in the given country (and hence the Gregorian calendar
988 calculations make sense for it).
990 %%%%%%%%%%%%%%%%%%%%%% dos date and time format %%%%%%%%%%%%%%%%%%%%%%%
993 \membersection{wxDateTime::SetFromDOS
}\label{wxdatetimesetfromdos
}
995 \func{wxDateTime\&
}{Set
}{\param{unsigned long
}{ddt
}}
997 Sets the date from the date and time in
998 \urlref{DOS
}{http://developer.novell.com/ndk/doc/smscomp/index.html?page=/ndk/doc/smscomp/sms
\_docs/data/hc2vlu5i.html
}
1002 \membersection{wxDateTime::GetAsDOS
}\label{wxdatetimegetasdos
}
1004 \constfunc{unsigned long
}{GetAsDOS
}{\void}
1006 Returns the date and time in
1007 \urlref{DOS
}{http://developer.novell.com/ndk/doc/smscomp/index.html?page=/ndk/doc/smscomp/sms
\_docs/data/hc2vlu5i.html
}
1010 %%%%%%%%%%%%%%%%%%%%%%%%%%% comparison %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1013 \membersection{wxDateTime::IsEqualTo
}\label{wxdatetimeisequalto
}
1015 \constfunc{bool
}{IsEqualTo
}{\param{const wxDateTime\&
}{datetime
}}
1017 Returns
{\tt true
} if the two dates are strictly identical.
1020 \membersection{wxDateTime::IsEarlierThan
}\label{wxdatetimeisearlierthan
}
1022 \constfunc{bool
}{IsEarlierThan
}{\param{const wxDateTime\&
}{datetime
}}
1024 Returns
{\tt true
} if this date precedes the given one.
1027 \membersection{wxDateTime::IsLaterThan
}\label{wxdatetimeislaterthan
}
1029 \constfunc{bool
}{IsLaterThan
}{\param{const wxDateTime\&
}{datetime
}}
1031 Returns
{\tt true
} if this date is later than the given one.
1034 \membersection{wxDateTime::IsStrictlyBetween
}\label{wxdatetimeisstrictlybetween
}
1036 \constfunc{bool
}{IsStrictlyBetween
}{\param{const wxDateTime\&
}{t1
},
\param{const wxDateTime\&
}{t2
}}
1038 Returns
{\tt true
} if this date lies strictly between the two others,
1040 \wxheading{See also
}
1042 \helpref{IsBetween
}{wxdatetimeisbetween
}
1045 \membersection{wxDateTime::IsBetween
}\label{wxdatetimeisbetween
}
1047 \constfunc{bool
}{IsBetween
}{\param{const wxDateTime\&
}{t1
},
\param{const wxDateTime\&
}{t2
}}
1049 Returns
{\tt true
} if
\helpref{IsStrictlyBetween
}{wxdatetimeisstrictlybetween
}
1050 is
{\tt true
} or if the date is equal to one of the limit values.
1052 \wxheading{See also
}
1054 \helpref{IsStrictlyBetween
}{wxdatetimeisstrictlybetween
}
1057 \membersection{wxDateTime::IsSameDate
}\label{wxdatetimeissamedate
}
1059 \constfunc{bool
}{IsSameDate
}{\param{const wxDateTime\&
}{dt
}}
1061 Returns
{\tt true
} if the date is the same without comparing the time parts.
1064 \membersection{wxDateTime::IsSameTime
}\label{wxdatetimeissametime
}
1066 \constfunc{bool
}{IsSameTime
}{\param{const wxDateTime\&
}{dt
}}
1068 Returns
{\tt true
} if the time is the same (although dates may differ).
1071 \membersection{wxDateTime::IsEqualUpTo
}\label{wxdatetimeisequalupto
}
1073 \constfunc{bool
}{IsEqualUpTo
}{\param{const wxDateTime\&
}{dt
},
\param{const wxTimeSpan\&
}{ts
}}
1075 Returns
{\tt true
} if the date is equal to another one up to the given time
1076 interval, i.e. if the absolute difference between the two dates is less than
1079 %%%%%%%%%%%%%%%%%%%%%%%%%%% arithmetics %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1082 \membersection{wxDateTime::Add
}\label{wxdatetimeaddts
}
1084 \constfunc{wxDateTime
}{Add
}{\param{const wxTimeSpan\&
}{diff
}}
1086 \func{wxDateTime\&
}{Add
}{\param{const wxTimeSpan\&
}{diff
}}
1088 \func{wxDateTime\&
}{operator$+=$
}{\param{const wxTimeSpan\&
}{diff
}}
1090 Adds the given time span to this object.
1092 \pythonnote{This method is named
{\tt AddTS
} in wxPython.
}
1096 \membersection{wxDateTime::Add
}\label{wxdatetimeaddds
}
1098 \constfunc{wxDateTime
}{Add
}{\param{const wxDateSpan\&
}{diff
}}
1100 \func{wxDateTime\&
}{Add
}{\param{const wxDateSpan\&
}{diff
}}
1102 \func{wxDateTime\&
}{operator$+=$
}{\param{const wxDateSpan\&
}{diff
}}
1104 Adds the given date span to this object.
1106 \pythonnote{This method is named
{\tt AddDS
} in wxPython.
}
1110 \membersection{wxDateTime::Subtract
}\label{wxdatetimesubtractts
}
1112 \constfunc{wxDateTime
}{Subtract
}{\param{const wxTimeSpan\&
}{diff
}}
1114 \func{wxDateTime\&
}{Subtract
}{\param{const wxTimeSpan\&
}{diff
}}
1116 \func{wxDateTime\&
}{operator$-=$
}{\param{const wxTimeSpan\&
}{diff
}}
1118 Subtracts the given time span from this object.
1120 \pythonnote{This method is named
{\tt SubtractTS
} in wxPython.
}
1124 \membersection{wxDateTime::Subtract
}\label{wxdatetimesubtractds
}
1126 \constfunc{wxDateTime
}{Subtract
}{\param{const wxDateSpan\&
}{diff
}}
1128 \func{wxDateTime\&
}{Subtract
}{\param{const wxDateSpan\&
}{diff
}}
1130 \func{wxDateTime\&
}{operator$-=$
}{\param{const wxDateSpan\&
}{diff
}}
1132 Subtracts the given date span from this object.
1134 \pythonnote{This method is named
{\tt SubtractDS
} in wxPython.
}
1138 \membersection{wxDateTime::Subtract
}\label{wxdatetimesubtractdt
}
1140 \constfunc{wxTimeSpan
}{Subtract
}{\param{const wxDateTime\&
}{dt
}}
1142 Subtracts another date from this one and returns the difference between them
1145 %%%%%%%%%%%%%%%%%%%%%%%%%%% parsing/formatting %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1148 \membersection{wxDateTime::ParseRfc822Date
}\label{wxdatetimeparserfc822date
}
1150 \func{const wxChar *
}{ParseRfc822Date
}{\param{const wxChar*
}{date
}}
1152 Parses the string
{\it date
} looking for a date formatted according to the RFC
1153 822 in it. The exact description of this format may, of course, be found in
1154 the RFC (section $
5$), but, briefly, this is the format used in the headers of
1155 Internet email messages and one of the most common strings expressing date in
1156 this format may be something like
{\tt "Sat,
18 Dec
1999 00:
48:
30 +
0100"
}.
1158 Returns
{\tt NULL
} if the conversion failed, otherwise return the pointer to
1159 the character immediately following the part of the string which could be
1160 parsed. If the entire string contains only the date in RFC
822 format,
1161 the returned pointer will be pointing to a
{\tt NUL
} character.
1163 This function is intentionally strict, it will return an error for any string
1164 which is not RFC
822 compliant. If you need to parse date formatted in more
1165 free ways, you should use
\helpref{ParseDateTime
}{wxdatetimeparsedatetime
} or
1166 \helpref{ParseDate
}{wxdatetimeparsedate
} instead.
1169 \membersection{wxDateTime::ParseFormat
}\label{wxdatetimeparseformat
}
1171 \func{const wxChar *
}{ParseFormat
}{\param{const wxChar *
}{date
},
\param{const wxChar *
}{format = wxDefaultDateTimeFormat
},
\param{const wxDateTime\&
}{dateDef = wxDefaultDateTime
}}
1173 This function parses the string
{\it date
} according to the given
1174 {\it format
}. The system
{\tt strptime(
3)
} function is used whenever available,
1175 but even if it is not, this function is still implemented, although support
1176 for locale-dependent format specifiers such as
{\tt "\%c"
},
{\tt "\%x"
} or
{\tt "\%X"
} may
1177 not be perfect and GNU extensions such as
{\tt "\%z"
} and
{\tt "\%Z"
} are
1178 not implemented. This function does handle the month and weekday
1179 names in the current locale on all platforms, however.
1181 Please see the description of the ANSI C function
{\tt strftime(
3)
} for the syntax
1182 of the format string.
1184 The
{\it dateDef
} parameter is used to fill in the fields which could not be
1185 determined from the format string. For example, if the format is
{\tt "\%d"
} (the
1186 ay of the month), the month and the year are taken from
{\it dateDef
}. If
1187 it is not specified,
\helpref{Today
}{wxdatetimetoday
} is used as the
1190 Returns
{\tt NULL
} if the conversion failed, otherwise return the pointer to
1191 the character which stopped the scan.
1194 \membersection{wxDateTime::ParseDateTime
}\label{wxdatetimeparsedatetime
}
1196 \func{const wxChar *
}{ParseDateTime
}{\param{const wxChar *
}{datetime
}}
1198 Parses the string
{\it datetime
} containing the date and time in free format.
1199 This function tries as hard as it can to interpret the given string as date
1200 and time. Unlike
\helpref{ParseRfc822Date
}{wxdatetimeparserfc822date
}, it
1201 will accept anything that may be accepted and will only reject strings which
1202 can not be parsed in any way at all.
1204 Returns
{\tt NULL
} if the conversion failed, otherwise return the pointer to
1205 the character which stopped the scan.
1208 \membersection{wxDateTime::ParseDate
}\label{wxdatetimeparsedate
}
1210 \func{const wxChar *
}{ParseDate
}{\param{const wxChar *
}{date
}}
1212 This function is like
\helpref{ParseDateTime
}{wxdatetimeparsedatetime
}, but it
1213 only allows the date to be specified. It is thus less flexible then
1214 \helpref{ParseDateTime
}{wxdatetimeparsedatetime
}, but also has less chances to
1215 misinterpret the user input.
1217 Returns
{\tt NULL
} if the conversion failed, otherwise return the pointer to
1218 the character which stopped the scan.
1221 \membersection{wxDateTime::ParseTime
}\label{wxdatetimeparsetime
}
1223 \func{const wxChar *
}{ParseTime
}{\param{const wxChar *
}{time
}}
1225 This functions is like
\helpref{ParseDateTime
}{wxdatetimeparsedatetime
}, but
1226 only allows the time to be specified in the input string.
1228 Returns
{\tt NULL
} if the conversion failed, otherwise return the pointer to
1229 the character which stopped the scan.
1232 \membersection{wxDateTime::Format
}\label{wxdatetimeformat
}
1234 \constfunc{wxString
}{Format
}{\param{const wxChar *
}{format = wxDefaultDateTimeFormat
},
\param{const TimeZone\&
}{tz = Local
}}
1236 This function does the same as the standard ANSI C
{\tt strftime(
3)
} function.
1237 Please see its description for the meaning of
{\it format
} parameter.
1239 It also accepts a few wxWidgets-specific extensions: you can optionally specify
1240 the width of the field to follow using
{\tt printf(
3)
}-like syntax and the
1241 format specification
{\tt \%l
} can be used to get the number of milliseconds.
1243 \wxheading{See also
}
1245 \helpref{ParseFormat
}{wxdatetimeparseformat
}
1248 \membersection{wxDateTime::FormatDate
}\label{wxdatetimeformatdate
}
1250 \constfunc{wxString
}{FormatDate
}{\void}
1252 Identical to calling
\helpref{Format()
}{wxdatetimeformat
} with
{\tt "\%x"
}
1253 argument (which means `preferred date representation for the current locale').
1256 \membersection{wxDateTime::FormatTime
}\label{wxdatetimeformattime
}
1258 \constfunc{wxString
}{FormatTime
}{\void}
1260 Identical to calling
\helpref{Format()
}{wxdatetimeformat
} with
{\tt "\%X"
}
1261 argument (which means `preferred time representation for the current locale').
1264 \membersection{wxDateTime::FormatISODate
}\label{wxdatetimeformatisodate
}
1266 \constfunc{wxString
}{FormatISODate
}{\void}
1268 This function returns the date representation in the ISO
8601 format
1272 \membersection{wxDateTime::FormatISOTime
}\label{wxdatetimeformatisotime
}
1274 \constfunc{wxString
}{FormatISOTime
}{\void}
1276 This function returns the time representation in the ISO
8601 format
1279 %%%%%%%%%%%%%%%%%%%%%%%%%%% calendar calculations %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1282 \membersection{wxDateTime::SetToWeekDayInSameWeek
}\label{wxdatetimesettoweekdayinsameweek
}
1284 \func{wxDateTime\&
}{SetToWeekDayInSameWeek
}{\param{WeekDay
}{weekday
},
\param{WeekFlags
}{flags =
{\tt Monday
\_First}}}
1286 Adjusts the date so that it will still lie in the same week as before, but its
1287 week day will be the given one.
1289 Returns the reference to the modified object itself.
1292 \membersection{wxDateTime::GetWeekDayInSameWeek
}\label{wxdatetimegetweekdayinsameweek
}
1294 \constfunc{wxDateTime
}{GetWeekDayInSameWeek
}{\param{WeekDay
}{weekday
},
\param{WeekFlags
}{flags =
{\tt Monday
\_First}}}
1296 Returns the copy of this object to which
1297 \helpref{SetToWeekDayInSameWeek
}{wxdatetimesettoweekdayinsameweek
} was
1301 \membersection{wxDateTime::SetToNextWeekDay
}\label{wxdatetimesettonextweekday
}
1303 \func{wxDateTime\&
}{SetToNextWeekDay
}{\param{WeekDay
}{weekday
}}
1305 Sets the date so that it will be the first
{\it weekday
} following the current
1308 Returns the reference to the modified object itself.
1311 \membersection{wxDateTime::GetNextWeekDay
}\label{wxdatetimegetnextweekday
}
1313 \constfunc{wxDateTime
}{GetNextWeekDay
}{\param{WeekDay
}{weekday
}}
1315 Returns the copy of this object to which
1316 \helpref{SetToNextWeekDay
}{wxdatetimesettonextweekday
} was applied.
1319 \membersection{wxDateTime::SetToPrevWeekDay
}\label{wxdatetimesettoprevweekday
}
1321 \func{wxDateTime\&
}{SetToPrevWeekDay
}{\param{WeekDay
}{weekday
}}
1323 Sets the date so that it will be the last
{\it weekday
} before the current
1326 Returns the reference to the modified object itself.
1329 \membersection{wxDateTime::GetPrevWeekDay
}\label{wxdatetimegetprevweekday
}
1331 \constfunc{wxDateTime
}{GetPrevWeekDay
}{\param{WeekDay
}{weekday
}}
1333 Returns the copy of this object to which
1334 \helpref{SetToPrevWeekDay
}{wxdatetimesettoprevweekday
} was applied.
1337 \membersection{wxDateTime::SetToWeekDay
}\label{wxdatetimesettoweekday
}
1339 \func{bool
}{SetToWeekDay
}{\param{WeekDay
}{weekday
},
\param{int
}{n =
1},
\param{Month
}{month = Inv
\_Month},
\param{int
}{year = Inv
\_Year}}
1341 Sets the date to the
{\it n
}-th
{\it weekday
} in the given month of the given
1342 year (the current month and year are used by default). The parameter
{\it n
}
1343 may be either positive (counting from the beginning of the month) or negative
1344 (counting from the end of it).
1346 For example,
{\tt SetToWeekDay(
2, wxDateTime::Wed)
} will set the date to the
1347 second Wednesday in the current month and
1348 {\tt SetToWeekDay(-
1, wxDateTime::Sun)
} -- to the last Sunday in it.
1350 Returns
{\tt true
} if the date was modified successfully,
{\tt false
}
1351 otherwise meaning that the specified date doesn't exist.
1354 \membersection{wxDateTime::GetWeekDay
}\label{wxdatetimegetweekday2
}
1356 \constfunc{wxDateTime
}{GetWeekDay
}{\param{WeekDay
}{weekday
},
\param{int
}{n =
1},
\param{Month
}{month = Inv
\_Month},
\param{int
}{year = Inv
\_Year}}
1358 Returns the copy of this object to which
1359 \helpref{SetToWeekDay
}{wxdatetimesettoweekday
} was applied.
1362 \membersection{wxDateTime::SetToLastWeekDay
}\label{wxdatetimesettolastweekday
}
1364 \func{bool
}{SetToLastWeekDay
}{\param{WeekDay
}{weekday
},
\param{Month
}{month = Inv
\_Month},
\param{int
}{year = Inv
\_Year}}
1366 The effect of calling this function is the same as of calling
1367 {\tt SetToWeekDay(-
1, weekday, month, year)
}. The date will be set to the last
1368 {\it weekday
} in the given month and year (the current ones by default).
1370 Always returns
{\tt true
}.
1373 \membersection{wxDateTime::GetLastWeekDay
}\label{wxdatetimegetlastweekday
}
1375 \func{wxDateTime
}{GetLastWeekDay
}{\param{WeekDay
}{weekday
},
\param{Month
}{month = Inv
\_Month},
\param{int
}{year = Inv
\_Year}}
1377 Returns the copy of this object to which
1378 \helpref{SetToLastWeekDay
}{wxdatetimesettolastweekday
} was applied.
1381 \membersection{wxDateTime::SetToWeekOfYear
}\label{wxdatetimesettoweekofyear
}
1383 \func{static wxDateTime
}{SetToWeekOfYear
}{\param{int
}{year
},
\param{wxDateTime
\_t }{numWeek
},
\param{WeekDay
}{weekday = Mon
}}
1385 Set the date to the given
\arg{weekday
} in the week number
\arg{numWeek
} of the
1386 given
\arg{year
} . The number should be in range $
1\ldots53$.
1388 Note that the returned date may be in a different year than the one passed to
1389 this function because both the week $
1$ and week $
52$ or $
53$ (for leap years)
1390 contain days from different years. See
1391 \helpref{GetWeekOfYear
}{wxdatetimegetweekofyear
} for the explanation of how the
1392 year weeks are counted.
1395 \membersection{wxDateTime::SetToLastMonthDay
}\label{wxdatetimesettolastmonthday
}
1397 \func{wxDateTime\&
}{SetToLastMonthDay
}{\param{Month
}{month = Inv
\_Month},
\param{int
}{year = Inv
\_Year}}
1399 Sets the date to the last day in the specified month (the current one by
1402 Returns the reference to the modified object itself.
1405 \membersection{wxDateTime::GetLastMonthDay
}\label{wxdatetimegetlastmonthday
}
1407 \constfunc{wxDateTime
}{GetLastMonthDay
}{\param{Month
}{month = Inv
\_Month},
\param{int
}{year = Inv
\_Year}}
1409 Returns the copy of this object to which
1410 \helpref{SetToLastMonthDay
}{wxdatetimesettolastmonthday
} was applied.
1413 \membersection{wxDateTime::SetToYearDay
}\label{wxdatetimesettoyearday
}
1415 \func{wxDateTime\&
}{SetToYearDay
}{\param{wxDateTime
\_t }{yday
}}
1417 Sets the date to the day number
{\it yday
} in the same year (i.e., unlike the
1418 other functions, this one does not use the current year). The day number
1419 should be in the range $
1\ldots366$ for the leap years and $
1\ldots365$ for
1422 Returns the reference to the modified object itself.
1425 \membersection{wxDateTime::GetYearDay
}\label{wxdatetimegetyearday
}
1427 \constfunc{wxDateTime
}{GetYearDay
}{\param{wxDateTime
\_t }{yday
}}
1429 Returns the copy of this object to which
1430 \helpref{SetToYearDay
}{wxdatetimesettoyearday
} was applied.
1432 %%%%%%%%%%%%%%%%%%%%%%%%%%% astronomical functions %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1435 \membersection{wxDateTime::GetJulianDayNumber
}\label{wxdatetimegetjuliandaynumber
}
1437 \constfunc{double
}{GetJulianDayNumber
}{\void}
1439 Returns the
\helpref{JDN
}{wxdatetimesetjdn
} corresponding to this date. Beware
1442 \wxheading{See also
}
1444 \helpref{GetModifiedJulianDayNumber
}{wxdatetimegetmodifiedjuliandaynumber
}
1447 \membersection{wxDateTime::GetJDN
}\label{wxdatetimegetjdn
}
1449 \constfunc{double
}{GetJDN
}{\void}
1451 Synonym for
\helpref{GetJulianDayNumber
}{wxdatetimegetjuliandaynumber
}.
1454 \membersection{wxDateTime::GetModifiedJulianDayNumber
}\label{wxdatetimegetmodifiedjuliandaynumber
}
1456 \constfunc{double
}{GetModifiedJulianDayNumber
}{\void}
1458 Returns the
{\it Modified Julian Day Number
} (MJD) which is, by definition,
1459 equal to $JDN -
2400000.5$. The MJDs are simpler to work with as the integral
1460 MJDs correspond to midnights of the dates in the Gregorian calendar and not th
1461 noons like JDN. The MJD $
0$ is Nov
17,
1858.
1464 \membersection{wxDateTime::GetMJD
}\label{wxdatetimegetmjd
}
1466 \constfunc{double
}{GetMJD
}{\void}
1468 Synonym for
\helpref{GetModifiedJulianDayNumber
}{wxdatetimegetmodifiedjuliandaynumber
}.
1471 \membersection{wxDateTime::GetRataDie
}\label{wxdatetimegetratadie
}
1473 \constfunc{double
}{GetRataDie
}{\void}
1475 Return the
{\it Rata Die number
} of this date.
1477 By definition, the Rata Die number is a date specified as the number of days
1478 relative to a base date of December
31 of the year
0. Thus January
1 of the
1479 year
1 is Rata Die day
1.
1481 %%%%%%%%%%%%%%%%%%%%%%%%%%% timezone and DST %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1484 \membersection{wxDateTime::FromTimezone
}\label{wxdatetimefromtimezone
}
1486 \constfunc{wxDateTime
}{FromTimezone
}{\param{const TimeZone\&
}{tz
},
\param{bool
}{noDST = false
}}
1488 Transform the date from the given time zone to the local one. If
{\it noDST
} is
1489 {\tt true
}, no DST adjustments will be made.
1491 Returns the date in the local time zone.
1494 \membersection{wxDateTime::ToTimezone
}\label{wxdatetimetotimezone
}
1496 \constfunc{wxDateTime
}{ToTimezone
}{\param{const TimeZone\&
}{tz
},
\param{bool
}{noDST = false
}}
1498 Transform the date to the given time zone. If
{\it noDST
} is
{\tt true
}, no
1499 DST adjustments will be made.
1501 Returns the date in the new time zone.
1504 \membersection{wxDateTime::MakeTimezone
}\label{wxdatetimemaketimezone
}
1506 \func{wxDateTime\&
}{MakeTimezone
}{\param{const TimeZone\&
}{tz
},
\param{bool
}{noDST = false
}}
1508 Modifies the object in place to represent the date in another time zone. If
1509 {\it noDST
} is
{\tt true
}, no DST adjustments will be made.
1512 \membersection{wxDateTime::MakeFromTimezone
}\label{wxdatetimemakefromtimezone
}
1514 \func{wxDateTime\&
}{MakeFromTimezone
}{\param{const TimeZone\&
}{tz
},
\param{bool
}{noDST = false
}}
1516 Same as
\helpref{FromTimezone
}{wxdatetimefromtimezone
} but modifies the object
1520 \membersection{wxDateTime::ToUTC
}\label{wxdatetimetoutc
}
1522 \constfunc{wxDateTime
}{ToUTC
}{\param{bool
}{noDST = false
}}
1524 This is the same as calling
\helpref{ToTimezone
}{wxdatetimetotimezone
} with
1525 the argument
{\tt GMT0
}.
1528 \membersection{wxDateTime::MakeUTC
}\label{wxdatetimemakeutc
}
1530 \func{wxDateTime\&
}{MakeUTC
}{\param{bool
}{noDST = false
}}
1532 This is the same as calling
\helpref{MakeTimezone
}{wxdatetimemaketimezone
} with
1533 the argument
{\tt GMT0
}.
1536 \membersection{wxDateTime::IsDST
}\label{wxdatetimeisdst
}
1538 \constfunc{int
}{IsDST
}{\param{Country
}{country = Country
\_Default}}
1540 Returns
{\tt true
} if the DST is applied for this date in the given country.
1542 \wxheading{See also
}
1544 \helpref{GetBeginDST
}{wxdatetimegetbegindst
} and
1545 \helpref{GetEndDST
}{wxdatetimegetenddst
}
1547 \section{\class{wxDateTimeHolidayAuthority
}}\label{wxdatetimeholidayauthority
}
1551 \section{\class{wxDateTimeWorkDays
}}\label{wxdatetimeworkdays
}