]>
Commit | Line | Data |
---|---|---|
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 |
26 | wxButtonXmlHandler::wxButtonXmlHandler() |
27 | : wxXmlResourceHandler() | |
28 | { | |
a3246852 VS |
29 | ADD_STYLE(wxBU_LEFT); |
30 | ADD_STYLE(wxBU_RIGHT); | |
31 | ADD_STYLE(wxBU_TOP); | |
32 | ADD_STYLE(wxBU_BOTTOM); | |
09dc1241 VS |
33 | AddWindowStyles(); |
34 | } | |
35 | ||
36 | ||
56d2f750 VS |
37 | wxObject *wxButtonXmlHandler::DoCreateResource() |
38 | { | |
ab708d5d | 39 | wxButton *button = new wxButton(m_parentAsWindow, |
56d2f750 | 40 | GetID(), |
a559d708 | 41 | GetText(wxT("label")), |
56d2f750 | 42 | GetPosition(), GetSize(), |
ef02ad9e VS |
43 | GetStyle(), |
44 | wxDefaultValidator, | |
45 | GetName()); | |
a559d708 | 46 | if (GetBool(wxT("default"), 0) == 1) button->SetDefault(); |
56d2f750 VS |
47 | SetupWindow(button); |
48 | ||
49 | return button; | |
50 | } | |
51 | ||
52 | ||
53 | ||
54 | bool wxButtonXmlHandler::CanHandle(wxXmlNode *node) | |
55 | { | |
a559d708 | 56 | return IsOfClass(node, wxT("wxButton")); |
56d2f750 VS |
57 | } |
58 | ||
59 |