]>
Commit | Line | Data |
---|---|---|
78d14f80 VS |
1 | ///////////////////////////////////////////////////////////////////////////// |
2 | // Name: xh_bttn.cpp | |
b5d6954b | 3 | // Purpose: XRC resource for buttons |
78d14f80 VS |
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/xrc/xh_bttn.h" | |
23 | #include "wx/button.h" | |
24 | ||
25 | ||
26 | wxButtonXmlHandler::wxButtonXmlHandler() | |
27 | : wxXmlResourceHandler() | |
28 | { | |
544fee32 VS |
29 | XRC_ADD_STYLE(wxBU_LEFT); |
30 | XRC_ADD_STYLE(wxBU_RIGHT); | |
31 | XRC_ADD_STYLE(wxBU_TOP); | |
32 | XRC_ADD_STYLE(wxBU_BOTTOM); | |
78d14f80 VS |
33 | AddWindowStyles(); |
34 | } | |
35 | ||
78d14f80 VS |
36 | wxObject *wxButtonXmlHandler::DoCreateResource() |
37 | { | |
544fee32 | 38 | XRC_MAKE_INSTANCE(button, wxButton) |
f2588180 VS |
39 | |
40 | button->Create(m_parentAsWindow, | |
41 | GetID(), | |
42 | GetText(wxT("label")), | |
43 | GetPosition(), GetSize(), | |
44 | GetStyle(), | |
45 | wxDefaultValidator, | |
46 | GetName()); | |
47 | ||
544fee32 VS |
48 | if (GetBool(wxT("default"), 0)) |
49 | button->SetDefault(); | |
78d14f80 VS |
50 | SetupWindow(button); |
51 | ||
52 | return button; | |
53 | } | |
54 | ||
78d14f80 VS |
55 | bool wxButtonXmlHandler::CanHandle(wxXmlNode *node) |
56 | { | |
57 | return IsOfClass(node, wxT("wxButton")); | |
58 | } |