]>
Commit | Line | Data |
---|---|---|
78d14f80 VS |
1 | ///////////////////////////////////////////////////////////////////////////// |
2 | // Name: xh_radbt.cpp | |
b5d6954b | 3 | // Purpose: XRC resource for wxRadioButton |
78d14f80 VS |
4 | // Author: Bob Mitchell |
5 | // Created: 2000/03/21 | |
6 | // RCS-ID: $Id$ | |
7 | // Copyright: (c) 2000 Bob Mitchell and Verant Interactive | |
8 | // Licence: wxWindows licence | |
9 | ///////////////////////////////////////////////////////////////////////////// | |
10 | ||
11 | #ifdef __GNUG__ | |
12 | #pragma implementation "xh_radbt.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_radbt.h" | |
23 | #include "wx/radiobut.h" | |
24 | ||
25 | #if wxUSE_RADIOBOX | |
26 | ||
27 | wxRadioButtonXmlHandler::wxRadioButtonXmlHandler() | |
28 | : wxXmlResourceHandler() | |
29 | { | |
30 | ADD_STYLE( wxRB_GROUP ); | |
31 | AddWindowStyles(); | |
32 | } | |
33 | ||
34 | wxObject *wxRadioButtonXmlHandler::DoCreateResource() | |
35 | { | |
36 | /* BOBM - implementation note. | |
37 | * once the wxBitmapRadioButton is implemented. | |
38 | * look for a bitmap property. If not null, | |
39 | * make it a wxBitmapRadioButton instead of the | |
40 | * normal radio button. | |
41 | */ | |
42 | ||
f2588180 VS |
43 | wxRadioButton *control = wxStaticCast(m_instance, wxRadioButton); |
44 | ||
45 | if (!control) | |
46 | control = new wxRadioButton; | |
47 | ||
48 | control->Create(m_parentAsWindow, | |
49 | GetID(), | |
50 | GetText(wxT("label")), | |
51 | GetPosition(), GetSize(), | |
52 | GetStyle(), | |
53 | wxDefaultValidator, | |
54 | GetName()); | |
78d14f80 VS |
55 | |
56 | control->SetValue( GetBool(wxT("value"), 0)); | |
57 | SetupWindow(control); | |
58 | ||
59 | return control; | |
60 | } | |
61 | ||
62 | ||
63 | ||
64 | bool wxRadioButtonXmlHandler::CanHandle(wxXmlNode *node) | |
65 | { | |
66 | return IsOfClass(node, wxT("wxRadioButton")); | |
67 | } | |
68 | ||
69 | ||
70 | #endif |