]>
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 | ///////////////////////////////////////////////////////////////////////////// | |
f80ea77b | 10 | |
78d14f80 VS |
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 | ||
854e189f | 25 | IMPLEMENT_DYNAMIC_CLASS(wxButtonXmlHandler, wxXmlResourceHandler) |
78d14f80 | 26 | |
f80ea77b WS |
27 | wxButtonXmlHandler::wxButtonXmlHandler() |
28 | : wxXmlResourceHandler() | |
78d14f80 | 29 | { |
544fee32 VS |
30 | XRC_ADD_STYLE(wxBU_LEFT); |
31 | XRC_ADD_STYLE(wxBU_RIGHT); | |
32 | XRC_ADD_STYLE(wxBU_TOP); | |
33 | XRC_ADD_STYLE(wxBU_BOTTOM); | |
27ce9aef | 34 | XRC_ADD_STYLE(wxBU_EXACTFIT); |
78d14f80 VS |
35 | AddWindowStyles(); |
36 | } | |
37 | ||
78d14f80 | 38 | wxObject *wxButtonXmlHandler::DoCreateResource() |
f80ea77b | 39 | { |
544fee32 | 40 | XRC_MAKE_INSTANCE(button, wxButton) |
f2588180 VS |
41 | |
42 | button->Create(m_parentAsWindow, | |
43 | GetID(), | |
44 | GetText(wxT("label")), | |
45 | GetPosition(), GetSize(), | |
46 | GetStyle(), | |
47 | wxDefaultValidator, | |
48 | GetName()); | |
49 | ||
544fee32 VS |
50 | if (GetBool(wxT("default"), 0)) |
51 | button->SetDefault(); | |
78d14f80 | 52 | SetupWindow(button); |
f80ea77b | 53 | |
78d14f80 VS |
54 | return button; |
55 | } | |
56 | ||
78d14f80 VS |
57 | bool wxButtonXmlHandler::CanHandle(wxXmlNode *node) |
58 | { | |
59 | return IsOfClass(node, wxT("wxButton")); | |
60 | } |