wxDateTime::IsValid() now returns m_time != (wxLongLong)-1
[wxWidgets.git] / include / wx / datetime.h
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>
10 // Licence: wxWindows license
11 /////////////////////////////////////////////////////////////////////////////
12
13 #ifndef _WX_DATETIME_H
14 #define _WX_DATETIME_H
15
16 #ifdef __GNUG__
17 #pragma interface "datetime.h"
18 #endif
19
20 #include <time.h>
21 #include <limits.h> // for INT_MIN
22
23 #include "wx/longlong.h"
24
25 class WXDLLEXPORT wxDateTime;
26 class WXDLLEXPORT wxTimeSpan;
27 class WXDLLEXPORT wxDateSpan;
28
29 // don't use inline functions in debug builds - we don't care about
30 // performances and this only leads to increased rebuild time (because every
31 // time an inline method is changed, all files including the header must be
32 // rebuilt)
33 // For Mingw32, causes a link error.
34 #if defined( __WXDEBUG__) && !defined(__MINGW32__)
35 #undef inline
36 #define inline
37 #endif // Debug
38
39 /*
40 * TODO
41 *
42 * + 1. Time zones with minutes (make TimeZone a class)
43 * ? 2. getdate() function like under Solaris
44 * + 3. text conversion for wxDateSpan
45 * + 4. pluggable modules for the workdays calculations
46 * 5. wxDateTimeHolidayAuthority for Easter and other christian feasts
47 */
48
49 /*
50 The three (main) classes declared in this header represent:
51
52 1. An absolute moment in the time (wxDateTime)
53 2. A difference between two moments in the time, positive or negative
54 (wxTimeSpan)
55 3. A logical difference between two dates expressed in
56 years/months/weeks/days (wxDateSpan)
57
58 The following arithmetic operations are permitted (all others are not):
59
60 addition
61 --------
62
63 wxDateTime + wxTimeSpan = wxDateTime
64 wxDateTime + wxDateSpan = wxDateTime
65 wxTimeSpan + wxTimeSpan = wxTimeSpan
66 wxDateSpan + wxDateSpan = wxDateSpan
67
68 subtraction
69 ------------
70 wxDateTime - wxDateTime = wxTimeSpan
71 wxDateTime - wxTimeSpan = wxDateTime
72 wxDateTime - wxDateSpan = wxDateTime
73 wxTimeSpan - wxTimeSpan = wxTimeSpan
74 wxDateSpan - wxDateSpan = wxDateSpan
75
76 multiplication
77 --------------
78 wxTimeSpan * number = wxTimeSpan
79 number * wxTimeSpan = wxTimeSpan
80 wxDateSpan * number = wxDateSpan
81 number * wxDateSpan = wxDateSpan
82
83 unitary minus
84 -------------
85 -wxTimeSpan = wxTimeSpan
86 -wxDateSpan = wxDateSpan
87
88 For each binary operation OP (+, -, *) we have the following operatorOP=() as
89 a method and the method with a symbolic name OPER (Add, Subtract, Multiply)
90 as a synonym for it and another const method with the same name which returns
91 the changed copy of the object and operatorOP() as a global function which is
92 implemented in terms of the const version of OPEN. For the unary - we have
93 operator-() as a method, Neg() as synonym for it and Negate() which returns
94 the copy of the object with the changed sign.
95 */
96
97 // an invalid/default date time object which may be used as the default
98 // argument for arguments of type wxDateTime; it is also returned by all
99 // functions returning wxDateTime on failure (this is why it is also called
100 // wxInvalidDateTime)
101 class WXDLLEXPORT wxDateTime;
102
103 WXDLLEXPORT_DATA(extern const wxDateTime&) wxDefaultDateTime;
104 #define wxInvalidDateTime wxDefaultDateTime
105
106 // ----------------------------------------------------------------------------
107 // wxDateTime represents an absolute moment in the time
108 // ----------------------------------------------------------------------------
109
110 class WXDLLEXPORT wxDateTime
111 {
112 public:
113 // types
114 // ------------------------------------------------------------------------
115
116 // a small unsigned integer type for storing things like minutes,
117 // seconds &c. It should be at least short (i.e. not char) to contain
118 // the number of milliseconds - it may also be 'int' because there is
119 // no size penalty associated with it in our code, we don't store any
120 // data in this format
121 typedef unsigned short wxDateTime_t;
122
123 // constants
124 // ------------------------------------------------------------------------
125
126 // the timezones
127 enum TZ
128 {
129 // the time in the current time zone
130 Local,
131
132 // zones from GMT (= Greenwhich Mean Time): they're guaranteed to be
133 // consequent numbers, so writing something like `GMT0 + offset' is
134 // safe if abs(offset) <= 12
135
136 // underscore stands for minus
137 GMT_12, GMT_11, GMT_10, GMT_9, GMT_8, GMT_7,
138 GMT_6, GMT_5, GMT_4, GMT_3, GMT_2, GMT_1,
139 GMT0,
140 GMT1, GMT2, GMT3, GMT4, GMT5, GMT6,
141 GMT7, GMT8, GMT9, GMT10, GMT11, GMT12,
142 // Note that GMT12 and GMT_12 are not the same: there is a difference
143 // of exactly one day between them
144
145 // some symbolic names for TZ
146
147 // Europe
148 WET = GMT0, // Western Europe Time
149 WEST = GMT1, // Western Europe Summer Time
150 CET = GMT1, // Central Europe Time
151 CEST = GMT2, // Central Europe Summer Time
152 EET = GMT2, // Eastern Europe Time
153 EEST = GMT3, // Eastern Europe Summer Time
154 MSK = GMT3, // Moscow Time
155 MSD = GMT4, // Moscow Summer Time
156
157 // US and Canada
158 AST = GMT_4, // Atlantic Standard Time
159 ADT = GMT_3, // Atlantic Daylight Time
160 EST = GMT_5, // Eastern Standard Time
161 EDT = GMT_4, // Eastern Daylight Saving Time
162 CST = GMT_6, // Central Standard Time
163 CDT = GMT_5, // Central Daylight Saving Time
164 MST = GMT_7, // Mountain Standard Time
165 MDT = GMT_6, // Mountain Daylight Saving Time
166 PST = GMT_8, // Pacific Standard Time
167 PDT = GMT_7, // Pacific Daylight Saving Time
168 HST = GMT_10, // Hawaiian Standard Time
169 AKST = GMT_9, // Alaska Standard Time
170 AKDT = GMT_8, // Alaska Daylight Saving Time
171
172 // Australia
173
174 A_WST = GMT8, // Western Standard Time
175 A_CST = GMT12 + 1, // Central Standard Time (+9.5)
176 A_EST = GMT10, // Eastern Standard Time
177 A_ESST = GMT11, // Eastern Summer Time
178
179 // TODO add more symbolic timezone names here
180
181 // Universal Coordinated Time = the new and politically correct name
182 // for GMT
183 UTC = GMT0
184 };
185
186 // the calendar systems we know about: notice that it's valid (for
187 // this classes purpose anyhow) to work with any of these calendars
188 // even with the dates before the historical appearance of the
189 // calendar
190 enum Calendar
191 {
192 Gregorian, // current calendar
193 Julian // calendar in use since -45 until the 1582 (or later)
194
195 // TODO Hebrew, Chinese, Maya, ... (just kidding) (or then may be not?)
196 };
197
198 // these values only are used to identify the different dates of
199 // adoption of the Gregorian calendar (see IsGregorian())
200 //
201 // All data and comments taken verbatim from "The Calendar FAQ (v 2.0)"
202 // by Claus Tøndering, http://www.pip.dknet.dk/~c-t/calendar.html
203 // except for the comments "we take".
204 //
205 // Symbol "->" should be read as "was followed by" in the comments
206 // which follow.
207 enum GregorianAdoption
208 {
209 Gr_Unknown, // no data for this country or it's too uncertain to use
210 Gr_Standard, // on the day 0 of Gregorian calendar: 15 Oct 1582
211
212 Gr_Alaska, // Oct 1867 when Alaska became part of the USA
213 Gr_Albania, // Dec 1912
214
215 Gr_Austria = Gr_Unknown, // Different regions on different dates
216 Gr_Austria_Brixen, // 5 Oct 1583 -> 16 Oct 1583
217 Gr_Austria_Salzburg = Gr_Austria_Brixen,
218 Gr_Austria_Tyrol = Gr_Austria_Brixen,
219 Gr_Austria_Carinthia, // 14 Dec 1583 -> 25 Dec 1583
220 Gr_Austria_Styria = Gr_Austria_Carinthia,
221
222 Gr_Belgium, // Then part of the Netherlands
223
224 Gr_Bulgaria = Gr_Unknown, // Unknown precisely (from 1915 to 1920)
225 Gr_Bulgaria_1, // 18 Mar 1916 -> 1 Apr 1916
226 Gr_Bulgaria_2, // 31 Mar 1916 -> 14 Apr 1916
227 Gr_Bulgaria_3, // 3 Sep 1920 -> 17 Sep 1920
228
229 Gr_Canada = Gr_Unknown, // Different regions followed the changes in
230 // Great Britain or France
231
232 Gr_China = Gr_Unknown, // Different authorities say:
233 Gr_China_1, // 18 Dec 1911 -> 1 Jan 1912
234 Gr_China_2, // 18 Dec 1928 -> 1 Jan 1929
235
236 Gr_Czechoslovakia, // (Bohemia and Moravia) 6 Jan 1584 -> 17 Jan 1584
237 Gr_Denmark, // (including Norway) 18 Feb 1700 -> 1 Mar 1700
238 Gr_Egypt, // 1875
239 Gr_Estonia, // 1918
240 Gr_Finland, // Then part of Sweden
241
242 Gr_France, // 9 Dec 1582 -> 20 Dec 1582
243 Gr_France_Alsace, // 4 Feb 1682 -> 16 Feb 1682
244 Gr_France_Lorraine, // 16 Feb 1760 -> 28 Feb 1760
245 Gr_France_Strasbourg, // February 1682
246
247 Gr_Germany = Gr_Unknown, // Different states on different dates:
248 Gr_Germany_Catholic, // 1583-1585 (we take 1584)
249 Gr_Germany_Prussia, // 22 Aug 1610 -> 2 Sep 1610
250 Gr_Germany_Protestant, // 18 Feb 1700 -> 1 Mar 1700
251
252 Gr_GreatBritain, // 2 Sep 1752 -> 14 Sep 1752 (use 'cal(1)')
253
254 Gr_Greece, // 9 Mar 1924 -> 23 Mar 1924
255 Gr_Hungary, // 21 Oct 1587 -> 1 Nov 1587
256 Gr_Ireland = Gr_GreatBritain,
257 Gr_Italy = Gr_Standard,
258
259 Gr_Japan = Gr_Unknown, // Different authorities say:
260 Gr_Japan_1, // 19 Dec 1872 -> 1 Jan 1873
261 Gr_Japan_2, // 19 Dec 1892 -> 1 Jan 1893
262 Gr_Japan_3, // 18 Dec 1918 -> 1 Jan 1919
263
264 Gr_Latvia, // 1915-1918 (we take 1915)
265 Gr_Lithuania, // 1915
266 Gr_Luxemburg, // 14 Dec 1582 -> 25 Dec 1582
267 Gr_Netherlands = Gr_Belgium, // (including Belgium) 1 Jan 1583
268
269 // this is too weird to take into account: the Gregorian calendar was
270 // introduced twice in Groningen, first time 28 Feb 1583 was followed
271 // by 11 Mar 1583, then it has gone back to Julian in the summer of
272 // 1584 and then 13 Dec 1700 -> 12 Jan 1701 - which is
273 // the date we take here
274 Gr_Netherlands_Groningen, // 13 Dec 1700 -> 12 Jan 1701
275 Gr_Netherlands_Gelderland, // 30 Jun 1700 -> 12 Jul 1700
276 Gr_Netherlands_Utrecht, // (and Overijssel) 30 Nov 1700->12 Dec 1700
277 Gr_Netherlands_Friesland, // (and Drenthe) 31 Dec 1700 -> 12 Jan 1701
278
279 Gr_Norway = Gr_Denmark, // Then part of Denmark
280 Gr_Poland = Gr_Standard,
281 Gr_Portugal = Gr_Standard,
282 Gr_Romania, // 31 Mar 1919 -> 14 Apr 1919
283 Gr_Russia, // 31 Jan 1918 -> 14 Feb 1918
284 Gr_Scotland = Gr_GreatBritain,
285 Gr_Spain = Gr_Standard,
286
287 // Sweden has a curious history. Sweden decided to make a gradual
288 // change from the Julian to the Gregorian calendar. By dropping every
289 // leap year from 1700 through 1740 the eleven superfluous days would
290 // be omitted and from 1 Mar 1740 they would be in sync with the
291 // Gregorian calendar. (But in the meantime they would be in sync with
292 // nobody!)
293 //
294 // So 1700 (which should have been a leap year in the Julian calendar)
295 // was not a leap year in Sweden. However, by mistake 1704 and 1708
296 // became leap years. This left Sweden out of synchronisation with
297 // both the Julian and the Gregorian world, so they decided to go back
298 // to the Julian calendar. In order to do this, they inserted an extra
299 // day in 1712, making that year a double leap year! So in 1712,
300 // February had 30 days in Sweden.
301 //
302 // Later, in 1753, Sweden changed to the Gregorian calendar by
303 // dropping 11 days like everyone else.
304 Gr_Sweden = Gr_Finland, // 17 Feb 1753 -> 1 Mar 1753
305
306 Gr_Switzerland = Gr_Unknown,// Different cantons used different dates
307 Gr_Switzerland_Catholic, // 1583, 1584 or 1597 (we take 1584)
308 Gr_Switzerland_Protestant, // 31 Dec 1700 -> 12 Jan 1701
309
310 Gr_Turkey, // 1 Jan 1927
311 Gr_USA = Gr_GreatBritain,
312 Gr_Wales = Gr_GreatBritain,
313 Gr_Yugoslavia // 1919
314 };
315
316 // the country parameter is used so far for calculating the start and
317 // the end of DST period and for deciding whether the date is a work
318 // day or not
319 //
320 // TODO move this to intl.h
321 enum Country
322 {
323 Country_Unknown, // no special information for this country
324 Country_Default, // set the default country with SetCountry() method
325 // or use the default country with any other
326
327 // TODO add more countries (for this we must know about DST and/or
328 // holidays for this country)
329
330 // Western European countries: we assume that they all follow the same
331 // DST rules (true or false?)
332 Country_WesternEurope_Start,
333 Country_EEC = Country_WesternEurope_Start,
334 France,
335 Germany,
336 UK,
337 Country_WesternEurope_End = UK,
338
339 Russia,
340
341 USA
342 };
343
344 // symbolic names for the months
345 enum Month
346 {
347 Jan, Feb, Mar, Apr, May, Jun, Jul, Aug, Sep, Oct, Nov, Dec, Inv_Month
348 };
349
350 // symbolic names for the weekdays
351 enum WeekDay
352 {
353 Sun, Mon, Tue, Wed, Thu, Fri, Sat, Inv_WeekDay
354 };
355
356 // invalid value for the year
357 enum Year
358 {
359 Inv_Year = SHRT_MIN // should hold in wxDateTime_t
360 };
361
362 // flags for GetWeekDayName and GetMonthName
363 enum NameFlags
364 {
365 Name_Full = 0x01, // return full name
366 Name_Abbr = 0x02 // return abbreviated name
367 };
368
369 // flags for GetWeekOfYear and GetWeekOfMonth
370 enum WeekFlags
371 {
372 Default_First, // Sunday_First for US, Monday_First for the rest
373 Monday_First, // week starts with a Monday
374 Sunday_First // week starts with a Sunday
375 };
376
377 // helper classes
378 // ------------------------------------------------------------------------
379
380 // a class representing a time zone: basicly, this is just an offset
381 // (in seconds) from GMT
382 class WXDLLEXPORT TimeZone
383 {
384 public:
385 TimeZone(TZ tz);
386 TimeZone(wxDateTime_t offset = 0) { m_offset = offset; }
387
388 long GetOffset() const { return m_offset; }
389
390 private:
391 // offset for this timezone from GMT in seconds
392 long m_offset;
393 };
394
395 // standard struct tm is limited to the years from 1900 (because
396 // tm_year field is the offset from 1900), so we use our own struct
397 // instead to represent broken down time
398 //
399 // NB: this struct should always be kept normalized (i.e. mon should
400 // be < 12, 1 <= day <= 31 &c), so use AddMonths(), AddDays()
401 // instead of modifying the member fields directly!
402 struct WXDLLEXPORT Tm
403 {
404 wxDateTime_t msec, sec, min, hour, mday;
405 Month mon;
406 int year;
407
408 // default ctor inits the object to an invalid value
409 Tm();
410
411 // ctor from struct tm and the timezone
412 Tm(const struct tm& tm, const TimeZone& tz);
413
414 // check that the given date/time is valid (in Gregorian calendar)
415 bool IsValid() const;
416
417 // get the week day
418 WeekDay GetWeekDay() // not const because wday may be changed
419 {
420 if ( wday == Inv_WeekDay )
421 ComputeWeekDay();
422
423 return (WeekDay)wday;
424 }
425
426 // add the given number of months to the date keeping it normalized
427 void AddMonths(int monDiff);
428
429 // add the given number of months to the date keeping it normalized
430 void AddDays(int dayDiff);
431
432 private:
433 // compute the weekday from other fields
434 void ComputeWeekDay();
435
436 // the timezone we correspond to
437 TimeZone m_tz;
438
439 // these values can't be accessed directly because they're not always
440 // computed and we calculate them on demand
441 wxDateTime_t wday, yday;
442 };
443
444 // static methods
445 // ------------------------------------------------------------------------
446
447 // set the current country
448 static void SetCountry(Country country);
449 // get the current country
450 static Country GetCountry();
451
452 // return TRUE if the country is a West European one (in practice,
453 // this means that the same DST rules as for EEC apply)
454 static bool IsWestEuropeanCountry(Country country = Country_Default);
455
456 // return the current year
457 static int GetCurrentYear(Calendar cal = Gregorian);
458
459 // convert the year as returned by wxDateTime::GetYear() to a year
460 // suitable for BC/AD notation. The difference is that BC year 1
461 // corresponds to the year 0 (while BC year 0 didn't exist) and AD
462 // year N is just year N.
463 static int ConvertYearToBC(int year);
464
465 // return the current month
466 static Month GetCurrentMonth(Calendar cal = Gregorian);
467
468 // returns TRUE if the given year is a leap year in the given calendar
469 static bool IsLeapYear(int year = Inv_Year, Calendar cal = Gregorian);
470
471 // get the century (19 for 1999, 20 for 2000 and -5 for 492 BC)
472 static int GetCentury(int year = Inv_Year);
473
474 // returns the number of days in this year (356 or 355 for Gregorian
475 // calendar usually :-)
476 static wxDateTime_t GetNumberOfDays(int year, Calendar cal = Gregorian);
477
478 // get the number of the days in the given month (default value for
479 // the year means the current one)
480 static wxDateTime_t GetNumberOfDays(Month month,
481 int year = Inv_Year,
482 Calendar cal = Gregorian);
483
484 // get the full (default) or abbreviated month name in the current
485 // locale, returns empty string on error
486 static wxString GetMonthName(Month month,
487 NameFlags flags = Name_Full);
488
489 // get the full (default) or abbreviated weekday name in the current
490 // locale, returns empty string on error
491 static wxString GetWeekDayName(WeekDay weekday,
492 NameFlags flags = Name_Full);
493
494 // get the AM and PM strings in the current locale (may be empty)
495 static void GetAmPmStrings(wxString *am, wxString *pm);
496
497 // return TRUE if the given country uses DST for this year
498 static bool IsDSTApplicable(int year = Inv_Year,
499 Country country = Country_Default);
500
501 // get the beginning of DST for this year, will return invalid object
502 // if no DST applicable in this year. The default value of the
503 // parameter means to take the current year.
504 static wxDateTime GetBeginDST(int year = Inv_Year,
505 Country country = Country_Default);
506 // get the end of DST for this year, will return invalid object
507 // if no DST applicable in this year. The default value of the
508 // parameter means to take the current year.
509 static wxDateTime GetEndDST(int year = Inv_Year,
510 Country country = Country_Default);
511
512 // return the wxDateTime object for the current time
513 static inline wxDateTime Now();
514
515 // return the wxDateTime object for the current time with millisecond
516 // precision (if available on this platform)
517 static wxDateTime UNow();
518
519 // return the wxDateTime object for today midnight: i.e. as Now() but
520 // with time set to 0
521 static inline wxDateTime Today();
522
523 // constructors: you should test whether the constructor succeeded with
524 // IsValid() function. The values Inv_Month and Inv_Year for the
525 // parameters mean take current month and/or year values.
526 // ------------------------------------------------------------------------
527
528 // default ctor does not initialize the object, use Set()!
529 wxDateTime() { }
530
531 // from time_t: seconds since the Epoch 00:00:00 UTC, Jan 1, 1970)
532 #if (!(defined(__VISAGECPP__) && __IBMCPP__ >= 400))
533 // VA C++ confuses this with wxDateTime(double jdn) thinking it is a duplicate declaration
534 inline wxDateTime(time_t timet);
535 #endif
536 // from broken down time/date (only for standard Unix range)
537 inline wxDateTime(const struct tm& tm);
538 // from broken down time/date (any range)
539 inline wxDateTime(const Tm& tm);
540
541 // from JDN (beware of rounding errors)
542 inline wxDateTime(double jdn);
543
544 // from separate values for each component, date set to today
545 inline wxDateTime(wxDateTime_t hour,
546 wxDateTime_t minute = 0,
547 wxDateTime_t second = 0,
548 wxDateTime_t millisec = 0);
549 // from separate values for each component with explicit date
550 inline wxDateTime(wxDateTime_t day, // day of the month
551 Month month = Inv_Month,
552 int year = Inv_Year, // 1999, not 99 please!
553 wxDateTime_t hour = 0,
554 wxDateTime_t minute = 0,
555 wxDateTime_t second = 0,
556 wxDateTime_t millisec = 0);
557
558 // default copy ctor ok
559
560 // no dtor
561
562 // assignment operators and Set() functions: all non const methods return
563 // the reference to this object. IsValid() should be used to test whether
564 // the function succeeded.
565 // ------------------------------------------------------------------------
566
567 // set to the current time
568 inline wxDateTime& SetToCurrent();
569
570 #if (!(defined(__VISAGECPP__) && __IBMCPP__ >= 400))
571 // VA C++ confuses this with wxDateTime(double jdn) thinking it is a duplicate declaration
572 // set to given time_t value
573 inline wxDateTime& Set(time_t timet);
574 #endif
575
576 // set to given broken down time/date
577 wxDateTime& Set(const struct tm& tm);
578
579 // set to given broken down time/date
580 inline wxDateTime& Set(const Tm& tm);
581
582 // set to given JDN (beware of rounding errors)
583 wxDateTime& Set(double jdn);
584
585 // set to given time, date = today
586 wxDateTime& Set(wxDateTime_t hour,
587 wxDateTime_t minute = 0,
588 wxDateTime_t second = 0,
589 wxDateTime_t millisec = 0);
590
591 // from separate values for each component with explicit date
592 // (defaults for month and year are the current values)
593 wxDateTime& Set(wxDateTime_t day,
594 Month month = Inv_Month,
595 int year = Inv_Year, // 1999, not 99 please!
596 wxDateTime_t hour = 0,
597 wxDateTime_t minute = 0,
598 wxDateTime_t second = 0,
599 wxDateTime_t millisec = 0);
600
601 // resets time to 00:00:00, doesn't change the date
602 wxDateTime& ResetTime();
603
604 // the following functions don't change the values of the other
605 // fields, i.e. SetMinute() won't change either hour or seconds value
606
607 // set the year
608 wxDateTime& SetYear(int year);
609 // set the month
610 wxDateTime& SetMonth(Month month);
611 // set the day of the month
612 wxDateTime& SetDay(wxDateTime_t day);
613 // set hour
614 wxDateTime& SetHour(wxDateTime_t hour);
615 // set minute
616 wxDateTime& SetMinute(wxDateTime_t minute);
617 // set second
618 wxDateTime& SetSecond(wxDateTime_t second);
619 // set millisecond
620 wxDateTime& SetMillisecond(wxDateTime_t millisecond);
621
622 // assignment operator from time_t
623 wxDateTime& operator=(time_t timet) { return Set(timet); }
624
625 // assignment operator from broken down time/date
626 wxDateTime& operator=(const struct tm& tm) { return Set(tm); }
627
628 // assignment operator from broken down time/date
629 wxDateTime& operator=(const Tm& tm) { return Set(tm); }
630
631 // default assignment operator is ok
632
633 // calendar calculations (functions which set the date only leave the time
634 // unchanged, e.g. don't explictly zero it): SetXXX() functions modify the
635 // object itself, GetXXX() ones return a new object.
636 // ------------------------------------------------------------------------
637
638 // set to the given week day in the same week as this one
639 wxDateTime& SetToWeekDayInSameWeek(WeekDay weekday);
640 inline wxDateTime GetWeekDayInSameWeek(WeekDay weekday) const;
641
642 // set to the next week day following this one
643 wxDateTime& SetToNextWeekDay(WeekDay weekday);
644 inline wxDateTime GetNextWeekDay(WeekDay weekday) const;
645
646 // set to the previous week day before this one
647 wxDateTime& SetToPrevWeekDay(WeekDay weekday);
648 inline wxDateTime GetPrevWeekDay(WeekDay weekday) const;
649
650 // set to Nth occurence of given weekday in the given month of the
651 // given year (time is set to 0), return TRUE on success and FALSE on
652 // failure. n may be positive (1..5) or negative to count from the end
653 // of the month (see helper function SetToLastWeekDay())
654 bool SetToWeekDay(WeekDay weekday,
655 int n = 1,
656 Month month = Inv_Month,
657 int year = Inv_Year);
658 inline wxDateTime GetWeekDay(WeekDay weekday,
659 int n = 1,
660 Month month = Inv_Month,
661 int year = Inv_Year) const;
662
663 // sets to the last weekday in the given month, year
664 inline bool SetToLastWeekDay(WeekDay weekday,
665 Month month = Inv_Month,
666 int year = Inv_Year);
667 inline wxDateTime GetLastWeekDay(WeekDay weekday,
668 Month month = Inv_Month,
669 int year = Inv_Year);
670
671 // sets the date to the given day of the given week in the year,
672 // returns TRUE on success and FALSE if given date doesn't exist (e.g.
673 // numWeek is > 53)
674 bool SetToTheWeek(wxDateTime_t numWeek, WeekDay weekday = Mon);
675 inline wxDateTime GetWeek(wxDateTime_t numWeek, WeekDay weekday = Mon) const;
676
677 // sets the date to the last day of the given (or current) month or the
678 // given (or current) year
679 wxDateTime& SetToLastMonthDay(Month month = Inv_Month,
680 int year = Inv_Year);
681 inline wxDateTime GetLastMonthDay(Month month = Inv_Month,
682 int year = Inv_Year) const;
683
684 // sets to the given year day (1..365 or 366)
685 wxDateTime& SetToYearDay(wxDateTime_t yday);
686 inline wxDateTime GetYearDay(wxDateTime_t yday) const;
687
688 // The definitions below were taken verbatim from
689 //
690 // http://www.capecod.net/~pbaum/date/date0.htm
691 //
692 // (Peter Baum's home page)
693 //
694 // definition: The Julian Day Number, Julian Day, or JD of a
695 // particular instant of time is the number of days and fractions of a
696 // day since 12 hours Universal Time (Greenwich mean noon) on January
697 // 1 of the year -4712, where the year is given in the Julian
698 // proleptic calendar. The idea of using this reference date was
699 // originally proposed by Joseph Scalizer in 1582 to count years but
700 // it was modified by 19th century astronomers to count days. One
701 // could have equivalently defined the reference time to be noon of
702 // November 24, -4713 if were understood that Gregorian calendar rules
703 // were applied. Julian days are Julian Day Numbers and are not to be
704 // confused with Julian dates.
705 //
706 // definition: The Rata Die number is a date specified as the number
707 // of days relative to a base date of December 31 of the year 0. Thus
708 // January 1 of the year 1 is Rata Die day 1.
709
710 // get the Julian Day number (the fractional part specifies the time of
711 // the day, related to noon - beware of rounding errors!)
712 double GetJulianDayNumber() const;
713 double GetJDN() const { return GetJulianDayNumber(); }
714
715 // get the Modified Julian Day number: it is equal to JDN - 2400000.5
716 // and so integral MJDs correspond to the midnights (and not noons).
717 // MJD 0 is Nov 17, 1858
718 double GetModifiedJulianDayNumber() const { return GetJDN() - 2400000.5; }
719 double GetMJD() const { return GetModifiedJulianDayNumber(); }
720
721 // get the Rata Die number
722 double GetRataDie() const;
723
724 // TODO algorithms for calculating some important dates, such as
725 // religious holidays (Easter...) or moon/solar eclipses? Some
726 // algorithms can be found in the calendar FAQ
727
728 // timezone stuff: a wxDateTime object constructed using given
729 // day/month/year/hour/min/sec values correspond to this moment in local
730 // time. Using the functions below, it may be converted to another time
731 // zone (for example, the Unix epoch is wxDateTime(1, Jan, 1970).ToGMT())
732 //
733 // these functions try to handle DST internally, but there is no magical
734 // way to know all rules for it in all countries in the world, so if the
735 // program can handle it itself (or doesn't want to handle it at all for
736 // whatever reason), the DST handling can be disabled with noDST.
737 //
738 // Converting to the local time zone doesn't do anything.
739 // ------------------------------------------------------------------------
740
741 // transform to any given timezone
742 inline wxDateTime ToTimezone(const TimeZone& tz, bool noDST = FALSE) const;
743 wxDateTime& MakeTimezone(const TimeZone& tz, bool noDST = FALSE);
744
745 // transform to GMT/UTC
746 wxDateTime ToGMT(bool noDST = FALSE) const { return ToTimezone(GMT0, noDST); }
747 wxDateTime& MakeGMT(bool noDST = FALSE) { return MakeTimezone(GMT0, noDST); }
748
749 // is daylight savings time in effect at this moment according to the
750 // rules of the specified country?
751 //
752 // Return value is > 0 if DST is in effect, 0 if it is not and -1 if
753 // the information is not available (this is compatible with ANSI C)
754 int IsDST(Country country = Country_Default) const;
755
756 // accessors: many of them take the timezone parameter which indicates the
757 // timezone for which to make the calculations and the default value means
758 // to do it for the current timezone of this machine (even if the function
759 // only operates with the date it's necessary because a date may wrap as
760 // result of timezone shift)
761 // ------------------------------------------------------------------------
762
763 // is the date valid? Note that this will return TRUE for non
764 // initialized objects but FALSE if *this == wxInvalidDateTime
765 inline bool IsValid() const { return m_time != wxInvalidDateTime.m_time; }
766
767 // get the broken down date/time representation in the given timezone
768 //
769 // If you wish to get several time components (day, month and year),
770 // consider getting the whole Tm strcuture first and retrieving the
771 // value from it - this is much more efficient
772 Tm GetTm(const TimeZone& tz = Local) const;
773
774 // get the number of seconds since the Unix epoch - returns (time_t)-1
775 // if the value is out of range
776 inline time_t GetTicks() const;
777
778 // get the year (returns Inv_Year if date is invalid)
779 int GetYear(const TimeZone& tz = Local) const
780 { return GetTm(tz).year; }
781 // get the month (Inv_Month if date is invalid)
782 Month GetMonth(const TimeZone& tz = Local) const
783 { return (Month)GetTm(tz).mon; }
784 // get the month day (in 1..31 range, 0 if date is invalid)
785 wxDateTime_t GetDay(const TimeZone& tz = Local) const
786 { return GetTm(tz).mday; }
787 // get the day of the week (Inv_WeekDay if date is invalid)
788 WeekDay GetWeekDay(const TimeZone& tz = Local) const
789 { return GetTm(tz).GetWeekDay(); }
790 // get the hour of the day
791 wxDateTime_t GetHour(const TimeZone& tz = Local) const
792 { return GetTm(tz).hour; }
793 // get the minute
794 wxDateTime_t GetMinute(const TimeZone& tz = Local) const
795 { return GetTm(tz).min; }
796 // get the second
797 wxDateTime_t GetSecond(const TimeZone& tz = Local) const
798 { return GetTm(tz).sec; }
799 // get milliseconds
800 wxDateTime_t GetMillisecond(const TimeZone& tz = Local) const
801 { return GetTm(tz).msec; }
802
803 // get the day since the year start (1..366, 0 if date is invalid)
804 wxDateTime_t GetDayOfYear(const TimeZone& tz = Local) const;
805 // get the week number since the year start (1..52 or 53, 0 if date is
806 // invalid)
807 wxDateTime_t GetWeekOfYear(WeekFlags flags = Monday_First,
808 const TimeZone& tz = Local) const;
809 // get the week number since the month start (1..5, 0 if date is
810 // invalid)
811 wxDateTime_t GetWeekOfMonth(WeekFlags flags = Monday_First,
812 const TimeZone& tz = Local) const;
813
814 // is this date a work day? This depends on a country, of course,
815 // because the holidays are different in different countries
816 bool IsWorkDay(Country country = Country_Default) const;
817
818 // is this date later than Gregorian calendar introduction for the
819 // given country (see enum GregorianAdoption)?
820 //
821 // NB: this function shouldn't be considered as absolute authority in
822 // the matter. Besides, for some countries the exact date of
823 // adoption of the Gregorian calendar is simply unknown.
824 bool IsGregorianDate(GregorianAdoption country = Gr_Standard) const;
825
826 // comparison (see also functions below for operator versions)
827 // ------------------------------------------------------------------------
828
829 // returns TRUE if the two moments are strictly identical
830 inline bool IsEqualTo(const wxDateTime& datetime) const;
831
832 // returns TRUE if the date is strictly earlier than the given one
833 inline bool IsEarlierThan(const wxDateTime& datetime) const;
834
835 // returns TRUE if the date is strictly later than the given one
836 inline bool IsLaterThan(const wxDateTime& datetime) const;
837
838 // returns TRUE if the date is strictly in the given range
839 inline bool IsStrictlyBetween(const wxDateTime& t1,
840 const wxDateTime& t2) const;
841
842 // returns TRUE if the date is in the given range
843 inline bool IsBetween(const wxDateTime& t1, const wxDateTime& t2) const;
844
845 // do these two objects refer to the same date?
846 inline bool IsSameDate(const wxDateTime& dt) const;
847
848 // do these two objects have the same time?
849 inline bool IsSameTime(const wxDateTime& dt) const;
850
851 // are these two objects equal up to given timespan?
852 inline bool IsEqualUpTo(const wxDateTime& dt, const wxTimeSpan& ts) const;
853
854 // arithmetics with dates (see also below for more operators)
855 // ------------------------------------------------------------------------
856
857 // return the sum of the date with a time span (positive or negative)
858 inline wxDateTime Add(const wxTimeSpan& diff) const;
859 // add a time span (positive or negative)
860 inline wxDateTime& Add(const wxTimeSpan& diff);
861 // add a time span (positive or negative)
862 inline wxDateTime& operator+=(const wxTimeSpan& diff);
863
864 // return the difference of the date with a time span
865 inline wxDateTime Subtract(const wxTimeSpan& diff) const;
866 // subtract a time span (positive or negative)
867 inline wxDateTime& Subtract(const wxTimeSpan& diff);
868 // subtract a time span (positive or negative)
869 inline wxDateTime& operator-=(const wxTimeSpan& diff);
870
871 // return the sum of the date with a date span
872 inline wxDateTime Add(const wxDateSpan& diff) const;
873 // add a date span (positive or negative)
874 wxDateTime& Add(const wxDateSpan& diff);
875 // add a date span (positive or negative)
876 inline wxDateTime& operator+=(const wxDateSpan& diff);
877
878 // return the difference of the date with a date span
879 inline wxDateTime Subtract(const wxDateSpan& diff) const;
880 // subtract a date span (positive or negative)
881 inline wxDateTime& Subtract(const wxDateSpan& diff);
882 // subtract a date span (positive or negative)
883 inline wxDateTime& operator-=(const wxDateSpan& diff);
884
885 // return the difference between two dates
886 inline wxTimeSpan Subtract(const wxDateTime& dt) const;
887
888 // conversion to/from text: all conversions from text return the pointer to
889 // the next character following the date specification (i.e. the one where
890 // the scan had to stop) or NULL on failure.
891 // ------------------------------------------------------------------------
892
893 // parse a string in RFC 822 format (found e.g. in mail headers and
894 // having the form "Wed, 10 Feb 1999 19:07:07 +0100")
895 const wxChar *ParseRfc822Date(const wxChar* date);
896 // parse a date/time in the given format (see strptime(3)), fill in
897 // the missing (in the string) fields with the values of dateDef (by
898 // default, they will not change if they had valid values or will
899 // default to Today() otherwise)
900 const wxChar *ParseFormat(const wxChar *date,
901 const wxChar *format = _T("%c"),
902 const wxDateTime& dateDef = wxDefaultDateTime);
903 // parse a string containing the date/time in "free" format, this
904 // function will try to make an educated guess at the string contents
905 const wxChar *ParseDateTime(const wxChar *datetime);
906 // parse a string containing the date only in "free" format (less
907 // flexible than ParseDateTime)
908 const wxChar *ParseDate(const wxChar *date);
909 // parse a string containing the time only in "free" format
910 const wxChar *ParseTime(const wxChar *time);
911
912 // this function accepts strftime()-like format string (default
913 // argument corresponds to the preferred date and time representation
914 // for the current locale) and returns the string containing the
915 // resulting text representation
916 wxString Format(const wxChar *format = _T("%c"),
917 const TimeZone& tz = Local) const;
918 // preferred date representation for the current locale
919 wxString FormatDate() const { return Format(_T("%x")); }
920 // preferred time representation for the current locale
921 wxString FormatTime() const { return Format(_T("%X")); }
922 // returns the string representing the date in ISO 8601 format
923 // (YYYY-MM-DD)
924 wxString FormatISODate() const { return Format(_T("%Y-%m-%d")); }
925 // returns the string representing the time in ISO 8601 format
926 // (HH:MM:SS)
927 wxString FormatISOTime() const { return Format(_T("%H:%M:%S")); }
928
929 // implementation
930 // ------------------------------------------------------------------------
931
932 // construct from internal representation
933 wxDateTime(const wxLongLong& time) { m_time = time; }
934
935 // get the internal representation
936 inline wxLongLong GetValue() const;
937
938 // a helper function to get the current time_t
939 static time_t GetTimeNow() { return time((time_t *)NULL); }
940
941 // another one to get the current time broken down
942 static struct tm *GetTmNow()
943 {
944 time_t t = GetTimeNow();
945 return localtime(&t);
946 }
947
948 private:
949 // the current country - as it's the same for all program objects (unless
950 // it runs on a _really_ big cluster system :-), this is a static member:
951 // see SetCountry() and GetCountry()
952 static Country ms_country;
953
954 // this constant is used to transform a time_t value to the internal
955 // representation, as time_t is in seconds and we use milliseconds it's
956 // fixed to 1000
957 static const long TIME_T_FACTOR;
958
959 // returns TRUE if we fall in range in which we can use standard ANSI C
960 // functions
961 inline bool IsInStdRange() const;
962
963 // the internal representation of the time is the amount of milliseconds
964 // elapsed since the origin which is set by convention to the UNIX/C epoch
965 // value: the midnight of January 1, 1970 (UTC)
966 wxLongLong m_time;
967 };
968
969 // ----------------------------------------------------------------------------
970 // This class contains a difference between 2 wxDateTime values, so it makes
971 // sense to add it to wxDateTime and it is the result of subtraction of 2
972 // objects of that class. See also wxDateSpan.
973 // ----------------------------------------------------------------------------
974
975 class WXDLLEXPORT wxTimeSpan
976 {
977 public:
978 // constructors
979 // ------------------------------------------------------------------------
980
981 // return the timespan for the given number of seconds
982 static wxTimeSpan Seconds(long sec) { return wxTimeSpan(0, 0, sec); }
983 static wxTimeSpan Second() { return Seconds(1); }
984
985 // return the timespan for the given number of minutes
986 static wxTimeSpan Minutes(long min) { return wxTimeSpan(0, min, 0 ); }
987 static wxTimeSpan Minute() { return Minutes(1); }
988
989 // return the timespan for the given number of hours
990 static wxTimeSpan Hours(long hours) { return wxTimeSpan(hours, 0, 0); }
991 static wxTimeSpan Hour() { return Hours(1); }
992
993 // return the timespan for the given number of days
994 static wxTimeSpan Days(long days) { return Hours(24 * days); }
995 static wxTimeSpan Day() { return Days(1); }
996
997 // return the timespan for the given number of weeks
998 static wxTimeSpan Weeks(long days) { return Days(7 * days); }
999 static wxTimeSpan Week() { return Weeks(1); }
1000
1001 // default ctor constructs the 0 time span
1002 wxTimeSpan() { }
1003
1004 // from separate values for each component, date set to 0 (hours are
1005 // not restricted to 0..24 range, neither are minutes, seconds or
1006 // milliseconds)
1007 inline wxTimeSpan(long hours,
1008 long minutes = 0,
1009 long seconds = 0,
1010 long milliseconds = 0);
1011
1012 // default copy ctor is ok
1013
1014 // no dtor
1015
1016 // arithmetics with time spans (see also below for more operators)
1017 // ------------------------------------------------------------------------
1018
1019 // return the sum of two timespans
1020 inline wxTimeSpan Add(const wxTimeSpan& diff) const;
1021 // add two timespans together
1022 inline wxTimeSpan& Add(const wxTimeSpan& diff);
1023 // add two timespans together
1024 wxTimeSpan& operator+=(const wxTimeSpan& diff) { return Add(diff); }
1025
1026 // return the difference of two timespans
1027 inline wxTimeSpan Subtract(const wxTimeSpan& diff) const;
1028 // subtract another timespan
1029 inline wxTimeSpan& Subtract(const wxTimeSpan& diff);
1030 // subtract another timespan
1031 wxTimeSpan& operator-=(const wxTimeSpan& diff) { return Subtract(diff); }
1032
1033 // multiply timespan by a scalar
1034 inline wxTimeSpan Multiply(int n) const;
1035 // multiply timespan by a scalar
1036 inline wxTimeSpan& Multiply(int n);
1037 // multiply timespan by a scalar
1038 wxTimeSpan& operator*=(int n) { return Multiply(n); }
1039
1040 // return this timespan with inversed sign
1041 wxTimeSpan Negate() const { return wxTimeSpan(-GetValue()); }
1042 // negate the value of the timespan
1043 wxTimeSpan& Neg() { m_diff = -GetValue(); return *this; }
1044 // negate the value of the timespan
1045 wxTimeSpan& operator-() { return Neg(); }
1046
1047 // return the absolute value of the timespan: does _not_ modify the
1048 // object
1049 inline wxTimeSpan Abs() const;
1050
1051 // there is intentionally no division because we don't want to
1052 // introduce rounding errors in time calculations
1053
1054 // comparaison (see also operator versions below)
1055 // ------------------------------------------------------------------------
1056
1057 // is the timespan null?
1058 bool IsNull() const { return m_diff == 0l; }
1059 // returns true if the timespan is null
1060 bool operator!() const { return !IsNull(); }
1061
1062 // is the timespan positive?
1063 bool IsPositive() const { return m_diff > 0l; }
1064
1065 // is the timespan negative?
1066 bool IsNegative() const { return m_diff < 0l; }
1067
1068 // are two timespans equal?
1069 inline bool IsEqualTo(const wxTimeSpan& ts) const;
1070 // compare two timestamps: works with the absolute values, i.e. -2
1071 // hours is longer than 1 hour. Also, it will return FALSE if the
1072 // timespans are equal in absolute value.
1073 inline bool IsLongerThan(const wxTimeSpan& ts) const;
1074 // compare two timestamps: works with the absolute values, i.e. 1
1075 // hour is shorter than -2 hours. Also, it will return FALSE if the
1076 // timespans are equal in absolute value.
1077 bool IsShorterThan(const wxTimeSpan& t) const { return !IsLongerThan(t); }
1078
1079 // breaking into days, hours, minutes and seconds
1080 // ------------------------------------------------------------------------
1081
1082 // get the max number of weeks in this timespan
1083 inline int GetWeeks() const;
1084 // get the max number of days in this timespan
1085 inline int GetDays() const;
1086 // get the max number of hours in this timespan
1087 inline int GetHours() const;
1088 // get the max number of minutes in this timespan
1089 inline int GetMinutes() const;
1090 // get the max number of seconds in this timespan
1091 inline wxLongLong GetSeconds() const;
1092 // get the number of milliseconds in this timespan
1093 wxLongLong GetMilliseconds() const { return m_diff; }
1094
1095 // conversion to text
1096 // ------------------------------------------------------------------------
1097
1098 // this function accepts strftime()-like format string (default
1099 // argument corresponds to the preferred date and time representation
1100 // for the current locale) and returns the string containing the
1101 // resulting text representation. Notice that only some of format
1102 // specifiers valid for wxDateTime are valid for wxTimeSpan: hours,
1103 // minutes and seconds make sense, but not "PM/AM" string for example.
1104 wxString Format(const wxChar *format = _T("%H:%M:%S")) const;
1105
1106 // implementation
1107 // ------------------------------------------------------------------------
1108
1109 // construct from internal representation
1110 wxTimeSpan(const wxLongLong& diff) { m_diff = diff; }
1111
1112 // get the internal representation
1113 wxLongLong GetValue() const { return m_diff; }
1114
1115 private:
1116 // the (signed) time span in milliseconds
1117 wxLongLong m_diff;
1118 };
1119
1120 // ----------------------------------------------------------------------------
1121 // This class is a "logical time span" and is useful for implementing program
1122 // logic for such things as "add one month to the date" which, in general,
1123 // doesn't mean to add 60*60*24*31 seconds to it, but to take the same date
1124 // the next month (to understand that this is indeed different consider adding
1125 // one month to Feb, 15 - we want to get Mar, 15, of course).
1126 //
1127 // When adding a month to the date, all lesser components (days, hours, ...)
1128 // won't be changed unless the resulting date would be invalid: for example,
1129 // Jan 31 + 1 month will be Feb 28, not (non existing) Feb 31.
1130 //
1131 // Because of this feature, adding and subtracting back again the same
1132 // wxDateSpan will *not*, in general give back the original date: Feb 28 - 1
1133 // month will be Jan 28, not Jan 31!
1134 //
1135 // wxDateSpan can be either positive or negative. They may be
1136 // multiplied by scalars which multiply all deltas by the scalar: i.e. 2*(1
1137 // month and 1 day) is 2 months and 2 days. They can be added together and
1138 // with wxDateTime or wxTimeSpan, but the type of result is different for each
1139 // case.
1140 //
1141 // Beware about weeks: if you specify both weeks and days, the total number of
1142 // days added will be 7*weeks + days! See also GetTotalDays() function.
1143 //
1144 // Finally, notice that for adding hours, minutes &c you don't need this
1145 // class: wxTimeSpan will do the job because there are no subtleties
1146 // associated with those.
1147 // ----------------------------------------------------------------------------
1148
1149 class WXDLLEXPORT wxDateSpan
1150 {
1151 public:
1152 // constructors
1153 // ------------------------------------------------------------------------
1154
1155 // this many years/months/weeks/days
1156 wxDateSpan(int years = 0, int months = 0, int weeks = 0, int days = 0)
1157 {
1158 m_years = years;
1159 m_months = months;
1160 m_weeks = weeks;
1161 m_days = days;
1162 }
1163
1164 // get an object for the given number of days
1165 static wxDateSpan Days(int days) { return wxDateSpan(0, 0, 0, days); }
1166 static wxDateSpan Day() { return Days(1); }
1167
1168 // get an object for the given number of weeks
1169 static wxDateSpan Weeks(int weeks) { return wxDateSpan(0, 0, weeks, 0); }
1170 static wxDateSpan Week() { return Weeks(1); }
1171
1172 // get an object for the given number of months
1173 static wxDateSpan Months(int mon) { return wxDateSpan(0, mon, 0, 0); }
1174 static wxDateSpan Month() { return Months(1); }
1175
1176 // get an object for the given number of years
1177 static wxDateSpan Years(int years) { return wxDateSpan(years, 0, 0, 0); }
1178 static wxDateSpan Year() { return Years(1); }
1179
1180 // default copy ctor is ok
1181
1182 // no dtor
1183
1184 // accessors (all SetXXX() return the (modified) wxDateSpan object)
1185 // ------------------------------------------------------------------------
1186
1187 // set number of years
1188 wxDateSpan& SetYears(int n) { m_years = n; return *this; }
1189 // set number of months
1190 wxDateSpan& SetMonths(int n) { m_months = n; return *this; }
1191 // set number of weeks
1192 wxDateSpan& SetWeeks(int n) { m_weeks = n; return *this; }
1193 // set number of days
1194 wxDateSpan& SetDays(int n) { m_days = n; return *this; }
1195
1196 // get number of years
1197 int GetYears() const { return m_years; }
1198 // get number of months
1199 int GetMonths() const { return m_months; }
1200 // get number of weeks
1201 int GetWeeks() const { return m_weeks; }
1202 // get number of days
1203 int GetDays() const { return m_days; }
1204 // returns 7*GetWeeks() + GetDays()
1205 int GetTotalDays() const { return 7*m_weeks + m_days; }
1206
1207 // arithmetics with date spans (see also below for more operators)
1208 // ------------------------------------------------------------------------
1209
1210 // return sum of two date spans
1211 inline wxDateSpan Add(const wxDateSpan& other) const;
1212 // add another wxDateSpan to us
1213 inline wxDateSpan& Add(const wxDateSpan& other);
1214 // add another wxDateSpan to us
1215 inline wxDateSpan& operator+=(const wxDateSpan& other);
1216
1217 // return difference of two date spans
1218 inline wxDateSpan Subtract(const wxDateSpan& other) const;
1219 // subtract another wxDateSpan from us
1220 inline wxDateSpan& Subtract(const wxDateSpan& other);
1221 // subtract another wxDateSpan from us
1222 inline wxDateSpan& operator-=(const wxDateSpan& other);
1223
1224 // return a copy of this time span with changed sign
1225 inline wxDateSpan Negate() const;
1226 // inverse the sign of this timespan
1227 inline wxDateSpan& Neg();
1228 // inverse the sign of this timespan
1229 wxDateSpan& operator-() { return Neg(); }
1230
1231 // return the date span proportional to this one with given factor
1232 inline wxDateSpan Multiply(int factor) const;
1233 // multiply all components by a (signed) number
1234 inline wxDateSpan& Multiply(int factor);
1235 // multiply all components by a (signed) number
1236 inline wxDateSpan& operator*=(int factor) { return Multiply(factor); }
1237
1238 private:
1239 int m_years,
1240 m_months,
1241 m_weeks,
1242 m_days;
1243 };
1244
1245 // ----------------------------------------------------------------------------
1246 // wxDateTimeArray: array of dates.
1247 // ----------------------------------------------------------------------------
1248
1249 #include "wx/dynarray.h"
1250
1251 WX_DECLARE_EXPORTED_OBJARRAY(wxDateTime, wxDateTimeArray);
1252
1253 // ----------------------------------------------------------------------------
1254 // wxDateTimeHolidayAuthority: an object of this class will decide whether a
1255 // given date is a holiday and is used by all functions working with "work
1256 // days".
1257 //
1258 // NB: the base class is an ABC, derived classes must implement the pure
1259 // virtual methods to work with the holidays they correspond to.
1260 // ----------------------------------------------------------------------------
1261
1262 class WXDLLEXPORT wxDateTimeHolidayAuthority;
1263 WX_DEFINE_EXPORTED_ARRAY(wxDateTimeHolidayAuthority *, wxHolidayAuthoritiesArray);
1264
1265 class wxDateTimeHolidaysModule;
1266 class WXDLLEXPORT wxDateTimeHolidayAuthority
1267 {
1268 friend class wxDateTimeHolidaysModule;
1269 public:
1270 // returns TRUE if the given date is a holiday
1271 static bool IsHoliday(const wxDateTime& dt);
1272
1273 // fills the provided array with all holidays in the given range, returns
1274 // the number of them
1275 static size_t GetHolidaysInRange(const wxDateTime& dtStart,
1276 const wxDateTime& dtEnd,
1277 wxDateTimeArray& holidays);
1278
1279 // clear the list of holiday authorities
1280 static void ClearAllAuthorities();
1281
1282 // add a new holiday authority (the pointer will be deleted by
1283 // wxDateTimeHolidayAuthority)
1284 static void AddAuthority(wxDateTimeHolidayAuthority *auth);
1285
1286 protected:
1287 // this function is called to determine whether a given day is a holiday
1288 virtual bool DoIsHoliday(const wxDateTime& dt) const = 0;
1289
1290 // this function should fill the array with all holidays between the two
1291 // given dates - it is implemented in the base class, but in a very
1292 // inefficient way (it just iterates over all days and uses IsHoliday() for
1293 // each of them), so it must be overridden in the derived class where the
1294 // base class version may be explicitly used if needed
1295 //
1296 // returns the number of holidays in the given range and fills holidays
1297 // array
1298 virtual size_t DoGetHolidaysInRange(const wxDateTime& dtStart,
1299 const wxDateTime& dtEnd,
1300 wxDateTimeArray& holidays) const = 0;
1301
1302 private:
1303 // all holiday authorities
1304 static wxHolidayAuthoritiesArray ms_authorities;
1305 };
1306
1307 // the holidays for this class are all Saturdays and Sundays
1308 class WXDLLEXPORT wxDateTimeWorkDays : public wxDateTimeHolidayAuthority
1309 {
1310 protected:
1311 virtual bool DoIsHoliday(const wxDateTime& dt) const;
1312 virtual size_t DoGetHolidaysInRange(const wxDateTime& dtStart,
1313 const wxDateTime& dtEnd,
1314 wxDateTimeArray& holidays) const;
1315 };
1316
1317 // ============================================================================
1318 // inline functions implementation
1319 // ============================================================================
1320
1321 // don't include inline functions definitions when we're included from anything
1322 // else than datetime.cpp in debug builds: this minimizes rebuilds if we change
1323 // some inline function and the performance doesn't matter in the debug builds.
1324
1325 #if !defined(__WXDEBUG__) || defined(wxDEFINE_TIME_CONSTANTS)
1326 #define INCLUDED_FROM_WX_DATETIME_H
1327 #include "wx/datetime.inl"
1328 #undef INCLUDED_FROM_WX_DATETIME_H
1329 #endif
1330
1331 // if we defined it to be empty above, restore it now
1332 #undef inline
1333
1334 // ============================================================================
1335 // binary operators
1336 // ============================================================================
1337
1338 // ----------------------------------------------------------------------------
1339 // wxDateTime operators
1340 // ----------------------------------------------------------------------------
1341
1342 // arithmetics
1343 // -----------
1344
1345 // no need to check for validity - the member functions we call will do it
1346
1347 inline wxDateTime WXDLLEXPORT operator+(const wxDateTime& dt,
1348 const wxTimeSpan& ts)
1349 {
1350 return dt.Add(ts);
1351 }
1352
1353 inline wxDateTime WXDLLEXPORT operator-(const wxDateTime& dt,
1354 const wxTimeSpan& ts)
1355 {
1356 return dt.Subtract(ts);
1357 }
1358
1359 inline wxDateTime WXDLLEXPORT operator+(const wxDateTime& dt,
1360 const wxDateSpan& ds)
1361 {
1362 return dt.Add(ds);
1363 }
1364
1365 inline wxDateTime WXDLLEXPORT operator-(const wxDateTime& dt,
1366 const wxDateSpan& ds)
1367 {
1368 return dt.Subtract(ds);
1369 }
1370
1371 inline wxTimeSpan WXDLLEXPORT operator-(const wxDateTime& dt1,
1372 const wxDateTime& dt2)
1373 {
1374 return dt1.Subtract(dt2);
1375 }
1376
1377 // comparison
1378 // ----------
1379
1380 inline bool WXDLLEXPORT operator<(const wxDateTime& t1, const wxDateTime& t2)
1381 {
1382 wxASSERT_MSG( t1.IsValid() && t2.IsValid(), _T("invalid wxDateTime") );
1383
1384 return t1.GetValue() < t2.GetValue();
1385 }
1386
1387 inline bool WXDLLEXPORT operator<=(const wxDateTime& t1, const wxDateTime& t2)
1388 {
1389 wxASSERT_MSG( t1.IsValid() && t2.IsValid(), _T("invalid wxDateTime") );
1390
1391 return t1.GetValue() <= t2.GetValue();
1392 }
1393
1394 inline bool WXDLLEXPORT operator>(const wxDateTime& t1, const wxDateTime& t2)
1395 {
1396 wxASSERT_MSG( t1.IsValid() && t2.IsValid(), _T("invalid wxDateTime") );
1397
1398 return t1.GetValue() > t2.GetValue();
1399 }
1400
1401 inline bool WXDLLEXPORT operator>=(const wxDateTime& t1, const wxDateTime& t2)
1402 {
1403 wxASSERT_MSG( t1.IsValid() && t2.IsValid(), _T("invalid wxDateTime") );
1404
1405 return t1.GetValue() >= t2.GetValue();
1406 }
1407
1408 inline bool WXDLLEXPORT operator==(const wxDateTime& t1, const wxDateTime& t2)
1409 {
1410 wxASSERT_MSG( t1.IsValid() && t2.IsValid(), _T("invalid wxDateTime") );
1411
1412 return t1.GetValue() == t2.GetValue();
1413 }
1414
1415 inline bool WXDLLEXPORT operator!=(const wxDateTime& t1, const wxDateTime& t2)
1416 {
1417 wxASSERT_MSG( t1.IsValid() && t2.IsValid(), _T("invalid wxDateTime") );
1418
1419 return t1.GetValue() != t2.GetValue();
1420 }
1421
1422 // ----------------------------------------------------------------------------
1423 // wxTimeSpan operators
1424 // ----------------------------------------------------------------------------
1425
1426 // arithmetics
1427 // -----------
1428
1429 inline wxTimeSpan WXDLLEXPORT operator+(const wxTimeSpan& ts1,
1430 const wxTimeSpan& ts2)
1431 {
1432 return wxTimeSpan(ts1.GetValue() + ts2.GetValue());
1433 }
1434
1435 inline wxTimeSpan WXDLLEXPORT operator-(const wxTimeSpan& ts1,
1436 const wxTimeSpan& ts2)
1437 {
1438 return wxTimeSpan(ts1.GetValue() - ts2.GetValue());
1439 }
1440
1441 inline wxTimeSpan WXDLLEXPORT operator*(const wxTimeSpan& ts, int n)
1442 {
1443 return wxTimeSpan(ts).Multiply(n);
1444 }
1445
1446 inline wxTimeSpan WXDLLEXPORT operator*(int n, const wxTimeSpan& ts)
1447 {
1448 return wxTimeSpan(ts).Multiply(n);
1449 }
1450
1451 // comparison
1452 // ----------
1453
1454 inline bool WXDLLEXPORT operator<(const wxTimeSpan &t1, const wxTimeSpan &t2)
1455 {
1456 return t1.GetValue() < t2.GetValue();
1457 }
1458
1459 inline bool WXDLLEXPORT operator<=(const wxTimeSpan &t1, const wxTimeSpan &t2)
1460 {
1461 return t1.GetValue() <= t2.GetValue();
1462 }
1463
1464 inline bool WXDLLEXPORT operator>(const wxTimeSpan &t1, const wxTimeSpan &t2)
1465 {
1466 return t1.GetValue() > t2.GetValue();
1467 }
1468
1469 inline bool WXDLLEXPORT operator>=(const wxTimeSpan &t1, const wxTimeSpan &t2)
1470 {
1471 return t1.GetValue() >= t2.GetValue();
1472 }
1473
1474 inline bool WXDLLEXPORT operator==(const wxTimeSpan &t1, const wxTimeSpan &t2)
1475 {
1476 return t1.GetValue() == t2.GetValue();
1477 }
1478
1479 inline bool WXDLLEXPORT operator!=(const wxTimeSpan &t1, const wxTimeSpan &t2)
1480 {
1481 return t1.GetValue() != t2.GetValue();
1482 }
1483
1484 // ----------------------------------------------------------------------------
1485 // wxDateSpan
1486 // ----------------------------------------------------------------------------
1487
1488 // arithmetics
1489 // -----------
1490
1491 inline WXDLLEXPORT wxDateSpan operator+(const wxDateSpan& ds1,
1492 const wxDateSpan& ds2)
1493 {
1494 return wxDateSpan(ds1.GetYears() + ds2.GetYears(),
1495 ds1.GetMonths() + ds2.GetMonths(),
1496 ds1.GetWeeks() + ds2.GetWeeks(),
1497 ds1.GetDays() + ds2.GetDays());
1498 }
1499
1500 inline WXDLLEXPORT wxDateSpan operator-(const wxDateSpan& ds1,
1501 const wxDateSpan& ds2)
1502 {
1503 return wxDateSpan(ds1.GetYears() - ds2.GetYears(),
1504 ds1.GetMonths() - ds2.GetMonths(),
1505 ds1.GetWeeks() - ds2.GetWeeks(),
1506 ds1.GetDays() - ds2.GetDays());
1507 }
1508
1509 inline WXDLLEXPORT wxDateSpan operator*(const wxDateSpan& ds, int n)
1510 {
1511 return wxDateSpan(ds).Multiply(n);
1512 }
1513
1514 inline WXDLLEXPORT wxDateSpan operator*(int n, const wxDateSpan& ds)
1515 {
1516 return wxDateSpan(ds).Multiply(n);
1517 }
1518
1519 // ============================================================================
1520 // other helper functions
1521 // ============================================================================
1522
1523 // ----------------------------------------------------------------------------
1524 // iteration helpers: can be used to write a for loop over enum variable like
1525 // this:
1526 // for ( m = wxDateTime::Jan; m < wxDateTime::Inv_Month; wxNextMonth(m) )
1527 // ----------------------------------------------------------------------------
1528
1529 inline WXDLLEXPORT void wxNextMonth(wxDateTime::Month& m)
1530 {
1531 wxASSERT_MSG( m < wxDateTime::Inv_Month, _T("invalid month") );
1532
1533 // no wrapping or the for loop above would never end!
1534 m = (wxDateTime::Month)(m + 1);
1535 }
1536
1537 inline WXDLLEXPORT void wxPrevMonth(wxDateTime::Month& m)
1538 {
1539 wxASSERT_MSG( m < wxDateTime::Inv_Month, _T("invalid month") );
1540
1541 m = m == wxDateTime::Jan ? wxDateTime::Inv_Month
1542 : (wxDateTime::Month)(m - 1);
1543 }
1544
1545 inline WXDLLEXPORT void wxNextWDay(wxDateTime::WeekDay& wd)
1546 {
1547 wxASSERT_MSG( wd < wxDateTime::Inv_WeekDay, _T("invalid week day") );
1548
1549 // no wrapping or the for loop above would never end!
1550 wd = (wxDateTime::WeekDay)(wd + 1);
1551 }
1552
1553 inline WXDLLEXPORT void wxPrevWDay(wxDateTime::WeekDay& wd)
1554 {
1555 wxASSERT_MSG( wd < wxDateTime::Inv_WeekDay, _T("invalid week day") );
1556
1557 wd = wd == wxDateTime::Sun ? wxDateTime::Inv_WeekDay
1558 : (wxDateTime::WeekDay)(wd - 1);
1559 }
1560
1561 #endif // _WX_DATETIME_H