more forward declarations (trying to fix bug 1106829)
[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 wxString& name = wxDatePickerCtrlNameStr)
34 {
35 Init();
36
37 (void)Create(parent, id, date, pos, size, style, name);
38 }
39
40 bool Create(wxWindow *parent,
41 wxWindowID id,
42 const wxDateTime& date = wxDefaultDateTime,
43 const wxPoint& pos = wxDefaultPosition,
44 const wxSize& size = wxDefaultSize,
45 long style = wxDP_DEFAULT | wxDP_SHOWCENTURY,
46 const wxString& name = wxDatePickerCtrlNameStr);
47
48 // wxDatePickerCtrl methods
49 void SetValue(const wxDateTime& date);
50 wxDateTime GetValue() const;
51
52 bool GetRange(wxDateTime *dt1, wxDateTime *dt2) const;
53 void SetRange(const wxDateTime &dt1, const wxDateTime &dt2);
54
55 bool SetDateRange(const wxDateTime& lowerdate = wxDefaultDateTime,
56 const wxDateTime& upperdate = wxDefaultDateTime);
57
58 // extra methods available only in this (generic) implementation
59 bool SetFormat(const wxChar *fmt);
60 wxCalendarCtrl *GetCalendar() const { return m_cal; }
61
62
63 // implementation only from now on
64 // -------------------------------
65
66 // overridden base class methods
67 virtual bool Destroy();
68
69 virtual bool Enable(bool enable = TRUE);
70 virtual bool Show(bool show = TRUE);
71
72 protected:
73 virtual wxSize DoGetBestSize() const;
74 virtual void DoMoveWindow(int x, int y, int width, int height);
75
76 private:
77 void Init();
78 void DropDown(bool down = true);
79
80 void OnText(wxCommandEvent &ev);
81 void OnEditKey(wxKeyEvent & event);
82 void OnCalKey(wxKeyEvent & event);
83 void OnClick(wxCommandEvent &ev);
84 void OnSelChange(wxCalendarEvent &ev);
85 void OnSetFocus(wxFocusEvent &ev);
86 void OnKillFocus(wxFocusEvent &ev);
87 void OnChildSetFocus(wxChildFocusEvent &ev);
88
89
90 wxPopupWindow *m_popup;
91 wxTextCtrl *m_txt;
92 wxCalendarCtrl *m_cal;
93 wxButton *m_btn;
94 wxString m_format;
95
96 bool m_dropped,
97 m_ignoreDrop;
98
99
100 DECLARE_EVENT_TABLE()
101 DECLARE_NO_COPY_CLASS(wxDatePickerCtrlGeneric)
102 };
103
104 #endif // _WX_GENERIC_DATECTRL_H_
105