]> git.saurik.com Git - wxWidgets.git/blame - contrib/src/xml/xh_bttn.cpp
Fixed buffer overrun in call to wxStripMenuCodes()
[wxWidgets.git] / contrib / src / xml / xh_bttn.cpp
CommitLineData
56d2f750
VS
1/////////////////////////////////////////////////////////////////////////////
2// Name: xh_bttn.cpp
3// Purpose: XML resource for buttons
4// Author: Vaclav Slavik
5// Created: 2000/03/05
6// RCS-ID: $Id$
7// Copyright: (c) 2000 Vaclav Slavik
8// Licence: wxWindows licence
9/////////////////////////////////////////////////////////////////////////////
10
11#ifdef __GNUG__
12#pragma implementation "xh_bttn.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/xml/xh_bttn.h"
23#include "wx/button.h"
24
25
09dc1241
VS
26wxButtonXmlHandler::wxButtonXmlHandler()
27: wxXmlResourceHandler()
28{
29 AddWindowStyles();
30}
31
32
56d2f750
VS
33wxObject *wxButtonXmlHandler::DoCreateResource()
34{
35 wxButton *button = new wxButton(m_ParentAsWindow,
36 GetID(),
37 GetText(_T("label")),
38 GetPosition(), GetSize(),
ef02ad9e
VS
39 GetStyle(),
40 wxDefaultValidator,
41 GetName());
56d2f750
VS
42 if (GetBool(_T("default"), 0) == 1) button->SetDefault();
43 SetupWindow(button);
44
45 return button;
46}
47
48
49
50bool wxButtonXmlHandler::CanHandle(wxXmlNode *node)
51{
e066e256 52 return IsOfClass(node, _T("wxButton"));
56d2f750
VS
53}
54
55