]> git.saurik.com Git - wxWidgets.git/blame - interface/wx/datetime.h
minor cleanup; add wxDocument::OnChangeFilename for coherence with wxView::OnChangefi...
[wxWidgets.git] / interface / wx / datetime.h
CommitLineData
23324ae1
FM
1/////////////////////////////////////////////////////////////////////////////
2// Name: datetime.h
e54c96f1 3// Purpose: interface of wxDateTime
23324ae1
FM
4// Author: wxWidgets team
5// RCS-ID: $Id$
6// Licence: wxWindows license
7/////////////////////////////////////////////////////////////////////////////
8
9/**
10 @class wxDateTime
7c913512 11
23324ae1 12 wxDateTime class represents an absolute moment in the time.
7c913512 13
b9da294f
BP
14 The type @c wxDateTime_t is typedefed as <tt>unsigned short</tt> and is
15 used to contain the number of years, hours, minutes, seconds and
16 milliseconds.
17
18
19 @section datetime_constants Constants
20
21 Global constant wxDefaultDateTime and synonym for it wxInvalidDateTime are
22 defined. This constant will be different from any valid wxDateTime object.
23
24 All the following constants are defined inside wxDateTime class (i.e., to
25 refer to them you should prepend their names with "wxDateTime::").
26
27 Time zone symbolic names:
28
29 @code
30 enum TZ
31 {
32 // the time in the current time zone
33 Local,
34
35 // zones from GMT (= Greenwhich Mean Time): they're guaranteed to be
36 // consequent numbers, so writing something like `GMT0 + offset' is
37 // safe if abs(offset) <= 12
38
39 // underscore stands for minus
40 GMT_12, GMT_11, GMT_10, GMT_9, GMT_8, GMT_7,
41 GMT_6, GMT_5, GMT_4, GMT_3, GMT_2, GMT_1,
42 GMT0,
43 GMT1, GMT2, GMT3, GMT4, GMT5, GMT6,
44 GMT7, GMT8, GMT9, GMT10, GMT11, GMT12, GMT13,
45 // Note that GMT12 and GMT_12 are not the same: there is a difference
46 // of exactly one day between them
47
48 // some symbolic names for TZ
49
50 // Europe
f09b5681
BP
51 WET = GMT0, // Western Europe Time
52 WEST = GMT1, // Western Europe Summer Time
53 CET = GMT1, // Central Europe Time
54 CEST = GMT2, // Central Europe Summer Time
55 EET = GMT2, // Eastern Europe Time
56 EEST = GMT3, // Eastern Europe Summer Time
57 MSK = GMT3, // Moscow Time
58 MSD = GMT4, // Moscow Summer Time
b9da294f
BP
59
60 // US and Canada
f09b5681
BP
61 AST = GMT_4, // Atlantic Standard Time
62 ADT = GMT_3, // Atlantic Daylight Time
63 EST = GMT_5, // Eastern Standard Time
64 EDT = GMT_4, // Eastern Daylight Saving Time
65 CST = GMT_6, // Central Standard Time
66 CDT = GMT_5, // Central Daylight Saving Time
67 MST = GMT_7, // Mountain Standard Time
68 MDT = GMT_6, // Mountain Daylight Saving Time
69 PST = GMT_8, // Pacific Standard Time
70 PDT = GMT_7, // Pacific Daylight Saving Time
71 HST = GMT_10, // Hawaiian Standard Time
72 AKST = GMT_9, // Alaska Standard Time
73 AKDT = GMT_8, // Alaska Daylight Saving Time
b9da294f
BP
74
75 // Australia
76
f09b5681
BP
77 A_WST = GMT8, // Western Standard Time
78 A_CST = GMT13 + 1, // Central Standard Time (+9.5)
79 A_EST = GMT10, // Eastern Standard Time
80 A_ESST = GMT11, // Eastern Summer Time
b9da294f
BP
81
82 // New Zealand
f09b5681
BP
83 NZST = GMT12, // Standard Time
84 NZDT = GMT13, // Daylight Saving Time
b9da294f
BP
85
86 // Universal Coordinated Time = the new and politically correct name
87 // for GMT
88 UTC = GMT0
89 };
90 @endcode
91
92 Month names: Jan, Feb, Mar, Apr, May, Jun, Jul, Aug, Sep, Oct, Nov, Dec and
93 Inv_Month for an invalid month are the values of @c wxDateTime::Month enum.
94
95 Likewise, Sun, Mon, Tue, Wed, Thu, Fri, Sat, and Inv_WeekDay are the values
96 in @c wxDateTime::WeekDay enum.
97
98 Finally, Inv_Year is defined to be an invalid value for year parameter.
99
100 GetMonthName() and GetWeekDayName() functions use the following flags:
101
102 @code
103 enum NameFlags
104 {
105 Name_Full = 0x01, // return full name
106 Name_Abbr = 0x02 // return abbreviated name
107 };
108 @endcode
109
110 Several functions accept an extra parameter specifying the calendar to use
111 (although most of them only support now the Gregorian calendar). This
112 parameters is one of the following values:
113
114 @code
115 enum Calendar
116 {
117 Gregorian, // calendar currently in use in Western countries
118 Julian // calendar in use since -45 until the 1582 (or later)
119 };
120 @endcode
121
122 Date calculations often depend on the country and wxDateTime allows to set
123 the country whose conventions should be used using SetCountry(). It takes
124 one of the following values as parameter:
125
126 @code
127 enum Country
128 {
129 Country_Unknown, // no special information for this country
130 Country_Default, // set the default country with SetCountry() method
131 // or use the default country with any other
132
133 Country_WesternEurope_Start,
134 Country_EEC = Country_WesternEurope_Start,
135 France,
136 Germany,
137 UK,
138 Country_WesternEurope_End = UK,
139
140 Russia,
141
142 USA
143 };
144 @endcode
145
146 Different parts of the world use different conventions for the week start.
147 In some countries, the week starts on Sunday, while in others -- on Monday.
148 The ISO standard doesn't address this issue, so we support both conventions
149 in the functions whose result depends on it (GetWeekOfYear() and
150 GetWeekOfMonth()).
151
152 The desired behvaiour may be specified by giving one of the following
153 constants as argument to these functions:
154
155 @code
156 enum WeekFlags
157 {
158 Default_First, // Sunday_First for US, Monday_First for the rest
159 Monday_First, // week starts with a Monday
160 Sunday_First // week starts with a Sunday
161 };
162 @endcode
163
164
165 @section datetime_static Static Functions
166
167 All static functions either set or return the static variables of
168 wxDateSpan (the country), return the current moment, year, month or number
169 of days in it, or do some general calendar-related actions.
170
171 Please note that although several function accept an extra Calendar
172 parameter, it is currently ignored as only the Gregorian calendar is
173 supported. Future versions will support other calendars.
174
175 @beginWxPythonOnly
176 These methods are standalone functions named
177 "wxDateTime_<StaticMethodName>" in wxPython.
178 @endWxPythonOnly
179
180
181 @section datetime_formatting Date Formatting and Parsing
182
183 The date formatting and parsing functions convert wxDateTime objects to and
184 from text. The conversions to text are mostly trivial: you can either do it
185 using the default date and time representations for the current locale
186 (FormatDate() and FormatTime()), using the international standard
187 representation defined by ISO 8601 (FormatISODate(), FormatISOTime() and
188 FormatISOCombined()) or by specifying any format at all and using Format()
189 directly.
190
191 The conversions from text are more interesting, as there are much more
192 possibilities to care about. The simplest cases can be taken care of with
193 ParseFormat() which can parse any date in the given (rigid) format.
194 ParseRfc822Date() is another function for parsing dates in predefined
195 format -- the one of RFC 822 which (still...) defines the format of email
196 messages on the Internet. This format can not be described with
197 @c strptime(3)-like format strings used by Format(), hence the need for a
198 separate function.
199
200 But the most interesting functions are ParseTime(), ParseDate() and
201 ParseDateTime(). They try to parse the date and time (or only one of them)
202 in 'free' format, i.e. allow them to be specified in any of possible ways.
203 These functions will usually be used to parse the (interactive) user input
204 which is not bound to be in any predefined format. As an example,
205 ParseDateTime() can parse the strings such as "tomorrow", "March first" and
206 even "next Sunday".
207
208 Finally notice that each of the parsing functions is available in several
209 overloads: if the input string is a narrow (@c char *) string, then a
210 narrow pointer is returned. If the input string is a wide string, a wide
211 char pointer is returned. Finally, if the input parameter is a wxString, a
212 narrow char pointer is also returned for backwards compatibility but there
213 is also an additional argument of wxString::const_iterator type in which,
214 if it is not @NULL, an iterator pointing to the end of the scanned string
215 part is returned.
216
217
23324ae1
FM
218 @library{wxbase}
219 @category{data}
7c913512 220
65874118 221 @stdobjects
b9da294f 222 - ::wxDefaultDateTime
65874118 223
b9da294f 224 @see @ref overview_datetime, wxTimeSpan, wxDateSpan, wxCalendarCtrl
23324ae1 225*/
7c913512 226class wxDateTime
23324ae1
FM
227{
228public:
229 /**
b9da294f
BP
230 @name Constructors, Assignment Operators and Setters
231
232 Constructors and various Set() methods are collected here. If you
233 construct a date object from separate values for day, month and year,
234 you should use IsValid() method to check that the values were correct
235 as constructors can not return an error code.
23324ae1 236 */
b9da294f 237 //@{
23324ae1
FM
238
239 /**
b9da294f
BP
240 Default constructor. Use one of the Set() functions to initialize the
241 object later.
242 */
243 wxDateTime();
244 /**
245 Same as Set().
3c4f71cc 246
b9da294f
BP
247 @beginWxPythonOnly
248 This constructor is named "wxDateTimeFromTimeT" in wxPython.
249 @endWxPythonOnly
250 */
251 wxDateTime& wxDateTime(time_t timet);
252 /**
253 Same as Set().
3c4f71cc 254
b9da294f
BP
255 @beginWxPythonOnly Unsupported. @endWxPythonOnly
256 */
257 wxDateTime& wxDateTime(const struct tm& tm);
258 /**
259 Same as Set().
3c4f71cc 260
b9da294f
BP
261 @beginWxPythonOnly
262 This constructor is named "wxDateTimeFromJDN" in wxPython.
263 @endWxPythonOnly
264 */
265 wxDateTime& wxDateTime(double jdn);
266 /**
267 Same as Set().
3c4f71cc 268
b9da294f
BP
269 @beginWxPythonOnly
270 This constructor is named "wxDateTimeFromHMS" in wxPython.
271 @endWxPythonOnly
272 */
273 wxDateTime& wxDateTime(wxDateTime_t hour, wxDateTime_t minute = 0,
274 wxDateTime_t second = 0, wxDateTime_t millisec = 0);
275 /**
276 Same as Set().
3c4f71cc 277
b9da294f
BP
278 @beginWxPythonOnly
279 This constructor is named "wxDateTimeFromDMY" in wxPython.
280 @endWxPythonOnly
281 */
282 wxDateTime(wxDateTime_t day, Month month = Inv_Month,
283 int year = Inv_Year, wxDateTime_t hour = 0,
284 wxDateTime_t minute = 0, wxDateTime_t second = 0,
285 wxDateTime_t millisec = 0);
3c4f71cc 286
154014d6
VZ
287 /**
288 Same as SetFromMSWSysTime.
289
290 @param st
291 Input, Windows SYSTEMTIME reference
292 @since 2.9.0
293 @remarks MSW only
294 */
295 wxDateTime(const struct _SYSTEMTIME& st);
296
297
b9da294f
BP
298 /**
299 Reset time to midnight (00:00:00) without changing the date.
300 */
301 wxDateTime& ResetTime();
3c4f71cc 302
b9da294f
BP
303 /**
304 Constructs the object from @a timet value holding the number of seconds
305 since Jan 1, 1970.
3c4f71cc 306
b9da294f
BP
307 @beginWxPythonOnly
308 This method is named "SetTimeT" in wxPython.
309 @endWxPythonOnly
310 */
311 wxDateTime& Set(time_t timet);
312 /**
313 Sets the date and time from the broken down representation in the
314 standard @a tm structure.
3c4f71cc 315
b9da294f
BP
316 @beginWxPythonOnly Unsupported. @endWxPythonOnly
317 */
318 wxDateTime& Set(const struct tm& tm);
319 /**
320 Sets the date from the so-called Julian Day Number.
3c4f71cc 321
b9da294f
BP
322 By definition, the Julian Day Number, usually abbreviated as JDN, of a
323 particular instant is the fractional number of days since 12 hours
324 Universal Coordinated Time (Greenwich mean noon) on January 1 of the
325 year -4712 in the Julian proleptic calendar.
3c4f71cc 326
b9da294f
BP
327 @beginWxPythonOnly
328 This method is named "SetJDN" in wxPython.
329 @endWxPythonOnly
23324ae1 330 */
b9da294f
BP
331 wxDateTime& Set(double jdn);
332 /**
333 Sets the date to be equal to Today() and the time from supplied
334 parameters.
23324ae1 335
b9da294f
BP
336 @beginWxPythonOnly
337 This method is named "SetHMS" in wxPython.
338 @endWxPythonOnly
339 */
340 wxDateTime& Set(wxDateTime_t hour, wxDateTime_t minute = 0,
341 wxDateTime_t second = 0, wxDateTime_t millisec = 0);
23324ae1 342 /**
b9da294f 343 Sets the date and time from the parameters.
23324ae1 344 */
b9da294f
BP
345 wxDateTime& Set(wxDateTime_t day, Month month = Inv_Month,
346 int year = Inv_Year, wxDateTime_t hour = 0,
347 wxDateTime_t minute = 0, wxDateTime_t second = 0,
348 wxDateTime_t millisec = 0);
23324ae1
FM
349
350 /**
b9da294f
BP
351 Sets the day without changing other date components.
352 */
353 wxDateTime& SetDay(short unsigned int);
3c4f71cc 354
b9da294f
BP
355 /**
356 Sets the date from the date and time in DOS format.
357 */
358 wxDateTime& SetFromDOS(unsigned long ddt);
3c4f71cc 359
b9da294f
BP
360 /**
361 Sets the hour without changing other date components.
23324ae1 362 */
b9da294f 363 wxDateTime& SetHour(short unsigned int);
23324ae1 364
b9da294f
BP
365 /**
366 Sets the millisecond without changing other date components.
367 */
368 wxDateTime& SetMillisecond(short unsigned int);
23324ae1
FM
369
370 /**
b9da294f
BP
371 Sets the minute without changing other date components.
372 */
373 wxDateTime& SetMinute(short unsigned int);
3c4f71cc 374
b9da294f
BP
375 /**
376 Sets the month without changing other date components.
377 */
378 wxDateTime& SetMonth(Month month);
3c4f71cc 379
b9da294f
BP
380 /**
381 Sets the second without changing other date components.
382 */
383 wxDateTime& SetSecond(short unsigned int);
3c4f71cc 384
b9da294f
BP
385 /**
386 Sets the date and time of to the current values. Same as assigning the
387 result of Now() to this object.
388 */
389 wxDateTime& SetToCurrent();
3c4f71cc 390
b9da294f
BP
391 /**
392 Sets the year without changing other date components.
393 */
394 wxDateTime& SetYear(int year);
3c4f71cc 395
b9da294f
BP
396 /**
397 Same as Set().
398 */
399 wxDateTime& operator=(time_t timet);
400 /**
401 Same as Set().
402 */
403 wxDateTime& operator=(const struct tm& tm);
3c4f71cc 404
b9da294f 405 //@}
3c4f71cc 406
3c4f71cc 407
3c4f71cc 408
b9da294f
BP
409 /**
410 @name Accessors
3c4f71cc 411
b9da294f
BP
412 Here are the trivial accessors. Other functions, which might have to
413 perform some more complicated calculations to find the answer are under
414 the "Date Arithmetics" section.
415 */
416 //@{
3c4f71cc 417
b9da294f
BP
418 /**
419 Returns the date and time in DOS format.
420 */
421 long unsigned int GetAsDOS() const;
3c4f71cc 422
154014d6
VZ
423 /**
424 Initialize using the Windows SYSTEMTIME structure.
425 @param st
426 Input, Windows SYSTEMTIME reference
427 @since 2.9.0
428 @remarks MSW only
429 */
430 wxDateTime& SetFromMSWSysTime(const struct _SYSTEMTIME& st);
431
432 /**
433 Returns the date and time in the Windows SYSTEMTIME format.
434 @param st
435 Output, pointer to Windows SYSTEMTIME
436 @since 2.9.0
437 @remarks MSW only
438 */
439 void GetAsMSWSysTime(struct _SYSTEMTIME* st) const;
440
b9da294f
BP
441 /**
442 Returns the century of this date.
443 */
444 int GetCentury(const TimeZone& tz = Local) const;
3c4f71cc 445
1a21919b
BP
446 /**
447 Returns the object having the same date component as this one but time
448 of 00:00:00.
449
1e24c2af 450 @since 2.8.2
1a21919b
BP
451
452 @see ResetTime()
453 */
454 wxDateTime GetDateOnly() const;
455
b9da294f
BP
456 /**
457 Returns the day in the given timezone (local one by default).
458 */
459 short unsigned int GetDay(const TimeZone& tz = Local) const;
3c4f71cc 460
b9da294f 461 /**
1a21919b 462 Returns the day of the year (in 1-366 range) in the given timezone
b9da294f 463 (local one by default).
23324ae1 464 */
b9da294f 465 short unsigned int GetDayOfYear(const TimeZone& tz = Local) const;
23324ae1 466
1a21919b
BP
467 /**
468 Returns the hour in the given timezone (local one by default).
469 */
470 short unsigned int GetHour(const TimeZone& tz = Local) const;
471
b9da294f
BP
472 /**
473 Returns the milliseconds in the given timezone (local one by default).
474 */
475 short unsigned int GetMillisecond(const TimeZone& tz = Local) const;
23324ae1
FM
476
477 /**
b9da294f
BP
478 Returns the minute in the given timezone (local one by default).
479 */
480 short unsigned int GetMinute(const TimeZone& tz = Local) const;
3c4f71cc 481
b9da294f
BP
482 /**
483 Returns the month in the given timezone (local one by default).
484 */
485 Month GetMonth(const TimeZone& tz = Local) const;
3c4f71cc 486
b9da294f
BP
487 /**
488 Returns the seconds in the given timezone (local one by default).
489 */
490 short unsigned int GetSecond(const TimeZone& tz = Local) const;
3c4f71cc 491
b9da294f 492 /**
1a21919b
BP
493 Returns the number of seconds since Jan 1, 1970. An assert failure will
494 occur if the date is not in the range covered by @c time_t type.
b9da294f
BP
495 */
496 time_t GetTicks() const;
3c4f71cc 497
b9da294f 498 /**
1a21919b 499 Returns broken down representation of the date and time.
b9da294f 500 */
1a21919b 501 Tm GetTm(const TimeZone& tz = Local) const;
3c4f71cc 502
b9da294f 503 /**
1a21919b 504 Returns the week day in the given timezone (local one by default).
b9da294f 505 */
1a21919b 506 WeekDay GetWeekDay(const TimeZone& tz = Local) const;
3c4f71cc 507
b9da294f 508 /**
1a21919b
BP
509 Returns the ordinal number of the week in the month (in 1-5 range).
510
511 As GetWeekOfYear(), this function supports both conventions for the
512 week start. See the description of these @c WeekFlags in the
513 @ref datetime_constants section.
b9da294f
BP
514 */
515 wxDateTime_t GetWeekOfMonth(WeekFlags flags = Monday_First,
516 const TimeZone& tz = Local) const;
3c4f71cc 517
b9da294f 518 /**
1a21919b
BP
519 Returns the number of the week of the year this date is in. The first
520 week of the year is, according to international standards, the one
521 containing Jan 4 or, equivalently, the first week which has Thursday in
522 this year. Both of these definitions are the same as saying that the
523 first week of the year must contain more than half of its days in this
524 year. Accordingly, the week number will always be in 1-53 range (52 for
525 non-leap years).
526
527 The function depends on the @ref datetime_constants "week start"
528 convention specified by the @a flags argument but its results for
b9da294f
BP
529 @c Sunday_First are not well-defined as the ISO definition quoted above
530 applies to the weeks starting on Monday only.
531 */
532 wxDateTime_t GetWeekOfYear(WeekFlags flags = Monday_First,
533 const TimeZone& tz = Local) const;
3c4f71cc 534
b9da294f
BP
535 /**
536 Returns the year in the given timezone (local one by default).
537 */
538 int GetYear(const TimeZone& tz = Local) const;
3c4f71cc 539
b9da294f 540 /**
1a21919b
BP
541 Returns @true if the given date is later than the date of adoption of
542 the Gregorian calendar in the given country (and hence the Gregorian
543 calendar calculations make sense for it).
b9da294f
BP
544 */
545 bool IsGregorianDate(GregorianAdoption country = Gr_Standard) const;
3c4f71cc 546
b9da294f
BP
547 /**
548 Returns @true if the object represents a valid time moment.
549 */
550 bool IsValid() const;
3c4f71cc 551
b9da294f
BP
552 /**
553 Returns @true is this day is not a holiday in the given country.
554 */
555 bool IsWorkDay(Country country = Country_Default) const;
3c4f71cc 556
b9da294f 557 //@}
3c4f71cc 558
3c4f71cc 559
3c4f71cc 560
b9da294f
BP
561 /**
562 @name Date Comparison
3c4f71cc 563
b9da294f
BP
564 There are several functions to allow date comparison. To supplement
565 them, a few global operators, etc taking wxDateTime are defined.
566 */
567 //@{
3c4f71cc 568
b9da294f
BP
569 /**
570 Returns @true if this date precedes the given one.
571 */
572 bool IsEarlierThan(const wxDateTime& datetime) const;
3c4f71cc 573
b9da294f
BP
574 /**
575 Returns @true if the two dates are strictly identical.
576 */
577 bool IsEqualTo(const wxDateTime& datetime) const;
3c4f71cc 578
b9da294f
BP
579 /**
580 Returns @true if the date is equal to another one up to the given time
1a21919b
BP
581 interval, i.e. if the absolute difference between the two dates is less
582 than this interval.
b9da294f
BP
583 */
584 bool IsEqualUpTo(const wxDateTime& dt, const wxTimeSpan& ts) const;
3c4f71cc 585
b9da294f
BP
586 /**
587 Returns @true if this date is later than the given one.
588 */
589 bool IsLaterThan(const wxDateTime& datetime) const;
3c4f71cc 590
b9da294f
BP
591 /**
592 Returns @true if the date is the same without comparing the time parts.
23324ae1 593 */
b9da294f 594 bool IsSameDate(const wxDateTime& dt) const;
23324ae1 595
b9da294f
BP
596 /**
597 Returns @true if the time is the same (although dates may differ).
598 */
599 bool IsSameTime(const wxDateTime& dt) const;
23324ae1
FM
600
601 /**
1a21919b 602 Returns @true if this date lies strictly between the two given dates.
b9da294f
BP
603
604 @see IsBetween()
23324ae1 605 */
b9da294f
BP
606 bool IsStrictlyBetween(const wxDateTime& t1,
607 const wxDateTime& t2) const;
23324ae1
FM
608
609 /**
1a21919b
BP
610 Returns @true if IsStrictlyBetween() is @true or if the date is equal
611 to one of the limit values.
3c4f71cc 612
b9da294f
BP
613 @see IsStrictlyBetween()
614 */
615 bool IsBetween(const wxDateTime& t1, const wxDateTime& t2) const;
3c4f71cc 616
b9da294f 617 //@}
3c4f71cc 618
3c4f71cc 619
3c4f71cc 620
b9da294f
BP
621 /**
622 @name Date Arithmetics
3c4f71cc 623
b9da294f
BP
624 These functions carry out
625 @ref overview_datetime_arithmetics "arithmetics" on the wxDateTime
626 objects. As explained in the overview, either wxTimeSpan or wxDateSpan
627 may be added to wxDateTime, hence all functions are overloaded to
628 accept both arguments.
3c4f71cc 629
b9da294f
BP
630 Also, both Add() and Subtract() have both const and non-const version.
631 The first one returns a new object which represents the sum/difference
632 of the original one with the argument while the second form modifies
633 the object to which it is applied. The operators "-=" and "+=" are
634 defined to be equivalent to the second forms of these functions.
23324ae1 635 */
b9da294f 636 //@{
23324ae1 637
b9da294f
BP
638 /**
639 Adds the given date span to this object.
1a21919b
BP
640
641 @beginWxPythonOnly
642 This method is named "AddDS" in wxPython.
643 @endWxPythonOnly
644 */
645 wxDateTime Add(const wxDateSpan& diff) const;
646 /**
647 Adds the given date span to this object.
648
649 @beginWxPythonOnly
650 This method is named "AddDS" in wxPython.
651 @endWxPythonOnly
b9da294f
BP
652 */
653 wxDateTime Add(const wxDateSpan& diff);
1a21919b
BP
654 /**
655 Adds the given time span to this object.
23324ae1 656
1a21919b
BP
657 @beginWxPythonOnly
658 This method is named "AddTS" in wxPython.
659 @endWxPythonOnly
660 */
661 wxDateTime Add(const wxTimeSpan& diff) const;
23324ae1 662 /**
1a21919b
BP
663 Adds the given time span to this object.
664
665 @beginWxPythonOnly
666 This method is named "AddTS" in wxPython.
667 @endWxPythonOnly
b9da294f 668 */
1a21919b 669 wxDateTime& Add(const wxTimeSpan& diff);
3c4f71cc 670
b9da294f 671 /**
1a21919b
BP
672 Subtracts the given time span from this object.
673
674 @beginWxPythonOnly
675 This method is named "SubtractTS" in wxPython.
676 @endWxPythonOnly
b9da294f 677 */
1a21919b
BP
678 wxDateTime Subtract(const wxTimeSpan& diff) const;
679 /**
680 Subtracts the given time span from this object.
3c4f71cc 681
1a21919b
BP
682 @beginWxPythonOnly
683 This method is named "SubtractTS" in wxPython.
684 @endWxPythonOnly
685 */
686 wxDateTime& Subtract(const wxTimeSpan& diff);
687 /**
688 Subtracts the given date span from this object.
689
690 @beginWxPythonOnly
691 This method is named "SubtractDS" in wxPython.
692 @endWxPythonOnly
693 */
694 wxDateTime Subtract(const wxDateSpan& diff) const;
695 /**
696 Subtracts the given date span from this object.
697
698 @beginWxPythonOnly
699 This method is named "SubtractDS" in wxPython.
700 @endWxPythonOnly
701 */
702 wxDateTime& Subtract(const wxDateSpan& diff);
b9da294f 703 /**
1a21919b
BP
704 Subtracts another date from this one and returns the difference between
705 them as a wxTimeSpan.
b9da294f
BP
706 */
707 wxTimeSpan Subtract(const wxDateTime& dt) const;
3c4f71cc 708
1a21919b
BP
709 /**
710 Adds the given date span to this object.
711 */
712 wxDateTime operator+=(const wxDateSpan& diff);
713 /**
714 Subtracts the given date span from this object.
715 */
716 wxDateTime& operator-=(const wxDateSpan& diff);
717 /**
718 Adds the given time span to this object.
719 */
720 wxDateTime& operator+=(const wxTimeSpan& diff);
721 /**
722 Subtracts the given time span from this object.
723 */
724 wxDateTime& operator-=(const wxTimeSpan& diff);
725
b9da294f 726 //@}
3c4f71cc 727
3c4f71cc 728
3c4f71cc 729
b9da294f
BP
730 /**
731 @name Date Formatting and Parsing
3c4f71cc 732
b9da294f 733 See @ref datetime_formatting
23324ae1 734 */
b9da294f 735 //@{
23324ae1
FM
736
737 /**
1a21919b
BP
738 This function does the same as the standard ANSI C @c strftime(3)
739 function. Please see its description for the meaning of @a format
740 parameter.
741
742 It also accepts a few wxWidgets-specific extensions: you can optionally
743 specify the width of the field to follow using @c printf(3)-like syntax
744 and the format specification @c "%l" can be used to get the number of
745 milliseconds.
3c4f71cc 746
4cc4bfaf 747 @see ParseFormat()
23324ae1 748 */
4cc4bfaf 749 wxString Format(const wxChar* format = wxDefaultDateTimeFormat,
328f5751 750 const TimeZone& tz = Local) const;
23324ae1
FM
751
752 /**
1a21919b
BP
753 Identical to calling Format() with @c "%x" argument (which means
754 "preferred date representation for the current locale").
23324ae1 755 */
328f5751 756 wxString FormatDate() const;
23324ae1
FM
757
758 /**
759 Returns the combined date-time representation in the ISO 8601 format
1a21919b
BP
760 @c "YYYY-MM-DDTHH:MM:SS". The @a sep parameter default value produces
761 the result exactly corresponding to the ISO standard, but it can also
762 be useful to use a space as seprator if a more human-readable combined
763 date-time representation is needed.
3c4f71cc 764
1a21919b 765 @see FormatISODate(), FormatISOTime(), ParseISOCombined()
23324ae1 766 */
328f5751 767 wxString FormatISOCombined(char sep = 'T') const;
23324ae1
FM
768
769 /**
770 This function returns the date representation in the ISO 8601 format
1a21919b 771 @c "YYYY-MM-DD".
23324ae1 772 */
328f5751 773 wxString FormatISODate() const;
23324ae1
FM
774
775 /**
776 This function returns the time representation in the ISO 8601 format
1a21919b 777 @c "HH:MM:SS".
23324ae1 778 */
328f5751 779 wxString FormatISOTime() const;
23324ae1
FM
780
781 /**
1a21919b
BP
782 Identical to calling Format() with @c "%X" argument (which means
783 "preferred time representation for the current locale").
23324ae1 784 */
328f5751 785 wxString FormatTime() const;
23324ae1
FM
786
787 /**
1a21919b
BP
788 This function is like ParseDateTime(), but it only allows the date to
789 be specified. It is thus less flexible then ParseDateTime(), but also
790 has less chances to misinterpret the user input.
791
d29a9a8a 792 @return @NULL if the conversion failed, otherwise return the pointer
1a21919b 793 to the character which stopped the scan.
23324ae1 794 */
b9da294f
BP
795 const char* ParseDate(const wxString& date,
796 wxString::const_iterator* end = NULL);
23324ae1 797 /**
1a21919b
BP
798 This function is like ParseDateTime(), but it only allows the date to
799 be specified. It is thus less flexible then ParseDateTime(), but also
800 has less chances to misinterpret the user input.
23324ae1 801
d29a9a8a 802 @return @NULL if the conversion failed, otherwise return the pointer
1a21919b 803 to the character which stopped the scan.
23324ae1 804 */
b9da294f 805 const char* ParseDate(const char* date);
23324ae1 806 /**
1a21919b
BP
807 This function is like ParseDateTime(), but it only allows the date to
808 be specified. It is thus less flexible then ParseDateTime(), but also
809 has less chances to misinterpret the user input.
23324ae1 810
d29a9a8a 811 @return @NULL if the conversion failed, otherwise return the pointer
1a21919b 812 to the character which stopped the scan.
23324ae1 813 */
4cc4bfaf 814 const wchar_t* ParseDate(const wchar_t* date);
23324ae1 815
23324ae1 816 /**
1a21919b
BP
817 Parses the string @a datetime containing the date and time in free
818 format. This function tries as hard as it can to interpret the given
819 string as date and time. Unlike ParseRfc822Date(), it will accept
820 anything that may be accepted and will only reject strings which can
821 not be parsed in any way at all.
822
d29a9a8a 823 @return @NULL if the conversion failed, otherwise return the pointer
1a21919b 824 to the character which stopped the scan.
23324ae1 825 */
4cc4bfaf
FM
826 const char* ParseDateTime(const wxString& datetime,
827 wxString::const_iterator* end = NULL);
b9da294f 828 /**
1a21919b
BP
829 Parses the string @a datetime containing the date and time in free
830 format. This function tries as hard as it can to interpret the given
831 string as date and time. Unlike ParseRfc822Date(), it will accept
832 anything that may be accepted and will only reject strings which can
833 not be parsed in any way at all.
b9da294f 834
d29a9a8a 835 @return @NULL if the conversion failed, otherwise return the pointer
1a21919b 836 to the character which stopped the scan.
b9da294f 837 */
4cc4bfaf 838 const char* ParseDateTime(const char* datetime);
b9da294f 839 /**
1a21919b
BP
840 Parses the string @a datetime containing the date and time in free
841 format. This function tries as hard as it can to interpret the given
842 string as date and time. Unlike ParseRfc822Date(), it will accept
843 anything that may be accepted and will only reject strings which can
844 not be parsed in any way at all.
b9da294f 845
d29a9a8a 846 @return @NULL if the conversion failed, otherwise return the pointer
1a21919b 847 to the character which stopped the scan.
b9da294f 848 */
4cc4bfaf 849 const wchar_t* ParseDateTime(const wchar_t* datetime);
23324ae1 850
23324ae1 851 /**
4cc4bfaf 852 This function parses the string @a date according to the given
1a21919b
BP
853 @e format. The system @c strptime(3) function is used whenever
854 available, but even if it is not, this function is still implemented,
855 although support for locale-dependent format specifiers such as
856 @c "%c", @c "%x" or @c "%X" may not be perfect and GNU extensions such
857 as @c "%z" and @c "%Z" are not implemented. This function does handle
858 the month and weekday names in the current locale on all platforms,
859 however.
860
861 Please see the description of the ANSI C function @c strftime(3) for
862 the syntax of the format string.
863
864 The @a dateDef parameter is used to fill in the fields which could not
865 be determined from the format string. For example, if the format is
866 @c "%d" (the day of the month), the month and the year are taken from
867 @a dateDef. If it is not specified, Today() is used as the default
868 date.
869
d29a9a8a 870 @return @NULL if the conversion failed, otherwise return the pointer
1a21919b 871 to the character which stopped the scan.
23324ae1 872 */
4cc4bfaf 873 const char* ParseFormat(const wxString& date,
b9da294f
BP
874 const wxString& format = wxDefaultDateTimeFormat,
875 const wxDateTime& dateDef = wxDefaultDateTime,
876 wxString::const_iterator* end = NULL);
877 /**
1a21919b
BP
878 This function parses the string @a date according to the given
879 @e format. The system @c strptime(3) function is used whenever
880 available, but even if it is not, this function is still implemented,
881 although support for locale-dependent format specifiers such as
882 @c "%c", @c "%x" or @c "%X" may not be perfect and GNU extensions such
883 as @c "%z" and @c "%Z" are not implemented. This function does handle
884 the month and weekday names in the current locale on all platforms,
885 however.
886
887 Please see the description of the ANSI C function @c strftime(3) for
888 the syntax of the format string.
889
890 The @a dateDef parameter is used to fill in the fields which could not
891 be determined from the format string. For example, if the format is
892 @c "%d" (the day of the month), the month and the year are taken from
893 @a dateDef. If it is not specified, Today() is used as the default
894 date.
b9da294f 895
d29a9a8a 896 @return @NULL if the conversion failed, otherwise return the pointer
1a21919b 897 to the character which stopped the scan.
b9da294f 898 */
4cc4bfaf 899 const char* ParseFormat(const char* date,
b9da294f
BP
900 const wxString& format = wxDefaultDateTimeFormat,
901 const wxDateTime& dateDef = wxDefaultDateTime);
902 /**
1a21919b
BP
903 This function parses the string @a date according to the given
904 @e format. The system @c strptime(3) function is used whenever
905 available, but even if it is not, this function is still implemented,
906 although support for locale-dependent format specifiers such as
907 @c "%c", @c "%x" or @c "%X" may not be perfect and GNU extensions such
908 as @c "%z" and @c "%Z" are not implemented. This function does handle
909 the month and weekday names in the current locale on all platforms,
910 however.
911
912 Please see the description of the ANSI C function @c strftime(3) for
913 the syntax of the format string.
914
915 The @a dateDef parameter is used to fill in the fields which could not
916 be determined from the format string. For example, if the format is
917 @c "%d" (the day of the month), the month and the year are taken from
918 @a dateDef. If it is not specified, Today() is used as the default
919 date.
b9da294f 920
d29a9a8a 921 @return @NULL if the conversion failed, otherwise return the pointer
1a21919b 922 to the character which stopped the scan.
b9da294f 923 */
4cc4bfaf 924 const wchar_t* ParseFormat(const wchar_t* date,
b9da294f
BP
925 const wxString& format = wxDefaultDateTimeFormat,
926 const wxDateTime& dateDef = wxDefaultDateTime);
23324ae1
FM
927
928 /**
1a21919b
BP
929 This function parses the string containing the date and time in ISO
930 8601 combined format @c "YYYY-MM-DDTHH:MM:SS". The separator between
931 the date and time parts must be equal to @a sep for the function to
932 succeed.
933
d29a9a8a 934 @return @true if the entire string was parsed successfully, @false
1a21919b 935 otherwise.
23324ae1
FM
936 */
937 bool ParseISOCombined(const wxString& date, char sep = 'T');
938
939 /**
1a21919b
BP
940 This function parses the date in ISO 8601 format @c "YYYY-MM-DD".
941
d29a9a8a 942 @return @true if the entire string was parsed successfully, @false
1a21919b 943 otherwise.
23324ae1
FM
944 */
945 bool ParseISODate(const wxString& date);
946
947 /**
1a21919b
BP
948 This function parses the time in ISO 8601 format @c "HH:MM:SS".
949
d29a9a8a 950 @return @true if the entire string was parsed successfully, @false
1a21919b 951 otherwise.
23324ae1
FM
952 */
953 bool ParseISOTime(const wxString& date);
954
23324ae1 955 /**
1a21919b
BP
956 Parses the string @a date looking for a date formatted according to the
957 RFC 822 in it. The exact description of this format may, of course, be
958 found in the RFC (section 5), but, briefly, this is the format used in
959 the headers of Internet email messages and one of the most common
960 strings expressing date in this format may be something like
961 @c "Sat, 18 Dec 1999 00:48:30 +0100".
962
23324ae1 963 Returns @NULL if the conversion failed, otherwise return the pointer to
1a21919b
BP
964 the character immediately following the part of the string which could
965 be parsed. If the entire string contains only the date in RFC 822
966 format, the returned pointer will be pointing to a @c NUL character.
967
968 This function is intentionally strict, it will return an error for any
969 string which is not RFC 822 compliant. If you need to parse date
970 formatted in more free ways, you should use ParseDateTime() or
23324ae1
FM
971 ParseDate() instead.
972 */
4cc4bfaf 973 const char* ParseRfc822Date(const wxString& date,
1a21919b 974 wxString::const_iterator* end = NULL);
b9da294f 975 /**
1a21919b
BP
976 Parses the string @a date looking for a date formatted according to the
977 RFC 822 in it. The exact description of this format may, of course, be
978 found in the RFC (section 5), but, briefly, this is the format used in
979 the headers of Internet email messages and one of the most common
980 strings expressing date in this format may be something like
981 @c "Sat, 18 Dec 1999 00:48:30 +0100".
982
983 Returns @NULL if the conversion failed, otherwise return the pointer to
984 the character immediately following the part of the string which could
985 be parsed. If the entire string contains only the date in RFC 822
986 format, the returned pointer will be pointing to a @c NUL character.
987
988 This function is intentionally strict, it will return an error for any
989 string which is not RFC 822 compliant. If you need to parse date
990 formatted in more free ways, you should use ParseDateTime() or
991 ParseDate() instead.
b9da294f 992 */
4cc4bfaf 993 const char* ParseRfc822Date(const char* date);
b9da294f 994 /**
1a21919b
BP
995 Parses the string @a date looking for a date formatted according to the
996 RFC 822 in it. The exact description of this format may, of course, be
997 found in the RFC (section 5), but, briefly, this is the format used in
998 the headers of Internet email messages and one of the most common
999 strings expressing date in this format may be something like
1000 @c "Sat, 18 Dec 1999 00:48:30 +0100".
1001
1002 Returns @NULL if the conversion failed, otherwise return the pointer to
1003 the character immediately following the part of the string which could
1004 be parsed. If the entire string contains only the date in RFC 822
1005 format, the returned pointer will be pointing to a @c NUL character.
1006
1007 This function is intentionally strict, it will return an error for any
1008 string which is not RFC 822 compliant. If you need to parse date
1009 formatted in more free ways, you should use ParseDateTime() or
1010 ParseDate() instead.
b9da294f 1011 */
4cc4bfaf 1012 const wchar_t* ParseRfc822Date(const wchar_t* date);
23324ae1 1013
23324ae1 1014 /**
1a21919b
BP
1015 This functions is like ParseDateTime(), but only allows the time to be
1016 specified in the input string.
1017
d29a9a8a 1018 @return @NULL if the conversion failed, otherwise return the pointer
1a21919b 1019 to the character which stopped the scan.
23324ae1 1020 */
4cc4bfaf 1021 const char* ParseTime(const wxString& time,
b9da294f 1022 wxString::const_iterator* end = NULL);
23324ae1 1023 /**
1a21919b
BP
1024 This functions is like ParseDateTime(), but only allows the time to be
1025 specified in the input string.
3c4f71cc 1026
d29a9a8a 1027 @return @NULL if the conversion failed, otherwise return the pointer
1a21919b 1028 to the character which stopped the scan.
23324ae1 1029 */
b9da294f 1030 const char* ParseTime(const char* time);
23324ae1 1031 /**
1a21919b
BP
1032 This functions is like ParseDateTime(), but only allows the time to be
1033 specified in the input string.
23324ae1 1034
d29a9a8a 1035 @return @NULL if the conversion failed, otherwise return the pointer
1a21919b 1036 to the character which stopped the scan.
23324ae1 1037 */
b9da294f
BP
1038 const wchar_t* ParseTime(const wchar_t* time);
1039
1040 //@}
23324ae1 1041
3c4f71cc 1042
23324ae1
FM
1043
1044 /**
b9da294f 1045 @name Calendar Calculations
23324ae1 1046
b9da294f
BP
1047 The functions in this section perform the basic calendar calculations,
1048 mostly related to the week days. They allow to find the given week day
1049 in the week with given number (either in the month or in the year) and
1050 so on.
23324ae1 1051
b9da294f
BP
1052 None of the functions in this section modify the time part of the
1053 wxDateTime, they only work with the date part of it.
23324ae1 1054 */
b9da294f 1055 //@{
23324ae1
FM
1056
1057 /**
1a21919b
BP
1058 Returns the copy of this object to which SetToLastMonthDay() was
1059 applied.
23324ae1 1060 */
b9da294f
BP
1061 wxDateTime GetLastMonthDay(Month month = Inv_Month,
1062 int year = Inv_Year) const;
23324ae1
FM
1063
1064 /**
b9da294f
BP
1065 Returns the copy of this object to which SetToLastWeekDay() was
1066 applied.
23324ae1 1067 */
1a21919b 1068 wxDateTime GetLastWeekDay(WeekDay weekday, Month month = Inv_Month,
b9da294f 1069 int year = Inv_Year);
23324ae1
FM
1070
1071 /**
b9da294f
BP
1072 Returns the copy of this object to which SetToNextWeekDay() was
1073 applied.
23324ae1 1074 */
b9da294f 1075 wxDateTime GetNextWeekDay(WeekDay weekday) const;
23324ae1
FM
1076
1077 /**
b9da294f
BP
1078 Returns the copy of this object to which SetToPrevWeekDay() was
1079 applied.
23324ae1 1080 */
b9da294f 1081 wxDateTime GetPrevWeekDay(WeekDay weekday) const;
23324ae1 1082
1a21919b
BP
1083 /**
1084 Returns the copy of this object to which SetToWeekDay() was applied.
1085 */
1086 wxDateTime GetWeekDay(WeekDay weekday, int n = 1, Month month = Inv_Month,
1087 int year = Inv_Year) const;
1088
23324ae1 1089 /**
b9da294f
BP
1090 Returns the copy of this object to which SetToWeekDayInSameWeek() was
1091 applied.
23324ae1 1092 */
b9da294f
BP
1093 wxDateTime GetWeekDayInSameWeek(WeekDay weekday,
1094 WeekFlags flags = Monday_First) const;
23324ae1 1095
1a21919b
BP
1096 /**
1097 Returns the copy of this object to which SetToYearDay() was applied.
1098 */
1099 wxDateTime GetYearDay(wxDateTime_t yday) const;
1100
23324ae1 1101 /**
b9da294f
BP
1102 Sets the date to the last day in the specified month (the current one
1103 by default).
1104
d29a9a8a 1105 @return The reference to the modified object itself.
23324ae1
FM
1106 */
1107 wxDateTime SetToLastMonthDay(Month month = Inv_Month,
1108 int year = Inv_Year);
1109
1110 /**
1111 The effect of calling this function is the same as of calling
1a21919b
BP
1112 @c SetToWeekDay(-1, weekday, month, year). The date will be set to the
1113 last @a weekday in the given month and year (the current ones by
1114 default). Always returns @true.
23324ae1
FM
1115 */
1116 bool SetToLastWeekDay(WeekDay weekday, Month month = Inv_Month,
1117 int year = Inv_Year);
1118
1119 /**
1a21919b
BP
1120 Sets the date so that it will be the first @a weekday following the
1121 current date.
b9da294f 1122
d29a9a8a 1123 @return The reference to the modified object itself.
23324ae1 1124 */
1d497b99 1125 wxDateTime& SetToNextWeekDay(WeekDay weekday);
23324ae1
FM
1126
1127 /**
4cc4bfaf 1128 Sets the date so that it will be the last @a weekday before the current
23324ae1 1129 date.
b9da294f 1130
d29a9a8a 1131 @return The reference to the modified object itself.
23324ae1 1132 */
1d497b99 1133 wxDateTime& SetToPrevWeekDay(WeekDay weekday);
23324ae1
FM
1134
1135 /**
4cc4bfaf 1136 Sets the date to the @e n-th @a weekday in the given month of the given
1a21919b
BP
1137 year (the current month and year are used by default). The parameter
1138 @a n may be either positive (counting from the beginning of the month)
1139 or negative (counting from the end of it).
b9da294f
BP
1140
1141 For example, SetToWeekDay(2, wxDateTime::Wed) will set the date to the
23324ae1 1142 second Wednesday in the current month and
b9da294f
BP
1143 SetToWeekDay(-1, wxDateTime::Sun) will set the date to the last Sunday
1144 in the current month.
1145
d29a9a8a 1146 @return @true if the date was modified successfully, @false otherwise
b9da294f 1147 meaning that the specified date doesn't exist.
23324ae1
FM
1148 */
1149 bool SetToWeekDay(WeekDay weekday, int n = 1,
b9da294f 1150 Month month = Inv_Month, int year = Inv_Year);
23324ae1
FM
1151
1152 /**
b9da294f
BP
1153 Adjusts the date so that it will still lie in the same week as before,
1154 but its week day will be the given one.
1155
d29a9a8a 1156 @return The reference to the modified object itself.
23324ae1
FM
1157 */
1158 wxDateTime SetToWeekDayInSameWeek(WeekDay weekday,
1159 WeekFlags flags = Monday_First);
1160
23324ae1 1161 /**
1a21919b
BP
1162 Sets the date to the day number @a yday in the same year (i.e., unlike
1163 the other functions, this one does not use the current year). The day
1164 number should be in the range 1-366 for the leap years and 1-365 for
23324ae1 1165 the other ones.
1a21919b 1166
d29a9a8a 1167 @return The reference to the modified object itself.
23324ae1 1168 */
1a21919b 1169 wxDateTime& SetToYearDay(wxDateTime_t yday);
23324ae1 1170
b9da294f
BP
1171 //@}
1172
1173
1174
23324ae1 1175 /**
b9da294f
BP
1176 @name Astronomical/Historical Functions
1177
1178 Some degree of support for the date units used in astronomy and/or
1179 history is provided. You can construct a wxDateTime object from a
1180 JDN and you may also get its JDN, MJD or Rata Die number from it.
1181
1a21919b 1182 Related functions in other groups: wxDateTime(double), Set(double)
23324ae1 1183 */
b9da294f
BP
1184 //@{
1185
1186 /**
1187 Synonym for GetJulianDayNumber().
1188 */
1189 double GetJDN() const;
1190
1191 /**
1a21919b 1192 Returns the JDN corresponding to this date. Beware of rounding errors!
b9da294f
BP
1193
1194 @see GetModifiedJulianDayNumber()
1195 */
1196 double GetJulianDayNumber() const;
1197
1198 /**
1199 Synonym for GetModifiedJulianDayNumber().
1200 */
1201 double GetMJD() const;
1202
1203 /**
1a21919b 1204 Returns the @e "Modified Julian Day Number" (MJD) which is, by
fac938f8
VZ
1205 definition, is equal to JDN - 2400000.5.
1206 The MJDs are simpler to work with as the integral MJDs correspond to
1207 midnights of the dates in the Gregorian calendar and not the noons like
1208 JDN. The MJD 0 represents Nov 17, 1858.
b9da294f
BP
1209 */
1210 double GetModifiedJulianDayNumber() const;
1211
1212 /**
1213 Return the @e Rata Die number of this date.
1a21919b
BP
1214
1215 By definition, the Rata Die number is a date specified as the number of
1216 days relative to a base date of December 31 of the year 0. Thus January
1217 1 of the year 1 is Rata Die day 1.
b9da294f
BP
1218 */
1219 double GetRataDie() const;
1220
1221 //@}
1222
1223
1224
1225 /**
1226 @name Time Zone and DST Support
1227
1228 Please see the @ref overview_datetime_timezones "time zone overview"
1229 for more information about time zones. Normally, these functions should
1230 be rarely used.
1231
1a21919b 1232 Related functions in other groups: GetBeginDST(), GetEndDST()
b9da294f
BP
1233 */
1234 //@{
1235
1236 /**
1237 Transform the date from the given time zone to the local one. If
1238 @a noDST is @true, no DST adjustments will be made.
1239
d29a9a8a 1240 @return The date in the local time zone.
b9da294f
BP
1241 */
1242 wxDateTime FromTimezone(const TimeZone& tz, bool noDST = false) const;
1243
1244 /**
1245 Returns @true if the DST is applied for this date in the given country.
1a21919b
BP
1246
1247 @see GetBeginDST(), GetEndDST()
b9da294f
BP
1248 */
1249 int IsDST(Country country = Country_Default) const;
1250
1251 /**
1252 Same as FromTimezone() but modifies the object in place.
1253 */
1254 wxDateTime MakeFromTimezone(const TimeZone& tz, bool noDST = false);
1255
1256 /**
1257 Modifies the object in place to represent the date in another time
1258 zone. If @a noDST is @true, no DST adjustments will be made.
1259 */
1260 wxDateTime MakeTimezone(const TimeZone& tz, bool noDST = false);
1261
1262 /**
1263 This is the same as calling MakeTimezone() with the argument @c GMT0.
1264 */
1265 wxDateTime& MakeUTC(bool noDST = false);
23324ae1
FM
1266
1267 /**
b9da294f
BP
1268 Transform the date to the given time zone. If @a noDST is @true, no DST
1269 adjustments will be made.
3c4f71cc 1270
d29a9a8a 1271 @return The date in the new time zone.
b9da294f
BP
1272 */
1273 wxDateTime ToTimezone(const TimeZone& tz, bool noDST = false) const;
1274
1275 /**
1276 This is the same as calling ToTimezone() with the argument @c GMT0.
1277 */
1278 wxDateTime ToUTC(bool noDST = false) const;
3c4f71cc 1279
b9da294f 1280 //@}
3c4f71cc 1281
3c4f71cc 1282
3c4f71cc 1283
3c4f71cc 1284
3c4f71cc 1285
b9da294f
BP
1286 /**
1287 Converts the year in absolute notation (i.e. a number which can be
1288 negative, positive or zero) to the year in BC/AD notation. For the
1289 positive years, nothing is done, but the year 0 is year 1 BC and so for
1290 other years there is a difference of 1.
3c4f71cc 1291
b9da294f 1292 This function should be used like this:
3c4f71cc 1293
b9da294f
BP
1294 @code
1295 wxDateTime dt(...);
1296 int y = dt.GetYear();
1297 printf("The year is %d%s", wxDateTime::ConvertYearToBC(y), y > 0 ? "AD" : "BC");
1298 @endcode
1299 */
1300 static int ConvertYearToBC(int year);
3c4f71cc 1301
b9da294f
BP
1302 /**
1303 Returns the translations of the strings @c AM and @c PM used for time
1304 formatting for the current locale. Either of the pointers may be @NULL
1305 if the corresponding value is not needed.
1306 */
1307 static void GetAmPmStrings(wxString* am, wxString* pm);
3c4f71cc 1308
b9da294f
BP
1309 /**
1310 Get the beginning of DST for the given country in the given year
1311 (current one by default). This function suffers from limitations
1312 described in the @ref overview_datetime_dst "DST overview".
3c4f71cc 1313
b9da294f
BP
1314 @see GetEndDST()
1315 */
1316 static wxDateTime GetBeginDST(int year = Inv_Year,
1317 Country country = Country_Default);
3c4f71cc 1318
b9da294f
BP
1319 /**
1320 Returns the end of DST for the given country in the given year (current
1321 one by default).
3c4f71cc 1322
b9da294f
BP
1323 @see GetBeginDST()
1324 */
1325 static wxDateTime GetEndDST(int year = Inv_Year,
1326 Country country = Country_Default);
3c4f71cc 1327
b9da294f
BP
1328 /**
1329 Get the current century, i.e. first two digits of the year, in given
1330 calendar (only Gregorian is currently supported).
1331 */
1332 static int GetCentury(int year);
3c4f71cc 1333
b9da294f
BP
1334 /**
1335 Returns the current default country. The default country is used for
1336 DST calculations, for example.
3c4f71cc 1337
b9da294f
BP
1338 @see SetCountry()
1339 */
1340 static Country GetCountry();
3c4f71cc 1341
b9da294f
BP
1342 /**
1343 Get the current month in given calendar (only Gregorian is currently
1344 supported).
1345 */
1346 static Month GetCurrentMonth(Calendar cal = Gregorian);
3c4f71cc 1347
b9da294f
BP
1348 /**
1349 Get the current year in given calendar (only Gregorian is currently
1350 supported).
23324ae1 1351 */
b9da294f
BP
1352 static int GetCurrentYear(Calendar cal = Gregorian);
1353
1354 /**
1355 Gets the full (default) or abbreviated (specify @c Name_Abbr name of
1356 the given month.
23324ae1 1357
b9da294f
BP
1358 @see GetWeekDayName()
1359 */
1360 static wxString GetMonthName(Month month, NameFlags flags = Name_Full);
23324ae1
FM
1361
1362 /**
b9da294f
BP
1363 Returns the number of days in the given year. The only supported value
1364 for @a cal currently is @c Gregorian.
1365
1366 @beginWxPythonOnly
1367 This method is named "GetNumberOfDaysInYear" in wxPython.
1368 @endWxPythonOnly
23324ae1 1369 */
b9da294f 1370 static wxDateTime_t GetNumberOfDays(int year, Calendar cal = Gregorian);
23324ae1
FM
1371
1372 /**
b9da294f
BP
1373 Returns the number of days in the given month of the given year. The
1374 only supported value for @a cal currently is @c Gregorian.
1375
1376 @beginWxPythonOnly
1377 This method is named "GetNumberOfDaysInMonth" in wxPython.
1378 @endWxPythonOnly
1379 */
1a21919b 1380 static wxDateTime_t GetNumberOfDays(Month month, int year = Inv_Year,
b9da294f 1381 Calendar cal = Gregorian);
3c4f71cc 1382
b9da294f
BP
1383 /**
1384 Returns the current time.
1385 */
1386 static time_t GetTimeNow();
3c4f71cc 1387
b9da294f
BP
1388 /**
1389 Returns the current time broken down using the buffer whose adress is
1390 passed to the function with @a tm to store the result.
1391 */
1392 static struct tm* GetTmNow(struct tm *tm);
3c4f71cc 1393
b9da294f
BP
1394 /**
1395 Returns the current time broken down. Note that this function returns a
1396 pointer to a static buffer that's reused by calls to this function and
1397 certain C library functions (e.g. localtime). If there is any chance
1398 your code might be used in a multi-threaded application, you really
1399 should use GetTmNow(struct tm *) instead.
1400 */
1401 static struct tm* GetTmNow();
3c4f71cc 1402
b9da294f
BP
1403 /**
1404 Gets the full (default) or abbreviated (specify @c Name_Abbr) name of
1405 the given week day.
3c4f71cc 1406
b9da294f
BP
1407 @see GetMonthName()
1408 */
1409 static wxString GetWeekDayName(WeekDay weekday,
1410 NameFlags flags = Name_Full);
3c4f71cc 1411
b9da294f 1412 /**
fac938f8 1413 Returns @true if DST was used in the given year (the current one by
b9da294f
BP
1414 default) in the given country.
1415 */
1416 static bool IsDSTApplicable(int year = Inv_Year,
1417 Country country = Country_Default);
3c4f71cc 1418
b9da294f
BP
1419 /**
1420 Returns @true if the @a year is a leap one in the specified calendar.
1421 This functions supports Gregorian and Julian calendars.
1422 */
1a21919b 1423 static bool IsLeapYear(int year = Inv_Year, Calendar cal = Gregorian);
3c4f71cc 1424
b9da294f
BP
1425 /**
1426 This function returns @true if the specified (or default) country is
1427 one of Western European ones. It is used internally by wxDateTime to
1428 determine the DST convention and date and time formatting rules.
23324ae1 1429 */
b9da294f
BP
1430 static bool IsWestEuropeanCountry(Country country = Country_Default);
1431
1432 /**
1433 Returns the object corresponding to the current time.
1434
1435 Example:
23324ae1 1436
b9da294f
BP
1437 @code
1438 wxDateTime now = wxDateTime::Now();
1439 printf("Current time in Paris:\t%s\n", now.Format("%c", wxDateTime::CET).c_str());
1440 @endcode
1441
1442 @note This function is accurate up to seconds. UNow() should be used
1443 for better precision, but it is less efficient and might not be
1444 available on all platforms.
1445
1446 @see Today()
1447 */
1448 static wxDateTime Now();
23324ae1
FM
1449
1450 /**
b9da294f
BP
1451 Sets the country to use by default. This setting influences the DST
1452 calculations, date formatting and other things.
1453
1454 The possible values for @a country parameter are enumerated in the
1455 @ref datetime_constants section.
1456
1457 @see GetCountry()
23324ae1 1458 */
b9da294f 1459 static void SetCountry(Country country);
23324ae1
FM
1460
1461 /**
1a21919b
BP
1462 Set the date to the given @a weekday in the week number @a numWeek of
1463 the given @a year . The number should be in range 1-53.
1464
1465 Note that the returned date may be in a different year than the one
1466 passed to this function because both the week 1 and week 52 or 53 (for
1467 leap years) contain days from different years. See GetWeekOfYear() for
1468 the explanation of how the year weeks are counted.
23324ae1 1469 */
b9da294f
BP
1470 static wxDateTime SetToWeekOfYear(int year, wxDateTime_t numWeek,
1471 WeekDay weekday = Mon);
23324ae1
FM
1472
1473 /**
b9da294f
BP
1474 Returns the object corresponding to the midnight of the current day
1475 (i.e. the same as Now(), but the time part is set to 0).
3c4f71cc 1476
4cc4bfaf 1477 @see Now()
23324ae1
FM
1478 */
1479 static wxDateTime Today();
1480
1481 /**
1482 Returns the object corresponding to the current time including the
b9da294f
BP
1483 milliseconds if a function to get time with such precision is available
1484 on the current platform (supported under most Unices and Win32).
3c4f71cc 1485
4cc4bfaf 1486 @see Now()
23324ae1 1487 */
4cc4bfaf 1488 static wxDateTime UNow();
4cc4bfaf 1489};
23324ae1 1490
65874118
FM
1491/**
1492 Global instance of an empty wxDateTime object.
1493
1a21919b
BP
1494 @todo Would it be better to rename this wxNullDateTime so it's consistent
1495 with the rest of the "empty/invalid/null" global objects?
65874118 1496*/
1a21919b 1497const wxDateTime wxDefaultDateTime;
65874118 1498
23324ae1 1499
e54c96f1 1500
23324ae1
FM
1501/**
1502 @class wxDateTimeWorkDays
7c913512 1503
1a21919b 1504 @todo Write wxDateTimeWorkDays documentation.
7c913512 1505
23324ae1 1506 @library{wxbase}
1a21919b 1507 @category{data}
23324ae1 1508*/
7c913512 1509class wxDateTimeWorkDays
23324ae1
FM
1510{
1511public:
7c913512 1512
23324ae1
FM
1513};
1514
1515
e54c96f1 1516
23324ae1
FM
1517/**
1518 @class wxDateSpan
7c913512 1519
23324ae1
FM
1520 This class is a "logical time span" and is useful for implementing program
1521 logic for such things as "add one month to the date" which, in general,
1522 doesn't mean to add 60*60*24*31 seconds to it, but to take the same date
1523 the next month (to understand that this is indeed different consider adding
1524 one month to Feb, 15 -- we want to get Mar, 15, of course).
7c913512 1525
23324ae1
FM
1526 When adding a month to the date, all lesser components (days, hours, ...)
1527 won't be changed unless the resulting date would be invalid: for example,
1528 Jan 31 + 1 month will be Feb 28, not (non-existing) Feb 31.
7c913512 1529
23324ae1 1530 Because of this feature, adding and subtracting back again the same
1a21919b 1531 wxDateSpan will @b not, in general, give back the original date: Feb 28 - 1
23324ae1 1532 month will be Jan 28, not Jan 31!
7c913512 1533
23324ae1
FM
1534 wxDateSpan objects can be either positive or negative. They may be
1535 multiplied by scalars which multiply all deltas by the scalar: i.e.
1a21919b
BP
1536 2*(1 month and 1 day) is 2 months and 2 days. They can be added together
1537 with wxDateTime or wxTimeSpan, but the type of result is different for each
23324ae1 1538 case.
7c913512 1539
1a21919b
BP
1540 @warning If you specify both weeks and days, the total number of days added
1541 will be 7*weeks + days! See also GetTotalDays().
7c913512 1542
1a21919b
BP
1543 Equality operators are defined for wxDateSpans. Two wxDateSpans are equal
1544 if and only if they both give the same target date when added to @b every
1545 source date. Thus wxDateSpan::Months(1) is not equal to
1546 wxDateSpan::Days(30), because they don't give the same date when added to
1547 Feb 1st. But wxDateSpan::Days(14) is equal to wxDateSpan::Weeks(2).
7c913512 1548
1a21919b
BP
1549 Finally, notice that for adding hours, minutes and so on you don't need
1550 this class at all: wxTimeSpan will do the job because there are no
1551 subtleties associated with those (we don't support leap seconds).
7c913512 1552
23324ae1
FM
1553 @library{wxbase}
1554 @category{data}
7c913512 1555
b9da294f 1556 @see @ref overview_datetime, wxDateTime
23324ae1 1557*/
7c913512 1558class wxDateSpan
23324ae1
FM
1559{
1560public:
1561 /**
1a21919b
BP
1562 Constructs the date span object for the given number of years, months,
1563 weeks and days. Note that the weeks and days add together if both are
1564 given.
23324ae1 1565 */
1a21919b 1566 wxDateSpan(int years = 0, int months = 0, int weeks = 0, int days = 0);
23324ae1 1567
23324ae1 1568 /**
1a21919b
BP
1569 Returns the sum of two date spans.
1570
d29a9a8a 1571 @return A new wxDateSpan object with the result.
23324ae1 1572 */
1a21919b
BP
1573 wxDateSpan Add(const wxDateSpan& other) const;
1574 /**
1575 Adds the given wxDateSpan to this wxDateSpan and returns a reference
1576 to itself.
1577 */
1578 wxDateSpan& Add(const wxDateSpan& other);
23324ae1
FM
1579
1580 /**
1581 Returns a date span object corresponding to one day.
3c4f71cc 1582
4cc4bfaf 1583 @see Days()
23324ae1 1584 */
4cc4bfaf 1585 static wxDateSpan Day();
23324ae1
FM
1586
1587 /**
1588 Returns a date span object corresponding to the given number of days.
3c4f71cc 1589
4cc4bfaf 1590 @see Day()
23324ae1
FM
1591 */
1592 static wxDateSpan Days(int days);
1593
1594 /**
1a21919b
BP
1595 Returns the number of days (not counting the weeks component) in this
1596 date span.
3c4f71cc 1597
4cc4bfaf 1598 @see GetTotalDays()
23324ae1 1599 */
328f5751 1600 int GetDays() const;
23324ae1
FM
1601
1602 /**
1a21919b
BP
1603 Returns the number of the months (not counting the years) in this date
1604 span.
23324ae1 1605 */
328f5751 1606 int GetMonths() const;
23324ae1
FM
1607
1608 /**
1a21919b
BP
1609 Returns the combined number of days in this date span, counting both
1610 weeks and days. This doesn't take months or years into account.
3c4f71cc 1611
4cc4bfaf 1612 @see GetWeeks(), GetDays()
23324ae1 1613 */
328f5751 1614 int GetTotalDays() const;
23324ae1
FM
1615
1616 /**
1617 Returns the number of weeks in this date span.
3c4f71cc 1618
4cc4bfaf 1619 @see GetTotalDays()
23324ae1 1620 */
328f5751 1621 int GetWeeks() const;
23324ae1
FM
1622
1623 /**
1624 Returns the number of years in this date span.
1625 */
328f5751 1626 int GetYears() const;
23324ae1
FM
1627
1628 /**
1629 Returns a date span object corresponding to one month.
3c4f71cc 1630
4cc4bfaf 1631 @see Months()
23324ae1
FM
1632 */
1633 static wxDateSpan Month();
1634
1635 /**
1636 Returns a date span object corresponding to the given number of months.
3c4f71cc 1637
4cc4bfaf 1638 @see Month()
23324ae1
FM
1639 */
1640 static wxDateSpan Months(int mon);
1641
23324ae1 1642 /**
1a21919b
BP
1643 Returns the product of the date span by the specified @a factor. The
1644 product is computed by multiplying each of the components by the
1645 @a factor.
1646
d29a9a8a 1647 @return A new wxDateSpan object with the result.
23324ae1 1648 */
1a21919b
BP
1649 wxDateSpan Multiply(int factor) const;
1650 /**
1651 Multiplies this date span by the specified @a factor. The product is
1652 computed by multiplying each of the components by the @a factor.
1653
d29a9a8a 1654 @return A reference to this wxDateSpan object modified in place.
1a21919b
BP
1655 */
1656 wxDateSpan& Multiply(int factor);
23324ae1 1657
23324ae1
FM
1658 /**
1659 Changes the sign of this date span.
3c4f71cc 1660
4cc4bfaf 1661 @see Negate()
23324ae1 1662 */
1a21919b 1663 wxDateSpan& Neg();
23324ae1
FM
1664
1665 /**
1a21919b 1666 Returns a date span with the opposite sign.
3c4f71cc 1667
4cc4bfaf 1668 @see Neg()
23324ae1 1669 */
328f5751 1670 wxDateSpan Negate() const;
23324ae1
FM
1671
1672 /**
1a21919b
BP
1673 Sets the number of days (without modifying any other components) in
1674 this date span.
23324ae1 1675 */
1d497b99 1676 wxDateSpan& SetDays(int n);
23324ae1
FM
1677
1678 /**
1a21919b
BP
1679 Sets the number of months (without modifying any other components) in
1680 this date span.
23324ae1 1681 */
1d497b99 1682 wxDateSpan& SetMonths(int n);
23324ae1
FM
1683
1684 /**
1a21919b
BP
1685 Sets the number of weeks (without modifying any other components) in
1686 this date span.
23324ae1 1687 */
1d497b99 1688 wxDateSpan& SetWeeks(int n);
23324ae1
FM
1689
1690 /**
1a21919b
BP
1691 Sets the number of years (without modifying any other components) in
1692 this date span.
23324ae1 1693 */
1d497b99 1694 wxDateSpan& SetYears(int n);
23324ae1 1695
23324ae1 1696 /**
1a21919b
BP
1697 Returns the difference of two date spans.
1698
d29a9a8a 1699 @return A new wxDateSpan object with the result.
1a21919b
BP
1700 */
1701 wxDateSpan Subtract(const wxDateSpan& other) const;
1702 /**
1703 Subtracts the given wxDateSpan to this wxDateSpan and returns a
1704 reference to itself.
23324ae1 1705 */
1a21919b 1706 wxDateSpan& Subtract(const wxDateSpan& other);
23324ae1
FM
1707
1708 /**
1709 Returns a date span object corresponding to one week.
3c4f71cc 1710
4cc4bfaf 1711 @see Weeks()
23324ae1
FM
1712 */
1713 static wxDateSpan Week();
1714
1715 /**
1716 Returns a date span object corresponding to the given number of weeks.
3c4f71cc 1717
4cc4bfaf 1718 @see Week()
23324ae1
FM
1719 */
1720 static wxDateSpan Weeks(int weeks);
1721
1722 /**
1723 Returns a date span object corresponding to one year.
3c4f71cc 1724
4cc4bfaf 1725 @see Years()
23324ae1
FM
1726 */
1727 static wxDateSpan Year();
1728
1729 /**
1730 Returns a date span object corresponding to the given number of years.
3c4f71cc 1731
4cc4bfaf 1732 @see Year()
23324ae1
FM
1733 */
1734 static wxDateSpan Years(int years);
1735
1a21919b
BP
1736 /**
1737 Adds the given wxDateSpan to this wxDateSpan and returns the result.
1738 */
1739 wxDateSpan& operator+=(const wxDateSpan& other);
1740
1741 /**
1742 Subtracts the given wxDateSpan to this wxDateSpan and returns the
1743 result.
1744 */
1745 wxDateSpan& operator-=(const wxDateSpan& other);
1746
1747 /**
1748 Changes the sign of this date span.
1749
1750 @see Negate()
1751 */
1752 wxDateSpan& operator-();
1753
1754 /**
1755 Multiplies this date span by the specified @a factor. The product is
1756 computed by multiplying each of the components by the @a factor.
1757
d29a9a8a 1758 @return A reference to this wxDateSpan object modified in place.
1a21919b
BP
1759 */
1760 wxDateSpan& operator*=(int factor);
1761
23324ae1
FM
1762 /**
1763 Returns @true if this date span is different from the other one.
1764 */
1d497b99 1765 bool operator!=(const wxDateSpan&) const;
23324ae1
FM
1766
1767 /**
1a21919b
BP
1768 Returns @true if this date span is equal to the other one. Two date
1769 spans are considered equal if and only if they have the same number of
1770 years and months and the same total number of days (counting both days
1771 and weeks).
23324ae1 1772 */
1d497b99 1773 bool operator==(const wxDateSpan&) const;
23324ae1
FM
1774};
1775
1776
e54c96f1 1777
23324ae1
FM
1778/**
1779 @class wxTimeSpan
7c913512 1780
23324ae1 1781 wxTimeSpan class represents a time interval.
7c913512 1782
23324ae1
FM
1783 @library{wxbase}
1784 @category{data}
7c913512 1785
b9da294f 1786 @see @ref overview_datetime, wxDateTime
23324ae1 1787*/
7c913512 1788class wxTimeSpan
23324ae1
FM
1789{
1790public:
23324ae1 1791 /**
1a21919b 1792 Default constructor, constructs a zero timespan.
23324ae1
FM
1793 */
1794 wxTimeSpan();
1a21919b
BP
1795 /**
1796 Constructs timespan from separate values for each component, with the
1797 date set to 0. Hours are not restricted to 0-24 range, neither are
1798 minutes, seconds or milliseconds.
1799 */
4ccf0566 1800 wxTimeSpan(long hours, long min = 0, wxLongLong sec = 0, wxLongLong msec = 0);
23324ae1
FM
1801
1802 /**
1a21919b 1803 Returns the absolute value of the timespan: does not modify the object.
23324ae1 1804 */
328f5751 1805 wxTimeSpan Abs() const;
23324ae1
FM
1806
1807 /**
1a21919b 1808 Returns the sum of two time spans.
3c4f71cc 1809
d29a9a8a 1810 @return A new wxDateSpan object with the result.
23324ae1 1811 */
1a21919b 1812 wxTimeSpan Add(const wxTimeSpan& diff) const;
23324ae1 1813 /**
1a21919b
BP
1814 Adds the given wxTimeSpan to this wxTimeSpan and returns a reference
1815 to itself.
23324ae1 1816 */
1a21919b 1817 wxTimeSpan& Add(const wxTimeSpan& diff);
23324ae1
FM
1818
1819 /**
1820 Returns the timespan for one day.
1821 */
4cc4bfaf 1822 static wxTimespan Day();
23324ae1
FM
1823
1824 /**
1825 Returns the timespan for the given number of days.
1826 */
1827 static wxTimespan Days(long days);
1828
1829 /**
1a21919b
BP
1830 Returns the string containing the formatted representation of the time
1831 span. The following format specifiers are allowed after %:
3c4f71cc 1832
1a21919b
BP
1833 - @c H - Number of Hours
1834 - @c M - Number of Minutes
1835 - @c S - Number of Seconds
1836 - @c l - Number of Milliseconds
1837 - @c D - Number of Days
1838 - @c E - Number of Weeks
1839 - @c % - The percent character
3c4f71cc 1840
1a21919b
BP
1841 Note that, for example, the number of hours in the description above is
1842 not well defined: it can be either the total number of hours (for
1843 example, for a time span of 50 hours this would be 50) or just the hour
1844 part of the time span, which would be 2 in this case as 50 hours is
1845 equal to 2 days and 2 hours.
3c4f71cc 1846
1a21919b
BP
1847 wxTimeSpan resolves this ambiguity in the following way: if there had
1848 been, indeed, the @c %D format specified preceding the @c %H, then it
1849 is interpreted as 2. Otherwise, it is 50.
3c4f71cc 1850
1a21919b
BP
1851 The same applies to all other format specifiers: if they follow a
1852 specifier of larger unit, only the rest part is taken, otherwise the
1853 full value is used.
23324ae1 1854 */
1d497b99 1855 wxString Format(const wxString& = wxDefaultTimeSpanFormat) const;
23324ae1 1856
23324ae1
FM
1857 /**
1858 Returns the difference in number of days.
1859 */
328f5751 1860 int GetDays() const;
23324ae1
FM
1861
1862 /**
1863 Returns the difference in number of hours.
1864 */
328f5751 1865 int GetHours() const;
23324ae1
FM
1866
1867 /**
1868 Returns the difference in number of milliseconds.
1869 */
328f5751 1870 wxLongLong GetMilliseconds() const;
23324ae1
FM
1871
1872 /**
1873 Returns the difference in number of minutes.
1874 */
328f5751 1875 int GetMinutes() const;
23324ae1
FM
1876
1877 /**
1878 Returns the difference in number of seconds.
1879 */
328f5751 1880 wxLongLong GetSeconds() const;
23324ae1
FM
1881
1882 /**
1883 Returns the internal representation of timespan.
1884 */
328f5751 1885 wxLongLong GetValue() const;
23324ae1
FM
1886
1887 /**
1888 Returns the difference in number of weeks.
1889 */
328f5751 1890 int GetWeeks() const;
23324ae1
FM
1891
1892 /**
1893 Returns the timespan for one hour.
1894 */
1895 static wxTimespan Hour();
1896
1897 /**
1898 Returns the timespan for the given number of hours.
1899 */
1900 static wxTimespan Hours(long hours);
1901
1902 /**
1903 Returns @true if two timespans are equal.
1904 */
328f5751 1905 bool IsEqualTo(const wxTimeSpan& ts) const;
23324ae1
FM
1906
1907 /**
1a21919b
BP
1908 Compares two timespans: works with the absolute values, i.e. -2 hours
1909 is longer than 1 hour. Also, it will return @false if the timespans are
1910 equal in absolute value.
23324ae1 1911 */
328f5751 1912 bool IsLongerThan(const wxTimeSpan& ts) const;
23324ae1
FM
1913
1914 /**
1915 Returns @true if the timespan is negative.
1916 */
328f5751 1917 bool IsNegative() const;
23324ae1
FM
1918
1919 /**
1920 Returns @true if the timespan is empty.
1921 */
328f5751 1922 bool IsNull() const;
23324ae1
FM
1923
1924 /**
1925 Returns @true if the timespan is positive.
1926 */
328f5751 1927 bool IsPositive() const;
23324ae1
FM
1928
1929 /**
1a21919b
BP
1930 Compares two timespans: works with the absolute values, i.e. 1 hour is
1931 shorter than -2 hours. Also, it will return @false if the timespans are
1932 equal in absolute value.
23324ae1 1933 */
328f5751 1934 bool IsShorterThan(const wxTimeSpan& ts) const;
23324ae1
FM
1935
1936 /**
1937 Returns the timespan for one millisecond.
1938 */
1939 static wxTimespan Millisecond();
1940
1941 /**
1942 Returns the timespan for the given number of milliseconds.
1943 */
1944 static wxTimespan Milliseconds(long ms);
1945
1946 /**
1947 Returns the timespan for one minute.
1948 */
1949 static wxTimespan Minute();
1950
1951 /**
1952 Returns the timespan for the given number of minutes.
1953 */
1954 static wxTimespan Minutes(long min);
1955
23324ae1 1956 /**
1a21919b 1957 Returns the product of this time span by @a n.
23324ae1 1958
d29a9a8a 1959 @return A new wxTimeSpan object with the result.
23324ae1 1960 */
1a21919b 1961 wxTimeSpan Multiply(int n) const;
23324ae1 1962 /**
1a21919b
BP
1963 Multiplies this time span by @a n.
1964
d29a9a8a 1965 @return A reference to this wxTimeSpan object modified in place.
23324ae1 1966 */
1a21919b 1967 wxTimeSpan& Multiply(int n);
23324ae1
FM
1968
1969 /**
1a21919b 1970 Negate the value of the timespan.
3c4f71cc 1971
1a21919b
BP
1972 @see Negate()
1973 */
1974 wxTimeSpan& Neg();
3c4f71cc 1975
1a21919b
BP
1976 /**
1977 Returns timespan with inverted sign.
3c4f71cc 1978
1a21919b 1979 @see Neg()
23324ae1 1980 */
1a21919b 1981 wxTimeSpan Negate() const;
23324ae1
FM
1982
1983 /**
1984 Returns the timespan for one second.
1985 */
1986 static wxTimespan Second();
1987
1988 /**
1989 Returns the timespan for the given number of seconds.
1990 */
1991 static wxTimespan Seconds(long sec);
1992
1993 /**
1a21919b 1994 Returns the difference of two time spans.
3c4f71cc 1995
d29a9a8a 1996 @return A new wxDateSpan object with the result.
23324ae1 1997 */
1a21919b 1998 wxTimeSpan Subtract(const wxTimeSpan& diff) const;
23324ae1 1999 /**
1a21919b
BP
2000 Subtracts the given wxTimeSpan to this wxTimeSpan and returns a
2001 reference to itself.
23324ae1 2002 */
1a21919b 2003 wxTimeSpan& Subtract(const wxTimeSpan& diff);
23324ae1
FM
2004
2005 /**
1a21919b
BP
2006 Returns the timespan for one week.
2007 */
2008 static wxTimespan Week();
3c4f71cc 2009
1a21919b
BP
2010 /**
2011 Returns the timespan for the given number of weeks.
2012 */
2013 static wxTimespan Weeks(long weeks);
3c4f71cc 2014
1a21919b
BP
2015 /**
2016 Adds the given wxTimeSpan to this wxTimeSpan and returns the result.
2017 */
2018 wxTimeSpan& operator+=(const wxTimeSpan& diff);
3c4f71cc 2019
1a21919b
BP
2020 /**
2021 Multiplies this time span by @a n.
3c4f71cc 2022
d29a9a8a 2023 @return A reference to this wxTimeSpan object modified in place.
23324ae1 2024 */
1a21919b 2025 wxTimeSpan& operator*=(int n);
23324ae1
FM
2026
2027 /**
1a21919b
BP
2028 Negate the value of the timespan.
2029
2030 @see Negate()
23324ae1 2031 */
1a21919b 2032 wxTimeSpan& operator-();
23324ae1
FM
2033
2034 /**
1a21919b
BP
2035 Subtracts the given wxTimeSpan to this wxTimeSpan and returns the
2036 result.
23324ae1 2037 */
1a21919b 2038 wxTimeSpan& operator-=(const wxTimeSpan& diff);
23324ae1
FM
2039};
2040
2041
e54c96f1 2042
23324ae1
FM
2043/**
2044 @class wxDateTimeHolidayAuthority
7c913512 2045
1a21919b 2046 @todo Write wxDateTimeHolidayAuthority documentation.
7c913512 2047
23324ae1 2048 @library{wxbase}
1a21919b 2049 @category{misc}
23324ae1 2050*/
7c913512 2051class wxDateTimeHolidayAuthority
23324ae1
FM
2052{
2053public:
7c913512 2054
23324ae1 2055};
e54c96f1 2056