]> git.saurik.com Git - wxWidgets.git/blame - include/wx/datetime.h
making method properly const
[wxWidgets.git] / include / wx / datetime.h
CommitLineData
0979c962
VZ
1/////////////////////////////////////////////////////////////////////////////
2// Name: wx/datetime.h
3// Purpose: declarations of time/date related classes (wxDateTime,
4// wxTimeSpan)
5// Author: Vadim Zeitlin
6// Modified by:
7// Created: 10.02.99
8// RCS-ID: $Id$
9// Copyright: (c) 1998 Vadim Zeitlin <zeitlin@dptmaths.ens-cachan.fr>
65571936 10// Licence: wxWindows licence
0979c962
VZ
11/////////////////////////////////////////////////////////////////////////////
12
2f02cb89
VZ
13#ifndef _WX_DATETIME_H
14#define _WX_DATETIME_H
0979c962 15
2b5f62a0
VZ
16#include "wx/defs.h"
17
e421922f
VZ
18#if wxUSE_DATETIME
19
9b4da627
VZ
20#ifdef __WXWINCE__
21 #include "wx/msw/wince/time.h"
22#elif !defined(__WXPALMOS5__)
23 #include <time.h>
24#endif // OS
5e967044 25
b76b015e 26#include <limits.h> // for INT_MIN
0979c962
VZ
27
28#include "wx/longlong.h"
254696bb 29#include "wx/anystr.h"
0979c962 30
b5dbe15d
VS
31class WXDLLIMPEXP_FWD_BASE wxDateTime;
32class WXDLLIMPEXP_FWD_BASE wxTimeSpan;
33class WXDLLIMPEXP_FWD_BASE wxDateSpan;
154014d6
VZ
34#ifdef __WXMSW__
35struct _SYSTEMTIME;
36#endif
0979c962 37
df5168c4 38#include "wx/dynarray.h"
2f02cb89 39
5b781a67
SC
40// not all c-runtimes are based on 1/1/1970 being (time_t) 0
41// set this to the corresponding value in seconds 1/1/1970 has on your
42// systems c-runtime
43
92f89387
SC
44#define WX_TIME_BASE_OFFSET 0
45
0979c962 46/*
f6bcfd97 47 * TODO
0979c962 48 *
299fcbfe 49 * + 1. Time zones with minutes (make TimeZone a class)
4f6aed9c 50 * ? 2. getdate() function like under Solaris
299fcbfe 51 * + 3. text conversion for wxDateSpan
4f6aed9c
VZ
52 * + 4. pluggable modules for the workdays calculations
53 * 5. wxDateTimeHolidayAuthority for Easter and other christian feasts
0979c962
VZ
54 */
55
a452689b
SN
56/* Two wrapper functions for thread safety */
57#ifdef HAVE_LOCALTIME_R
58#define wxLocaltime_r localtime_r
59#else
56560c38 60WXDLLIMPEXP_BASE struct tm *wxLocaltime_r(const time_t*, struct tm*);
740af654 61#if wxUSE_THREADS && !defined(__WINDOWS__) && !defined(__WATCOMC__)
cf44a61c 62 // On Windows, localtime _is_ threadsafe!
a452689b
SN
63#warning using pseudo thread-safe wrapper for localtime to emulate localtime_r
64#endif
cf44a61c 65#endif
a452689b
SN
66
67#ifdef HAVE_GMTIME_R
68#define wxGmtime_r gmtime_r
69#else
56560c38 70WXDLLIMPEXP_BASE struct tm *wxGmtime_r(const time_t*, struct tm*);
740af654 71#if wxUSE_THREADS && !defined(__WINDOWS__) && !defined(__WATCOMC__)
cf44a61c 72 // On Windows, gmtime _is_ threadsafe!
a452689b
SN
73#warning using pseudo thread-safe wrapper for gmtime to emulate gmtime_r
74#endif
cf44a61c 75#endif
a452689b 76
0979c962 77/*
299fcbfe 78 The three (main) classes declared in this header represent:
0979c962
VZ
79
80 1. An absolute moment in the time (wxDateTime)
81 2. A difference between two moments in the time, positive or negative
82 (wxTimeSpan)
83 3. A logical difference between two dates expressed in
84 years/months/weeks/days (wxDateSpan)
85
86 The following arithmetic operations are permitted (all others are not):
87
88 addition
89 --------
90
91 wxDateTime + wxTimeSpan = wxDateTime
92 wxDateTime + wxDateSpan = wxDateTime
93 wxTimeSpan + wxTimeSpan = wxTimeSpan
94 wxDateSpan + wxDateSpan = wxDateSpan
95
f6bcfd97 96 subtraction
0979c962
VZ
97 ------------
98 wxDateTime - wxDateTime = wxTimeSpan
cd0b1709
VZ
99 wxDateTime - wxTimeSpan = wxDateTime
100 wxDateTime - wxDateSpan = wxDateTime
0979c962
VZ
101 wxTimeSpan - wxTimeSpan = wxTimeSpan
102 wxDateSpan - wxDateSpan = wxDateSpan
103
104 multiplication
105 --------------
106 wxTimeSpan * number = wxTimeSpan
cd0b1709 107 number * wxTimeSpan = wxTimeSpan
0979c962 108 wxDateSpan * number = wxDateSpan
cd0b1709 109 number * wxDateSpan = wxDateSpan
0979c962
VZ
110
111 unitary minus
112 -------------
113 -wxTimeSpan = wxTimeSpan
114 -wxDateSpan = wxDateSpan
cd0b1709
VZ
115
116 For each binary operation OP (+, -, *) we have the following operatorOP=() as
f6bcfd97 117 a method and the method with a symbolic name OPER (Add, Subtract, Multiply)
cd0b1709
VZ
118 as a synonym for it and another const method with the same name which returns
119 the changed copy of the object and operatorOP() as a global function which is
120 implemented in terms of the const version of OPEN. For the unary - we have
121 operator-() as a method, Neg() as synonym for it and Negate() which returns
122 the copy of the object with the changed sign.
0979c962
VZ
123*/
124
2ef31e80
VZ
125// an invalid/default date time object which may be used as the default
126// argument for arguments of type wxDateTime; it is also returned by all
127// functions returning wxDateTime on failure (this is why it is also called
128// wxInvalidDateTime)
b5dbe15d 129class WXDLLIMPEXP_FWD_BASE wxDateTime;
2ef31e80 130
71ebd60b
VZ
131extern WXDLLIMPEXP_DATA_BASE(const char *) wxDefaultDateTimeFormat;
132extern WXDLLIMPEXP_DATA_BASE(const char *) wxDefaultTimeSpanFormat;
bddd7a8d 133extern WXDLLIMPEXP_DATA_BASE(const wxDateTime) wxDefaultDateTime;
1aaf88d2 134
2ef31e80
VZ
135#define wxInvalidDateTime wxDefaultDateTime
136
48fd6e9d
FM
137
138// ----------------------------------------------------------------------------
139// conditional compilation
140// ----------------------------------------------------------------------------
141
142#if defined(HAVE_STRPTIME) && defined(__GLIBC__) && \
143 ((__GLIBC__ == 2) && (__GLIBC_MINOR__ == 0))
144 // glibc 2.0.7 strptime() is broken - the following snippet causes it to
145 // crash (instead of just failing):
146 //
147 // strncpy(buf, "Tue Dec 21 20:25:40 1999", 128);
148 // strptime(buf, "%x", &tm);
149 //
150 // so don't use it
151 #undef HAVE_STRPTIME
152#endif // broken strptime()
153
154#if defined(HAVE_STRPTIME) && defined(__DARWIN__) && defined(_MSL_USING_MW_C_HEADERS) && _MSL_USING_MW_C_HEADERS
155 // configure detects strptime as linkable because it's in the OS X
156 // System library but MSL headers don't declare it.
157
158// char *strptime(const char *, const char *, struct tm *);
159 // However, we DON'T want to just provide it here because we would
160 // crash and/or overwrite data when strptime from OS X tries
161 // to fill in MW's struct tm which is two fields shorter (no TZ stuff)
162 // So for now let's just say we don't have strptime
163 #undef HAVE_STRPTIME
164#endif
165
166// everyone has strftime except Win CE unless VC8 is used
167#if !defined(__WXWINCE__) || defined(__VISUALC8__)
168 #define HAVE_STRFTIME
169#endif
170
0979c962 171// ----------------------------------------------------------------------------
cd0b1709 172// wxDateTime represents an absolute moment in the time
0979c962 173// ----------------------------------------------------------------------------
b76b015e 174
bddd7a8d 175class WXDLLIMPEXP_BASE wxDateTime
0979c962
VZ
176{
177public:
178 // types
179 // ------------------------------------------------------------------------
180
cd0b1709
VZ
181 // a small unsigned integer type for storing things like minutes,
182 // seconds &c. It should be at least short (i.e. not char) to contain
183 // the number of milliseconds - it may also be 'int' because there is
184 // no size penalty associated with it in our code, we don't store any
185 // data in this format
0979c962
VZ
186 typedef unsigned short wxDateTime_t;
187
f0f951fa
VZ
188 // constants
189 // ------------------------------------------------------------------------
190
0979c962 191 // the timezones
b76b015e 192 enum TZ
0979c962
VZ
193 {
194 // the time in the current time zone
195 Local,
196
197 // zones from GMT (= Greenwhich Mean Time): they're guaranteed to be
198 // consequent numbers, so writing something like `GMT0 + offset' is
199 // safe if abs(offset) <= 12
200
201 // underscore stands for minus
202 GMT_12, GMT_11, GMT_10, GMT_9, GMT_8, GMT_7,
203 GMT_6, GMT_5, GMT_4, GMT_3, GMT_2, GMT_1,
204 GMT0,
205 GMT1, GMT2, GMT3, GMT4, GMT5, GMT6,
34f90a1c 206 GMT7, GMT8, GMT9, GMT10, GMT11, GMT12, GMT13,
0979c962
VZ
207 // Note that GMT12 and GMT_12 are not the same: there is a difference
208 // of exactly one day between them
209
fcc3d7cb
VZ
210 // some symbolic names for TZ
211
212 // Europe
213 WET = GMT0, // Western Europe Time
214 WEST = GMT1, // Western Europe Summer Time
215 CET = GMT1, // Central Europe Time
216 CEST = GMT2, // Central Europe Summer Time
217 EET = GMT2, // Eastern Europe Time
218 EEST = GMT3, // Eastern Europe Summer Time
219 MSK = GMT3, // Moscow Time
220 MSD = GMT4, // Moscow Summer Time
221
222 // US and Canada
223 AST = GMT_4, // Atlantic Standard Time
224 ADT = GMT_3, // Atlantic Daylight Time
225 EST = GMT_5, // Eastern Standard Time
226 EDT = GMT_4, // Eastern Daylight Saving Time
227 CST = GMT_6, // Central Standard Time
228 CDT = GMT_5, // Central Daylight Saving Time
229 MST = GMT_7, // Mountain Standard Time
230 MDT = GMT_6, // Mountain Daylight Saving Time
231 PST = GMT_8, // Pacific Standard Time
232 PDT = GMT_7, // Pacific Daylight Saving Time
233 HST = GMT_10, // Hawaiian Standard Time
234 AKST = GMT_9, // Alaska Standard Time
235 AKDT = GMT_8, // Alaska Daylight Saving Time
236
237 // Australia
238
239 A_WST = GMT8, // Western Standard Time
34f90a1c 240 A_CST = GMT13 + 1, // Central Standard Time (+9.5)
fcc3d7cb
VZ
241 A_EST = GMT10, // Eastern Standard Time
242 A_ESST = GMT11, // Eastern Summer Time
243
34f90a1c
VZ
244 // New Zealand
245 NZST = GMT12, // Standard Time
246 NZDT = GMT13, // Daylight Saving Time
247
fcc3d7cb
VZ
248 // TODO add more symbolic timezone names here
249
250 // Universal Coordinated Time = the new and politically correct name
251 // for GMT
0979c962 252 UTC = GMT0
0979c962
VZ
253 };
254
255 // the calendar systems we know about: notice that it's valid (for
256 // this classes purpose anyhow) to work with any of these calendars
257 // even with the dates before the historical appearance of the
258 // calendar
259 enum Calendar
260 {
261 Gregorian, // current calendar
262 Julian // calendar in use since -45 until the 1582 (or later)
263
264 // TODO Hebrew, Chinese, Maya, ... (just kidding) (or then may be not?)
265 };
266
267 // these values only are used to identify the different dates of
268 // adoption of the Gregorian calendar (see IsGregorian())
269 //
270 // All data and comments taken verbatim from "The Calendar FAQ (v 2.0)"
48fd6e9d 271 // by Claus T�ndering, http://www.pip.dknet.dk/~c-t/calendar.html
0979c962
VZ
272 // except for the comments "we take".
273 //
274 // Symbol "->" should be read as "was followed by" in the comments
275 // which follow.
276 enum GregorianAdoption
277 {
278 Gr_Unknown, // no data for this country or it's too uncertain to use
279 Gr_Standard, // on the day 0 of Gregorian calendar: 15 Oct 1582
280
281 Gr_Alaska, // Oct 1867 when Alaska became part of the USA
282 Gr_Albania, // Dec 1912
283
284 Gr_Austria = Gr_Unknown, // Different regions on different dates
285 Gr_Austria_Brixen, // 5 Oct 1583 -> 16 Oct 1583
286 Gr_Austria_Salzburg = Gr_Austria_Brixen,
287 Gr_Austria_Tyrol = Gr_Austria_Brixen,
288 Gr_Austria_Carinthia, // 14 Dec 1583 -> 25 Dec 1583
289 Gr_Austria_Styria = Gr_Austria_Carinthia,
290
291 Gr_Belgium, // Then part of the Netherlands
292
293 Gr_Bulgaria = Gr_Unknown, // Unknown precisely (from 1915 to 1920)
294 Gr_Bulgaria_1, // 18 Mar 1916 -> 1 Apr 1916
295 Gr_Bulgaria_2, // 31 Mar 1916 -> 14 Apr 1916
296 Gr_Bulgaria_3, // 3 Sep 1920 -> 17 Sep 1920
297
298 Gr_Canada = Gr_Unknown, // Different regions followed the changes in
299 // Great Britain or France
300
301 Gr_China = Gr_Unknown, // Different authorities say:
302 Gr_China_1, // 18 Dec 1911 -> 1 Jan 1912
303 Gr_China_2, // 18 Dec 1928 -> 1 Jan 1929
304
305 Gr_Czechoslovakia, // (Bohemia and Moravia) 6 Jan 1584 -> 17 Jan 1584
306 Gr_Denmark, // (including Norway) 18 Feb 1700 -> 1 Mar 1700
307 Gr_Egypt, // 1875
308 Gr_Estonia, // 1918
309 Gr_Finland, // Then part of Sweden
310
311 Gr_France, // 9 Dec 1582 -> 20 Dec 1582
312 Gr_France_Alsace, // 4 Feb 1682 -> 16 Feb 1682
313 Gr_France_Lorraine, // 16 Feb 1760 -> 28 Feb 1760
314 Gr_France_Strasbourg, // February 1682
315
316 Gr_Germany = Gr_Unknown, // Different states on different dates:
317 Gr_Germany_Catholic, // 1583-1585 (we take 1584)
318 Gr_Germany_Prussia, // 22 Aug 1610 -> 2 Sep 1610
319 Gr_Germany_Protestant, // 18 Feb 1700 -> 1 Mar 1700
320
321 Gr_GreatBritain, // 2 Sep 1752 -> 14 Sep 1752 (use 'cal(1)')
322
323 Gr_Greece, // 9 Mar 1924 -> 23 Mar 1924
324 Gr_Hungary, // 21 Oct 1587 -> 1 Nov 1587
325 Gr_Ireland = Gr_GreatBritain,
326 Gr_Italy = Gr_Standard,
327
328 Gr_Japan = Gr_Unknown, // Different authorities say:
329 Gr_Japan_1, // 19 Dec 1872 -> 1 Jan 1873
330 Gr_Japan_2, // 19 Dec 1892 -> 1 Jan 1893
331 Gr_Japan_3, // 18 Dec 1918 -> 1 Jan 1919
332
333 Gr_Latvia, // 1915-1918 (we take 1915)
334 Gr_Lithuania, // 1915
335 Gr_Luxemburg, // 14 Dec 1582 -> 25 Dec 1582
336 Gr_Netherlands = Gr_Belgium, // (including Belgium) 1 Jan 1583
337
338 // this is too weird to take into account: the Gregorian calendar was
339 // introduced twice in Groningen, first time 28 Feb 1583 was followed
340 // by 11 Mar 1583, then it has gone back to Julian in the summer of
341 // 1584 and then 13 Dec 1700 -> 12 Jan 1701 - which is
342 // the date we take here
343 Gr_Netherlands_Groningen, // 13 Dec 1700 -> 12 Jan 1701
344 Gr_Netherlands_Gelderland, // 30 Jun 1700 -> 12 Jul 1700
345 Gr_Netherlands_Utrecht, // (and Overijssel) 30 Nov 1700->12 Dec 1700
346 Gr_Netherlands_Friesland, // (and Drenthe) 31 Dec 1700 -> 12 Jan 1701
347
348 Gr_Norway = Gr_Denmark, // Then part of Denmark
349 Gr_Poland = Gr_Standard,
350 Gr_Portugal = Gr_Standard,
351 Gr_Romania, // 31 Mar 1919 -> 14 Apr 1919
352 Gr_Russia, // 31 Jan 1918 -> 14 Feb 1918
353 Gr_Scotland = Gr_GreatBritain,
354 Gr_Spain = Gr_Standard,
355
356 // Sweden has a curious history. Sweden decided to make a gradual
357 // change from the Julian to the Gregorian calendar. By dropping every
358 // leap year from 1700 through 1740 the eleven superfluous days would
359 // be omitted and from 1 Mar 1740 they would be in sync with the
360 // Gregorian calendar. (But in the meantime they would be in sync with
361 // nobody!)
362 //
363 // So 1700 (which should have been a leap year in the Julian calendar)
364 // was not a leap year in Sweden. However, by mistake 1704 and 1708
365 // became leap years. This left Sweden out of synchronisation with
366 // both the Julian and the Gregorian world, so they decided to go back
367 // to the Julian calendar. In order to do this, they inserted an extra
368 // day in 1712, making that year a double leap year! So in 1712,
369 // February had 30 days in Sweden.
370 //
371 // Later, in 1753, Sweden changed to the Gregorian calendar by
372 // dropping 11 days like everyone else.
373 Gr_Sweden = Gr_Finland, // 17 Feb 1753 -> 1 Mar 1753
374
375 Gr_Switzerland = Gr_Unknown,// Different cantons used different dates
376 Gr_Switzerland_Catholic, // 1583, 1584 or 1597 (we take 1584)
377 Gr_Switzerland_Protestant, // 31 Dec 1700 -> 12 Jan 1701
378
379 Gr_Turkey, // 1 Jan 1927
380 Gr_USA = Gr_GreatBritain,
381 Gr_Wales = Gr_GreatBritain,
382 Gr_Yugoslavia // 1919
383 };
384
385 // the country parameter is used so far for calculating the start and
386 // the end of DST period and for deciding whether the date is a work
387 // day or not
388 //
389 // TODO move this to intl.h
5e967044
JS
390
391// Required for WinCE
392#ifdef USA
393#undef USA
394#endif
395
0979c962
VZ
396 enum Country
397 {
398 Country_Unknown, // no special information for this country
399 Country_Default, // set the default country with SetCountry() method
239446b4 400 // or use the default country with any other
0979c962
VZ
401
402 // TODO add more countries (for this we must know about DST and/or
403 // holidays for this country)
239446b4
VZ
404
405 // Western European countries: we assume that they all follow the same
406 // DST rules (true or false?)
407 Country_WesternEurope_Start,
408 Country_EEC = Country_WesternEurope_Start,
0979c962 409 France,
239446b4
VZ
410 Germany,
411 UK,
412 Country_WesternEurope_End = UK,
413
414 Russia,
0979c962
VZ
415 USA
416 };
0979c962
VZ
417 // symbolic names for the months
418 enum Month
419 {
420 Jan, Feb, Mar, Apr, May, Jun, Jul, Aug, Sep, Oct, Nov, Dec, Inv_Month
421 };
422
423 // symbolic names for the weekdays
424 enum WeekDay
425 {
426 Sun, Mon, Tue, Wed, Thu, Fri, Sat, Inv_WeekDay
427 };
428
429 // invalid value for the year
430 enum Year
431 {
b76b015e
VZ
432 Inv_Year = SHRT_MIN // should hold in wxDateTime_t
433 };
434
f0f951fa
VZ
435 // flags for GetWeekDayName and GetMonthName
436 enum NameFlags
437 {
438 Name_Full = 0x01, // return full name
439 Name_Abbr = 0x02 // return abbreviated name
440 };
441
9d9b7755
VZ
442 // flags for GetWeekOfYear and GetWeekOfMonth
443 enum WeekFlags
444 {
445 Default_First, // Sunday_First for US, Monday_First for the rest
446 Monday_First, // week starts with a Monday
447 Sunday_First // week starts with a Sunday
448 };
449
b76b015e
VZ
450 // helper classes
451 // ------------------------------------------------------------------------
452
299fcbfe
VZ
453 // a class representing a time zone: basicly, this is just an offset
454 // (in seconds) from GMT
bddd7a8d 455 class WXDLLIMPEXP_BASE TimeZone
299fcbfe
VZ
456 {
457 public:
458 TimeZone(TZ tz);
1cf57808
VZ
459
460 // create time zone object with the given offset
461 TimeZone(long offset = 0) { m_offset = offset; }
462
463 static TimeZone Make(long offset)
464 {
465 TimeZone tz;
466 tz.m_offset = offset;
467 return tz;
468 }
299fcbfe 469
cd0b1709 470 long GetOffset() const { return m_offset; }
299fcbfe
VZ
471
472 private:
473 // offset for this timezone from GMT in seconds
cd0b1709 474 long m_offset;
299fcbfe
VZ
475 };
476
b76b015e
VZ
477 // standard struct tm is limited to the years from 1900 (because
478 // tm_year field is the offset from 1900), so we use our own struct
479 // instead to represent broken down time
fcc3d7cb
VZ
480 //
481 // NB: this struct should always be kept normalized (i.e. mon should
482 // be < 12, 1 <= day <= 31 &c), so use AddMonths(), AddDays()
483 // instead of modifying the member fields directly!
bddd7a8d 484 struct WXDLLIMPEXP_BASE Tm
b76b015e 485 {
e6ec579c 486 wxDateTime_t msec, sec, min, hour, mday;
fcc3d7cb
VZ
487 Month mon;
488 int year;
b76b015e
VZ
489
490 // default ctor inits the object to an invalid value
491 Tm();
492
299fcbfe
VZ
493 // ctor from struct tm and the timezone
494 Tm(const struct tm& tm, const TimeZone& tz);
b76b015e
VZ
495
496 // check that the given date/time is valid (in Gregorian calendar)
497 bool IsValid() const;
498
499 // get the week day
500 WeekDay GetWeekDay() // not const because wday may be changed
501 {
502 if ( wday == Inv_WeekDay )
503 ComputeWeekDay();
504
505 return (WeekDay)wday;
506 }
507
fcc3d7cb 508 // add the given number of months to the date keeping it normalized
e6ec579c 509 void AddMonths(int monDiff);
fcc3d7cb
VZ
510
511 // add the given number of months to the date keeping it normalized
e6ec579c 512 void AddDays(int dayDiff);
fcc3d7cb 513
b76b015e
VZ
514 private:
515 // compute the weekday from other fields
516 void ComputeWeekDay();
517
299fcbfe
VZ
518 // the timezone we correspond to
519 TimeZone m_tz;
520
b76b015e
VZ
521 // these values can't be accessed directly because they're not always
522 // computed and we calculate them on demand
523 wxDateTime_t wday, yday;
524 };
525
0979c962
VZ
526 // static methods
527 // ------------------------------------------------------------------------
528
529 // set the current country
530 static void SetCountry(Country country);
531 // get the current country
239446b4
VZ
532 static Country GetCountry();
533
68379eaf 534 // return true if the country is a West European one (in practice,
239446b4
VZ
535 // this means that the same DST rules as for EEC apply)
536 static bool IsWestEuropeanCountry(Country country = Country_Default);
0979c962
VZ
537
538 // return the current year
539 static int GetCurrentYear(Calendar cal = Gregorian);
540
541 // convert the year as returned by wxDateTime::GetYear() to a year
542 // suitable for BC/AD notation. The difference is that BC year 1
543 // corresponds to the year 0 (while BC year 0 didn't exist) and AD
544 // year N is just year N.
545 static int ConvertYearToBC(int year);
546
547 // return the current month
548 static Month GetCurrentMonth(Calendar cal = Gregorian);
549
68379eaf 550 // returns true if the given year is a leap year in the given calendar
2f02cb89
VZ
551 static bool IsLeapYear(int year = Inv_Year, Calendar cal = Gregorian);
552
553 // get the century (19 for 1999, 20 for 2000 and -5 for 492 BC)
a333edbd 554 static int GetCentury(int year);
0979c962 555
b76b015e
VZ
556 // returns the number of days in this year (356 or 355 for Gregorian
557 // calendar usually :-)
0979c962
VZ
558 static wxDateTime_t GetNumberOfDays(int year, Calendar cal = Gregorian);
559
560 // get the number of the days in the given month (default value for
561 // the year means the current one)
562 static wxDateTime_t GetNumberOfDays(Month month,
563 int year = Inv_Year,
564 Calendar cal = Gregorian);
565
e538985e 566
b76b015e
VZ
567 // get the full (default) or abbreviated month name in the current
568 // locale, returns empty string on error
f0f951fa
VZ
569 static wxString GetMonthName(Month month,
570 NameFlags flags = Name_Full);
0979c962 571
e538985e
VZ
572 // get the standard English full (default) or abbreviated month name
573 static wxString GetEnglishMonthName(Month month,
574 NameFlags flags = Name_Full);
575
b76b015e
VZ
576 // get the full (default) or abbreviated weekday name in the current
577 // locale, returns empty string on error
f0f951fa
VZ
578 static wxString GetWeekDayName(WeekDay weekday,
579 NameFlags flags = Name_Full);
580
e538985e
VZ
581 // get the standard English full (default) or abbreviated weekday name
582 static wxString GetEnglishWeekDayName(WeekDay weekday,
583 NameFlags flags = Name_Full);
584
f0f951fa
VZ
585 // get the AM and PM strings in the current locale (may be empty)
586 static void GetAmPmStrings(wxString *am, wxString *pm);
0979c962 587
68379eaf 588 // return true if the given country uses DST for this year
239446b4
VZ
589 static bool IsDSTApplicable(int year = Inv_Year,
590 Country country = Country_Default);
591
0979c962
VZ
592 // get the beginning of DST for this year, will return invalid object
593 // if no DST applicable in this year. The default value of the
594 // parameter means to take the current year.
239446b4
VZ
595 static wxDateTime GetBeginDST(int year = Inv_Year,
596 Country country = Country_Default);
0979c962
VZ
597 // get the end of DST for this year, will return invalid object
598 // if no DST applicable in this year. The default value of the
599 // parameter means to take the current year.
239446b4
VZ
600 static wxDateTime GetEndDST(int year = Inv_Year,
601 Country country = Country_Default);
0979c962 602
b76b015e
VZ
603 // return the wxDateTime object for the current time
604 static inline wxDateTime Now();
605
f6bcfd97
BP
606 // return the wxDateTime object for the current time with millisecond
607 // precision (if available on this platform)
608 static wxDateTime UNow();
609
cd0b1709
VZ
610 // return the wxDateTime object for today midnight: i.e. as Now() but
611 // with time set to 0
612 static inline wxDateTime Today();
613
0979c962
VZ
614 // constructors: you should test whether the constructor succeeded with
615 // IsValid() function. The values Inv_Month and Inv_Year for the
616 // parameters mean take current month and/or year values.
617 // ------------------------------------------------------------------------
618
619 // default ctor does not initialize the object, use Set()!
4bd53224 620 wxDateTime() { m_time = wxLongLong(wxINT32_MIN, 0); }
0979c962
VZ
621
622 // from time_t: seconds since the Epoch 00:00:00 UTC, Jan 1, 1970)
16ee521a
DW
623#if (!(defined(__VISAGECPP__) && __IBMCPP__ >= 400))
624// VA C++ confuses this with wxDateTime(double jdn) thinking it is a duplicate declaration
0979c962 625 inline wxDateTime(time_t timet);
16ee521a 626#endif
b76b015e 627 // from broken down time/date (only for standard Unix range)
0979c962 628 inline wxDateTime(const struct tm& tm);
b76b015e
VZ
629 // from broken down time/date (any range)
630 inline wxDateTime(const Tm& tm);
0979c962 631
e6ec579c
VZ
632 // from JDN (beware of rounding errors)
633 inline wxDateTime(double jdn);
634
0979c962
VZ
635 // from separate values for each component, date set to today
636 inline wxDateTime(wxDateTime_t hour,
637 wxDateTime_t minute = 0,
638 wxDateTime_t second = 0,
639 wxDateTime_t millisec = 0);
640 // from separate values for each component with explicit date
b76b015e 641 inline wxDateTime(wxDateTime_t day, // day of the month
33ac7e6f 642 Month month,
0979c962
VZ
643 int year = Inv_Year, // 1999, not 99 please!
644 wxDateTime_t hour = 0,
645 wxDateTime_t minute = 0,
646 wxDateTime_t second = 0,
647 wxDateTime_t millisec = 0);
154014d6
VZ
648#ifdef __WXMSW__
649 wxDateTime(const struct _SYSTEMTIME& st)
650 {
651 SetFromMSWSysTime(st);
652 }
653#endif
0979c962
VZ
654
655 // default copy ctor ok
656
657 // no dtor
658
659 // assignment operators and Set() functions: all non const methods return
660 // the reference to this object. IsValid() should be used to test whether
661 // the function succeeded.
662 // ------------------------------------------------------------------------
663
664 // set to the current time
665 inline wxDateTime& SetToCurrent();
666
16ee521a
DW
667#if (!(defined(__VISAGECPP__) && __IBMCPP__ >= 400))
668// VA C++ confuses this with wxDateTime(double jdn) thinking it is a duplicate declaration
0979c962
VZ
669 // set to given time_t value
670 inline wxDateTime& Set(time_t timet);
16ee521a 671#endif
0979c962
VZ
672
673 // set to given broken down time/date
674 wxDateTime& Set(const struct tm& tm);
675
b76b015e
VZ
676 // set to given broken down time/date
677 inline wxDateTime& Set(const Tm& tm);
678
e6ec579c
VZ
679 // set to given JDN (beware of rounding errors)
680 wxDateTime& Set(double jdn);
681
0979c962
VZ
682 // set to given time, date = today
683 wxDateTime& Set(wxDateTime_t hour,
684 wxDateTime_t minute = 0,
685 wxDateTime_t second = 0,
686 wxDateTime_t millisec = 0);
687
688 // from separate values for each component with explicit date
689 // (defaults for month and year are the current values)
690 wxDateTime& Set(wxDateTime_t day,
33ac7e6f 691 Month month,
0979c962
VZ
692 int year = Inv_Year, // 1999, not 99 please!
693 wxDateTime_t hour = 0,
694 wxDateTime_t minute = 0,
695 wxDateTime_t second = 0,
696 wxDateTime_t millisec = 0);
697
698 // resets time to 00:00:00, doesn't change the date
699 wxDateTime& ResetTime();
700
fb96cf85
VZ
701 // get the date part of this object only, i.e. the object which has the
702 // same date as this one but time of 00:00:00
703 wxDateTime GetDateOnly() const;
fb96cf85 704
0979c962
VZ
705 // the following functions don't change the values of the other
706 // fields, i.e. SetMinute() won't change either hour or seconds value
707
708 // set the year
709 wxDateTime& SetYear(int year);
710 // set the month
711 wxDateTime& SetMonth(Month month);
712 // set the day of the month
713 wxDateTime& SetDay(wxDateTime_t day);
714 // set hour
715 wxDateTime& SetHour(wxDateTime_t hour);
716 // set minute
717 wxDateTime& SetMinute(wxDateTime_t minute);
718 // set second
719 wxDateTime& SetSecond(wxDateTime_t second);
720 // set millisecond
721 wxDateTime& SetMillisecond(wxDateTime_t millisecond);
722
723 // assignment operator from time_t
724 wxDateTime& operator=(time_t timet) { return Set(timet); }
725
726 // assignment operator from broken down time/date
727 wxDateTime& operator=(const struct tm& tm) { return Set(tm); }
728
b76b015e
VZ
729 // assignment operator from broken down time/date
730 wxDateTime& operator=(const Tm& tm) { return Set(tm); }
731
0979c962
VZ
732 // default assignment operator is ok
733
734 // calendar calculations (functions which set the date only leave the time
4f6aed9c
VZ
735 // unchanged, e.g. don't explictly zero it): SetXXX() functions modify the
736 // object itself, GetXXX() ones return a new object.
0979c962
VZ
737 // ------------------------------------------------------------------------
738
cd0b1709 739 // set to the given week day in the same week as this one
2b5f62a0
VZ
740 wxDateTime& SetToWeekDayInSameWeek(WeekDay weekday,
741 WeekFlags flags = Monday_First);
742 inline wxDateTime GetWeekDayInSameWeek(WeekDay weekday,
743 WeekFlags flags = Monday_First) const;
cd0b1709
VZ
744
745 // set to the next week day following this one
746 wxDateTime& SetToNextWeekDay(WeekDay weekday);
4f6aed9c 747 inline wxDateTime GetNextWeekDay(WeekDay weekday) const;
cd0b1709 748
2ef31e80 749 // set to the previous week day before this one
cd0b1709 750 wxDateTime& SetToPrevWeekDay(WeekDay weekday);
4f6aed9c 751 inline wxDateTime GetPrevWeekDay(WeekDay weekday) const;
cd0b1709 752
7929902d 753 // set to Nth occurrence of given weekday in the given month of the
68379eaf 754 // given year (time is set to 0), return true on success and false on
0979c962
VZ
755 // failure. n may be positive (1..5) or negative to count from the end
756 // of the month (see helper function SetToLastWeekDay())
757 bool SetToWeekDay(WeekDay weekday,
758 int n = 1,
2f02cb89 759 Month month = Inv_Month,
0979c962 760 int year = Inv_Year);
4f6aed9c
VZ
761 inline wxDateTime GetWeekDay(WeekDay weekday,
762 int n = 1,
763 Month month = Inv_Month,
764 int year = Inv_Year) const;
0979c962
VZ
765
766 // sets to the last weekday in the given month, year
767 inline bool SetToLastWeekDay(WeekDay weekday,
2f02cb89 768 Month month = Inv_Month,
0979c962 769 int year = Inv_Year);
4f6aed9c
VZ
770 inline wxDateTime GetLastWeekDay(WeekDay weekday,
771 Month month = Inv_Month,
772 int year = Inv_Year);
0979c962 773
ca3e85cf 774#if WXWIN_COMPATIBILITY_2_6
0979c962 775 // sets the date to the given day of the given week in the year,
68379eaf 776 // returns true on success and false if given date doesn't exist (e.g.
0979c962 777 // numWeek is > 53)
4c27e2fa
VZ
778 //
779 // these functions are badly defined as they're not the reverse of
780 // GetWeekOfYear(), use SetToTheWeekOfYear() instead
781 wxDEPRECATED( bool SetToTheWeek(wxDateTime_t numWeek,
782 WeekDay weekday = Mon,
783 WeekFlags flags = Monday_First) );
784 wxDEPRECATED( wxDateTime GetWeek(wxDateTime_t numWeek,
785 WeekDay weekday = Mon,
786 WeekFlags flags = Monday_First) const );
ca3e85cf 787#endif // WXWIN_COMPATIBILITY_2_6
4c27e2fa
VZ
788
789 // returns the date corresponding to the given week day of the given
790 // week (in ISO notation) of the specified year
791 static wxDateTime SetToWeekOfYear(int year,
792 wxDateTime_t numWeek,
793 WeekDay weekday = Mon);
0979c962 794
2f02cb89
VZ
795 // sets the date to the last day of the given (or current) month or the
796 // given (or current) year
797 wxDateTime& SetToLastMonthDay(Month month = Inv_Month,
798 int year = Inv_Year);
4f6aed9c
VZ
799 inline wxDateTime GetLastMonthDay(Month month = Inv_Month,
800 int year = Inv_Year) const;
0979c962 801
f0f951fa
VZ
802 // sets to the given year day (1..365 or 366)
803 wxDateTime& SetToYearDay(wxDateTime_t yday);
4f6aed9c 804 inline wxDateTime GetYearDay(wxDateTime_t yday) const;
f0f951fa 805
0979c962
VZ
806 // The definitions below were taken verbatim from
807 //
808 // http://www.capecod.net/~pbaum/date/date0.htm
809 //
810 // (Peter Baum's home page)
811 //
812 // definition: The Julian Day Number, Julian Day, or JD of a
813 // particular instant of time is the number of days and fractions of a
814 // day since 12 hours Universal Time (Greenwich mean noon) on January
815 // 1 of the year -4712, where the year is given in the Julian
816 // proleptic calendar. The idea of using this reference date was
817 // originally proposed by Joseph Scalizer in 1582 to count years but
818 // it was modified by 19th century astronomers to count days. One
819 // could have equivalently defined the reference time to be noon of
820 // November 24, -4713 if were understood that Gregorian calendar rules
821 // were applied. Julian days are Julian Day Numbers and are not to be
822 // confused with Julian dates.
823 //
824 // definition: The Rata Die number is a date specified as the number
825 // of days relative to a base date of December 31 of the year 0. Thus
826 // January 1 of the year 1 is Rata Die day 1.
827
e6ec579c
VZ
828 // get the Julian Day number (the fractional part specifies the time of
829 // the day, related to noon - beware of rounding errors!)
830 double GetJulianDayNumber() const;
239446b4
VZ
831 double GetJDN() const { return GetJulianDayNumber(); }
832
833 // get the Modified Julian Day number: it is equal to JDN - 2400000.5
834 // and so integral MJDs correspond to the midnights (and not noons).
835 // MJD 0 is Nov 17, 1858
836 double GetModifiedJulianDayNumber() const { return GetJDN() - 2400000.5; }
837 double GetMJD() const { return GetModifiedJulianDayNumber(); }
0979c962
VZ
838
839 // get the Rata Die number
e6ec579c 840 double GetRataDie() const;
0979c962
VZ
841
842 // TODO algorithms for calculating some important dates, such as
843 // religious holidays (Easter...) or moon/solar eclipses? Some
844 // algorithms can be found in the calendar FAQ
845
d26adb9d
VZ
846
847 // Timezone stuff: a wxDateTime object constructed using given
848 // day/month/year/hour/min/sec values is interpreted as this moment in
849 // local time. Using the functions below, it may be converted to another
850 // time zone (e.g., the Unix epoch is wxDateTime(1, Jan, 1970).ToGMT()).
299fcbfe 851 //
d26adb9d 852 // These functions try to handle DST internally, but there is no magical
41acf5c0
VZ
853 // way to know all rules for it in all countries in the world, so if the
854 // program can handle it itself (or doesn't want to handle it at all for
855 // whatever reason), the DST handling can be disabled with noDST.
b76b015e
VZ
856 // ------------------------------------------------------------------------
857
299fcbfe 858 // transform to any given timezone
68379eaf
WS
859 inline wxDateTime ToTimezone(const TimeZone& tz, bool noDST = false) const;
860 wxDateTime& MakeTimezone(const TimeZone& tz, bool noDST = false);
b76b015e 861
d26adb9d
VZ
862 // interpret current value as being in another timezone and transform
863 // it to local one
864 inline wxDateTime FromTimezone(const TimeZone& tz, bool noDST = false) const;
865 wxDateTime& MakeFromTimezone(const TimeZone& tz, bool noDST = false);
d26adb9d
VZ
866
867 // transform to/from GMT/UTC
868 wxDateTime ToUTC(bool noDST = false) const { return ToTimezone(UTC, noDST); }
869 wxDateTime& MakeUTC(bool noDST = false) { return MakeTimezone(UTC, noDST); }
870
871 wxDateTime ToGMT(bool noDST = false) const { return ToUTC(noDST); }
872 wxDateTime& MakeGMT(bool noDST = false) { return MakeUTC(noDST); }
873
d26adb9d
VZ
874 wxDateTime FromUTC(bool noDST = false) const
875 { return FromTimezone(UTC, noDST); }
876 wxDateTime& MakeFromUTC(bool noDST = false)
877 { return MakeFromTimezone(UTC, noDST); }
fcc3d7cb 878
239446b4
VZ
879 // is daylight savings time in effect at this moment according to the
880 // rules of the specified country?
881 //
882 // Return value is > 0 if DST is in effect, 0 if it is not and -1 if
883 // the information is not available (this is compatible with ANSI C)
884 int IsDST(Country country = Country_Default) const;
885
d26adb9d 886
0979c962
VZ
887 // accessors: many of them take the timezone parameter which indicates the
888 // timezone for which to make the calculations and the default value means
889 // to do it for the current timezone of this machine (even if the function
890 // only operates with the date it's necessary because a date may wrap as
891 // result of timezone shift)
892 // ------------------------------------------------------------------------
893
c3302e7e 894 // is the date valid?
384223b3 895 inline bool IsValid() const { return m_time != wxInvalidDateTime.m_time; }
0979c962 896
299fcbfe
VZ
897 // get the broken down date/time representation in the given timezone
898 //
899 // If you wish to get several time components (day, month and year),
900 // consider getting the whole Tm strcuture first and retrieving the
901 // value from it - this is much more efficient
902 Tm GetTm(const TimeZone& tz = Local) const;
b76b015e
VZ
903
904 // get the number of seconds since the Unix epoch - returns (time_t)-1
905 // if the value is out of range
906 inline time_t GetTicks() const;
907
a333edbd
VZ
908 // get the century, same as GetCentury(GetYear())
909 int GetCentury(const TimeZone& tz = Local) const
910 { return GetCentury(GetYear(tz)); }
0979c962 911 // get the year (returns Inv_Year if date is invalid)
16ee521a 912 int GetYear(const TimeZone& tz = Local) const
299fcbfe 913 { return GetTm(tz).year; }
0979c962 914 // get the month (Inv_Month if date is invalid)
16ee521a 915 Month GetMonth(const TimeZone& tz = Local) const
299fcbfe 916 { return (Month)GetTm(tz).mon; }
0979c962 917 // get the month day (in 1..31 range, 0 if date is invalid)
16ee521a 918 wxDateTime_t GetDay(const TimeZone& tz = Local) const
299fcbfe 919 { return GetTm(tz).mday; }
0979c962 920 // get the day of the week (Inv_WeekDay if date is invalid)
16ee521a 921 WeekDay GetWeekDay(const TimeZone& tz = Local) const
299fcbfe 922 { return GetTm(tz).GetWeekDay(); }
0979c962 923 // get the hour of the day
16ee521a 924 wxDateTime_t GetHour(const TimeZone& tz = Local) const
299fcbfe 925 { return GetTm(tz).hour; }
0979c962 926 // get the minute
16ee521a 927 wxDateTime_t GetMinute(const TimeZone& tz = Local) const
299fcbfe 928 { return GetTm(tz).min; }
0979c962 929 // get the second
16ee521a 930 wxDateTime_t GetSecond(const TimeZone& tz = Local) const
299fcbfe 931 { return GetTm(tz).sec; }
0979c962 932 // get milliseconds
16ee521a 933 wxDateTime_t GetMillisecond(const TimeZone& tz = Local) const
299fcbfe 934 { return GetTm(tz).msec; }
0979c962
VZ
935
936 // get the day since the year start (1..366, 0 if date is invalid)
299fcbfe 937 wxDateTime_t GetDayOfYear(const TimeZone& tz = Local) const;
cd0b1709 938 // get the week number since the year start (1..52 or 53, 0 if date is
0979c962 939 // invalid)
9d9b7755
VZ
940 wxDateTime_t GetWeekOfYear(WeekFlags flags = Monday_First,
941 const TimeZone& tz = Local) const;
cd0b1709
VZ
942 // get the week number since the month start (1..5, 0 if date is
943 // invalid)
9d9b7755
VZ
944 wxDateTime_t GetWeekOfMonth(WeekFlags flags = Monday_First,
945 const TimeZone& tz = Local) const;
0979c962
VZ
946
947 // is this date a work day? This depends on a country, of course,
948 // because the holidays are different in different countries
4f6aed9c 949 bool IsWorkDay(Country country = Country_Default) const;
0979c962
VZ
950
951 // is this date later than Gregorian calendar introduction for the
952 // given country (see enum GregorianAdoption)?
953 //
4f6aed9c 954 // NB: this function shouldn't be considered as absolute authority in
0979c962
VZ
955 // the matter. Besides, for some countries the exact date of
956 // adoption of the Gregorian calendar is simply unknown.
b76b015e 957 bool IsGregorianDate(GregorianAdoption country = Gr_Standard) const;
0979c962 958
2b5f62a0
VZ
959 // dos date and time format
960 // ------------------------------------------------------------------------
961
962 // set from the DOS packed format
963 wxDateTime& SetFromDOS(unsigned long ddt);
964
965 // pack the date in DOS format
966 unsigned long GetAsDOS() const;
967
154014d6
VZ
968 // SYSTEMTIME format
969 // ------------------------------------------------------------------------
970#ifdef __WXMSW__
971
972 // convert SYSTEMTIME to wxDateTime
973 wxDateTime& SetFromMSWSysTime(const struct _SYSTEMTIME&);
974
975 // convert wxDateTime to SYSTEMTIME
976 void GetAsMSWSysTime(struct _SYSTEMTIME*) const;
977#endif // __WXMSW__
978
0979c962
VZ
979 // comparison (see also functions below for operator versions)
980 // ------------------------------------------------------------------------
981
68379eaf 982 // returns true if the two moments are strictly identical
b76b015e
VZ
983 inline bool IsEqualTo(const wxDateTime& datetime) const;
984
68379eaf 985 // returns true if the date is strictly earlier than the given one
b76b015e 986 inline bool IsEarlierThan(const wxDateTime& datetime) const;
0979c962 987
68379eaf 988 // returns true if the date is strictly later than the given one
b76b015e 989 inline bool IsLaterThan(const wxDateTime& datetime) const;
0979c962 990
68379eaf 991 // returns true if the date is strictly in the given range
b76b015e
VZ
992 inline bool IsStrictlyBetween(const wxDateTime& t1,
993 const wxDateTime& t2) const;
994
68379eaf 995 // returns true if the date is in the given range
b76b015e 996 inline bool IsBetween(const wxDateTime& t1, const wxDateTime& t2) const;
0979c962 997
be4017f8
VZ
998 // do these two objects refer to the same date?
999 inline bool IsSameDate(const wxDateTime& dt) const;
1000
1001 // do these two objects have the same time?
1002 inline bool IsSameTime(const wxDateTime& dt) const;
1003
1004 // are these two objects equal up to given timespan?
1005 inline bool IsEqualUpTo(const wxDateTime& dt, const wxTimeSpan& ts) const;
1006
26364344
WS
1007 inline bool operator<(const wxDateTime& dt) const
1008 {
1009 wxASSERT_MSG( IsValid() && dt.IsValid(), _T("invalid wxDateTime") );
1010 return GetValue() < dt.GetValue();
1011 }
1012
1013 inline bool operator<=(const wxDateTime& dt) const
1014 {
1015 wxASSERT_MSG( IsValid() && dt.IsValid(), _T("invalid wxDateTime") );
1016 return GetValue() <= dt.GetValue();
1017 }
1018
1019 inline bool operator>(const wxDateTime& dt) const
1020 {
1021 wxASSERT_MSG( IsValid() && dt.IsValid(), _T("invalid wxDateTime") );
1022 return GetValue() > dt.GetValue();
1023 }
1024
1025 inline bool operator>=(const wxDateTime& dt) const
1026 {
1027 wxASSERT_MSG( IsValid() && dt.IsValid(), _T("invalid wxDateTime") );
1028 return GetValue() >= dt.GetValue();
1029 }
1030
1031 inline bool operator==(const wxDateTime& dt) const
1032 {
1033 wxASSERT_MSG( IsValid() && dt.IsValid(), _T("invalid wxDateTime") );
1034 return GetValue() == dt.GetValue();
1035 }
1036
1037 inline bool operator!=(const wxDateTime& dt) const
1038 {
1039 wxASSERT_MSG( IsValid() && dt.IsValid(), _T("invalid wxDateTime") );
1040 return GetValue() != dt.GetValue();
1041 }
1042
cd0b1709 1043 // arithmetics with dates (see also below for more operators)
0979c962
VZ
1044 // ------------------------------------------------------------------------
1045
cd0b1709
VZ
1046 // return the sum of the date with a time span (positive or negative)
1047 inline wxDateTime Add(const wxTimeSpan& diff) const;
0979c962 1048 // add a time span (positive or negative)
b76b015e 1049 inline wxDateTime& Add(const wxTimeSpan& diff);
0979c962 1050 // add a time span (positive or negative)
b76b015e 1051 inline wxDateTime& operator+=(const wxTimeSpan& diff);
26364344
WS
1052 inline wxDateTime operator+(const wxTimeSpan& ts) const
1053 {
1054 wxDateTime dt(*this);
1055 dt.Add(ts);
1056 return dt;
1057 }
0979c962 1058
cd0b1709 1059 // return the difference of the date with a time span
f6bcfd97
BP
1060 inline wxDateTime Subtract(const wxTimeSpan& diff) const;
1061 // subtract a time span (positive or negative)
1062 inline wxDateTime& Subtract(const wxTimeSpan& diff);
1063 // subtract a time span (positive or negative)
0979c962 1064 inline wxDateTime& operator-=(const wxTimeSpan& diff);
26364344
WS
1065 inline wxDateTime operator-(const wxTimeSpan& ts) const
1066 {
1067 wxDateTime dt(*this);
1068 dt.Subtract(ts);
1069 return dt;
1070 }
0979c962 1071
cd0b1709
VZ
1072 // return the sum of the date with a date span
1073 inline wxDateTime Add(const wxDateSpan& diff) const;
0979c962
VZ
1074 // add a date span (positive or negative)
1075 wxDateTime& Add(const wxDateSpan& diff);
1076 // add a date span (positive or negative)
b76b015e 1077 inline wxDateTime& operator+=(const wxDateSpan& diff);
26364344
WS
1078 inline wxDateTime operator+(const wxDateSpan& ds) const
1079 {
1080 wxDateTime dt(*this);
1081 dt.Add(ds);
1082 return dt;
1083 }
0979c962 1084
cd0b1709 1085 // return the difference of the date with a date span
f6bcfd97
BP
1086 inline wxDateTime Subtract(const wxDateSpan& diff) const;
1087 // subtract a date span (positive or negative)
1088 inline wxDateTime& Subtract(const wxDateSpan& diff);
1089 // subtract a date span (positive or negative)
0979c962 1090 inline wxDateTime& operator-=(const wxDateSpan& diff);
26364344
WS
1091 inline wxDateTime operator-(const wxDateSpan& ds) const
1092 {
1093 wxDateTime dt(*this);
1094 dt.Subtract(ds);
1095 return dt;
1096 }
0979c962 1097
cd0b1709 1098 // return the difference between two dates
f6bcfd97 1099 inline wxTimeSpan Subtract(const wxDateTime& dt) const;
26364344 1100 inline wxTimeSpan operator-(const wxDateTime& dt2) const;
0979c962 1101
254696bb
VZ
1102 // conversion to/from text: all conversions from text return an object
1103 // representing the next character following the date specification (i.e.
1104 // the one where the scan had to stop) or a special NULL-like object
1105 // on failure -- this object is necessary to preserve compatibility with
1106 // the existing code assigning the return value of these functions to
1107 // either char* or wxChar* (new code should treat the return value as bool
1108 // and use end parameter to retrieve the end of the scan)
0979c962
VZ
1109 // ------------------------------------------------------------------------
1110
1111 // parse a string in RFC 822 format (found e.g. in mail headers and
1112 // having the form "Wed, 10 Feb 1999 19:07:07 +0100")
254696bb 1113 wxAnyStrPtr ParseRfc822Date(const wxString& date,
71ebd60b 1114 wxString::const_iterator *end = NULL);
75a29ef1 1115
f0f951fa
VZ
1116 // parse a date/time in the given format (see strptime(3)), fill in
1117 // the missing (in the string) fields with the values of dateDef (by
1118 // default, they will not change if they had valid values or will
1119 // default to Today() otherwise)
254696bb 1120 wxAnyStrPtr ParseFormat(const wxString& date,
71ebd60b
VZ
1121 const wxString& format = wxDefaultDateTimeFormat,
1122 const wxDateTime& dateDef = wxDefaultDateTime,
1123 wxString::const_iterator *end = NULL);
1124
254696bb 1125 wxAnyStrPtr ParseFormat(const wxString& date,
425eee41
VZ
1126 const wxString& format,
1127 wxString::const_iterator *end)
71ebd60b
VZ
1128 {
1129 return ParseFormat(date, format, wxDefaultDateTime, end);
1130 }
1131
71ebd60b 1132
f3f2e255
VZ
1133 // parse a string containing date, time or both in ISO 8601 format
1134 //
1135 // notice that these functions are new in wx 3.0 and so we don't
1136 // provide compatibility overloads for them
1137 bool ParseISODate(const wxString& date)
1138 {
c5e8b336
VZ
1139 // FIXME-VC6: notice that writing "return ParseFormat() && ..." crashes
1140 // VC6 with internal compiler error so don't attempt to
1141 // simplify this code like this
1142
a0bcd61b 1143 wxString::const_iterator end;
c5e8b336
VZ
1144 if ( !ParseFormat(date, wxS("%Y-%m-%d"), &end) )
1145 return false;
1146
1147 return end == date.end();
f3f2e255
VZ
1148 }
1149
a0bcd61b 1150 bool ParseISOTime(const wxString& time)
f3f2e255 1151 {
a0bcd61b 1152 wxString::const_iterator end;
c5e8b336
VZ
1153 if ( !ParseFormat(time, wxS("%H:%M:%S"), &end) )
1154 return false;
1155
1156 return end == time.end();
f3f2e255
VZ
1157 }
1158
a0bcd61b 1159 bool ParseISOCombined(const wxString& datetime, char sep = 'T')
f3f2e255 1160 {
a0bcd61b 1161 wxString::const_iterator end;
f3f2e255 1162 const wxString fmt = wxS("%Y-%m-%d") + wxString(sep) + wxS("%H:%M:%S");
c5e8b336
VZ
1163 if ( !ParseFormat(datetime, fmt, &end) )
1164 return false;
1165
1166 return end == datetime.end();
f3f2e255
VZ
1167 }
1168
0979c962
VZ
1169 // parse a string containing the date/time in "free" format, this
1170 // function will try to make an educated guess at the string contents
254696bb 1171 wxAnyStrPtr ParseDateTime(const wxString& datetime,
71ebd60b
VZ
1172 wxString::const_iterator *end = NULL);
1173
cd0b1709
VZ
1174 // parse a string containing the date only in "free" format (less
1175 // flexible than ParseDateTime)
254696bb 1176 wxAnyStrPtr ParseDate(const wxString& date,
71ebd60b
VZ
1177 wxString::const_iterator *end = NULL);
1178
cd0b1709 1179 // parse a string containing the time only in "free" format
254696bb 1180 wxAnyStrPtr ParseTime(const wxString& time,
71ebd60b
VZ
1181 wxString::const_iterator *end = NULL);
1182
0979c962
VZ
1183
1184 // this function accepts strftime()-like format string (default
1185 // argument corresponds to the preferred date and time representation
1186 // for the current locale) and returns the string containing the
1187 // resulting text representation
12e82477 1188 wxString Format(const wxString& format = wxDefaultDateTimeFormat,
299fcbfe 1189 const TimeZone& tz = Local) const;
0979c962 1190 // preferred date representation for the current locale
f3f2e255 1191 wxString FormatDate() const { return Format(wxS("%x")); }
0979c962 1192 // preferred time representation for the current locale
f3f2e255 1193 wxString FormatTime() const { return Format(wxS("%X")); }
4f6aed9c 1194 // returns the string representing the date in ISO 8601 format
9d9b7755 1195 // (YYYY-MM-DD)
f3f2e255 1196 wxString FormatISODate() const { return Format(wxS("%Y-%m-%d")); }
4f6aed9c
VZ
1197 // returns the string representing the time in ISO 8601 format
1198 // (HH:MM:SS)
f3f2e255
VZ
1199 wxString FormatISOTime() const { return Format(wxS("%H:%M:%S")); }
1200 // return the combined date time representation in ISO 8601 format; the
1201 // separator character should be 'T' according to the standard but it
1202 // can also be useful to set it to ' '
1203 wxString FormatISOCombined(char sep = 'T') const
1204 { return FormatISODate() + sep + FormatISOTime(); }
0979c962
VZ
1205
1206 // implementation
1207 // ------------------------------------------------------------------------
1208
cd0b1709
VZ
1209 // construct from internal representation
1210 wxDateTime(const wxLongLong& time) { m_time = time; }
1211
0979c962
VZ
1212 // get the internal representation
1213 inline wxLongLong GetValue() const;
1214
0979c962 1215 // a helper function to get the current time_t
d3b9f782 1216 static time_t GetTimeNow() { return time(NULL); }
0979c962 1217
2f02cb89
VZ
1218 // another one to get the current time broken down
1219 static struct tm *GetTmNow()
1220 {
135d1ad0
JS
1221 static struct tm l_CurrentTime;
1222 return GetTmNow(&l_CurrentTime);
2f02cb89
VZ
1223 }
1224
a452689b
SN
1225 // get current time using thread-safe function
1226 static struct tm *GetTmNow(struct tm *tmstruct);
1227
2f02cb89 1228private:
0979c962 1229 // the current country - as it's the same for all program objects (unless
b76b015e
VZ
1230 // it runs on a _really_ big cluster system :-), this is a static member:
1231 // see SetCountry() and GetCountry()
0979c962
VZ
1232 static Country ms_country;
1233
0979c962
VZ
1234 // this constant is used to transform a time_t value to the internal
1235 // representation, as time_t is in seconds and we use milliseconds it's
1236 // fixed to 1000
cd0b1709 1237 static const long TIME_T_FACTOR;
0979c962 1238
68379eaf 1239 // returns true if we fall in range in which we can use standard ANSI C
b76b015e 1240 // functions
fcc3d7cb 1241 inline bool IsInStdRange() const;
b76b015e
VZ
1242
1243 // the internal representation of the time is the amount of milliseconds
1244 // elapsed since the origin which is set by convention to the UNIX/C epoch
1245 // value: the midnight of January 1, 1970 (UTC)
1246 wxLongLong m_time;
0979c962
VZ
1247};
1248
1249// ----------------------------------------------------------------------------
1250// This class contains a difference between 2 wxDateTime values, so it makes
f6bcfd97 1251// sense to add it to wxDateTime and it is the result of subtraction of 2
0979c962
VZ
1252// objects of that class. See also wxDateSpan.
1253// ----------------------------------------------------------------------------
b76b015e 1254
bddd7a8d 1255class WXDLLIMPEXP_BASE wxTimeSpan
0979c962
VZ
1256{
1257public:
1258 // constructors
1259 // ------------------------------------------------------------------------
1260
bd35ed32
VZ
1261 // return the timespan for the given number of milliseconds
1262 static wxTimeSpan Milliseconds(wxLongLong ms) { return wxTimeSpan(0, 0, 0, ms); }
1263 static wxTimeSpan Millisecond() { return Milliseconds(1); }
1264
fcc3d7cb 1265 // return the timespan for the given number of seconds
9c21e80b 1266 static wxTimeSpan Seconds(wxLongLong sec) { return wxTimeSpan(0, 0, sec); }
68ee7c47 1267 static wxTimeSpan Second() { return Seconds(1); }
fcc3d7cb
VZ
1268
1269 // return the timespan for the given number of minutes
6f2a55e3 1270 static wxTimeSpan Minutes(long min) { return wxTimeSpan(0, min, 0 ); }
68ee7c47 1271 static wxTimeSpan Minute() { return Minutes(1); }
fcc3d7cb
VZ
1272
1273 // return the timespan for the given number of hours
6f2a55e3 1274 static wxTimeSpan Hours(long hours) { return wxTimeSpan(hours, 0, 0); }
68ee7c47 1275 static wxTimeSpan Hour() { return Hours(1); }
fcc3d7cb 1276
cd0b1709 1277 // return the timespan for the given number of days
6f2a55e3 1278 static wxTimeSpan Days(long days) { return Hours(24 * days); }
68ee7c47 1279 static wxTimeSpan Day() { return Days(1); }
cd0b1709
VZ
1280
1281 // return the timespan for the given number of weeks
6f2a55e3 1282 static wxTimeSpan Weeks(long days) { return Days(7 * days); }
68ee7c47 1283 static wxTimeSpan Week() { return Weeks(1); }
cd0b1709 1284
0979c962
VZ
1285 // default ctor constructs the 0 time span
1286 wxTimeSpan() { }
1287
1288 // from separate values for each component, date set to 0 (hours are
1289 // not restricted to 0..24 range, neither are minutes, seconds or
1290 // milliseconds)
6f2a55e3
VZ
1291 inline wxTimeSpan(long hours,
1292 long minutes = 0,
9c21e80b
VZ
1293 wxLongLong seconds = 0,
1294 wxLongLong milliseconds = 0);
0979c962 1295
0979c962
VZ
1296 // default copy ctor is ok
1297
1298 // no dtor
1299
cd0b1709 1300 // arithmetics with time spans (see also below for more operators)
0979c962
VZ
1301 // ------------------------------------------------------------------------
1302
cd0b1709
VZ
1303 // return the sum of two timespans
1304 inline wxTimeSpan Add(const wxTimeSpan& diff) const;
0979c962
VZ
1305 // add two timespans together
1306 inline wxTimeSpan& Add(const wxTimeSpan& diff);
1307 // add two timespans together
1308 wxTimeSpan& operator+=(const wxTimeSpan& diff) { return Add(diff); }
26364344
WS
1309 inline wxTimeSpan operator+(const wxTimeSpan& ts) const
1310 {
1311 return wxTimeSpan(GetValue() + ts.GetValue());
1312 }
0979c962 1313
cd0b1709 1314 // return the difference of two timespans
f6bcfd97
BP
1315 inline wxTimeSpan Subtract(const wxTimeSpan& diff) const;
1316 // subtract another timespan
1317 inline wxTimeSpan& Subtract(const wxTimeSpan& diff);
1318 // subtract another timespan
1319 wxTimeSpan& operator-=(const wxTimeSpan& diff) { return Subtract(diff); }
26364344
WS
1320 inline wxTimeSpan operator-(const wxTimeSpan& ts)
1321 {
1322 return wxTimeSpan(GetValue() - ts.GetValue());
1323 }
0979c962 1324
cd0b1709
VZ
1325 // multiply timespan by a scalar
1326 inline wxTimeSpan Multiply(int n) const;
0979c962
VZ
1327 // multiply timespan by a scalar
1328 inline wxTimeSpan& Multiply(int n);
1329 // multiply timespan by a scalar
1330 wxTimeSpan& operator*=(int n) { return Multiply(n); }
26364344
WS
1331 inline wxTimeSpan operator*(int n) const
1332 {
1333 return wxTimeSpan(*this).Multiply(n);
1334 }
0979c962 1335
3103e8a9 1336 // return this timespan with opposite sign
b76b015e 1337 wxTimeSpan Negate() const { return wxTimeSpan(-GetValue()); }
0979c962
VZ
1338 // negate the value of the timespan
1339 wxTimeSpan& Neg() { m_diff = -GetValue(); return *this; }
1340 // negate the value of the timespan
1341 wxTimeSpan& operator-() { return Neg(); }
1342
1343 // return the absolute value of the timespan: does _not_ modify the
1344 // object
1345 inline wxTimeSpan Abs() const;
1346
1347 // there is intentionally no division because we don't want to
1348 // introduce rounding errors in time calculations
1349
1350 // comparaison (see also operator versions below)
1351 // ------------------------------------------------------------------------
1352
1353 // is the timespan null?
b76b015e 1354 bool IsNull() const { return m_diff == 0l; }
0979c962
VZ
1355 // returns true if the timespan is null
1356 bool operator!() const { return !IsNull(); }
1357
1358 // is the timespan positive?
b76b015e 1359 bool IsPositive() const { return m_diff > 0l; }
0979c962
VZ
1360
1361 // is the timespan negative?
b76b015e 1362 bool IsNegative() const { return m_diff < 0l; }
0979c962
VZ
1363
1364 // are two timespans equal?
1365 inline bool IsEqualTo(const wxTimeSpan& ts) const;
1366 // compare two timestamps: works with the absolute values, i.e. -2
68379eaf 1367 // hours is longer than 1 hour. Also, it will return false if the
0979c962
VZ
1368 // timespans are equal in absolute value.
1369 inline bool IsLongerThan(const wxTimeSpan& ts) const;
1370 // compare two timestamps: works with the absolute values, i.e. 1
68379eaf 1371 // hour is shorter than -2 hours. Also, it will return false if the
0979c962 1372 // timespans are equal in absolute value.
f7541d48 1373 bool IsShorterThan(const wxTimeSpan& t) const;
0979c962 1374
26364344
WS
1375 inline bool operator<(const wxTimeSpan &ts) const
1376 {
1377 return GetValue() < ts.GetValue();
1378 }
1379
1380 inline bool operator<=(const wxTimeSpan &ts) const
1381 {
1382 return GetValue() <= ts.GetValue();
1383 }
1384
1385 inline bool operator>(const wxTimeSpan &ts) const
1386 {
1387 return GetValue() > ts.GetValue();
1388 }
1389
1390 inline bool operator>=(const wxTimeSpan &ts) const
1391 {
1392 return GetValue() >= ts.GetValue();
1393 }
1394
1395 inline bool operator==(const wxTimeSpan &ts) const
1396 {
1397 return GetValue() == ts.GetValue();
1398 }
1399
1400 inline bool operator!=(const wxTimeSpan &ts) const
1401 {
1402 return GetValue() != ts.GetValue();
1403 }
1404
e6ec579c 1405 // breaking into days, hours, minutes and seconds
0979c962
VZ
1406 // ------------------------------------------------------------------------
1407
0979c962
VZ
1408 // get the max number of weeks in this timespan
1409 inline int GetWeeks() const;
1410 // get the max number of days in this timespan
1411 inline int GetDays() const;
1412 // get the max number of hours in this timespan
1413 inline int GetHours() const;
1414 // get the max number of minutes in this timespan
1415 inline int GetMinutes() const;
1416 // get the max number of seconds in this timespan
e6ec579c 1417 inline wxLongLong GetSeconds() const;
0979c962 1418 // get the number of milliseconds in this timespan
b76b015e 1419 wxLongLong GetMilliseconds() const { return m_diff; }
0979c962
VZ
1420
1421 // conversion to text
1422 // ------------------------------------------------------------------------
1423
1424 // this function accepts strftime()-like format string (default
1425 // argument corresponds to the preferred date and time representation
1426 // for the current locale) and returns the string containing the
1427 // resulting text representation. Notice that only some of format
1428 // specifiers valid for wxDateTime are valid for wxTimeSpan: hours,
1429 // minutes and seconds make sense, but not "PM/AM" string for example.
12e82477 1430 wxString Format(const wxString& format = wxDefaultTimeSpanFormat) const;
0979c962
VZ
1431
1432 // implementation
1433 // ------------------------------------------------------------------------
1434
cd0b1709
VZ
1435 // construct from internal representation
1436 wxTimeSpan(const wxLongLong& diff) { m_diff = diff; }
1437
0979c962
VZ
1438 // get the internal representation
1439 wxLongLong GetValue() const { return m_diff; }
1440
1441private:
1442 // the (signed) time span in milliseconds
1443 wxLongLong m_diff;
1444};
1445
1446// ----------------------------------------------------------------------------
1447// This class is a "logical time span" and is useful for implementing program
1448// logic for such things as "add one month to the date" which, in general,
1449// doesn't mean to add 60*60*24*31 seconds to it, but to take the same date
1450// the next month (to understand that this is indeed different consider adding
1451// one month to Feb, 15 - we want to get Mar, 15, of course).
1452//
1453// When adding a month to the date, all lesser components (days, hours, ...)
4f6aed9c
VZ
1454// won't be changed unless the resulting date would be invalid: for example,
1455// Jan 31 + 1 month will be Feb 28, not (non existing) Feb 31.
1456//
f6bcfd97 1457// Because of this feature, adding and subtracting back again the same
4f6aed9c
VZ
1458// wxDateSpan will *not*, in general give back the original date: Feb 28 - 1
1459// month will be Jan 28, not Jan 31!
0979c962
VZ
1460//
1461// wxDateSpan can be either positive or negative. They may be
1462// multiplied by scalars which multiply all deltas by the scalar: i.e. 2*(1
1463// month and 1 day) is 2 months and 2 days. They can be added together and
1464// with wxDateTime or wxTimeSpan, but the type of result is different for each
1465// case.
1466//
1467// Beware about weeks: if you specify both weeks and days, the total number of
1468// days added will be 7*weeks + days! See also GetTotalDays() function.
1469//
93401be9
VZ
1470// Equality operators are defined for wxDateSpans. Two datespans are equal if
1471// they both give the same target date when added to *every* source date.
1472// Thus wxDateSpan::Months(1) is not equal to wxDateSpan::Days(30), because
1473// they not give the same date when added to 1 Feb. But wxDateSpan::Days(14) is
1474// equal to wxDateSpan::Weeks(2)
1475//
0979c962
VZ
1476// Finally, notice that for adding hours, minutes &c you don't need this
1477// class: wxTimeSpan will do the job because there are no subtleties
1478// associated with those.
1479// ----------------------------------------------------------------------------
b76b015e 1480
bddd7a8d 1481class WXDLLIMPEXP_BASE wxDateSpan
0979c962
VZ
1482{
1483public:
1484 // constructors
1485 // ------------------------------------------------------------------------
1486
1487 // this many years/months/weeks/days
2f02cb89
VZ
1488 wxDateSpan(int years = 0, int months = 0, int weeks = 0, int days = 0)
1489 {
1490 m_years = years;
1491 m_months = months;
1492 m_weeks = weeks;
1493 m_days = days;
1494 }
1495
1496 // get an object for the given number of days
1497 static wxDateSpan Days(int days) { return wxDateSpan(0, 0, 0, days); }
68ee7c47 1498 static wxDateSpan Day() { return Days(1); }
2f02cb89
VZ
1499
1500 // get an object for the given number of weeks
1501 static wxDateSpan Weeks(int weeks) { return wxDateSpan(0, 0, weeks, 0); }
68ee7c47 1502 static wxDateSpan Week() { return Weeks(1); }
2f02cb89
VZ
1503
1504 // get an object for the given number of months
1505 static wxDateSpan Months(int mon) { return wxDateSpan(0, mon, 0, 0); }
68ee7c47 1506 static wxDateSpan Month() { return Months(1); }
2f02cb89
VZ
1507
1508 // get an object for the given number of years
1509 static wxDateSpan Years(int years) { return wxDateSpan(years, 0, 0, 0); }
68ee7c47 1510 static wxDateSpan Year() { return Years(1); }
0979c962
VZ
1511
1512 // default copy ctor is ok
1513
1514 // no dtor
1515
1516 // accessors (all SetXXX() return the (modified) wxDateSpan object)
1517 // ------------------------------------------------------------------------
1518
1519 // set number of years
b76b015e 1520 wxDateSpan& SetYears(int n) { m_years = n; return *this; }
0979c962 1521 // set number of months
b76b015e 1522 wxDateSpan& SetMonths(int n) { m_months = n; return *this; }
0979c962 1523 // set number of weeks
b76b015e 1524 wxDateSpan& SetWeeks(int n) { m_weeks = n; return *this; }
0979c962 1525 // set number of days
b76b015e 1526 wxDateSpan& SetDays(int n) { m_days = n; return *this; }
0979c962
VZ
1527
1528 // get number of years
1529 int GetYears() const { return m_years; }
1530 // get number of months
1531 int GetMonths() const { return m_months; }
1532 // get number of weeks
1533 int GetWeeks() const { return m_weeks; }
1534 // get number of days
1535 int GetDays() const { return m_days; }
1536 // returns 7*GetWeeks() + GetDays()
1537 int GetTotalDays() const { return 7*m_weeks + m_days; }
1538
cd0b1709 1539 // arithmetics with date spans (see also below for more operators)
0979c962
VZ
1540 // ------------------------------------------------------------------------
1541
cd0b1709
VZ
1542 // return sum of two date spans
1543 inline wxDateSpan Add(const wxDateSpan& other) const;
0979c962
VZ
1544 // add another wxDateSpan to us
1545 inline wxDateSpan& Add(const wxDateSpan& other);
1546 // add another wxDateSpan to us
1547 inline wxDateSpan& operator+=(const wxDateSpan& other);
26364344
WS
1548 inline wxDateSpan operator+(const wxDateSpan& ds) const
1549 {
1550 return wxDateSpan(GetYears() + ds.GetYears(),
1551 GetMonths() + ds.GetMonths(),
1552 GetWeeks() + ds.GetWeeks(),
1553 GetDays() + ds.GetDays());
1554 }
0979c962 1555
cd0b1709 1556 // return difference of two date spans
f6bcfd97
BP
1557 inline wxDateSpan Subtract(const wxDateSpan& other) const;
1558 // subtract another wxDateSpan from us
1559 inline wxDateSpan& Subtract(const wxDateSpan& other);
1560 // subtract another wxDateSpan from us
0979c962 1561 inline wxDateSpan& operator-=(const wxDateSpan& other);
26364344
WS
1562 inline wxDateSpan operator-(const wxDateSpan& ds) const
1563 {
1564 return wxDateSpan(GetYears() - ds.GetYears(),
1565 GetMonths() - ds.GetMonths(),
1566 GetWeeks() - ds.GetWeeks(),
1567 GetDays() - ds.GetDays());
1568 }
0979c962
VZ
1569
1570 // return a copy of this time span with changed sign
1571 inline wxDateSpan Negate() const;
1572 // inverse the sign of this timespan
1573 inline wxDateSpan& Neg();
1574 // inverse the sign of this timespan
1575 wxDateSpan& operator-() { return Neg(); }
1576
cd0b1709
VZ
1577 // return the date span proportional to this one with given factor
1578 inline wxDateSpan Multiply(int factor) const;
0979c962 1579 // multiply all components by a (signed) number
cd0b1709
VZ
1580 inline wxDateSpan& Multiply(int factor);
1581 // multiply all components by a (signed) number
1582 inline wxDateSpan& operator*=(int factor) { return Multiply(factor); }
26364344
WS
1583 inline wxDateSpan operator*(int n) const
1584 {
1585 return wxDateSpan(*this).Multiply(n);
1586 }
1587
1588 // ds1 == d2 if and only if for every wxDateTime t t + ds1 == t + ds2
1589 inline bool operator==(const wxDateSpan& ds) const
1590 {
1591 return GetYears() == ds.GetYears() &&
1592 GetMonths() == ds.GetMonths() &&
1593 GetTotalDays() == ds.GetTotalDays();
1594 }
1595
1596 inline bool operator!=(const wxDateSpan& ds) const
1597 {
1598 return !(*this == ds);
1599 }
0979c962
VZ
1600
1601private:
1602 int m_years,
1603 m_months,
1604 m_weeks,
1605 m_days;
1606};
1607
4f6aed9c
VZ
1608// ----------------------------------------------------------------------------
1609// wxDateTimeArray: array of dates.
1610// ----------------------------------------------------------------------------
1611
bb24c68f 1612WX_DECLARE_USER_EXPORTED_OBJARRAY(wxDateTime, wxDateTimeArray, WXDLLIMPEXP_BASE);
4f6aed9c
VZ
1613
1614// ----------------------------------------------------------------------------
1615// wxDateTimeHolidayAuthority: an object of this class will decide whether a
1616// given date is a holiday and is used by all functions working with "work
1617// days".
1618//
1619// NB: the base class is an ABC, derived classes must implement the pure
1620// virtual methods to work with the holidays they correspond to.
1621// ----------------------------------------------------------------------------
1622
b5dbe15d 1623class WXDLLIMPEXP_FWD_BASE wxDateTimeHolidayAuthority;
d5d29b8a 1624WX_DEFINE_USER_EXPORTED_ARRAY_PTR(wxDateTimeHolidayAuthority *,
bb24c68f 1625 wxHolidayAuthoritiesArray,
fd497ede 1626 class WXDLLIMPEXP_BASE);
4f6aed9c 1627
f6081a04 1628class wxDateTimeHolidaysModule;
bddd7a8d 1629class WXDLLIMPEXP_BASE wxDateTimeHolidayAuthority
4f6aed9c 1630{
f6bcfd97 1631friend class wxDateTimeHolidaysModule;
4f6aed9c 1632public:
68379eaf 1633 // returns true if the given date is a holiday
4f6aed9c
VZ
1634 static bool IsHoliday(const wxDateTime& dt);
1635
1636 // fills the provided array with all holidays in the given range, returns
1637 // the number of them
1638 static size_t GetHolidaysInRange(const wxDateTime& dtStart,
1639 const wxDateTime& dtEnd,
1640 wxDateTimeArray& holidays);
1641
1642 // clear the list of holiday authorities
1643 static void ClearAllAuthorities();
1644
1645 // add a new holiday authority (the pointer will be deleted by
1646 // wxDateTimeHolidayAuthority)
1647 static void AddAuthority(wxDateTimeHolidayAuthority *auth);
1648
30e671a5 1649 // the base class must have a virtual dtor
5e233068 1650 virtual ~wxDateTimeHolidayAuthority();
30e671a5 1651
4f6aed9c
VZ
1652protected:
1653 // this function is called to determine whether a given day is a holiday
1654 virtual bool DoIsHoliday(const wxDateTime& dt) const = 0;
1655
1656 // this function should fill the array with all holidays between the two
1657 // given dates - it is implemented in the base class, but in a very
1658 // inefficient way (it just iterates over all days and uses IsHoliday() for
1659 // each of them), so it must be overridden in the derived class where the
1660 // base class version may be explicitly used if needed
1661 //
1662 // returns the number of holidays in the given range and fills holidays
1663 // array
1664 virtual size_t DoGetHolidaysInRange(const wxDateTime& dtStart,
1665 const wxDateTime& dtEnd,
1666 wxDateTimeArray& holidays) const = 0;
1667
1668private:
1669 // all holiday authorities
1670 static wxHolidayAuthoritiesArray ms_authorities;
1671};
1672
1673// the holidays for this class are all Saturdays and Sundays
bddd7a8d 1674class WXDLLIMPEXP_BASE wxDateTimeWorkDays : public wxDateTimeHolidayAuthority
4f6aed9c
VZ
1675{
1676protected:
1677 virtual bool DoIsHoliday(const wxDateTime& dt) const;
1678 virtual size_t DoGetHolidaysInRange(const wxDateTime& dtStart,
1679 const wxDateTime& dtEnd,
1680 wxDateTimeArray& holidays) const;
1681};
0979c962 1682
2f02cb89
VZ
1683// ============================================================================
1684// inline functions implementation
1685// ============================================================================
1686
df5168c4
MB
1687// ----------------------------------------------------------------------------
1688// private macros
1689// ----------------------------------------------------------------------------
1690
1691#define MILLISECONDS_PER_DAY 86400000l
1692
1693// some broken compilers (HP-UX CC) refuse to compile the "normal" version, but
1694// using a temp variable always might prevent other compilers from optimising
1695// it away - hence use of this ugly macro
1696#ifndef __HPUX__
1697 #define MODIFY_AND_RETURN(op) return wxDateTime(*this).op
1698#else
1699 #define MODIFY_AND_RETURN(op) wxDateTime dt(*this); dt.op; return dt
1700#endif
1701
1702// ----------------------------------------------------------------------------
1703// wxDateTime construction
1704// ----------------------------------------------------------------------------
1705
1706inline bool wxDateTime::IsInStdRange() const
1707{
1708 return m_time >= 0l && (m_time / TIME_T_FACTOR) < LONG_MAX;
1709}
2f02cb89 1710
df5168c4
MB
1711/* static */
1712inline wxDateTime wxDateTime::Now()
1713{
a452689b
SN
1714 struct tm tmstruct;
1715 return wxDateTime(*GetTmNow(&tmstruct));
df5168c4
MB
1716}
1717
1718/* static */
1719inline wxDateTime wxDateTime::Today()
1720{
cb1ef833
VZ
1721 wxDateTime dt(Now());
1722 dt.ResetTime();
df5168c4 1723
cb1ef833 1724 return dt;
df5168c4
MB
1725}
1726
1727#if (!(defined(__VISAGECPP__) && __IBMCPP__ >= 400))
1728inline wxDateTime& wxDateTime::Set(time_t timet)
1729{
1730 // assign first to avoid long multiplication overflow!
1731 m_time = timet - WX_TIME_BASE_OFFSET ;
1732 m_time *= TIME_T_FACTOR;
1733
1734 return *this;
1735}
2f02cb89
VZ
1736#endif
1737
df5168c4
MB
1738inline wxDateTime& wxDateTime::SetToCurrent()
1739{
1740 *this = Now();
1741 return *this;
1742}
1743
1744#if (!(defined(__VISAGECPP__) && __IBMCPP__ >= 400))
1745inline wxDateTime::wxDateTime(time_t timet)
1746{
1747 Set(timet);
1748}
dc84437e 1749#endif
2f02cb89 1750
df5168c4
MB
1751inline wxDateTime::wxDateTime(const struct tm& tm)
1752{
1753 Set(tm);
1754}
1755
1756inline wxDateTime::wxDateTime(const Tm& tm)
1757{
1758 Set(tm);
1759}
1760
1761inline wxDateTime::wxDateTime(double jdn)
1762{
1763 Set(jdn);
1764}
1765
1766inline wxDateTime& wxDateTime::Set(const Tm& tm)
1767{
1768 wxASSERT_MSG( tm.IsValid(), _T("invalid broken down date/time") );
1769
271f6072
VZ
1770 return Set(tm.mday, (Month)tm.mon, tm.year,
1771 tm.hour, tm.min, tm.sec, tm.msec);
df5168c4
MB
1772}
1773
1774inline wxDateTime::wxDateTime(wxDateTime_t hour,
1775 wxDateTime_t minute,
1776 wxDateTime_t second,
1777 wxDateTime_t millisec)
1778{
1779 Set(hour, minute, second, millisec);
1780}
1781
1782inline wxDateTime::wxDateTime(wxDateTime_t day,
1783 Month month,
1784 int year,
1785 wxDateTime_t hour,
1786 wxDateTime_t minute,
1787 wxDateTime_t second,
1788 wxDateTime_t millisec)
1789{
1790 Set(day, month, year, hour, minute, second, millisec);
1791}
1792
1793// ----------------------------------------------------------------------------
1794// wxDateTime accessors
1795// ----------------------------------------------------------------------------
1796
1797inline wxLongLong wxDateTime::GetValue() const
1798{
1799 wxASSERT_MSG( IsValid(), _T("invalid wxDateTime"));
1800
1801 return m_time;
1802}
1803
1804inline time_t wxDateTime::GetTicks() const
1805{
1806 wxASSERT_MSG( IsValid(), _T("invalid wxDateTime"));
1807 if ( !IsInStdRange() )
1808 {
1809 return (time_t)-1;
1810 }
1811
d3c58c7e 1812 return (time_t)((m_time / (long)TIME_T_FACTOR).ToLong()) + WX_TIME_BASE_OFFSET;
df5168c4
MB
1813}
1814
1815inline bool wxDateTime::SetToLastWeekDay(WeekDay weekday,
1816 Month month,
1817 int year)
1818{
1819 return SetToWeekDay(weekday, -1, month, year);
1820}
1821
fc7a2a60
VZ
1822inline wxDateTime
1823wxDateTime::GetWeekDayInSameWeek(WeekDay weekday,
1824 WeekFlags WXUNUSED(flags)) const
df5168c4
MB
1825{
1826 MODIFY_AND_RETURN( SetToWeekDayInSameWeek(weekday) );
1827}
1828
1829inline wxDateTime wxDateTime::GetNextWeekDay(WeekDay weekday) const
1830{
1831 MODIFY_AND_RETURN( SetToNextWeekDay(weekday) );
1832}
1833
1834inline wxDateTime wxDateTime::GetPrevWeekDay(WeekDay weekday) const
1835{
1836 MODIFY_AND_RETURN( SetToPrevWeekDay(weekday) );
1837}
1838
1839inline wxDateTime wxDateTime::GetWeekDay(WeekDay weekday,
1840 int n,
1841 Month month,
1842 int year) const
1843{
1844 wxDateTime dt(*this);
1845
1846 return dt.SetToWeekDay(weekday, n, month, year) ? dt : wxInvalidDateTime;
1847}
1848
1849inline wxDateTime wxDateTime::GetLastWeekDay(WeekDay weekday,
1850 Month month,
1851 int year)
1852{
1853 wxDateTime dt(*this);
1854
1855 return dt.SetToLastWeekDay(weekday, month, year) ? dt : wxInvalidDateTime;
1856}
1857
df5168c4
MB
1858inline wxDateTime wxDateTime::GetLastMonthDay(Month month, int year) const
1859{
1860 MODIFY_AND_RETURN( SetToLastMonthDay(month, year) );
1861}
1862
1863inline wxDateTime wxDateTime::GetYearDay(wxDateTime_t yday) const
1864{
1865 MODIFY_AND_RETURN( SetToYearDay(yday) );
1866}
1867
1868// ----------------------------------------------------------------------------
1869// wxDateTime comparison
1870// ----------------------------------------------------------------------------
1871
1872inline bool wxDateTime::IsEqualTo(const wxDateTime& datetime) const
1873{
1874 wxASSERT_MSG( IsValid() && datetime.IsValid(), _T("invalid wxDateTime"));
1875
1876 return m_time == datetime.m_time;
1877}
1878
1879inline bool wxDateTime::IsEarlierThan(const wxDateTime& datetime) const
1880{
1881 wxASSERT_MSG( IsValid() && datetime.IsValid(), _T("invalid wxDateTime"));
1882
1883 return m_time < datetime.m_time;
1884}
1885
1886inline bool wxDateTime::IsLaterThan(const wxDateTime& datetime) const
1887{
1888 wxASSERT_MSG( IsValid() && datetime.IsValid(), _T("invalid wxDateTime"));
1889
1890 return m_time > datetime.m_time;
1891}
1892
1893inline bool wxDateTime::IsStrictlyBetween(const wxDateTime& t1,
1894 const wxDateTime& t2) const
1895{
1896 // no need for assert, will be checked by the functions we call
1897 return IsLaterThan(t1) && IsEarlierThan(t2);
1898}
1899
1900inline bool wxDateTime::IsBetween(const wxDateTime& t1,
1901 const wxDateTime& t2) const
1902{
1903 // no need for assert, will be checked by the functions we call
1904 return IsEqualTo(t1) || IsEqualTo(t2) || IsStrictlyBetween(t1, t2);
1905}
1906
1907inline bool wxDateTime::IsSameDate(const wxDateTime& dt) const
1908{
1909 Tm tm1 = GetTm(),
1910 tm2 = dt.GetTm();
1911
1912 return tm1.year == tm2.year &&
1913 tm1.mon == tm2.mon &&
1914 tm1.mday == tm2.mday;
1915}
1916
1917inline bool wxDateTime::IsSameTime(const wxDateTime& dt) const
1918{
1919 // notice that we can't do something like this:
1920 //
1921 // m_time % MILLISECONDS_PER_DAY == dt.m_time % MILLISECONDS_PER_DAY
1922 //
1923 // because we have also to deal with (possibly) different DST settings!
1924 Tm tm1 = GetTm(),
1925 tm2 = dt.GetTm();
1926
1927 return tm1.hour == tm2.hour &&
1928 tm1.min == tm2.min &&
1929 tm1.sec == tm2.sec &&
1930 tm1.msec == tm2.msec;
1931}
1932
1933inline bool wxDateTime::IsEqualUpTo(const wxDateTime& dt,
1934 const wxTimeSpan& ts) const
1935{
1936 return IsBetween(dt.Subtract(ts), dt.Add(ts));
1937}
1938
1939// ----------------------------------------------------------------------------
1940// wxDateTime arithmetics
1941// ----------------------------------------------------------------------------
1942
1943inline wxDateTime wxDateTime::Add(const wxTimeSpan& diff) const
1944{
1945 wxASSERT_MSG( IsValid(), _T("invalid wxDateTime"));
1946
1947 return wxDateTime(m_time + diff.GetValue());
1948}
1949
1950inline wxDateTime& wxDateTime::Add(const wxTimeSpan& diff)
1951{
1952 wxASSERT_MSG( IsValid(), _T("invalid wxDateTime"));
1953
1954 m_time += diff.GetValue();
1955
1956 return *this;
1957}
1958
1959inline wxDateTime& wxDateTime::operator+=(const wxTimeSpan& diff)
1960{
1961 return Add(diff);
1962}
1963
1964inline wxDateTime wxDateTime::Subtract(const wxTimeSpan& diff) const
1965{
1966 wxASSERT_MSG( IsValid(), _T("invalid wxDateTime"));
1967
1968 return wxDateTime(m_time - diff.GetValue());
1969}
1970
1971inline wxDateTime& wxDateTime::Subtract(const wxTimeSpan& diff)
1972{
1973 wxASSERT_MSG( IsValid(), _T("invalid wxDateTime"));
1974
1975 m_time -= diff.GetValue();
1976
1977 return *this;
1978}
1979
1980inline wxDateTime& wxDateTime::operator-=(const wxTimeSpan& diff)
1981{
1982 return Subtract(diff);
1983}
1984
1985inline wxTimeSpan wxDateTime::Subtract(const wxDateTime& datetime) const
1986{
1987 wxASSERT_MSG( IsValid() && datetime.IsValid(), _T("invalid wxDateTime"));
1988
1989 return wxTimeSpan(GetValue() - datetime.GetValue());
1990}
1991
26364344
WS
1992inline wxTimeSpan wxDateTime::operator-(const wxDateTime& dt2) const
1993{
1994 return this->Subtract(dt2);
1995}
1996
df5168c4
MB
1997inline wxDateTime wxDateTime::Add(const wxDateSpan& diff) const
1998{
1999 return wxDateTime(*this).Add(diff);
2000}
2001
2002inline wxDateTime& wxDateTime::Subtract(const wxDateSpan& diff)
2003{
2004 return Add(diff.Negate());
2005}
2006
2007inline wxDateTime wxDateTime::Subtract(const wxDateSpan& diff) const
2008{
2009 return wxDateTime(*this).Subtract(diff);
2010}
2011
2012inline wxDateTime& wxDateTime::operator-=(const wxDateSpan& diff)
2013{
2014 return Subtract(diff);
2015}
2016
2017inline wxDateTime& wxDateTime::operator+=(const wxDateSpan& diff)
2018{
2019 return Add(diff);
2020}
2021
2022// ----------------------------------------------------------------------------
2023// wxDateTime and timezones
2024// ----------------------------------------------------------------------------
2025
d26adb9d
VZ
2026inline wxDateTime
2027wxDateTime::ToTimezone(const wxDateTime::TimeZone& tz, bool noDST) const
df5168c4
MB
2028{
2029 MODIFY_AND_RETURN( MakeTimezone(tz, noDST) );
2030}
2031
d26adb9d
VZ
2032inline wxDateTime
2033wxDateTime::FromTimezone(const wxDateTime::TimeZone& tz, bool noDST) const
2034{
2035 MODIFY_AND_RETURN( MakeFromTimezone(tz, noDST) );
2036}
2037
df5168c4
MB
2038// ----------------------------------------------------------------------------
2039// wxTimeSpan construction
2040// ----------------------------------------------------------------------------
2041
2042inline wxTimeSpan::wxTimeSpan(long hours,
2043 long minutes,
9c21e80b
VZ
2044 wxLongLong seconds,
2045 wxLongLong milliseconds)
df5168c4
MB
2046{
2047 // assign first to avoid precision loss
2048 m_diff = hours;
2049 m_diff *= 60l;
2050 m_diff += minutes;
2051 m_diff *= 60l;
2052 m_diff += seconds;
2053 m_diff *= 1000l;
2054 m_diff += milliseconds;
2055}
2056
2057// ----------------------------------------------------------------------------
2058// wxTimeSpan accessors
2059// ----------------------------------------------------------------------------
2060
2061inline wxLongLong wxTimeSpan::GetSeconds() const
2062{
2063 return m_diff / 1000l;
2064}
2065
2066inline int wxTimeSpan::GetMinutes() const
2067{
18c7af7e
VZ
2068 // explicit cast to int suppresses a warning with CodeWarrior and possibly
2069 // others (changing the return type to long from int is impossible in 2.8)
2070 return (int)((GetSeconds() / 60l).GetLo());
df5168c4
MB
2071}
2072
2073inline int wxTimeSpan::GetHours() const
2074{
2075 return GetMinutes() / 60;
2076}
2077
2078inline int wxTimeSpan::GetDays() const
2079{
2080 return GetHours() / 24;
2081}
2082
2083inline int wxTimeSpan::GetWeeks() const
2084{
2085 return GetDays() / 7;
2086}
2087
2088// ----------------------------------------------------------------------------
2089// wxTimeSpan arithmetics
2090// ----------------------------------------------------------------------------
2091
2092inline wxTimeSpan wxTimeSpan::Add(const wxTimeSpan& diff) const
2093{
2094 return wxTimeSpan(m_diff + diff.GetValue());
2095}
2096
2097inline wxTimeSpan& wxTimeSpan::Add(const wxTimeSpan& diff)
2098{
2099 m_diff += diff.GetValue();
2100
2101 return *this;
2102}
2103
2104inline wxTimeSpan wxTimeSpan::Subtract(const wxTimeSpan& diff) const
2105{
2106 return wxTimeSpan(m_diff - diff.GetValue());
2107}
2108
2109inline wxTimeSpan& wxTimeSpan::Subtract(const wxTimeSpan& diff)
2110{
2111 m_diff -= diff.GetValue();
2112
2113 return *this;
2114}
2115
2116inline wxTimeSpan& wxTimeSpan::Multiply(int n)
2117{
2118 m_diff *= (long)n;
2119
2120 return *this;
2121}
2122
2123inline wxTimeSpan wxTimeSpan::Multiply(int n) const
2124{
2125 return wxTimeSpan(m_diff * (long)n);
2126}
2127
2128inline wxTimeSpan wxTimeSpan::Abs() const
2129{
2130 return wxTimeSpan(GetValue().Abs());
2131}
2132
2133inline bool wxTimeSpan::IsEqualTo(const wxTimeSpan& ts) const
2134{
2135 return GetValue() == ts.GetValue();
2136}
2137
2138inline bool wxTimeSpan::IsLongerThan(const wxTimeSpan& ts) const
2139{
2140 return GetValue().Abs() > ts.GetValue().Abs();
f7541d48
VZ
2141}
2142
2143inline bool wxTimeSpan::IsShorterThan(const wxTimeSpan& ts) const
2144{
2145 return GetValue().Abs() < ts.GetValue().Abs();
df5168c4
MB
2146}
2147
2148// ----------------------------------------------------------------------------
2149// wxDateSpan
2150// ----------------------------------------------------------------------------
2151
2152inline wxDateSpan& wxDateSpan::operator+=(const wxDateSpan& other)
2153{
2154 m_years += other.m_years;
2155 m_months += other.m_months;
2156 m_weeks += other.m_weeks;
2157 m_days += other.m_days;
2158
2159 return *this;
2160}
2161
2162inline wxDateSpan& wxDateSpan::Add(const wxDateSpan& other)
2163{
2164 return *this += other;
2165}
2166
2167inline wxDateSpan wxDateSpan::Add(const wxDateSpan& other) const
2168{
2169 wxDateSpan ds(*this);
2170 ds.Add(other);
2171 return ds;
2172}
2173
2174inline wxDateSpan& wxDateSpan::Multiply(int factor)
2175{
2176 m_years *= factor;
2177 m_months *= factor;
2178 m_weeks *= factor;
2179 m_days *= factor;
2180
2181 return *this;
2182}
2183
2184inline wxDateSpan wxDateSpan::Multiply(int factor) const
2185{
2186 wxDateSpan ds(*this);
2187 ds.Multiply(factor);
2188 return ds;
2189}
2190
2191inline wxDateSpan wxDateSpan::Negate() const
2192{
2193 return wxDateSpan(-m_years, -m_months, -m_weeks, -m_days);
2194}
2195
2196inline wxDateSpan& wxDateSpan::Neg()
2197{
2198 m_years = -m_years;
2199 m_months = -m_months;
2200 m_weeks = -m_weeks;
2201 m_days = -m_days;
2202
2203 return *this;
2204}
2205
2206inline wxDateSpan& wxDateSpan::operator-=(const wxDateSpan& other)
2207{
2208 return *this += other.Negate();
2209}
2210
2211inline wxDateSpan& wxDateSpan::Subtract(const wxDateSpan& other)
2212{
2213 return *this -= other;
2214}
2215
2216inline wxDateSpan wxDateSpan::Subtract(const wxDateSpan& other) const
2217{
2218 wxDateSpan ds(*this);
2219 ds.Subtract(other);
2220 return ds;
2221}
2222
2223#undef MILLISECONDS_PER_DAY
2224
2225#undef MODIFY_AND_RETURN
2226
0979c962
VZ
2227// ============================================================================
2228// binary operators
2229// ============================================================================
2230
0979c962
VZ
2231// ----------------------------------------------------------------------------
2232// wxTimeSpan operators
2233// ----------------------------------------------------------------------------
2234
26364344 2235wxTimeSpan WXDLLIMPEXP_BASE operator*(int n, const wxTimeSpan& ts);
0979c962
VZ
2236
2237// ----------------------------------------------------------------------------
2238// wxDateSpan
2239// ----------------------------------------------------------------------------
2240
26364344 2241wxDateSpan WXDLLIMPEXP_BASE operator*(int n, const wxDateSpan& ds);
cd0b1709
VZ
2242
2243// ============================================================================
2244// other helper functions
2245// ============================================================================
2246
2247// ----------------------------------------------------------------------------
2248// iteration helpers: can be used to write a for loop over enum variable like
2249// this:
2250// for ( m = wxDateTime::Jan; m < wxDateTime::Inv_Month; wxNextMonth(m) )
2251// ----------------------------------------------------------------------------
2252
26364344
WS
2253WXDLLIMPEXP_BASE void wxNextMonth(wxDateTime::Month& m);
2254WXDLLIMPEXP_BASE void wxPrevMonth(wxDateTime::Month& m);
2255WXDLLIMPEXP_BASE void wxNextWDay(wxDateTime::WeekDay& wd);
2256WXDLLIMPEXP_BASE void wxPrevWDay(wxDateTime::WeekDay& wd);
0979c962 2257
e421922f
VZ
2258#endif // wxUSE_DATETIME
2259
2f02cb89 2260#endif // _WX_DATETIME_H