]>
Commit | Line | Data |
---|---|---|
f6bcfd97 BP |
1 | ///////////////////////////////////////////////////////////////////////////// |
2 | // Name: utils.i | |
3 | // Purpose: SWIG definitions of various utility classes | |
4 | // | |
5 | // Author: Robin Dunn | |
6 | // | |
c368d904 | 7 | // Created: 25-Nov-1998 |
f6bcfd97 BP |
8 | // RCS-ID: $Id$ |
9 | // Copyright: (c) 1998 by Total Control Software | |
10 | // Licence: wxWindows license | |
11 | ///////////////////////////////////////////////////////////////////////////// | |
12 | ||
13 | ||
14 | %module utils | |
15 | ||
16 | %{ | |
4acff284 | 17 | #include "helpers.h" |
f6bcfd97 BP |
18 | #include <wx/config.h> |
19 | #include <wx/fileconf.h> | |
20 | #include <wx/datetime.h> | |
21 | %} | |
22 | ||
137b5242 RD |
23 | //--------------------------------------------------------------------------- |
24 | %{ | |
25 | // Put some wx default wxChar* values into wxStrings. | |
2a74d141 | 26 | DECLARE_DEF_STRING2(DateFormatStr, wxT("%c")); |
137b5242 RD |
27 | static const wxString wxPyEmptyString(wxT("")); |
28 | ||
29 | %} | |
f6bcfd97 BP |
30 | //--------------------------------------------------------------------------- |
31 | ||
32 | %include typemaps.i | |
33 | %include my_typemaps.i | |
34 | ||
c368d904 RD |
35 | // Import some definitions of other classes, etc. |
36 | %import _defs.i | |
37 | ||
f6bcfd97 BP |
38 | %pragma(python) code = "import string" |
39 | ||
40 | ||
41 | //--------------------------------------------------------------------------- | |
42 | ||
43 | %{ | |
44 | static PyObject* __EnumerationHelper(bool flag, wxString& str, long index) { | |
45 | PyObject* ret = PyTuple_New(3); | |
46 | if (ret) { | |
47 | PyTuple_SET_ITEM(ret, 0, PyInt_FromLong(flag)); | |
c8bc7bb8 RD |
48 | #if wxUSE_UNICODE |
49 | PyTuple_SET_ITEM(ret, 1, PyUnicode_FromUnicode(str.c_str(), str.Len())); | |
50 | #else | |
51 | PyTuple_SET_ITEM(ret, 1, PyString_FromStringAndSize(str.c_str(), str.Len())); | |
52 | #endif | |
f6bcfd97 BP |
53 | PyTuple_SET_ITEM(ret, 2, PyInt_FromLong(index)); |
54 | } | |
55 | return ret; | |
56 | } | |
57 | %} | |
58 | ||
59 | //--------------------------------------------------------------------------- | |
60 | ||
61 | enum | |
62 | { | |
3b3ab7f6 RD |
63 | wxCONFIG_USE_LOCAL_FILE, |
64 | wxCONFIG_USE_GLOBAL_FILE, | |
65 | wxCONFIG_USE_RELATIVE_PATH, | |
66 | wxCONFIG_USE_NO_ESCAPE_CHARACTERS | |
f6bcfd97 BP |
67 | }; |
68 | ||
69 | //--------------------------------------------------------------------------- | |
70 | ||
71 | class wxConfigBase { | |
72 | public: | |
137b5242 RD |
73 | // wxConfigBase(const wxString& appName = wxPyEmptyString, **** An ABC |
74 | // const wxString& vendorName = wxPyEmptyString, | |
75 | // const wxString& localFilename = wxPyEmptyString, | |
76 | // const wxString& globalFilename = wxPyEmptyString, | |
f6bcfd97 BP |
77 | // long style = 0); |
78 | ~wxConfigBase(); | |
79 | ||
80 | enum EntryType | |
81 | { | |
82 | Type_Unknown, | |
83 | Type_String, | |
84 | Type_Boolean, | |
85 | Type_Integer, // use Read(long *) | |
86 | Type_Float // use Read(double *) | |
87 | }; | |
88 | ||
89 | // static functions | |
90 | // sets the config object, returns the previous pointer | |
91 | static wxConfigBase *Set(wxConfigBase *pConfig); | |
92 | // get the config object, creates it on demand unless DontCreateOnDemand | |
93 | // was called | |
94 | static wxConfigBase *Get(bool createOnDemand = TRUE); | |
95 | // create a new config object: this function will create the "best" | |
96 | // implementation of wxConfig available for the current platform, see | |
97 | // comments near definition wxUSE_CONFIG_NATIVE for details. It returns | |
98 | // the created object and also sets it as ms_pConfig. | |
99 | static wxConfigBase *Create(); | |
100 | // should Get() try to create a new log object if the current one is NULL? | |
101 | static void DontCreateOnDemand(); | |
102 | ||
103 | ||
104 | ||
105 | bool DeleteAll(); // This is supposed to have been fixed... | |
106 | bool DeleteEntry(const wxString& key, bool bDeleteGroupIfEmpty = TRUE); | |
107 | bool DeleteGroup(const wxString& key); | |
108 | bool Exists(wxString& strName); | |
109 | bool Flush(bool bCurrentOnly = FALSE); | |
110 | wxString GetAppName(); | |
111 | ||
112 | ||
113 | // Each of these enumeration methods return a 3-tuple consisting of | |
114 | // the continue flag, the value string, and the index for the next call. | |
115 | %addmethods { | |
116 | PyObject* GetFirstGroup() { | |
117 | bool cont; | |
118 | long index = 0; | |
119 | wxString value; | |
120 | ||
121 | cont = self->GetFirstGroup(value, index); | |
122 | return __EnumerationHelper(cont, value, index); | |
123 | } | |
124 | ||
125 | PyObject* GetFirstEntry() { | |
126 | bool cont; | |
127 | long index = 0; | |
128 | wxString value; | |
129 | ||
130 | cont = self->GetFirstEntry(value, index); | |
131 | return __EnumerationHelper(cont, value, index); | |
132 | } | |
133 | ||
134 | PyObject* GetNextGroup(long index) { | |
135 | bool cont; | |
136 | wxString value; | |
137 | ||
138 | cont = self->GetNextGroup(value, index); | |
139 | return __EnumerationHelper(cont, value, index); | |
140 | } | |
141 | ||
142 | PyObject* GetNextEntry(long index) { | |
143 | bool cont; | |
144 | wxString value; | |
145 | ||
146 | cont = self->GetNextEntry(value, index); | |
147 | return __EnumerationHelper(cont, value, index); | |
148 | } | |
149 | } | |
150 | ||
151 | ||
152 | int GetNumberOfEntries(bool bRecursive = FALSE); | |
153 | int GetNumberOfGroups(bool bRecursive = FALSE); | |
154 | wxString GetPath(); | |
155 | wxString GetVendorName(); | |
156 | bool HasEntry(wxString& strName); | |
157 | bool HasGroup(const wxString& strName); | |
158 | bool IsExpandingEnvVars(); | |
159 | bool IsRecordingDefaults(); | |
160 | ||
137b5242 | 161 | wxString Read(const wxString& key, const wxString& defaultVal = wxPyEmptyString); |
b5a5d647 RD |
162 | |
163 | %addmethods { | |
164 | long ReadInt(const wxString& key, long defaultVal = 0) { | |
165 | long rv; | |
166 | self->Read(key, &rv, defaultVal); | |
167 | return rv; | |
168 | } | |
169 | double ReadFloat(const wxString& key, double defaultVal = 0.0) { | |
170 | double rv; | |
171 | self->Read(key, &rv, defaultVal); | |
172 | return rv; | |
173 | } | |
174 | bool ReadBool(const wxString& key, bool defaultVal = FALSE) { | |
175 | bool rv; | |
176 | self->Read(key, &rv, defaultVal); | |
177 | return rv; | |
178 | } | |
179 | } | |
f6bcfd97 BP |
180 | |
181 | void SetExpandEnvVars (bool bDoIt = TRUE); | |
182 | void SetPath(const wxString& strPath); | |
183 | void SetRecordDefaults(bool bDoIt = TRUE); | |
184 | void SetAppName(const wxString& appName); | |
185 | void SetVendorName(const wxString& vendorName); | |
186 | ||
187 | void SetStyle(long style); | |
188 | long GetStyle(); | |
189 | ||
190 | bool Write(const wxString& key, const wxString& value); | |
191 | %name(WriteInt)bool Write(const wxString& key, long value); | |
192 | %name(WriteFloat)bool Write(const wxString& key, double value); | |
b5a5d647 | 193 | %name(WriteBool)bool Write(const wxString& key, bool value); |
f6bcfd97 BP |
194 | |
195 | EntryType GetEntryType(const wxString& name); | |
196 | bool RenameEntry(const wxString& oldName, | |
197 | const wxString& newName); | |
198 | bool RenameGroup(const wxString& oldName, | |
199 | const wxString& newName); | |
200 | wxString ExpandEnvVars(const wxString& str); | |
201 | ||
202 | ||
203 | }; | |
204 | ||
b5a5d647 | 205 | |
f6bcfd97 BP |
206 | //--------------------------------------------------------------------------- |
207 | ||
b5a5d647 | 208 | // This will be a wxRegConfig on Win32 and wxFileConfig otherwise. |
f6bcfd97 BP |
209 | class wxConfig : public wxConfigBase { |
210 | public: | |
137b5242 RD |
211 | wxConfig(const wxString& appName = wxPyEmptyString, |
212 | const wxString& vendorName = wxPyEmptyString, | |
213 | const wxString& localFilename = wxPyEmptyString, | |
214 | const wxString& globalFilename = wxPyEmptyString, | |
f6bcfd97 BP |
215 | long style = 0); |
216 | ~wxConfig(); | |
217 | }; | |
218 | ||
b5a5d647 RD |
219 | |
220 | // Sometimes it's nice to explicitly have a wxFileConfig too. | |
f6bcfd97 BP |
221 | class wxFileConfig : public wxConfigBase { |
222 | public: | |
137b5242 RD |
223 | wxFileConfig(const wxString& appName = wxPyEmptyString, |
224 | const wxString& vendorName = wxPyEmptyString, | |
225 | const wxString& localFilename = wxPyEmptyString, | |
226 | const wxString& globalFilename = wxPyEmptyString, | |
f6bcfd97 BP |
227 | long style = 0); |
228 | ~wxFileConfig(); | |
229 | }; | |
230 | ||
231 | ||
232 | //--------------------------------------------------------------------------- | |
233 | //--------------------------------------------------------------------------- | |
234 | ||
235 | class wxDateTime; | |
236 | class wxTimeSpan; | |
237 | class wxDateSpan; | |
238 | ||
239 | ||
240 | %typemap(python,in) wxDateTime::TimeZone& { | |
241 | $target = new wxDateTime::TimeZone((wxDateTime::TZ)PyInt_AsLong($source)); | |
242 | } | |
243 | %typemap(python,freearg) wxDateTime::TimeZone& { | |
244 | if ($source) delete $source; | |
245 | } | |
246 | ||
247 | %{ | |
248 | #define LOCAL *(new wxDateTime::TimeZone(wxDateTime::Local)) | |
249 | %} | |
250 | ||
251 | ||
252 | %typemap(python, out) wxLongLong { | |
253 | PyObject *hi, *lo, *shifter, *shifted; | |
254 | hi = PyLong_FromLong($source->GetHi()); | |
255 | lo = PyLong_FromLong($source->GetLo()); | |
256 | shifter = PyLong_FromLong(32); | |
257 | shifted = PyNumber_Lshift(hi, shifter); | |
258 | $target = PyNumber_Or(shifted, lo); | |
259 | Py_DECREF(hi); | |
260 | Py_DECREF(lo); | |
261 | Py_DECREF(shifter); | |
262 | Py_DECREF(shifted); | |
263 | } | |
264 | ||
265 | ||
266 | ||
267 | ||
268 | class wxDateTime { | |
269 | public: | |
270 | typedef unsigned short wxDateTime_t; | |
271 | ||
272 | enum TZ | |
273 | { | |
274 | Local, | |
275 | ||
276 | GMT_12, GMT_11, GMT_10, GMT_9, GMT_8, GMT_7, | |
277 | GMT_6, GMT_5, GMT_4, GMT_3, GMT_2, GMT_1, | |
278 | GMT0, | |
279 | GMT1, GMT2, GMT3, GMT4, GMT5, GMT6, | |
280 | GMT7, GMT8, GMT9, GMT10, GMT11, GMT12, | |
281 | ||
282 | // Europe | |
283 | WET = GMT0, // Western Europe Time | |
284 | WEST = GMT1, // Western Europe Summer Time | |
285 | CET = GMT1, // Central Europe Time | |
286 | CEST = GMT2, // Central Europe Summer Time | |
287 | EET = GMT2, // Eastern Europe Time | |
288 | EEST = GMT3, // Eastern Europe Summer Time | |
289 | MSK = GMT3, // Moscow Time | |
290 | MSD = GMT4, // Moscow Summer Time | |
291 | ||
292 | // US and Canada | |
293 | AST = GMT_4, // Atlantic Standard Time | |
294 | ADT = GMT_3, // Atlantic Daylight Time | |
295 | EST = GMT_5, // Eastern Standard Time | |
296 | EDT = GMT_4, // Eastern Daylight Saving Time | |
297 | CST = GMT_6, // Central Standard Time | |
298 | CDT = GMT_5, // Central Daylight Saving Time | |
299 | MST = GMT_7, // Mountain Standard Time | |
300 | MDT = GMT_6, // Mountain Daylight Saving Time | |
301 | PST = GMT_8, // Pacific Standard Time | |
302 | PDT = GMT_7, // Pacific Daylight Saving Time | |
303 | HST = GMT_10, // Hawaiian Standard Time | |
304 | AKST = GMT_9, // Alaska Standard Time | |
305 | AKDT = GMT_8, // Alaska Daylight Saving Time | |
306 | ||
307 | // Australia | |
308 | ||
309 | A_WST = GMT8, // Western Standard Time | |
310 | A_CST = GMT12 + 1, // Central Standard Time (+9.5) | |
311 | A_EST = GMT10, // Eastern Standard Time | |
312 | A_ESST = GMT11, // Eastern Summer Time | |
313 | ||
314 | // Universal Coordinated Time = the new and politically correct name | |
315 | // for GMT | |
316 | UTC = GMT0 | |
317 | }; | |
318 | ||
319 | enum Calendar | |
320 | { | |
321 | Gregorian, // current calendar | |
322 | Julian // calendar in use since -45 until the 1582 (or later) | |
323 | }; | |
324 | ||
325 | enum Country | |
326 | { | |
327 | Country_Unknown, // no special information for this country | |
328 | Country_Default, // set the default country with SetCountry() method | |
329 | // or use the default country with any other | |
330 | ||
331 | // Western European countries: we assume that they all follow the same | |
332 | // DST rules (true or false?) | |
333 | Country_WesternEurope_Start, | |
334 | Country_EEC = Country_WesternEurope_Start, | |
335 | France, | |
336 | Germany, | |
337 | UK, | |
338 | Country_WesternEurope_End = UK, | |
339 | ||
340 | Russia, | |
341 | ||
342 | USA | |
343 | }; | |
344 | ||
345 | // symbolic names for the months | |
346 | enum Month | |
347 | { | |
348 | Jan, Feb, Mar, Apr, May, Jun, Jul, Aug, Sep, Oct, Nov, Dec, Inv_Month | |
349 | }; | |
350 | ||
351 | // symbolic names for the weekdays | |
352 | enum WeekDay | |
353 | { | |
354 | Sun, Mon, Tue, Wed, Thu, Fri, Sat, Inv_WeekDay | |
355 | }; | |
356 | ||
357 | // invalid value for the year | |
358 | enum Year | |
359 | { | |
360 | Inv_Year = SHRT_MIN // should hold in wxDateTime_t | |
361 | }; | |
362 | ||
363 | // flags for GetWeekDayName and GetMonthName | |
364 | enum NameFlags | |
365 | { | |
366 | Name_Full = 0x01, // return full name | |
367 | Name_Abbr = 0x02 // return abbreviated name | |
368 | }; | |
369 | ||
370 | // flags for GetWeekOfYear and GetWeekOfMonth | |
371 | enum WeekFlags | |
372 | { | |
373 | Default_First, // Sunday_First for US, Monday_First for the rest | |
374 | Monday_First, // week starts with a Monday | |
375 | Sunday_First // week starts with a Sunday | |
376 | }; | |
377 | ||
378 | ||
379 | // static methods | |
380 | // ------------------------------------------------------------------------ | |
381 | ||
382 | // set the current country | |
383 | static void SetCountry(Country country); | |
384 | // get the current country | |
385 | static Country GetCountry(); | |
386 | ||
387 | // return TRUE if the country is a West European one (in practice, | |
388 | // this means that the same DST rules as for EEC apply) | |
389 | static bool IsWestEuropeanCountry(Country country = Country_Default); | |
390 | ||
391 | // return the current year | |
392 | static int GetCurrentYear(Calendar cal = Gregorian); | |
393 | ||
394 | // convert the year as returned by wxDateTime::GetYear() to a year | |
395 | // suitable for BC/AD notation. The difference is that BC year 1 | |
396 | // corresponds to the year 0 (while BC year 0 didn't exist) and AD | |
397 | // year N is just year N. | |
398 | static int ConvertYearToBC(int year); | |
399 | ||
400 | // return the current month | |
401 | static Month GetCurrentMonth(Calendar cal = Gregorian); | |
402 | ||
403 | // returns TRUE if the given year is a leap year in the given calendar | |
404 | static bool IsLeapYear(int year = Inv_Year, Calendar cal = Gregorian); | |
405 | ||
406 | // get the century (19 for 1999, 20 for 2000 and -5 for 492 BC) | |
407 | static int GetCentury(int year = Inv_Year); | |
408 | ||
409 | // returns the number of days in this year (356 or 355 for Gregorian | |
410 | // calendar usually :-) | |
411 | %name(GetNumberOfDaysinYear) | |
412 | static wxDateTime_t GetNumberOfDays(int year, Calendar cal = Gregorian); | |
413 | ||
414 | // get the number of the days in the given month (default value for | |
415 | // the year means the current one) | |
416 | %name(GetNumberOfDaysInMonth) | |
417 | static wxDateTime_t GetNumberOfDays(Month month, | |
418 | int year = Inv_Year, | |
419 | Calendar cal = Gregorian); | |
420 | ||
421 | // get the full (default) or abbreviated month name in the current | |
422 | // locale, returns empty string on error | |
423 | static wxString GetMonthName(Month month, | |
424 | NameFlags flags = Name_Full); | |
425 | ||
426 | // get the full (default) or abbreviated weekday name in the current | |
427 | // locale, returns empty string on error | |
428 | static wxString GetWeekDayName(WeekDay weekday, | |
429 | NameFlags flags = Name_Full); | |
430 | ||
431 | // get the AM and PM strings in the current locale (may be empty) | |
432 | static void GetAmPmStrings(wxString *OUTPUT, wxString *OUTPUT); | |
433 | ||
434 | // return TRUE if the given country uses DST for this year | |
435 | static bool IsDSTApplicable(int year = Inv_Year, | |
436 | Country country = Country_Default); | |
437 | ||
438 | // get the beginning of DST for this year, will return invalid object | |
439 | // if no DST applicable in this year. The default value of the | |
440 | // parameter means to take the current year. | |
441 | static wxDateTime GetBeginDST(int year = Inv_Year, | |
442 | Country country = Country_Default); | |
443 | // get the end of DST for this year, will return invalid object | |
444 | // if no DST applicable in this year. The default value of the | |
445 | // parameter means to take the current year. | |
446 | static wxDateTime GetEndDST(int year = Inv_Year, | |
447 | Country country = Country_Default); | |
448 | ||
449 | // return the wxDateTime object for the current time | |
450 | static inline wxDateTime Now(); | |
451 | ||
452 | // return the wxDateTime object for today midnight: i.e. as Now() but | |
453 | // with time set to 0 | |
454 | static inline wxDateTime Today(); | |
455 | ||
456 | ||
457 | ||
458 | // ------------------------------------------------------------------------ | |
459 | // constructors | |
460 | ||
461 | wxDateTime(); | |
462 | %name(wxDateTimeFromTimeT)wxDateTime(time_t timet); | |
463 | %name(wxDateTimeFromJDN)wxDateTime(double jdn); | |
464 | %name(wxDateTimeFromHMS)wxDateTime(wxDateTime_t hour, | |
465 | wxDateTime_t minute = 0, | |
466 | wxDateTime_t second = 0, | |
467 | wxDateTime_t millisec = 0); | |
468 | %name(wxDateTimeFromDMY)wxDateTime(wxDateTime_t day, | |
469 | Month month = Inv_Month, | |
470 | int year = Inv_Year, | |
471 | wxDateTime_t hour = 0, | |
472 | wxDateTime_t minute = 0, | |
473 | wxDateTime_t second = 0, | |
474 | wxDateTime_t millisec = 0); | |
475 | ||
476 | ~wxDateTime(); | |
477 | ||
478 | // ------------------------------------------------------------------------ | |
479 | // Set methods | |
480 | ||
481 | wxDateTime& SetToCurrent(); | |
482 | ||
483 | // set to given time_t value | |
484 | %name(SetTimeT)wxDateTime& Set(time_t timet); | |
485 | ||
486 | // set to given JDN (beware of rounding errors) | |
487 | %name(SetJDN)wxDateTime& Set(double jdn); | |
488 | ||
489 | // set to given time, date = today | |
490 | %name(SetHMS)wxDateTime& Set(wxDateTime_t hour, | |
491 | wxDateTime_t minute = 0, | |
492 | wxDateTime_t second = 0, | |
493 | wxDateTime_t millisec = 0); | |
494 | ||
495 | // from separate values for each component with explicit date | |
496 | // (defaults for month and year are the current values) | |
497 | wxDateTime& Set(wxDateTime_t day, | |
498 | Month month = Inv_Month, | |
499 | int year = Inv_Year, // 1999, not 99 please! | |
500 | wxDateTime_t hour = 0, | |
501 | wxDateTime_t minute = 0, | |
502 | wxDateTime_t second = 0, | |
503 | wxDateTime_t millisec = 0); | |
504 | ||
505 | // resets time to 00:00:00, doesn't change the date | |
506 | wxDateTime& ResetTime(); | |
507 | ||
508 | // the following functions don't change the values of the other | |
509 | // fields, i.e. SetMinute() won't change either hour or seconds value | |
510 | ||
511 | // set the year | |
512 | wxDateTime& SetYear(int year); | |
513 | // set the month | |
514 | wxDateTime& SetMonth(Month month); | |
515 | // set the day of the month | |
516 | wxDateTime& SetDay(wxDateTime_t day); | |
517 | // set hour | |
518 | wxDateTime& SetHour(wxDateTime_t hour); | |
519 | // set minute | |
520 | wxDateTime& SetMinute(wxDateTime_t minute); | |
521 | // set second | |
522 | wxDateTime& SetSecond(wxDateTime_t second); | |
523 | // set millisecond | |
524 | wxDateTime& SetMillisecond(wxDateTime_t millisecond); | |
525 | ||
526 | ||
527 | // ------------------------------------------------------------------------ | |
528 | // calendar calculations | |
529 | ||
530 | // set to the given week day in the same week as this one | |
531 | wxDateTime& SetToWeekDayInSameWeek(WeekDay weekday); | |
532 | wxDateTime GetWeekDayInSameWeek(WeekDay weekday); | |
533 | ||
534 | // set to the next week day following this one | |
535 | wxDateTime& SetToNextWeekDay(WeekDay weekday); | |
536 | wxDateTime GetNextWeekDay(WeekDay weekday); | |
537 | ||
538 | // set to the previous week day before this one | |
539 | wxDateTime& SetToPrevWeekDay(WeekDay weekday); | |
540 | wxDateTime GetPrevWeekDay(WeekDay weekday); | |
541 | ||
542 | // set to Nth occurence of given weekday in the given month of the | |
543 | // given year (time is set to 0), return TRUE on success and FALSE on | |
544 | // failure. n may be positive (1..5) or negative to count from the end | |
545 | // of the month (see helper function SetToLastWeekDay()) | |
546 | bool SetToWeekDay(WeekDay weekday, | |
547 | int n = 1, | |
548 | Month month = Inv_Month, | |
549 | int year = Inv_Year); | |
ecc08ead RD |
550 | // wxDateTime GetWeekDay(WeekDay weekday, |
551 | // int n = 1, | |
552 | // Month month = Inv_Month, | |
553 | // int year = Inv_Year); | |
f6bcfd97 BP |
554 | |
555 | // sets to the last weekday in the given month, year | |
556 | bool SetToLastWeekDay(WeekDay weekday, | |
557 | Month month = Inv_Month, | |
558 | int year = Inv_Year); | |
559 | wxDateTime GetLastWeekDay(WeekDay weekday, | |
560 | Month month = Inv_Month, | |
561 | int year = Inv_Year); | |
562 | ||
563 | // sets the date to the given day of the given week in the year, | |
564 | // returns TRUE on success and FALSE if given date doesn't exist (e.g. | |
565 | // numWeek is > 53) | |
566 | bool SetToTheWeek(wxDateTime_t numWeek, WeekDay weekday = Mon); | |
567 | wxDateTime GetWeek(wxDateTime_t numWeek, WeekDay weekday = Mon); | |
568 | ||
569 | // sets the date to the last day of the given (or current) month or the | |
570 | // given (or current) year | |
571 | wxDateTime& SetToLastMonthDay(Month month = Inv_Month, | |
572 | int year = Inv_Year); | |
573 | wxDateTime GetLastMonthDay(Month month = Inv_Month, | |
574 | int year = Inv_Year); | |
575 | ||
576 | // sets to the given year day (1..365 or 366) | |
577 | wxDateTime& SetToYearDay(wxDateTime_t yday); | |
578 | wxDateTime GetYearDay(wxDateTime_t yday); | |
579 | ||
580 | // The definitions below were taken verbatim from | |
581 | // | |
582 | // http://www.capecod.net/~pbaum/date/date0.htm | |
583 | // | |
584 | // (Peter Baum's home page) | |
585 | // | |
586 | // definition: The Julian Day Number, Julian Day, or JD of a | |
587 | // particular instant of time is the number of days and fractions of a | |
588 | // day since 12 hours Universal Time (Greenwich mean noon) on January | |
589 | // 1 of the year -4712, where the year is given in the Julian | |
590 | // proleptic calendar. The idea of using this reference date was | |
591 | // originally proposed by Joseph Scalizer in 1582 to count years but | |
592 | // it was modified by 19th century astronomers to count days. One | |
593 | // could have equivalently defined the reference time to be noon of | |
594 | // November 24, -4713 if were understood that Gregorian calendar rules | |
595 | // were applied. Julian days are Julian Day Numbers and are not to be | |
596 | // confused with Julian dates. | |
597 | // | |
598 | // definition: The Rata Die number is a date specified as the number | |
599 | // of days relative to a base date of December 31 of the year 0. Thus | |
600 | // January 1 of the year 1 is Rata Die day 1. | |
601 | ||
602 | // get the Julian Day number (the fractional part specifies the time of | |
603 | // the day, related to noon - beware of rounding errors!) | |
604 | double GetJulianDayNumber(); | |
605 | double GetJDN(); | |
606 | ||
607 | // get the Modified Julian Day number: it is equal to JDN - 2400000.5 | |
608 | // and so integral MJDs correspond to the midnights (and not noons). | |
609 | // MJD 0 is Nov 17, 1858 | |
610 | double GetModifiedJulianDayNumber() const { return GetJDN() - 2400000.5; } | |
611 | double GetMJD(); | |
612 | ||
613 | // get the Rata Die number | |
614 | double GetRataDie(); | |
615 | ||
616 | ||
617 | // ------------------------------------------------------------------------ | |
618 | // timezone stuff | |
619 | ||
620 | // transform to any given timezone | |
621 | wxDateTime ToTimezone(const wxDateTime::TimeZone& tz, bool noDST = FALSE); | |
622 | wxDateTime& MakeTimezone(const wxDateTime::TimeZone& tz, bool noDST = FALSE); | |
623 | ||
624 | // transform to GMT/UTC | |
625 | wxDateTime ToGMT(bool noDST = FALSE); | |
626 | wxDateTime& MakeGMT(bool noDST = FALSE); | |
627 | ||
628 | // is daylight savings time in effect at this moment according to the | |
629 | // rules of the specified country? | |
630 | // | |
631 | // Return value is > 0 if DST is in effect, 0 if it is not and -1 if | |
632 | // the information is not available (this is compatible with ANSI C) | |
633 | int IsDST(Country country = Country_Default); | |
634 | ||
635 | ||
636 | ||
637 | // ------------------------------------------------------------------------ | |
638 | // accessors | |
639 | ||
640 | // is the date valid (TRUE even for non initialized objects)? | |
641 | inline bool IsValid() const; | |
642 | ||
643 | // get the number of seconds since the Unix epoch - returns (time_t)-1 | |
644 | // if the value is out of range | |
645 | inline time_t GetTicks() const; | |
646 | ||
647 | // get the year (returns Inv_Year if date is invalid) | |
648 | int GetYear(const wxDateTime::TimeZone& tz = LOCAL) const; | |
649 | ||
650 | // get the month (Inv_Month if date is invalid) | |
651 | Month GetMonth(const wxDateTime::TimeZone& tz = LOCAL) const; | |
652 | ||
653 | // get the month day (in 1..31 range, 0 if date is invalid) | |
654 | wxDateTime_t GetDay(const wxDateTime::TimeZone& tz = LOCAL) const; | |
655 | ||
656 | // get the day of the week (Inv_WeekDay if date is invalid) | |
657 | WeekDay GetWeekDay(const wxDateTime::TimeZone& tz = LOCAL) const; | |
658 | ||
659 | // get the hour of the day | |
660 | wxDateTime_t GetHour(const wxDateTime::TimeZone& tz = LOCAL) const; | |
661 | ||
662 | // get the minute | |
663 | wxDateTime_t GetMinute(const wxDateTime::TimeZone& tz = LOCAL) const; | |
664 | ||
665 | // get the second | |
666 | wxDateTime_t GetSecond(const wxDateTime::TimeZone& tz = LOCAL) const; | |
667 | ||
668 | // get milliseconds | |
669 | wxDateTime_t GetMillisecond(const wxDateTime::TimeZone& tz = LOCAL) const; | |
670 | ||
671 | ||
672 | // get the day since the year start (1..366, 0 if date is invalid) | |
673 | wxDateTime_t GetDayOfYear(const wxDateTime::TimeZone& tz = LOCAL) const; | |
674 | // get the week number since the year start (1..52 or 53, 0 if date is | |
675 | // invalid) | |
676 | wxDateTime_t GetWeekOfYear(WeekFlags flags = Monday_First, | |
677 | const wxDateTime::TimeZone& tz = LOCAL) const; | |
678 | // get the week number since the month start (1..5, 0 if date is | |
679 | // invalid) | |
680 | wxDateTime_t GetWeekOfMonth(WeekFlags flags = Monday_First, | |
681 | const wxDateTime::TimeZone& tz = LOCAL) const; | |
682 | ||
683 | // is this date a work day? This depends on a country, of course, | |
684 | // because the holidays are different in different countries | |
685 | bool IsWorkDay(Country country = Country_Default) const; | |
686 | ||
687 | // is this date later than Gregorian calendar introduction for the | |
688 | // given country (see enum GregorianAdoption)? | |
689 | // | |
690 | // NB: this function shouldn't be considered as absolute authority in | |
691 | // the matter. Besides, for some countries the exact date of | |
692 | // adoption of the Gregorian calendar is simply unknown. | |
693 | //bool IsGregorianDate(GregorianAdoption country = Gr_Standard) const; | |
694 | ||
695 | ||
696 | // ------------------------------------------------------------------------ | |
697 | // comparison (see also functions below for operator versions) | |
698 | ||
699 | // returns TRUE if the two moments are strictly identical | |
700 | inline bool IsEqualTo(const wxDateTime& datetime) const; | |
701 | ||
702 | // returns TRUE if the date is strictly earlier than the given one | |
703 | inline bool IsEarlierThan(const wxDateTime& datetime) const; | |
704 | ||
705 | // returns TRUE if the date is strictly later than the given one | |
706 | inline bool IsLaterThan(const wxDateTime& datetime) const; | |
707 | ||
708 | // returns TRUE if the date is strictly in the given range | |
709 | inline bool IsStrictlyBetween(const wxDateTime& t1, | |
710 | const wxDateTime& t2) const; | |
711 | ||
712 | // returns TRUE if the date is in the given range | |
713 | inline bool IsBetween(const wxDateTime& t1, const wxDateTime& t2) const; | |
714 | ||
715 | // do these two objects refer to the same date? | |
716 | inline bool IsSameDate(const wxDateTime& dt) const; | |
717 | ||
718 | // do these two objects have the same time? | |
719 | inline bool IsSameTime(const wxDateTime& dt) const; | |
720 | ||
721 | // are these two objects equal up to given timespan? | |
722 | inline bool IsEqualUpTo(const wxDateTime& dt, const wxTimeSpan& ts) const; | |
723 | ||
724 | ||
725 | // ------------------------------------------------------------------------ | |
726 | // arithmetics with dates (see also below for more operators) | |
727 | ||
728 | // add a time span (positive or negative) | |
729 | %name(AddTS) wxDateTime& Add(const wxTimeSpan& diff); | |
730 | // add a date span (positive or negative) | |
731 | %name(AddDS) wxDateTime& Add(const wxDateSpan& diff); | |
732 | ||
733 | // subtract a time span (positive or negative) | |
734 | %name(SubtractTS) wxDateTime& Subtract(const wxTimeSpan& diff); | |
735 | ||
736 | // subtract a date span (positive or negative) | |
737 | %name(SubtractDS) wxDateTime& Subtract(const wxDateSpan& diff); | |
738 | ||
739 | // return the difference between two dates | |
740 | wxTimeSpan Subtract(const wxDateTime& dt) const; | |
741 | ||
742 | ||
743 | %addmethods { | |
744 | wxDateTime __add__TS(const wxTimeSpan& other) { return *self + other; } | |
745 | wxDateTime __add__DS(const wxDateSpan& other) { return *self + other; } | |
746 | ||
747 | wxTimeSpan __sub__DT(const wxDateTime& other) { return *self - other; } | |
748 | wxDateTime __sub__TS(const wxTimeSpan& other) { return *self - other; } | |
749 | wxDateTime __sub__DS(const wxDateSpan& other) { return *self - other; } | |
750 | ||
d6eacb25 RD |
751 | int __cmp__(const wxDateTime* other) { |
752 | if (! other) return -1; | |
753 | if (*self < *other) return -1; | |
754 | if (*self == *other) return 0; | |
f6bcfd97 BP |
755 | return 1; |
756 | } | |
757 | } | |
758 | ||
759 | %pragma(python) addtoclass = " | |
760 | def __add__(self, other): | |
761 | if string.find(other.this, 'wxTimeSpan') != -1: | |
762 | return self.__add__TS(other) | |
763 | if string.find(other.this, 'wxDateSpan') != -1: | |
764 | return self.__add__DS(other) | |
765 | raise TypeError, 'Invalid r.h.s. type for __add__' | |
766 | def __sub__(self, other): | |
767 | if string.find(other.this, 'wxDateTime') != -1: | |
768 | return self.__sub__DT(other) | |
769 | if string.find(other.this, 'wxTimeSpan') != -1: | |
770 | return self.__sub__TS(other) | |
771 | if string.find(other.this, 'wxDateSpan') != -1: | |
772 | return self.__sub__DS(other) | |
773 | raise TypeError, 'Invalid r.h.s. type for __sub__' | |
774 | " | |
775 | ||
776 | // ------------------------------------------------------------------------ | |
d6a3401d RD |
777 | // conversion from text: all conversions from text return -1 on failure, |
778 | // or the index in the string where the next character following the date | |
779 | // specification (i.e. the one where the scan had to stop) is located. | |
780 | ||
781 | %addmethods { | |
f6bcfd97 BP |
782 | |
783 | // parse a string in RFC 822 format (found e.g. in mail headers and | |
784 | // having the form "Wed, 10 Feb 1999 19:07:07 +0100") | |
d6a3401d RD |
785 | int ParseRfc822Date(const wxString& date) { |
786 | const wxChar* rv; | |
787 | const wxChar* _date = date; | |
788 | rv = self->ParseRfc822Date(_date); | |
789 | if (rv == NULL) return -1; | |
790 | return rv - _date; | |
791 | } | |
792 | ||
f6bcfd97 BP |
793 | |
794 | // parse a date/time in the given format (see strptime(3)), fill in | |
795 | // the missing (in the string) fields with the values of dateDef (by | |
796 | // default, they will not change if they had valid values or will | |
797 | // default to Today() otherwise) | |
d6a3401d RD |
798 | int ParseFormat(const wxString& date, |
799 | const wxString& format = wxPyDateFormatStr, | |
800 | const wxDateTime& dateDef = wxDefaultDateTime) { | |
801 | const wxChar* rv; | |
802 | const wxChar* _date = date; | |
803 | rv = self->ParseFormat(_date, format, dateDef); | |
804 | if (rv == NULL) return -1; | |
805 | return rv - _date; | |
806 | } | |
f6bcfd97 BP |
807 | |
808 | // parse a string containing the date/time in "free" format, this | |
809 | // function will try to make an educated guess at the string contents | |
d6a3401d RD |
810 | int ParseDateTime(const wxString& datetime) { |
811 | const wxChar* rv; | |
812 | const wxChar* _datetime = datetime; | |
813 | rv = self->ParseDateTime(_datetime); | |
814 | if (rv == NULL) return -1; | |
815 | return rv - _datetime; | |
816 | } | |
817 | ||
f6bcfd97 BP |
818 | |
819 | // parse a string containing the date only in "free" format (less | |
820 | // flexible than ParseDateTime) | |
d6a3401d RD |
821 | int ParseDate(const wxString& date) { |
822 | const wxChar* rv; | |
823 | const wxChar* _date = date; | |
824 | rv = self->ParseDate(_date); | |
825 | if (rv == NULL) return -1; | |
826 | return rv - _date; | |
827 | } | |
f6bcfd97 BP |
828 | |
829 | // parse a string containing the time only in "free" format | |
d6a3401d RD |
830 | int ParseTime(const wxString& time) { |
831 | const wxChar* rv; | |
832 | const wxChar* _time = time; | |
833 | rv = self->ParseTime(_time); | |
834 | if (rv == NULL) return -1; | |
835 | return rv - _time; | |
836 | } | |
837 | } | |
838 | ||
f6bcfd97 BP |
839 | |
840 | // this function accepts strftime()-like format string (default | |
841 | // argument corresponds to the preferred date and time representation | |
842 | // for the current locale) and returns the string containing the | |
843 | // resulting text representation | |
137b5242 | 844 | wxString Format(const wxString& format = wxPyDateFormatStr, |
f6bcfd97 BP |
845 | const wxDateTime::TimeZone& tz = LOCAL) const; |
846 | ||
847 | // preferred date representation for the current locale | |
848 | wxString FormatDate() const; | |
849 | ||
850 | // preferred time representation for the current locale | |
851 | wxString FormatTime() const; | |
852 | ||
853 | // returns the string representing the date in ISO 8601 format | |
854 | // (YYYY-MM-DD) | |
855 | wxString FormatISODate() const; | |
856 | ||
857 | // returns the string representing the time in ISO 8601 format | |
858 | // (HH:MM:SS) | |
859 | wxString FormatISOTime() const; | |
860 | ||
861 | %pragma(python) addtoclass = " | |
862 | def __repr__(self): | |
863 | return '<wxDateTime: \"%s\" at %s>' % ( self.Format(), self.this) | |
864 | def __str__(self): | |
865 | return self.Format() | |
866 | " | |
867 | ||
868 | }; | |
869 | ||
870 | //--------------------------------------------------------------------------- | |
871 | //--------------------------------------------------------------------------- | |
872 | ||
873 | ||
874 | class wxTimeSpan | |
875 | { | |
876 | public: | |
877 | // return the timespan for the given number of seconds | |
878 | static wxTimeSpan Seconds(long sec); | |
879 | static wxTimeSpan Second(); | |
880 | ||
881 | // return the timespan for the given number of minutes | |
882 | static wxTimeSpan Minutes(long min); | |
883 | static wxTimeSpan Minute(); | |
884 | ||
885 | // return the timespan for the given number of hours | |
886 | static wxTimeSpan Hours(long hours); | |
887 | static wxTimeSpan Hour(); | |
888 | ||
889 | // return the timespan for the given number of days | |
890 | static wxTimeSpan Days(long days); | |
891 | static wxTimeSpan Day(); | |
892 | ||
893 | // return the timespan for the given number of weeks | |
894 | static wxTimeSpan Weeks(long days); | |
895 | static wxTimeSpan Week(); | |
896 | ||
897 | // ------------------------------------------------------------------------ | |
898 | // constructors | |
899 | ||
900 | // from separate values for each component, date set to 0 (hours are | |
901 | // not restricted to 0..24 range, neither are minutes, seconds or | |
902 | // milliseconds) | |
903 | wxTimeSpan(long hours = 0, | |
904 | long minutes = 0, | |
905 | long seconds = 0, | |
906 | long milliseconds = 0); | |
907 | ||
908 | ~wxTimeSpan(); | |
909 | ||
910 | // ------------------------------------------------------------------------ | |
911 | // arithmetics with time spans | |
912 | ||
913 | // add two timespans together | |
914 | inline wxTimeSpan& Add(const wxTimeSpan& diff); | |
915 | ||
916 | // subtract another timespan | |
917 | inline wxTimeSpan& Subtract(const wxTimeSpan& diff); | |
918 | ||
919 | // multiply timespan by a scalar | |
920 | inline wxTimeSpan& Multiply(int n); | |
921 | ||
922 | // negate the value of the timespan | |
923 | wxTimeSpan& Neg(); | |
924 | ||
925 | // return the absolute value of the timespan: does _not_ modify the | |
926 | // object | |
927 | inline wxTimeSpan Abs() const; | |
928 | ||
929 | %addmethods { | |
930 | wxTimeSpan __add__(const wxTimeSpan& other) { return *self + other; } | |
931 | wxTimeSpan __sub__(const wxTimeSpan& other) { return *self - other; } | |
932 | wxTimeSpan __mul__(int n) { return *self * n; } | |
933 | wxTimeSpan __rmul__(int n) { return n * *self; } | |
934 | wxTimeSpan __neg__() { return self->Negate(); } | |
d6eacb25 RD |
935 | int __cmp__(const wxTimeSpan* other) { |
936 | if (! other) return -1; | |
937 | if (*self < *other) return -1; | |
938 | if (*self == *other) return 0; | |
f6bcfd97 BP |
939 | return 1; |
940 | } | |
941 | } | |
942 | ||
943 | // comparaison (see also operator versions below) | |
944 | // ------------------------------------------------------------------------ | |
945 | ||
946 | // is the timespan null? | |
947 | bool IsNull() const; | |
948 | ||
949 | // is the timespan positive? | |
950 | bool IsPositive() const; | |
951 | ||
952 | // is the timespan negative? | |
953 | bool IsNegative() const; | |
954 | ||
955 | // are two timespans equal? | |
956 | inline bool IsEqualTo(const wxTimeSpan& ts) const; | |
957 | ||
958 | // compare two timestamps: works with the absolute values, i.e. -2 | |
959 | // hours is longer than 1 hour. Also, it will return FALSE if the | |
960 | // timespans are equal in absolute value. | |
961 | inline bool IsLongerThan(const wxTimeSpan& ts) const; | |
962 | ||
963 | // compare two timestamps: works with the absolute values, i.e. 1 | |
964 | // hour is shorter than -2 hours. Also, it will return FALSE if the | |
965 | // timespans are equal in absolute value. | |
966 | bool IsShorterThan(const wxTimeSpan& t) const; | |
967 | ||
968 | // ------------------------------------------------------------------------ | |
969 | // breaking into days, hours, minutes and seconds | |
970 | ||
971 | // get the max number of weeks in this timespan | |
972 | inline int GetWeeks() const; | |
973 | // get the max number of days in this timespan | |
974 | inline int GetDays() const; | |
975 | // get the max number of hours in this timespan | |
976 | inline int GetHours() const; | |
977 | // get the max number of minutes in this timespan | |
978 | inline int GetMinutes() const; | |
979 | ||
980 | ||
981 | // get the max number of seconds in this timespan | |
982 | inline wxLongLong GetSeconds() const; | |
983 | // get the number of milliseconds in this timespan | |
984 | wxLongLong GetMilliseconds() const; | |
985 | ||
986 | // ------------------------------------------------------------------------ | |
987 | // conversion to text | |
988 | ||
989 | // this function accepts strftime()-like format string (default | |
990 | // argument corresponds to the preferred date and time representation | |
991 | // for the current locale) and returns the string containing the | |
992 | // resulting text representation. Notice that only some of format | |
993 | // specifiers valid for wxDateTime are valid for wxTimeSpan: hours, | |
994 | // minutes and seconds make sense, but not "PM/AM" string for example. | |
137b5242 | 995 | wxString Format(const wxString& format = wxPyDateFormatStr) const; |
f6bcfd97 BP |
996 | |
997 | // // preferred date representation for the current locale | |
998 | // wxString FormatDate() const; | |
999 | ||
1000 | // // preferred time representation for the current locale | |
1001 | // wxString FormatTime() const; | |
1002 | ||
1003 | // %pragma(python) addtoclass = " | |
1004 | // def __repr__(self): | |
1005 | // return '<wxTimeSpan: \"%s\" at %s>' % ( self.Format(), self.this) | |
1006 | // def __str__(self): | |
1007 | // return self.Format() | |
1008 | // " | |
1009 | }; | |
1010 | ||
1011 | ||
1012 | //--------------------------------------------------------------------------- | |
1013 | //--------------------------------------------------------------------------- | |
1014 | ||
1015 | class wxDateSpan | |
1016 | { | |
1017 | public: | |
1018 | // this many years/months/weeks/days | |
1019 | wxDateSpan(int years = 0, int months = 0, int weeks = 0, int days = 0) | |
1020 | { | |
1021 | m_years = years; | |
1022 | m_months = months; | |
1023 | m_weeks = weeks; | |
1024 | m_days = days; | |
1025 | } | |
1026 | ||
1027 | ~wxDateSpan(); | |
1028 | ||
1029 | // get an object for the given number of days | |
1030 | static wxDateSpan Days(int days); | |
1031 | static wxDateSpan Day(); | |
1032 | ||
1033 | // get an object for the given number of weeks | |
1034 | static wxDateSpan Weeks(int weeks); | |
1035 | static wxDateSpan Week(); | |
1036 | ||
1037 | // get an object for the given number of months | |
1038 | static wxDateSpan Months(int mon); | |
1039 | static wxDateSpan Month(); | |
1040 | ||
1041 | // get an object for the given number of years | |
1042 | static wxDateSpan Years(int years); | |
1043 | static wxDateSpan Year(); | |
1044 | ||
1045 | ||
1046 | // ------------------------------------------------------------------------ | |
1047 | ||
1048 | // set number of years | |
1049 | wxDateSpan& SetYears(int n); | |
1050 | // set number of months | |
1051 | wxDateSpan& SetMonths(int n); | |
1052 | // set number of weeks | |
1053 | wxDateSpan& SetWeeks(int n); | |
1054 | // set number of days | |
1055 | wxDateSpan& SetDays(int n); | |
1056 | ||
1057 | // get number of years | |
1058 | int GetYears() const; | |
1059 | // get number of months | |
1060 | int GetMonths() const; | |
1061 | // get number of weeks | |
1062 | int GetWeeks() const; | |
1063 | // get number of days | |
1064 | int GetDays() const; | |
1065 | // returns 7*GetWeeks() + GetDays() | |
1066 | int GetTotalDays() const; | |
1067 | ||
1068 | ||
1069 | // ------------------------------------------------------------------------ | |
1070 | ||
1071 | // add another wxDateSpan to us | |
1072 | inline wxDateSpan& Add(const wxDateSpan& other); | |
1073 | ||
1074 | // subtract another wxDateSpan from us | |
1075 | inline wxDateSpan& Subtract(const wxDateSpan& other); | |
1076 | ||
1077 | // inverse the sign of this timespan | |
1078 | inline wxDateSpan& Neg(); | |
1079 | ||
1080 | // multiply all components by a (signed) number | |
1081 | inline wxDateSpan& Multiply(int factor); | |
1082 | ||
1083 | %addmethods { | |
1084 | wxDateSpan __add__(const wxDateSpan& other) { return *self + other; } | |
1085 | wxDateSpan __sub__(const wxDateSpan& other) { return *self - other; } | |
1086 | wxDateSpan __mul__(int n) { return *self * n; } | |
1087 | wxDateSpan __rmul__(int n) { return n * *self; } | |
1088 | wxDateSpan __neg__() { return self->Negate(); } | |
1089 | } | |
1090 | }; | |
1091 | ||
1092 | ||
1093 | //--------------------------------------------------------------------------- | |
1094 | ||
1095 | long wxGetLocalTime(); | |
1096 | long wxGetUTCTime(); | |
1097 | long wxGetCurrentTime(); | |
1098 | wxLongLong wxGetLocalTimeMillis(); | |
1099 | ||
1100 | //--------------------------------------------------------------------------- | |
1101 | //--------------------------------------------------------------------------- | |
1102 | ||
1103 | %init %{ | |
0b85cc38 RD |
1104 | // These are no longer needed since utils is back in the core |
1105 | // wxClassInfo::CleanUpClasses(); | |
1106 | // wxClassInfo::InitializeClasses(); | |
f6bcfd97 BP |
1107 | %} |
1108 | ||
1109 | //--------------------------------------------------------------------------- | |
1110 |