]>
Commit | Line | Data |
---|---|---|
feb72429 VZ |
1 | /////////////////////////////////////////////////////////////////////////////// |
2 | // Name: wx/datectrl.h | |
3 | // Purpose: implements wxDatePickerCtrl | |
4 | // Author: Vadim Zeitlin | |
5 | // Modified by: | |
6 | // Created: 2005-01-09 | |
7 | // RCS-ID: $Id$ | |
8 | // Copyright: (c) 2005 Vadim Zeitlin <vadim@wxwindows.org> | |
9 | // Licence: wxWindows licence | |
10 | /////////////////////////////////////////////////////////////////////////////// | |
11 | ||
12 | #ifndef _WX_DATECTRL_H_ | |
13 | #define _WX_DATECTRL_H_ | |
14 | ||
1ee3fb38 VS |
15 | #include "wx/defs.h" |
16 | ||
17 | #if wxUSE_DATEPICKCTRL | |
18 | ||
feb72429 VZ |
19 | #include "wx/control.h" // the base class |
20 | #include "wx/datetime.h" | |
21 | ||
9a83f860 | 22 | #define wxDatePickerCtrlNameStr wxT("datectrl") |
feb72429 | 23 | |
29c86948 VZ |
24 | // wxDatePickerCtrl styles |
25 | enum | |
26 | { | |
27 | // default style on this platform, either wxDP_SPIN or wxDP_DROPDOWN | |
28 | wxDP_DEFAULT = 0, | |
29 | ||
30 | // a spin control-like date picker (not supported in generic version) | |
31 | wxDP_SPIN = 1, | |
32 | ||
33 | // a combobox-like date picker (not supported in mac version) | |
2cfbeac8 VZ |
34 | wxDP_DROPDOWN = 2, |
35 | ||
36 | // always show century in the default date display (otherwise it depends on | |
37 | // the system date format which may include the century or not) | |
1721a8c0 VZ |
38 | wxDP_SHOWCENTURY = 4, |
39 | ||
40 | // allow not having any valid date in the control (by default it always has | |
41 | // some date, today initially if no valid date specified in ctor) | |
42 | wxDP_ALLOWNONE = 8 | |
29c86948 VZ |
43 | }; |
44 | ||
feb72429 VZ |
45 | // ---------------------------------------------------------------------------- |
46 | // wxDatePickerCtrl: allow the user to enter the date | |
47 | // ---------------------------------------------------------------------------- | |
48 | ||
49 | class WXDLLIMPEXP_ADV wxDatePickerCtrlBase : public wxControl | |
50 | { | |
51 | public: | |
52 | /* | |
53 | The derived classes should implement ctor and Create() method with the | |
54 | following signature: | |
55 | ||
56 | bool Create(wxWindow *parent, | |
57 | wxWindowID id, | |
58 | const wxDateTime& dt = wxDefaultDateTime, | |
59 | const wxPoint& pos = wxDefaultPosition, | |
60 | const wxSize& size = wxDefaultSize, | |
2cfbeac8 | 61 | long style = wxDP_DEFAULT | wxDP_SHOWCENTURY, |
feb72429 VZ |
62 | const wxValidator& validator = wxDefaultValidator, |
63 | const wxString& name = wxDatePickerCtrlNameStr); | |
64 | */ | |
65 | ||
66 | // set/get the date | |
67 | virtual void SetValue(const wxDateTime& dt) = 0; | |
68 | virtual wxDateTime GetValue() const = 0; | |
69 | ||
70 | // set/get the allowed valid range for the dates, if either/both of them | |
71 | // are invalid, there is no corresponding limit and if neither is set | |
72 | // GetRange() returns false | |
73 | virtual void SetRange(const wxDateTime& dt1, const wxDateTime& dt2) = 0; | |
74 | virtual bool GetRange(wxDateTime *dt1, wxDateTime *dt2) const = 0; | |
75 | }; | |
76 | ||
324eeecb WS |
77 | #if defined(__WXPALMOS__) |
78 | #include "wx/palmos/datectrl.h" | |
79 | ||
80 | #define wxHAS_NATIVE_DATEPICKCTRL | |
81 | #elif defined(__WXMSW__) && !defined(__WXUNIVERSAL__) | |
feb72429 | 82 | #include "wx/msw/datectrl.h" |
15c86b39 VZ |
83 | |
84 | #define wxHAS_NATIVE_DATEPICKCTRL | |
feb72429 | 85 | #else |
39df3acd | 86 | #include "wx/generic/datectrl.h" |
7ae712f5 VZ |
87 | |
88 | class WXDLLIMPEXP_ADV wxDatePickerCtrl : public wxDatePickerCtrlGeneric | |
89 | { | |
90 | public: | |
91 | wxDatePickerCtrl() { } | |
92 | wxDatePickerCtrl(wxWindow *parent, | |
93 | wxWindowID id, | |
94 | const wxDateTime& date = wxDefaultDateTime, | |
95 | const wxPoint& pos = wxDefaultPosition, | |
96 | const wxSize& size = wxDefaultSize, | |
97 | long style = wxDP_DEFAULT | wxDP_SHOWCENTURY, | |
807f5038 | 98 | const wxValidator& validator = wxDefaultValidator, |
7ae712f5 | 99 | const wxString& name = wxDatePickerCtrlNameStr) |
807f5038 | 100 | : wxDatePickerCtrlGeneric(parent, id, date, pos, size, style, validator, name) |
7ae712f5 VZ |
101 | { |
102 | } | |
103 | ||
104 | private: | |
a69e2a0a | 105 | DECLARE_DYNAMIC_CLASS_NO_COPY(wxDatePickerCtrl) |
7ae712f5 | 106 | }; |
feb72429 VZ |
107 | #endif |
108 | ||
1ee3fb38 VS |
109 | #endif // wxUSE_DATEPICKCTRL |
110 | ||
feb72429 VZ |
111 | #endif // _WX_DATECTRL_H_ |
112 |