Add an empty implementation of the OSXGenerateEvent() pure virtual so the generic...
[wxWidgets.git] / include / wx / generic / datectrl.h
1 /////////////////////////////////////////////////////////////////////////////
2 // Name: wx/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 #include "wx/compositewin.h"
16
17 class WXDLLIMPEXP_FWD_CORE wxComboCtrl;
18
19 class WXDLLIMPEXP_FWD_ADV wxCalendarCtrl;
20 class WXDLLIMPEXP_FWD_ADV wxCalendarComboPopup;
21
22 class WXDLLIMPEXP_ADV wxDatePickerCtrlGeneric
23 : public wxCompositeWindow<wxDatePickerCtrlBase>
24 {
25 public:
26 // creating the control
27 wxDatePickerCtrlGeneric() { Init(); }
28 virtual ~wxDatePickerCtrlGeneric();
29 wxDatePickerCtrlGeneric(wxWindow *parent,
30 wxWindowID id,
31 const wxDateTime& date = wxDefaultDateTime,
32 const wxPoint& pos = wxDefaultPosition,
33 const wxSize& size = wxDefaultSize,
34 long style = wxDP_DEFAULT | wxDP_SHOWCENTURY,
35 const wxValidator& validator = wxDefaultValidator,
36 const wxString& name = wxDatePickerCtrlNameStr)
37 {
38 Init();
39
40 (void)Create(parent, id, date, pos, size, style, validator, name);
41 }
42
43 bool Create(wxWindow *parent,
44 wxWindowID id,
45 const wxDateTime& date = wxDefaultDateTime,
46 const wxPoint& pos = wxDefaultPosition,
47 const wxSize& size = wxDefaultSize,
48 long style = wxDP_DEFAULT | wxDP_SHOWCENTURY,
49 const wxValidator& validator = wxDefaultValidator,
50 const wxString& name = wxDatePickerCtrlNameStr);
51
52 // wxDatePickerCtrl methods
53 void SetValue(const wxDateTime& date);
54 wxDateTime GetValue() const;
55
56 bool GetRange(wxDateTime *dt1, wxDateTime *dt2) const;
57 void SetRange(const wxDateTime &dt1, const wxDateTime &dt2);
58
59 bool SetDateRange(const wxDateTime& lowerdate = wxDefaultDateTime,
60 const wxDateTime& upperdate = wxDefaultDateTime);
61
62 // extra methods available only in this (generic) implementation
63 wxCalendarCtrl *GetCalendar() const;
64
65
66 // implementation only from now on
67 // -------------------------------
68
69 // overridden base class methods
70 virtual bool Destroy();
71
72 protected:
73 virtual wxSize DoGetBestSize() const;
74
75 private:
76 void Init();
77
78 // return the list of the windows composing this one
79 virtual wxWindowList GetCompositeWindowParts() const;
80
81 void OnText(wxCommandEvent &event);
82 void OnSize(wxSizeEvent& event);
83 void OnFocus(wxFocusEvent& event);
84
85 #ifdef __WXOSX_COCOA__
86 virtual void OSXGenerateEvent(const wxDateTime& dt) {}
87 #endif
88
89 wxComboCtrl* m_combo;
90 wxCalendarComboPopup* m_popup;
91
92 DECLARE_EVENT_TABLE()
93 wxDECLARE_NO_COPY_CLASS(wxDatePickerCtrlGeneric);
94 };
95
96 #endif // _WX_GENERIC_DATECTRL_H_
97