]>
git.saurik.com Git - wxWidgets.git/blob - include/wx/time.h
1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: wxTime class, from NIHCL
4 // Author: Julian Smart, after K. E. Gorlen
8 // Copyright: (c) Julian Smart and Markus Holzem
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
15 #include "wx/object.h"
20 #pragma interface "time.h"
23 class WXDLLEXPORT wxDate
;
25 typedef unsigned short hourTy
;
26 typedef unsigned short minuteTy
;
27 typedef unsigned short secondTy
;
28 typedef unsigned long clockTy
;
30 class WXDLLEXPORT wxTime
: public wxObject
32 DECLARE_DYNAMIC_CLASS(wxTime
)
34 public: // type definitions
35 enum tFormat
{ wx12h
, wx24h
};
36 enum tPrecision
{ wxStdMinSec
, wxStdMin
};
38 static tFormat Format
;
39 static tPrecision Precision
;
41 clockTy sec
; /* seconds since 1/1/1901 */
44 wxTime
GetLocalTime() const;
45 private: // static member functions
46 static wxTime
GetLocalTime(const wxDate
& date
, hourTy h
=0, minuteTy m
=0, secondTy s
=0);
47 static wxTime
GetBeginDST(unsigned year
);
48 static wxTime
GetEndDST(unsigned year
);
50 wxTime(); // current time
51 wxTime(clockTy s
) { sec
= s
; }
52 void operator=(const wxTime
& t
) { sec
= t
.sec
; } // Ordering required for some compilers
53 wxTime(const wxTime
& t
) { (*this) = t
; }
54 wxTime(hourTy h
, minuteTy m
, secondTy s
=0, bool dst
=FALSE
);
55 wxTime(const wxDate
&, hourTy h
=0, minuteTy m
=0, secondTy s
=0, bool dst
=FALSE
);
59 operator wxChar
* (void);
60 operator wxDate() const;
63 bool operator<(const wxTime
& t
) const { return sec
< t
.sec
; }
64 bool operator<=(const wxTime
& t
) const { return sec
<= t
.sec
; }
65 bool operator>(const wxTime
& t
) const { return sec
> t
.sec
; }
66 bool operator>=(const wxTime
& t
) const { return sec
>= t
.sec
; }
67 bool operator==(const wxTime
& t
) const { return sec
== t
.sec
; }
68 bool operator!=(const wxTime
& t
) const { return sec
!= t
.sec
; }
69 friend wxTime
operator+(const wxTime
& t
, long s
) { return wxTime(t
.sec
+s
); }
70 friend wxTime
operator+(long s
, const wxTime
& t
) { return wxTime(t
.sec
+s
); }
71 long operator-(const wxTime
& t
) const { return sec
- t
.sec
; }
72 wxTime
operator-(long s
) const { return wxTime(sec
-s
); }
73 void operator+=(long s
) { sec
+= s
; }
74 void operator-=(long s
) { sec
-= s
; }
75 bool IsBetween(const wxTime
& a
, const wxTime
& b
) const;
83 /// Get day of week (0=Sunday 6=Saturday)
84 int GetDayOfWeek() const;
86 hourTy
GetHour() const; // hour in local time
87 hourTy
GetHourGMT() const; // hour in GMT
88 minuteTy
GetMinute() const; // minute in local time
89 minuteTy
GetMinuteGMT() const; // minute in GMT
90 secondTy
GetSecond() const; // second in local time or GMT
91 clockTy
GetSeconds() const { return sec
; }
92 secondTy
GetSecondGMT() const ;
93 wxTime
Max(const wxTime
&) const;
94 wxTime
Min(const wxTime
&) const;
95 static void SetFormat(const tFormat lFormat
= wx12h
,
96 const tPrecision lPrecision
= wxStdMinSec
);
97 wxChar
*FormatTime() const;
99 virtual int compare(const Object&) const;
100 virtual void deepenShallowCopy(); // {}
101 virtual unsigned hash() const;
102 virtual bool isEqual(const Object&) const;
103 virtual void printOn(ostream& strm =cout) const;
104 virtual const Class* species() const;