]>
Commit | Line | Data |
---|---|---|
56d2f750 VS |
1 | ///////////////////////////////////////////////////////////////////////////// |
2 | // Name: xh_radbx.cpp | |
3 | // Purpose: XML resource for wxRadioBox | |
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/xml/xh_radbx.h" | |
23 | #include "wx/radiobox.h" | |
24 | ||
25 | #if wxUSE_RADIOBOX | |
26 | ||
27 | wxRadioBoxXmlHandler::wxRadioBoxXmlHandler() | |
ab708d5d | 28 | : wxXmlResourceHandler() , m_insideBox(FALSE) |
56d2f750 VS |
29 | { |
30 | ADD_STYLE(wxRA_SPECIFY_COLS); | |
31 | ADD_STYLE(wxRA_HORIZONTAL); | |
32 | ADD_STYLE(wxRA_SPECIFY_ROWS); | |
33 | ADD_STYLE(wxRA_VERTICAL); | |
09dc1241 | 34 | AddWindowStyles(); |
56d2f750 VS |
35 | } |
36 | ||
37 | wxObject *wxRadioBoxXmlHandler::DoCreateResource() | |
38 | { | |
ab708d5d | 39 | if( m_class == wxT("wxRadioBox")) |
56d2f750 VS |
40 | { |
41 | // find the selection | |
a559d708 | 42 | long selection = GetLong( wxT("selection"), -1 ); |
56d2f750 VS |
43 | |
44 | // need to build the list of strings from children | |
ab708d5d | 45 | m_insideBox = TRUE; |
a559d708 | 46 | CreateChildrenPrivately( NULL, GetParamNode(wxT("content"))); |
56d2f750 VS |
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 | ||
56 | ||
ab708d5d | 57 | wxRadioBox *control = new wxRadioBox(m_parentAsWindow, |
56d2f750 | 58 | GetID(), |
a559d708 | 59 | GetText(wxT("label")), |
56d2f750 VS |
60 | GetPosition(), GetSize(), |
61 | strList.GetCount(), | |
62 | strings, | |
a559d708 | 63 | GetLong( wxT("dimension"), 1 ), |
56d2f750 VS |
64 | GetStyle(), |
65 | wxDefaultValidator, | |
66 | GetName() | |
67 | ); | |
68 | ||
69 | if( selection != -1 ) | |
70 | control->SetSelection( selection ); | |
71 | ||
72 | SetupWindow(control); | |
73 | ||
74 | if( strings != NULL ) | |
75 | delete [] strings; | |
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 | |
ab708d5d | 86 | strList.Add( GetNodeContent(m_node) ); |
56d2f750 VS |
87 | |
88 | return NULL; | |
89 | } | |
90 | ||
91 | } | |
92 | ||
93 | ||
94 | ||
95 | bool wxRadioBoxXmlHandler::CanHandle(wxXmlNode *node) | |
96 | { | |
a559d708 | 97 | return (IsOfClass(node, wxT("wxRadioBox")) || |
ab708d5d | 98 | (m_insideBox && node->GetName() == wxT("item")) |
e066e256 | 99 | ); |
56d2f750 VS |
100 | } |
101 | ||
102 | #endif |