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