]>
Commit | Line | Data |
---|---|---|
78d14f80 VS |
1 | ///////////////////////////////////////////////////////////////////////////// |
2 | // Name: xh_radbx.cpp | |
b5d6954b | 3 | // Purpose: XRC resource for wxRadioBox |
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_radbx.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_radbx.h" | |
23 | #include "wx/radiobox.h" | |
24 | ||
25 | #if wxUSE_RADIOBOX | |
26 | ||
27 | wxRadioBoxXmlHandler::wxRadioBoxXmlHandler() | |
544fee32 | 28 | : wxXmlResourceHandler(), m_insideBox(FALSE) |
78d14f80 | 29 | { |
544fee32 VS |
30 | XRC_ADD_STYLE(wxRA_SPECIFY_COLS); |
31 | XRC_ADD_STYLE(wxRA_HORIZONTAL); | |
32 | XRC_ADD_STYLE(wxRA_SPECIFY_ROWS); | |
33 | XRC_ADD_STYLE(wxRA_VERTICAL); | |
78d14f80 VS |
34 | AddWindowStyles(); |
35 | } | |
36 | ||
37 | wxObject *wxRadioBoxXmlHandler::DoCreateResource() | |
38 | { | |
39 | if( m_class == wxT("wxRadioBox")) | |
40 | { | |
41 | // find the selection | |
42 | long selection = GetLong( wxT("selection"), -1 ); | |
43 | ||
44 | // need to build the list of strings from children | |
45 | m_insideBox = TRUE; | |
46 | CreateChildrenPrivately( NULL, GetParamNode(wxT("content"))); | |
47 | wxString *strings = (wxString *) NULL; | |
48 | if( strList.GetCount() > 0 ) | |
49 | { | |
50 | strings = new wxString[strList.GetCount()]; | |
51 | int count = strList.GetCount(); | |
52 | for( int i = 0; i < count; i++ ) | |
53 | strings[i]=strList[i]; | |
54 | } | |
55 | ||
544fee32 | 56 | XRC_MAKE_INSTANCE(control, wxRadioBox) |
f2588180 VS |
57 | |
58 | control->Create(m_parentAsWindow, | |
59 | GetID(), | |
60 | GetText(wxT("label")), | |
61 | GetPosition(), GetSize(), | |
62 | strList.GetCount(), | |
63 | strings, | |
64 | GetLong(wxT("dimension"), 1), | |
65 | GetStyle(), | |
66 | wxDefaultValidator, | |
67 | GetName()); | |
78d14f80 | 68 | |
544fee32 VS |
69 | if (selection != -1) |
70 | control->SetSelection(selection); | |
78d14f80 VS |
71 | |
72 | SetupWindow(control); | |
73 | ||
544fee32 VS |
74 | if (strings != NULL) |
75 | delete[] strings; | |
78d14f80 VS |
76 | strList.Clear(); // dump the strings |
77 | ||
78 | return control; | |
79 | } | |
80 | else | |
81 | { | |
82 | // on the inside now. | |
83 | // handle <item selected="boolean">Label</item> | |
84 | ||
85 | // add to the list | |
544fee32 | 86 | strList.Add(GetNodeContent(m_node)); |
78d14f80 VS |
87 | |
88 | return NULL; | |
89 | } | |
90 | ||
91 | } | |
92 | ||
78d14f80 VS |
93 | bool wxRadioBoxXmlHandler::CanHandle(wxXmlNode *node) |
94 | { | |
95 | return (IsOfClass(node, wxT("wxRadioBox")) || | |
544fee32 | 96 | (m_insideBox && node->GetName() == wxT("item"))); |
78d14f80 VS |
97 | } |
98 | ||
99 | #endif |