]>
Commit | Line | Data |
---|---|---|
74a533f7 VZ |
1 | ///////////////////////////////////////////////////////////////////////////// |
2 | // Name: calendar.cpp | |
3 | // Purpose: wxCalendarCtrl sample | |
4 | // Author: Vadim Zeitlin | |
4e6bceff | 5 | // Modified by: |
74a533f7 VZ |
6 | // Created: 02.01.00 |
7 | // RCS-ID: $Id$ | |
8 | // Copyright: (c) Vadim Zeitlin | |
9 | // Licence: wxWindows licence | |
10 | ///////////////////////////////////////////////////////////////////////////// | |
11 | ||
12 | // ============================================================================ | |
13 | // declarations | |
14 | // ============================================================================ | |
15 | ||
16 | // ---------------------------------------------------------------------------- | |
17 | // headers | |
18 | // ---------------------------------------------------------------------------- | |
19 | ||
20 | #ifdef __GNUG__ | |
21 | #pragma implementation "calendar.cpp" | |
22 | #pragma interface "calendar.cpp" | |
23 | #endif | |
24 | ||
25 | // For compilers that support precompilation, includes "wx/wx.h". | |
26 | #include "wx/wxprec.h" | |
27 | ||
28 | #ifdef __BORLANDC__ | |
29 | #pragma hdrstop | |
30 | #endif | |
31 | ||
273b7ed9 | 32 | // for all others, include the necessary headers |
74a533f7 VZ |
33 | #ifndef WX_PRECOMP |
34 | #include "wx/app.h" | |
35 | #include "wx/frame.h" | |
273b7ed9 VZ |
36 | #include "wx/panel.h" |
37 | #include "wx/stattext.h" | |
38 | #include "wx/menu.h" | |
39 | #include "wx/layout.h" | |
40 | #include "wx/msgdlg.h" | |
74a533f7 VZ |
41 | #endif |
42 | ||
43 | #include "wx/calctrl.h" | |
44 | ||
45 | // ---------------------------------------------------------------------------- | |
46 | // private classes | |
47 | // ---------------------------------------------------------------------------- | |
48 | ||
49 | // Define a new application type, each program should derive a class from wxApp | |
50 | class MyApp : public wxApp | |
51 | { | |
52 | public: | |
53 | // override base class virtuals | |
54 | // ---------------------------- | |
55 | ||
56 | // this one is called on application startup and is a good place for the app | |
57 | // initialization (doing it here and not in the ctor allows to have an error | |
58 | // return: if OnInit() returns false, the application terminates) | |
59 | virtual bool OnInit(); | |
60 | }; | |
61 | ||
62 | class MyPanel : public wxPanel | |
63 | { | |
64 | public: | |
65 | MyPanel(wxFrame *frame); | |
66 | ||
67 | void OnCalendar(wxCalendarEvent& event); | |
68 | void OnCalendarWeekDayClick(wxCalendarEvent& event); | |
69 | void OnCalendarChange(wxCalendarEvent& event); | |
0de868d9 VZ |
70 | void OnCalMonthChange(wxCalendarEvent& event); |
71 | void OnCalYearChange(wxCalendarEvent& event); | |
74a533f7 | 72 | |
bc385ba9 VZ |
73 | wxCalendarCtrl *GetCal() const { return m_calendar; } |
74 | ||
74a533f7 | 75 | void StartWithMonday(bool on); |
74a533f7 VZ |
76 | void HighlightSpecial(bool on); |
77 | ||
78 | private: | |
79 | wxCalendarCtrl *m_calendar; | |
80 | wxStaticText *m_date; | |
81 | ||
82 | DECLARE_EVENT_TABLE() | |
83 | }; | |
84 | ||
85 | // Define a new frame type: this is going to be our main frame | |
86 | class MyFrame : public wxFrame | |
87 | { | |
88 | public: | |
89 | // ctor(s) | |
90 | MyFrame(const wxString& title, const wxPoint& pos, const wxSize& size); | |
91 | ||
92 | // event handlers (these functions should _not_ be virtual) | |
93 | void OnQuit(wxCommandEvent& event); | |
94 | void OnAbout(wxCommandEvent& event); | |
95 | ||
96 | void OnCalMonday(wxCommandEvent& event); | |
97 | void OnCalHolidays(wxCommandEvent& event); | |
98 | void OnCalSpecial(wxCommandEvent& event); | |
99 | ||
bc385ba9 VZ |
100 | void OnCalAllowMonth(wxCommandEvent& event); |
101 | void OnCalAllowYear(wxCommandEvent& event); | |
102 | ||
103 | void OnAllowYearUpdate(wxUpdateUIEvent& event); | |
104 | ||
74a533f7 VZ |
105 | private: |
106 | MyPanel *m_panel; | |
107 | ||
108 | // any class wishing to process wxWindows events must use this macro | |
109 | DECLARE_EVENT_TABLE() | |
110 | }; | |
111 | ||
112 | // ---------------------------------------------------------------------------- | |
113 | // constants | |
114 | // ---------------------------------------------------------------------------- | |
115 | ||
116 | // IDs for the controls and the menu commands | |
117 | enum | |
118 | { | |
119 | // menu items | |
120 | Calendar_File_About = 100, | |
121 | Calendar_File_Quit, | |
122 | Calendar_Cal_Monday = 200, | |
123 | Calendar_Cal_Holidays, | |
124 | Calendar_Cal_Special, | |
bc385ba9 VZ |
125 | Calendar_Cal_Month, |
126 | Calendar_Cal_Year, | |
74a533f7 VZ |
127 | Calendar_CalCtrl = 1000, |
128 | }; | |
129 | ||
130 | // ---------------------------------------------------------------------------- | |
131 | // event tables and other macros for wxWindows | |
132 | // ---------------------------------------------------------------------------- | |
133 | ||
134 | // the event tables connect the wxWindows events with the functions (event | |
135 | // handlers) which process them. It can be also done at run-time, but for the | |
136 | // simple menu events like this the static method is much simpler. | |
137 | BEGIN_EVENT_TABLE(MyFrame, wxFrame) | |
138 | EVT_MENU(Calendar_File_Quit, MyFrame::OnQuit) | |
139 | EVT_MENU(Calendar_File_About, MyFrame::OnAbout) | |
140 | ||
141 | EVT_MENU(Calendar_Cal_Monday, MyFrame::OnCalMonday) | |
142 | EVT_MENU(Calendar_Cal_Holidays, MyFrame::OnCalHolidays) | |
143 | EVT_MENU(Calendar_Cal_Special, MyFrame::OnCalSpecial) | |
bc385ba9 VZ |
144 | |
145 | EVT_MENU(Calendar_Cal_Month, MyFrame::OnCalAllowMonth) | |
146 | EVT_MENU(Calendar_Cal_Year, MyFrame::OnCalAllowYear) | |
147 | ||
148 | EVT_UPDATE_UI(Calendar_Cal_Year, MyFrame::OnAllowYearUpdate) | |
74a533f7 VZ |
149 | END_EVENT_TABLE() |
150 | ||
151 | BEGIN_EVENT_TABLE(MyPanel, wxPanel) | |
152 | EVT_CALENDAR (Calendar_CalCtrl, MyPanel::OnCalendar) | |
0de868d9 VZ |
153 | EVT_CALENDAR_MONTH (Calendar_CalCtrl, MyPanel::OnCalMonthChange) |
154 | EVT_CALENDAR_YEAR (Calendar_CalCtrl, MyPanel::OnCalYearChange) | |
74a533f7 VZ |
155 | EVT_CALENDAR_SEL_CHANGED(Calendar_CalCtrl, MyPanel::OnCalendarChange) |
156 | EVT_CALENDAR_WEEKDAY_CLICKED(Calendar_CalCtrl, MyPanel::OnCalendarWeekDayClick) | |
157 | END_EVENT_TABLE() | |
158 | ||
159 | // Create a new application object: this macro will allow wxWindows to create | |
160 | // the application object during program execution (it's better than using a | |
161 | // static object for many reasons) and also declares the accessor function | |
162 | // wxGetApp() which will return the reference of the right type (i.e. MyApp and | |
163 | // not wxApp) | |
164 | IMPLEMENT_APP(MyApp) | |
165 | ||
166 | // ============================================================================ | |
167 | // implementation | |
168 | // ============================================================================ | |
169 | ||
170 | // ---------------------------------------------------------------------------- | |
171 | // the application class | |
172 | // ---------------------------------------------------------------------------- | |
173 | ||
174 | // `Main program' equivalent: the program execution "starts" here | |
175 | bool MyApp::OnInit() | |
176 | { | |
177 | // Create the main application window | |
bc385ba9 | 178 | MyFrame *frame = new MyFrame("Calendar wxWindows sample", |
4e6bceff | 179 | wxPoint(50, 50), wxSize(450, 340)); |
74a533f7 VZ |
180 | |
181 | // Show it and tell the application that it's our main window | |
182 | // @@@ what does it do exactly, in fact? is it necessary here? | |
183 | frame->Show(TRUE); | |
184 | SetTopWindow(frame); | |
185 | ||
186 | // success: wxApp::OnRun() will be called which will enter the main message | |
187 | // loop and the application will run. If we returned FALSE here, the | |
188 | // application would exit immediately. | |
189 | return TRUE; | |
190 | } | |
191 | ||
192 | // ---------------------------------------------------------------------------- | |
193 | // main frame | |
194 | // ---------------------------------------------------------------------------- | |
195 | ||
196 | // frame constructor | |
197 | MyFrame::MyFrame(const wxString& title, const wxPoint& pos, const wxSize& size) | |
198 | : wxFrame((wxFrame *)NULL, -1, title, pos, size) | |
199 | { | |
200 | // create a menu bar | |
201 | wxMenu *menuFile = new wxMenu; | |
202 | ||
203 | menuFile->Append(Calendar_File_About, "&About...\tCtrl-A", "Show about dialog"); | |
204 | menuFile->AppendSeparator(); | |
205 | menuFile->Append(Calendar_File_Quit, "E&xit\tAlt-X", "Quit this program"); | |
206 | ||
207 | wxMenu *menuCal = new wxMenu; | |
208 | menuCal->Append(Calendar_Cal_Monday, | |
bc385ba9 | 209 | "Monday &first weekday\tCtrl-F", |
74a533f7 VZ |
210 | "Toggle between Mon and Sun as the first week day", |
211 | TRUE); | |
212 | menuCal->Append(Calendar_Cal_Holidays, "Show &holidays\tCtrl-H", | |
213 | "Toggle highlighting the holidays", | |
214 | TRUE); | |
215 | menuCal->Append(Calendar_Cal_Special, "Highlight &special dates\tCtrl-S", | |
216 | "Test custom highlighting", | |
217 | TRUE); | |
bc385ba9 VZ |
218 | menuCal->AppendSeparator(); |
219 | menuCal->Append(Calendar_Cal_Month, "&Month can be changed\tCtrl-M", | |
220 | "Allow changing the month in the calendar", | |
221 | TRUE); | |
222 | menuCal->Append(Calendar_Cal_Year, "&Year can be changed\tCtrl-Y", | |
223 | "Allow changing the year in the calendar", | |
224 | TRUE); | |
74a533f7 VZ |
225 | |
226 | // now append the freshly created menu to the menu bar... | |
227 | wxMenuBar *menuBar = new wxMenuBar; | |
228 | menuBar->Append(menuFile, "&File"); | |
229 | menuBar->Append(menuCal, "&Calendar"); | |
230 | ||
231 | menuBar->Check(Calendar_Cal_Monday, TRUE); | |
232 | menuBar->Check(Calendar_Cal_Holidays, TRUE); | |
bc385ba9 VZ |
233 | menuBar->Check(Calendar_Cal_Month, TRUE); |
234 | menuBar->Check(Calendar_Cal_Year, TRUE); | |
74a533f7 VZ |
235 | |
236 | // ... and attach this menu bar to the frame | |
237 | SetMenuBar(menuBar); | |
238 | ||
239 | m_panel = new MyPanel(this); | |
240 | ||
241 | #if wxUSE_STATUSBAR | |
242 | // create a status bar just for fun (by default with 1 pane only) | |
9898fcda MJ |
243 | CreateStatusBar(2); |
244 | SetStatusText("Welcome to wxWindows!"); | |
74a533f7 VZ |
245 | #endif // wxUSE_STATUSBAR |
246 | } | |
247 | ||
248 | void MyFrame::OnQuit(wxCommandEvent& WXUNUSED(event)) | |
249 | { | |
250 | // TRUE is to force the frame to close | |
251 | Close(TRUE); | |
252 | } | |
253 | ||
254 | void MyFrame::OnAbout(wxCommandEvent& WXUNUSED(event)) | |
255 | { | |
256 |