1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: wxCalendarCtrl sample
4 // Author: Vadim Zeitlin
8 // Copyright: (c) Vadim Zeitlin
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
12 // ============================================================================
14 // ============================================================================
16 // ----------------------------------------------------------------------------
18 // ----------------------------------------------------------------------------
21 #pragma implementation "calendar.cpp"
22 #pragma interface "calendar.cpp"
25 // For compilers that support precompilation, includes "wx/wx.h".
26 #include "wx/wxprec.h"
32 // for all others, include the necessary headers
37 #include "wx/stattext.h"
39 #include "wx/layout.h"
40 #include "wx/msgdlg.h"
43 #include "wx/calctrl.h"
45 // ----------------------------------------------------------------------------
47 // ----------------------------------------------------------------------------
49 // Define a new application type, each program should derive a class from wxApp
50 class MyApp
: public wxApp
53 // override base class virtuals
54 // ----------------------------
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();
62 class MyPanel
: public wxPanel
65 MyPanel(wxFrame
*frame
);
67 void OnCalendar(wxCalendarEvent
& event
);
68 void OnCalendarWeekDayClick(wxCalendarEvent
& event
);
69 void OnCalendarChange(wxCalendarEvent
& event
);
70 void OnCalMonthChange(wxCalendarEvent
& event
);
71 void OnCalYearChange(wxCalendarEvent
& event
);
73 wxCalendarCtrl
*GetCal() const { return m_calendar
; }
75 // turn on/off the specified style bit on the calendar control
76 void ToggleCalStyle(bool on
, int style
);
78 void HighlightSpecial(bool on
);
81 wxCalendarCtrl
*m_calendar
;
87 // Define a new frame type: this is going to be our main frame
88 class MyFrame
: public wxFrame
92 MyFrame(const wxString
& title
, const wxPoint
& pos
, const wxSize
& size
);
94 // event handlers (these functions should _not_ be virtual)
95 void OnQuit(wxCommandEvent
& event
);
96 void OnAbout(wxCommandEvent
& event
);
98 void OnCalMonday(wxCommandEvent
& event
);
99 void OnCalHolidays(wxCommandEvent
& event
);
100 void OnCalSpecial(wxCommandEvent
& event
);
102 void OnCalAllowMonth(wxCommandEvent
& event
);
103 void OnCalAllowYear(wxCommandEvent
& event
);
105 void OnCalSeqMonth(wxCommandEvent
& event
);
106 void OnCalShowSurroundingWeeks(wxCommandEvent
& event
);
108 void OnAllowYearUpdate(wxUpdateUIEvent
& event
);
113 // any class wishing to process wxWindows events must use this macro
114 DECLARE_EVENT_TABLE()
117 // ----------------------------------------------------------------------------
119 // ----------------------------------------------------------------------------
121 // IDs for the controls and the menu commands
125 Calendar_File_About
= 100,
127 Calendar_Cal_Monday
= 200,
128 Calendar_Cal_Holidays
,
129 Calendar_Cal_Special
,
132 Calendar_Cal_SeqMonth
,
133 Calendar_Cal_SurroundWeeks
,
134 Calendar_CalCtrl
= 1000,
137 // ----------------------------------------------------------------------------
138 // event tables and other macros for wxWindows
139 // ----------------------------------------------------------------------------
141 // the event tables connect the wxWindows events with the functions (event
142 // handlers) which process them. It can be also done at run-time, but for the
143 // simple menu events like this the static method is much simpler.
144 BEGIN_EVENT_TABLE(MyFrame
, wxFrame
)
145 EVT_MENU(Calendar_File_Quit
, MyFrame::OnQuit
)
146 EVT_MENU(Calendar_File_About
, MyFrame::OnAbout
)
148 EVT_MENU(Calendar_Cal_Monday
, MyFrame::OnCalMonday
)
149 EVT_MENU(Calendar_Cal_Holidays
, MyFrame::OnCalHolidays
)
150 EVT_MENU(Calendar_Cal_Special
, MyFrame::OnCalSpecial
)
152 EVT_MENU(Calendar_Cal_Month
, MyFrame::OnCalAllowMonth
)
153 EVT_MENU(Calendar_Cal_Year
, MyFrame::OnCalAllowYear
)
155 EVT_MENU(Calendar_Cal_SeqMonth
, MyFrame::OnCalSeqMonth
)
156 EVT_MENU(Calendar_Cal_SurroundWeeks
, MyFrame::OnCalShowSurroundingWeeks
)
158 EVT_UPDATE_UI(Calendar_Cal_Year
, MyFrame::OnAllowYearUpdate
)
161 BEGIN_EVENT_TABLE(MyPanel
, wxPanel
)
162 EVT_CALENDAR (Calendar_CalCtrl
, MyPanel::OnCalendar
)
163 EVT_CALENDAR_MONTH (Calendar_CalCtrl
, MyPanel::OnCalMonthChange
)
164 EVT_CALENDAR_YEAR (Calendar_CalCtrl
, MyPanel::OnCalYearChange
)
165 EVT_CALENDAR_SEL_CHANGED(Calendar_CalCtrl
, MyPanel::OnCalendarChange
)
166 EVT_CALENDAR_WEEKDAY_CLICKED(Calendar_CalCtrl
, MyPanel::OnCalendarWeekDayClick
)
169 // Create a new application object: this macro will allow wxWindows to create
170 // the application object during program execution (it's better than using a
171 // static object for many reasons) and also declares the accessor function
172 // wxGetApp() which will return the reference of the right type (i.e. MyApp and
176 // ============================================================================
178 // ============================================================================
180 // ----------------------------------------------------------------------------
181 // the application class
182 // ----------------------------------------------------------------------------
184 // `Main program' equivalent: the program execution "starts" here
187 // Create the main application window
188 MyFrame
*frame
= new MyFrame("Calendar wxWindows sample",
189 wxPoint(50, 50), wxSize(450, 340));
193 // success: wxApp::OnRun() will be called which will enter the main message
194 // loop and the application will run. If we returned FALSE here, the
195 // application would exit immediately.
199 // ----------------------------------------------------------------------------
201 // ----------------------------------------------------------------------------
204 MyFrame::MyFrame(const wxString
& title
, const wxPoint
& pos
, const wxSize
& size
)
205 : wxFrame((wxFrame
*)NULL
, -1, title
, pos
, size
)
208 wxMenu
*menuFile
= new wxMenu
;
210 menuFile
->Append(Calendar_File_About
, "&About...\tCtrl-A", "Show about dialog");
211 menuFile
->AppendSeparator();
212 menuFile
->Append(Calendar_File_Quit
, "E&xit\tAlt-X", "Quit this program");
214 wxMenu
*menuCal
= new wxMenu
;
215 menuCal
->Append(Calendar_Cal_Monday
,
216 "Monday &first weekday\tCtrl-F",
217 "Toggle between Mon and Sun as the first week day",
219 menuCal
->Append(Calendar_Cal_Holidays
, "Show &holidays\tCtrl-H",
220 "Toggle highlighting the holidays",
222 menuCal
->Append(Calendar_Cal_Special
, "Highlight &special dates\tCtrl-S",
223 "Test custom highlighting",
225 menuCal
->Append(Calendar_Cal_SurroundWeeks
,
226 "Show s&urrounding weeks\tCtrl-W",
227 "Show the neighbouring weeks in the prev/next month",
229 menuCal
->AppendSeparator();
230 menuCal
->Append(Calendar_Cal_SeqMonth
,
231 "To&ggle month selector style\tCtrl-G",
232 "Use another style for the calendar controls",
234 menuCal
->Append(Calendar_Cal_Month
, "&Month can be changed\tCtrl-M",
235 "Allow changing the month in the calendar",
237 menuCal
->Append(Calendar_Cal_Year
, "&Year can be changed\tCtrl-Y",
238 "Allow changing the year in the calendar",
241 // now append the freshly created menu to the menu bar...
242 wxMenuBar
*menuBar
= new wxMenuBar
;
243 menuBar
->Append(menuFile
, "&File");
244 menuBar
->Append(menuCal
, "&Calendar");
246 menuBar
->Check(Calendar_Cal_Monday
, TRUE
);
247 menuBar
->Check(Calendar_Cal_Holidays
, TRUE
);
248 menuBar
->Check(Calendar_Cal_Month
, TRUE
);
249 menuBar
->Check(Calendar_Cal_Year
, TRUE
);
251 // ... and attach this menu bar to the frame
254 m_panel
= new MyPanel(this);
257 // create a status bar just for fun (by default with 1 pane only)
259 SetStatusText("Welcome to wxWindows!");
260 #endif // wxUSE_STATUSBAR
263 void MyFrame::OnQuit(wxCommandEvent
& WXUNUSED(event
))
265 // TRUE is to force the frame to close
269 void MyFrame::OnAbout(wxCommandEvent
& WXUNUSED(event
))
271 wxMessageBox(_T("wxCalendarCtrl sample\n© 2000 Vadim Zeitlin"),
272 _T("About Calendar"), wxOK
| wxICON_INFORMATION
, this);
275 void MyFrame::OnCalMonday(wxCommandEvent
& event
)
277 bool enable
= GetMenuBar()->IsChecked(event
.GetId());
279 m_panel
->ToggleCalStyle(enable
, wxCAL_MONDAY_FIRST
);
282 void MyFrame::OnCalHolidays(wxCommandEvent
& event
)
284 bool enable
= GetMenuBar()->IsChecked(event
.GetId());
286 m_panel
->GetCal()->EnableHolidayDisplay(enable
);
289 void MyFrame::OnCalSpecial(wxCommandEvent
& event
)
291 m_panel
->HighlightSpecial(GetMenuBar()->IsChecked(event
.GetId()));
294 void MyFrame::OnCalAllowMonth(wxCommandEvent
& event
)
296 bool allow
= GetMenuBar()->IsChecked(event
.GetId());
298 m_panel
->GetCal()->EnableMonthChange(allow
);
301 void MyFrame::OnCalAllowYear(wxCommandEvent
& event
)
303 bool allow
= GetMenuBar()->IsChecked(event
.GetId());
305 m_panel
->GetCal()->EnableYearChange(allow
);
308 void MyFrame::OnCalSeqMonth(wxCommandEvent
& event
)
310 bool allow
= GetMenuBar()->IsChecked(event
.GetId());
312 m_panel
->ToggleCalStyle(allow
, wxCAL_SEQUENTIAL_MONTH_SELECTION
);
315 void MyFrame::OnCalShowSurroundingWeeks(wxCommandEvent
& event
)
317 bool allow
= GetMenuBar()->IsChecked(event
.GetId());
319 m_panel
->ToggleCalStyle(allow
, wxCAL_SHOW_SURROUNDING_WEEKS
);
322 void MyFrame::OnAllowYearUpdate(wxUpdateUIEvent
& event
)
324 event
.Enable( GetMenuBar()->IsChecked(Calendar_Cal_Month
));
327 // ----------------------------------------------------------------------------
329 // ----------------------------------------------------------------------------
331 MyPanel::MyPanel(wxFrame
*frame
)
337 date
.Printf(wxT("Selected date: %s"),
338 wxDateTime::Today().FormatISODate().c_str());
339 m_date
= new wxStaticText(this, -1, date
);
340 m_calendar
= new wxCalendarCtrl(this, Calendar_CalCtrl
,
345 wxCAL_SHOW_HOLIDAYS
|
348 wxLayoutConstraints
*c
= new wxLayoutConstraints
;
349 c
->left
.SameAs(this, wxLeft
, 10);
350 c
->centreY
.SameAs(this, wxCentreY
);
354 m_date
->SetConstraints(c
);
356 c
= new wxLayoutConstraints
;
357 c
->left
.SameAs(m_date
, wxRight
, 20);
358 c
->centreY
.SameAs(this, wxCentreY
);
362 m_calendar
->SetConstraints(c
);
365 void MyPanel::OnCalendar(wxCalendarEvent
& event
)
367 wxLogMessage(wxT("Selected %s from calendar"),
368 event
.GetDate().FormatISODate().c_str());
371 void MyPanel::OnCalendarChange(wxCalendarEvent
& event
)
374 s
.Printf(wxT("Selected date: %s"), event
.GetDate().FormatISODate().c_str());
379 void MyPanel::OnCalMonthChange(wxCalendarEvent
& WXUNUSED(event
))
381 wxLogStatus(wxT("Calendar month changed"));
384 void MyPanel::OnCalYearChange(wxCalendarEvent
& WXUNUSED(event
))
386 wxLogStatus(wxT("Calendar year changed"));
389 void MyPanel::OnCalendarWeekDayClick(wxCalendarEvent
& event
)
391 wxLogMessage(wxT("Clicked on %s"),
392 wxDateTime::GetWeekDayName(event
.GetWeekDay()).c_str());
395 void MyPanel::ToggleCalStyle(bool on
, int flag
)
397 long style
= m_calendar
->GetWindowStyle();
403 m_calendar
->SetWindowStyle(style
);
405 m_calendar
->Refresh();
408 void MyPanel::HighlightSpecial(bool on
)
413 *attrRedCircle
= new wxCalendarDateAttr(wxCAL_BORDER_ROUND
, *wxRED
),
414 *attrGreenSquare
= new wxCalendarDateAttr(wxCAL_BORDER_SQUARE
, *wxGREEN
),
415 *attrHeaderLike
= new wxCalendarDateAttr(*wxBLUE
, *wxLIGHT_GREY
);
417 m_calendar
->SetAttr(17, attrRedCircle
);
418 m_calendar
->SetAttr(29, attrGreenSquare
);
419 m_calendar
->SetAttr(13, attrHeaderLike
);
423 m_calendar
->ResetAttr(17);
424 m_calendar
->ResetAttr(29);
425 m_calendar
->ResetAttr(13);
428 m_calendar
->Refresh();