]>
Commit | Line | Data |
---|---|---|
78d14f80 | 1 | ///////////////////////////////////////////////////////////////////////////// |
d5da0ce7 | 2 | // Name: src/xrc/xh_cald.cpp |
b5d6954b | 3 | // Purpose: XRC resource for wxCalendarCtrl |
78d14f80 VS |
4 | // Author: Brian Gavin |
5 | // Created: 2000/09/09 | |
6 | // RCS-ID: $Id$ | |
7 | // Copyright: (c) 2000 Brian Gavin | |
8 | // Licence: wxWindows licence | |
9 | ///////////////////////////////////////////////////////////////////////////// | |
f80ea77b | 10 | |
78d14f80 VS |
11 | // For compilers that support precompilation, includes "wx.h". |
12 | #include "wx/wxprec.h" | |
13 | ||
14 | #ifdef __BORLANDC__ | |
15 | #pragma hdrstop | |
16 | #endif | |
17 | ||
621be1ec | 18 | #if wxUSE_XRC && wxUSE_CALENDARCTRL |
f03b9d45 | 19 | |
78d14f80 | 20 | #include "wx/xrc/xh_cald.h" |
d5da0ce7 WS |
21 | |
22 | #ifndef WX_PRECOMP | |
23 | #include "wx/event.h" | |
24 | #endif //WX_PRECOMP | |
25 | ||
78d14f80 VS |
26 | #include "wx/calctrl.h" |
27 | ||
854e189f | 28 | IMPLEMENT_DYNAMIC_CLASS(wxCalendarCtrlXmlHandler, wxXmlResourceHandler) |
78d14f80 | 29 | |
f80ea77b WS |
30 | wxCalendarCtrlXmlHandler::wxCalendarCtrlXmlHandler() |
31 | : wxXmlResourceHandler() | |
78d14f80 | 32 | { |
544fee32 VS |
33 | XRC_ADD_STYLE(wxCAL_SUNDAY_FIRST); |
34 | XRC_ADD_STYLE(wxCAL_MONDAY_FIRST); | |
35 | XRC_ADD_STYLE(wxCAL_SHOW_HOLIDAYS); | |
36 | XRC_ADD_STYLE(wxCAL_NO_YEAR_CHANGE); | |
37 | XRC_ADD_STYLE(wxCAL_NO_MONTH_CHANGE); | |
c1250407 JS |
38 | XRC_ADD_STYLE(wxCAL_SEQUENTIAL_MONTH_SELECTION); |
39 | XRC_ADD_STYLE(wxCAL_SHOW_SURROUNDING_WEEKS); | |
40 | ||
78d14f80 VS |
41 | AddWindowStyles(); |
42 | } | |
43 | ||
44 | ||
45 | wxObject *wxCalendarCtrlXmlHandler::DoCreateResource() | |
f80ea77b | 46 | { |
544fee32 | 47 | XRC_MAKE_INSTANCE(calendar, wxCalendarCtrl); |
f2588180 VS |
48 | |
49 | calendar->Create(m_parentAsWindow, | |
50 | GetID(), | |
51 | wxDefaultDateTime, | |
52 | /*TODO: take it from resource*/ | |
53 | GetPosition(), GetSize(), | |
54 | GetStyle(), | |
55 | GetName()); | |
f80ea77b | 56 | |
78d14f80 | 57 | SetupWindow(calendar); |
f80ea77b | 58 | |
78d14f80 VS |
59 | return calendar; |
60 | } | |
61 | ||
78d14f80 VS |
62 | bool wxCalendarCtrlXmlHandler::CanHandle(wxXmlNode *node) |
63 | { | |
64 | return IsOfClass(node, wxT("wxCalendarCtrl")); | |
65 | } | |
f03b9d45 | 66 | |
621be1ec | 67 | #endif // wxUSE_XRC && wxUSE_CALENDARCTRL |