]>
git.saurik.com Git - wxWidgets.git/blob - samples/calendar/calendar.cpp
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 void StartWithMonday(bool on
);
76 void HighlightSpecial(bool on
);
79 wxCalendarCtrl
*m_calendar
;
85 // Define a new frame type: this is going to be our main frame
86 class MyFrame
: public wxFrame
90 MyFrame(const wxString
& title
, const wxPoint
& pos
, const wxSize
& size
);
92 // event handlers (these functions should _not_ be virtual)
93 void OnQuit(wxCommandEvent
& event
);
94 void OnAbout(wxCommandEvent
& event
);
96 void OnCalMonday(wxCommandEvent
& event
);
97 void OnCalHolidays(wxCommandEvent
& event
);
98 void OnCalSpecial(wxCommandEvent
& event
);
100 void OnCalAllowMonth(wxCommandEvent
& event
);
101 void OnCalAllowYear(wxCommandEvent
& event
);
103 void OnAllowYearUpdate(wxUpdateUIEvent
& event
);
108 // any class wishing to process wxWindows events must use this macro
109 DECLARE_EVENT_TABLE()
112 // ----------------------------------------------------------------------------
114 // ----------------------------------------------------------------------------
116 // IDs for the controls and the menu commands
120 Calendar_File_About
= 100,
122 Calendar_Cal_Monday
= 200,
123 Calendar_Cal_Holidays
,
124 Calendar_Cal_Special
,
127 Calendar_CalCtrl
= 1000,
130 // ----------------------------------------------------------------------------
131 // event tables and other macros for wxWindows
132 // ----------------------------------------------------------------------------
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
)
141 EVT_MENU(Calendar_Cal_Monday
, MyFrame::OnCalMonday
)
142 EVT_MENU(Calendar_Cal_Holidays
, MyFrame::OnCalHolidays
)
143 EVT_MENU(Calendar_Cal_Special
, MyFrame::OnCalSpecial
)
145 EVT_MENU(Calendar_Cal_Month
, MyFrame::OnCalAllowMonth
)
146 EVT_MENU(Calendar_Cal_Year
, MyFrame::OnCalAllowYear
)
148 EVT_UPDATE_UI(Calendar_Cal_Year
, MyFrame::OnAllowYearUpdate
)
151 BEGIN_EVENT_TABLE(MyPanel
, wxPanel
)
152 EVT_CALENDAR (Calendar_CalCtrl
, MyPanel::OnCalendar
)
153 EVT_CALENDAR_MONTH (Calendar_CalCtrl
, MyPanel::OnCalMonthChange
)
154 EVT_CALENDAR_YEAR (Calendar_CalCtrl
, MyPanel::OnCalYearChange
)
155 EVT_CALENDAR_SEL_CHANGED(Calendar_CalCtrl
, MyPanel::OnCalendarChange
)
156 EVT_CALENDAR_WEEKDAY_CLICKED(Calendar_CalCtrl
, MyPanel::OnCalendarWeekDayClick
)
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
166 // ============================================================================
168 // ============================================================================
170 // ----------------------------------------------------------------------------
171 // the application class
172 // ----------------------------------------------------------------------------
174 // `Main program' equivalent: the program execution "starts" here
177 // Create the main application window
178 MyFrame
*frame
= new MyFrame("Calendar wxWindows sample",
179 wxPoint(50, 50), wxSize(450, 340));
183 // success: wxApp::OnRun() will be called which will enter the main message
184 // loop and the application will run. If we returned FALSE here, the
185 // application would exit immediately.
189 // ----------------------------------------------------------------------------
191 // ----------------------------------------------------------------------------
194 MyFrame::MyFrame(const wxString
& title
, const wxPoint
& pos
, const wxSize
& size
)
195 : wxFrame((wxFrame
*)NULL
, -1, title
, pos
, size
)
198 wxMenu
*menuFile
= new wxMenu
;
200 menuFile
->Append(Calendar_File_About
, "&About...\tCtrl-A", "Show about dialog");
201 menuFile
->AppendSeparator();
202 menuFile
->Append(Calendar_File_Quit
, "E&xit\tAlt-X", "Quit this program");
204 wxMenu
*menuCal
= new wxMenu
;
205 menuCal
->Append(Calendar_Cal_Monday
,
206 "Monday &first weekday\tCtrl-F",
207 "Toggle between Mon and Sun as the first week day",
209 menuCal
->Append(Calendar_Cal_Holidays
, "Show &holidays\tCtrl-H",
210 "Toggle highlighting the holidays",
212 menuCal
->Append(Calendar_Cal_Special
, "Highlight &special dates\tCtrl-S",
213 "Test custom highlighting",
215 menuCal
->AppendSeparator();
216 menuCal
->Append(Calendar_Cal_Month
, "&Month can be changed\tCtrl-M",
217 "Allow changing the month in the calendar",
219 menuCal
->Append(Calendar_Cal_Year
, "&Year can be changed\tCtrl-Y",
220 "Allow changing the year in the calendar",
223 // now append the freshly created menu to the menu bar...
224 wxMenuBar
*menuBar
= new wxMenuBar
;
225 menuBar
->Append(menuFile
, "&File");
226 menuBar
->Append(menuCal
, "&Calendar");
228 menuBar
->Check(Calendar_Cal_Monday
, TRUE
);
229 menuBar
->Check(Calendar_Cal_Holidays
, TRUE
);
230 menuBar
->Check(Calendar_Cal_Month
, TRUE
);
231 menuBar
->Check(Calendar_Cal_Year
, TRUE
);
233 // ... and attach this menu bar to the frame
236 m_panel
= new MyPanel(this);
239 // create a status bar just for fun (by default with 1 pane only)
241 SetStatusText("Welcome to wxWindows!");
242 #endif // wxUSE_STATUSBAR
245 void MyFrame::OnQuit(wxCommandEvent
& WXUNUSED(event
))
247 // TRUE is to force the frame to close
251 void MyFrame::OnAbout(wxCommandEvent
& WXUNUSED(event
))
253 wxMessageBox(_T("wxCalendarCtrl sample\n© 2000 Vadim Zeitlin"),
254 _T("About Calendar"), wxOK
| wxICON_INFORMATION
, this);
257 void MyFrame::OnCalMonday(wxCommandEvent
& event
)
259 m_panel
->StartWithMonday(GetMenuBar()->IsChecked(event
.GetId()));
262 void MyFrame::OnCalHolidays(wxCommandEvent
& event
)
264 bool enable
= GetMenuBar()->IsChecked(event
.GetId());
265 m_panel
->GetCal()->EnableHolidayDisplay(enable
);
268 void MyFrame::OnCalSpecial(wxCommandEvent
& event
)
270 m_panel
->HighlightSpecial(GetMenuBar()->IsChecked(event
.GetId()));
273 void MyFrame::OnCalAllowMonth(wxCommandEvent
& event
)
275 bool allow
= GetMenuBar()->IsChecked(event
.GetId());
277 m_panel
->GetCal()->EnableMonthChange(allow
);
280 void MyFrame::OnCalAllowYear(wxCommandEvent
& event
)
282 bool allow
= GetMenuBar()->IsChecked(event
.GetId());
284 m_panel
->GetCal()->EnableYearChange(allow
);
287 void MyFrame::OnAllowYearUpdate(wxUpdateUIEvent
& event
)
289 event
.Enable( GetMenuBar()->IsChecked(Calendar_Cal_Month
));
292 // ----------------------------------------------------------------------------
294 // ----------------------------------------------------------------------------
296 MyPanel::MyPanel(wxFrame
*frame
)
302 date
.Printf("Selected date: %s",
303 wxDateTime::Today().FormatISODate().c_str());
304 m_date
= new wxStaticText(this, -1, date
);
305 m_calendar
= new wxCalendarCtrl(this, Calendar_CalCtrl
,
310 wxCAL_SHOW_HOLIDAYS
|
313 wxLayoutConstraints
*c
= new wxLayoutConstraints
;
314 c
->left
.SameAs(this, wxLeft
, 10);
315 c
->centreY
.SameAs(this, wxCentreY
);
319 m_date
->SetConstraints(c
);
321 c
= new wxLayoutConstraints
;
322 c
->left
.SameAs(m_date
, wxRight
, 20);
323 c
->centreY
.SameAs(this, wxCentreY
);
327 m_calendar
->SetConstraints(c
);
330 void MyPanel::OnCalendar(wxCalendarEvent
& event
)
332 wxLogMessage("Selected %s from calendar",
333 event
.GetDate().FormatISODate().c_str());
336 void MyPanel::OnCalendarChange(wxCalendarEvent
& event
)
339 s
.Printf("Selected date: %s", event
.GetDate().FormatISODate().c_str());
344 void MyPanel::OnCalMonthChange(wxCalendarEvent
& WXUNUSED(event
))
346 wxLogStatus("Calendar month changed");
349 void MyPanel::OnCalYearChange(wxCalendarEvent
& WXUNUSED(event
))
351 wxLogStatus("Calendar year changed");
354 void MyPanel::OnCalendarWeekDayClick(wxCalendarEvent
& event
)
356 wxLogMessage("Clicked on %s",
357 wxDateTime::GetWeekDayName(event
.GetWeekDay()).c_str());
360 void MyPanel::StartWithMonday(bool on
)
362 long style
= m_calendar
->GetWindowStyle();
364 style
|= wxCAL_MONDAY_FIRST
;
366 style
&= ~wxCAL_MONDAY_FIRST
;
368 m_calendar
->SetWindowStyle(style
);
370 m_calendar
->Refresh();
373 void MyPanel::HighlightSpecial(bool on
)
378 *attrRedCircle
= new wxCalendarDateAttr(wxCAL_BORDER_ROUND
, *wxRED
),
379 *attrGreenSquare
= new wxCalendarDateAttr(wxCAL_BORDER_SQUARE
, *wxGREEN
),
380 *attrHeaderLike
= new wxCalendarDateAttr(*wxBLUE
, *wxLIGHT_GREY
);
382 m_calendar
->SetAttr(17, attrRedCircle
);
383 m_calendar
->SetAttr(29, attrGreenSquare
);
384 m_calendar
->SetAttr(13, attrHeaderLike
);
388 m_calendar
->ResetAttr(17);
389 m_calendar
->ResetAttr(29);
390 m_calendar
->ResetAttr(13);
393 m_calendar
->Refresh();