Added validator to generic date picker control
[wxWidgets.git] / include / wx / generic / datectrl.h
1 /////////////////////////////////////////////////////////////////////////////
2 // Name: generic/datectrl.h
3 // Purpose: generic wxDatePickerCtrl implementation
4 // Author: Andreas Pflug
5 // Modified by:
6 // Created: 2005-01-19
7 // RCS-ID: $Id$
8 // Copyright: (c) 2005 Andreas Pflug <pgadmin@pse-consulting.de>
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
11
12 #ifndef _WX_GENERIC_DATECTRL_H_
13 #define _WX_GENERIC_DATECTRL_H_
14
15 class WXDLLIMPEXP_CORE wxButton;
16 class WXDLLIMPEXP_ADV wxCalendarDateAttr;
17 class WXDLLIMPEXP_ADV wxCalendarCtrl;
18 class WXDLLIMPEXP_ADV wxCalendarEvent;
19 class WXDLLIMPEXP_CORE wxPopupWindow;
20 class WXDLLIMPEXP_CORE wxTextCtrl;
21
22 class WXDLLIMPEXP_ADV wxDatePickerCtrlGeneric : public wxDatePickerCtrlBase
23 {
24 public:
25 // creating the control
26 wxDatePickerCtrlGeneric() { Init(); }
27 wxDatePickerCtrlGeneric(wxWindow *parent,
28 wxWindowID id,
29 const wxDateTime& date = wxDefaultDateTime,
30 const wxPoint& pos = wxDefaultPosition,
31 const wxSize& size = wxDefaultSize,
32 long style = wxDP_DEFAULT | wxDP_SHOWCENTURY,
33 const wxValidator& validator = wxDefaultValidator,
34 const wxString& name = wxDatePickerCtrlNameStr)
35 {
36 Init();
37
38 (void)Create(parent, id, date, pos, size, style, validator, name);
39 }
40
41 bool Create(wxWindow *parent,
42 wxWindowID id,
43 const wxDateTime& date = wxDefaultDateTime,
44 const wxPoint& pos = wxDefaultPosition,
45 const wxSize& size = wxDefaultSize,
46 long style = wxDP_DEFAULT | wxDP_SHOWCENTURY,
47 const wxValidator& validator = wxDefaultValidator,
48 const wxString& name = wxDatePickerCtrlNameStr);
49
50 // wxDatePickerCtrl methods
51 void SetValue(const wxDateTime& date);
52 wxDateTime GetValue() const;
53
54 bool GetRange(wxDateTime *dt1, wxDateTime *dt2) const;
55 void SetRange(const wxDateTime &dt1, const wxDateTime &dt2);
56
57 bool SetDateRange(const wxDateTime& lowerdate = wxDefaultDateTime,
58 const wxDateTime& upperdate = wxDefaultDateTime);
59
60 // extra methods available only in this (generic) implementation
61 bool SetFormat(const wxChar *fmt);
62 wxCalendarCtrl *GetCalendar() const { return m_cal; }
63
64
65 // implementation only from now on
66 // -------------------------------
67
68 // overridden base class methods
69 virtual bool Destroy();
70
71 virtual bool Enable(bool enable = TRUE);
72 virtual bool Show(bool show = TRUE);
73
74 protected:
75 virtual wxSize DoGetBestSize() const;
76 virtual void DoMoveWindow(int x, int y, int width, int height);
77
78 private:
79 void Init();
80 void DropDown(bool down = true);
81
82 void OnText(wxCommandEvent &ev);
83 void OnEditKey(wxKeyEvent & event);
84 void OnCalKey(wxKeyEvent & event);
85 void OnClick(wxCommandEvent &ev);
86 void OnSelChange(wxCalendarEvent &ev);
87 void OnSetFocus(wxFocusEvent &ev);
88 void OnKillFocus(wxFocusEvent &ev);
89 void OnChildSetFocus(wxChildFocusEvent &ev);
90
91
92 wxPopupWindow *m_popup;
93 wxTextCtrl *m_txt;
94 wxCalendarCtrl *m_cal;
95 wxButton *m_btn;
96 wxString m_format;
97
98 bool m_dropped,
99 m_ignoreDrop;
100
101
102 DECLARE_EVENT_TABLE()
103 DECLARE_NO_COPY_CLASS(wxDatePickerCtrlGeneric)
104 };
105
106 #endif // _WX_GENERIC_DATECTRL_H_
107