]> git.saurik.com Git - wxWidgets.git/blame - include/wx/datetime.h
wxMotif::wxControl() ctor added, now wxCalendarCtrl compiles ok
[wxWidgets.git] / include / wx / datetime.h
CommitLineData
0979c962
VZ
1/////////////////////////////////////////////////////////////////////////////
2// Name: wx/datetime.h
3// Purpose: declarations of time/date related classes (wxDateTime,
4// wxTimeSpan)
5// Author: Vadim Zeitlin
6// Modified by:
7// Created: 10.02.99
8// RCS-ID: $Id$
9// Copyright: (c) 1998 Vadim Zeitlin <zeitlin@dptmaths.ens-cachan.fr>
10// Licence: wxWindows license
11/////////////////////////////////////////////////////////////////////////////
12
2f02cb89
VZ
13#ifndef _WX_DATETIME_H
14#define _WX_DATETIME_H
0979c962
VZ
15
16#ifdef __GNUG__
17 #pragma interface "datetime.h"
18#endif
19
20#include <time.h>
b76b015e 21#include <limits.h> // for INT_MIN
0979c962
VZ
22
23#include "wx/longlong.h"
24
25class WXDLLEXPORT wxDateTime;
26class WXDLLEXPORT wxTimeSpan;
27class WXDLLEXPORT wxDateSpan;
28
2f02cb89
VZ
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#ifdef __WXDEBUG__
34 #define inline
35#endif // Debug
36
0979c962
VZ
37/*
38 * TODO Well, everything :-)
39 *
299fcbfe
VZ
40 * + 1. Time zones with minutes (make TimeZone a class)
41 * 2. getdate() function like under Solaris
42 * + 3. text conversion for wxDateSpan
43 * 4. pluggable modules for the workdays calculations
0979c962
VZ
44 */
45
46/*
299fcbfe 47 The three (main) classes declared in this header represent:
0979c962
VZ
48
49 1. An absolute moment in the time (wxDateTime)
50 2. A difference between two moments in the time, positive or negative
51 (wxTimeSpan)
52 3. A logical difference between two dates expressed in
53 years/months/weeks/days (wxDateSpan)
54
55 The following arithmetic operations are permitted (all others are not):
56
57 addition
58 --------
59
60 wxDateTime + wxTimeSpan = wxDateTime
61 wxDateTime + wxDateSpan = wxDateTime
62 wxTimeSpan + wxTimeSpan = wxTimeSpan
63 wxDateSpan + wxDateSpan = wxDateSpan
64
65 substraction
66 ------------
67 wxDateTime - wxDateTime = wxTimeSpan
cd0b1709
VZ
68 wxDateTime - wxTimeSpan = wxDateTime
69 wxDateTime - wxDateSpan = wxDateTime
0979c962
VZ
70 wxTimeSpan - wxTimeSpan = wxTimeSpan
71 wxDateSpan - wxDateSpan = wxDateSpan
72
73 multiplication
74 --------------
75 wxTimeSpan * number = wxTimeSpan
cd0b1709 76 number * wxTimeSpan = wxTimeSpan
0979c962 77 wxDateSpan * number = wxDateSpan
cd0b1709 78 number * wxDateSpan = wxDateSpan
0979c962
VZ
79
80 unitary minus
81 -------------
82 -wxTimeSpan = wxTimeSpan
83 -wxDateSpan = wxDateSpan
cd0b1709
VZ
84
85 For each binary operation OP (+, -, *) we have the following operatorOP=() as
86 a method and the method with a symbolic name OPER (Add, Substract, Multiply)
87 as a synonym for it and another const method with the same name which returns
88 the changed copy of the object and operatorOP() as a global function which is
89 implemented in terms of the const version of OPEN. For the unary - we have
90 operator-() as a method, Neg() as synonym for it and Negate() which returns
91 the copy of the object with the changed sign.
0979c962
VZ
92*/
93
2ef31e80
VZ
94// an invalid/default date time object which may be used as the default
95// argument for arguments of type wxDateTime; it is also returned by all
96// functions returning wxDateTime on failure (this is why it is also called
97// wxInvalidDateTime)
98class WXDLLEXPORT wxDateTime;
99
100WXDLLEXPORT_DATA(extern wxDateTime&) wxDefaultDateTime;
101#define wxInvalidDateTime wxDefaultDateTime
102
0979c962 103// ----------------------------------------------------------------------------
cd0b1709 104// wxDateTime represents an absolute moment in the time
0979c962 105// ----------------------------------------------------------------------------
b76b015e 106
0979c962
VZ
107class WXDLLEXPORT wxDateTime
108{
109public:
110 // types
111 // ------------------------------------------------------------------------
112
cd0b1709
VZ
113 // a small unsigned integer type for storing things like minutes,
114 // seconds &c. It should be at least short (i.e. not char) to contain
115 // the number of milliseconds - it may also be 'int' because there is
116 // no size penalty associated with it in our code, we don't store any
117 // data in this format
0979c962
VZ
118 typedef unsigned short wxDateTime_t;
119
f0f951fa
VZ
120 // constants
121 // ------------------------------------------------------------------------
122
0979c962 123 // the timezones
b76b015e 124 enum TZ
0979c962
VZ
125 {
126 // the time in the current time zone
127 Local,
128
129 // zones from GMT (= Greenwhich Mean Time): they're guaranteed to be
130 // consequent numbers, so writing something like `GMT0 + offset' is
131 // safe if abs(offset) <= 12
132
133 // underscore stands for minus
134 GMT_12, GMT_11, GMT_10, GMT_9, GMT_8, GMT_7,
135 GMT_6, GMT_5, GMT_4, GMT_3, GMT_2, GMT_1,
136 GMT0,
137 GMT1, GMT2, GMT3, GMT4, GMT5, GMT6,
138 GMT7, GMT8, GMT9, GMT10, GMT11, GMT12,
139 // Note that GMT12 and GMT_12 are not the same: there is a difference
140 // of exactly one day between them
141
fcc3d7cb
VZ
142 // some symbolic names for TZ
143
144 // Europe
145 WET = GMT0, // Western Europe Time
146 WEST = GMT1, // Western Europe Summer Time
147 CET = GMT1, // Central Europe Time
148 CEST = GMT2, // Central Europe Summer Time
149 EET = GMT2, // Eastern Europe Time
150 EEST = GMT3, // Eastern Europe Summer Time
151 MSK = GMT3, // Moscow Time
152 MSD = GMT4, // Moscow Summer Time
153
154 // US and Canada
155 AST = GMT_4, // Atlantic Standard Time
156 ADT = GMT_3, // Atlantic Daylight Time
157 EST = GMT_5, // Eastern Standard Time
158 EDT = GMT_4, // Eastern Daylight Saving Time
159 CST = GMT_6, // Central Standard Time
160 CDT = GMT_5, // Central Daylight Saving Time
161 MST = GMT_7, // Mountain Standard Time
162 MDT = GMT_6, // Mountain Daylight Saving Time
163 PST = GMT_8, // Pacific Standard Time
164 PDT = GMT_7, // Pacific Daylight Saving Time
165 HST = GMT_10, // Hawaiian Standard Time
166 AKST = GMT_9, // Alaska Standard Time
167 AKDT = GMT_8, // Alaska Daylight Saving Time
168
169 // Australia
170
171 A_WST = GMT8, // Western Standard Time
172 A_CST = GMT12 + 1, // Central Standard Time (+9.5)
173 A_EST = GMT10, // Eastern Standard Time
174 A_ESST = GMT11, // Eastern Summer Time
175
176 // TODO add more symbolic timezone names here
177
178 // Universal Coordinated Time = the new and politically correct name
179 // for GMT
0979c962 180 UTC = GMT0
0979c962
VZ
181 };
182
183 // the calendar systems we know about: notice that it's valid (for
184 // this classes purpose anyhow) to work with any of these calendars
185 // even with the dates before the historical appearance of the
186 // calendar
187 enum Calendar
188 {
189 Gregorian, // current calendar
190 Julian // calendar in use since -45 until the 1582 (or later)
191
192 // TODO Hebrew, Chinese, Maya, ... (just kidding) (or then may be not?)
193 };
194
195 // these values only are used to identify the different dates of
196 // adoption of the Gregorian calendar (see IsGregorian())
197 //
198 // All data and comments taken verbatim from "The Calendar FAQ (v 2.0)"
199