]> git.saurik.com Git - wxWidgets.git/blame - contrib/src/xrc/xh_cald.cpp
Fixed mouse move bug. No idea why it has to be fixed,
[wxWidgets.git] / contrib / src / xrc / xh_cald.cpp
CommitLineData
78d14f80
VS
1/////////////////////////////////////////////////////////////////////////////
2// Name: xh_cald.cpp
3// Purpose: XML resource for wxCalendarCtrl
4// Author: Brian Gavin
5// Created: 2000/09/09
6// RCS-ID: $Id$
7// Copyright: (c) 2000 Brian Gavin
8// Licence: wxWindows licence
9/////////////////////////////////////////////////////////////////////////////
10
11#ifdef __GNUG__
12#pragma implementation "xh_cald.h"
13#endif
14
15// For compilers that support precompilation, includes "wx.h".
16#include "wx/wxprec.h"
17
18#ifdef __BORLANDC__
19 #pragma hdrstop
20#endif
21
22#include "wx/xrc/xh_cald.h"
23#include "wx/event.h"
24#include "wx/calctrl.h"
25
26
27wxCalendarCtrlXmlHandler::wxCalendarCtrlXmlHandler()
28: wxXmlResourceHandler()
29{
30 ADD_STYLE(wxCAL_SUNDAY_FIRST);
31 ADD_STYLE(wxCAL_MONDAY_FIRST);
32 ADD_STYLE(wxCAL_SHOW_HOLIDAYS);
33 ADD_STYLE(wxCAL_NO_YEAR_CHANGE);
34 ADD_STYLE(wxCAL_NO_MONTH_CHANGE);
35 AddWindowStyles();
36}
37
38
39wxObject *wxCalendarCtrlXmlHandler::DoCreateResource()
40{
41 wxCalendarCtrl *calendar = new wxCalendarCtrl(m_parentAsWindow,
42 GetID(),
43 wxDefaultDateTime,
44 /*TODO: take it from resource*/
45 GetPosition(), GetSize(),
46 GetStyle(),
47 GetName());
48
49 SetupWindow(calendar);
50
51 return calendar;
52}
53
54
55
56bool wxCalendarCtrlXmlHandler::CanHandle(wxXmlNode *node)
57{
58 return IsOfClass(node, wxT("wxCalendarCtrl"));
59}
60
61