]>
Commit | Line | Data |
---|---|---|
78d14f80 | 1 | ///////////////////////////////////////////////////////////////////////////// |
88a7a4e1 | 2 | // Name: src/xrc/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 | ///////////////////////////////////////////////////////////////////////////// | |
f80ea77b | 10 | |
78d14f80 VS |
11 | // For compilers that support precompilation, includes "wx.h". |
12 | #include "wx/wxprec.h" | |
13 | ||
14 | #ifdef __BORLANDC__ | |
15 | #pragma hdrstop | |
16 | #endif | |
17 | ||
621be1ec | 18 | #if wxUSE_XRC && wxUSE_RADIOBOX |
a1e4ec87 | 19 | |
78d14f80 | 20 | #include "wx/xrc/xh_radbx.h" |
88a7a4e1 WS |
21 | |
22 | #ifndef WX_PRECOMP | |
23 | #include "wx/intl.h" | |
24 | #endif | |
25 | ||
78d14f80 VS |
26 | #include "wx/radiobox.h" |
27 | ||
854e189f VS |
28 | IMPLEMENT_DYNAMIC_CLASS(wxRadioBoxXmlHandler, wxXmlResourceHandler) |
29 | ||
f80ea77b WS |
30 | wxRadioBoxXmlHandler::wxRadioBoxXmlHandler() |
31 | : wxXmlResourceHandler(), m_insideBox(false) | |
78d14f80 | 32 | { |
544fee32 VS |
33 | XRC_ADD_STYLE(wxRA_SPECIFY_COLS); |
34 | XRC_ADD_STYLE(wxRA_HORIZONTAL); | |
35 | XRC_ADD_STYLE(wxRA_SPECIFY_ROWS); | |
36 | XRC_ADD_STYLE(wxRA_VERTICAL); | |
78d14f80 VS |
37 | AddWindowStyles(); |
38 | } | |
39 | ||
40 | wxObject *wxRadioBoxXmlHandler::DoCreateResource() | |
f80ea77b | 41 | { |
d64ad2c7 | 42 | if ( m_class == wxT("wxRadioBox")) |
78d14f80 VS |
43 | { |
44 | // find the selection | |
45 | long selection = GetLong( wxT("selection"), -1 ); | |
46 | ||
47 | // need to build the list of strings from children | |
f80ea77b | 48 | m_insideBox = true; |
78d14f80 | 49 | CreateChildrenPrivately( NULL, GetParamNode(wxT("content"))); |
d64ad2c7 VZ |
50 | |
51 | wxString *strings; | |
52 | if ( !labels.empty() ) | |
53 | { | |
54 | strings = new wxString[labels.size()]; | |
55 | const unsigned count = labels.size(); | |
56 | for( unsigned i = 0; i < count; i++ ) | |
57 | strings[i] = labels[i]; | |
58 | } | |
59 | else | |
78d14f80 | 60 | { |
d64ad2c7 | 61 | strings = NULL; |
78d14f80 VS |
62 | } |
63 | ||
544fee32 | 64 | XRC_MAKE_INSTANCE(control, wxRadioBox) |
f2588180 VS |
65 | |
66 | control->Create(m_parentAsWindow, | |
67 | GetID(), | |
68 | GetText(wxT("label")), | |
69 | GetPosition(), GetSize(), | |
d64ad2c7 | 70 | labels.size(), |
f2588180 VS |
71 | strings, |
72 | GetLong(wxT("dimension"), 1), | |
73 | GetStyle(), | |
74 | wxDefaultValidator, | |
75 | GetName()); | |
78d14f80 | 76 | |
d64ad2c7 VZ |
77 | delete[] strings; |
78 | ||
544fee32 VS |
79 | if (selection != -1) |
80 | control->SetSelection(selection); | |
78d14f80 VS |
81 | |
82 | SetupWindow(control); | |
83 | ||
7577ac4b | 84 | #if wxUSE_TOOLTIPS |
d64ad2c7 VZ |
85 | const unsigned count = labels.size(); |
86 | for( unsigned i = 0; i < count; i++ ) | |
87 | { | |
88 | if ( !tooltips[i].empty() ) | |
89 | control->SetItemToolTip(i, tooltips[i]); | |
90 | } | |
7577ac4b | 91 | #endif // wxUSE_TOOLTIPS |
d64ad2c7 VZ |
92 | |
93 | labels.clear(); // dump the strings | |
94 | tooltips.clear(); // dump the tooltips | |
78d14f80 VS |
95 | |
96 | return control; | |
97 | } | |
d64ad2c7 | 98 | else // inside the radiobox element |
78d14f80 | 99 | { |
d64ad2c7 | 100 | // we handle <item tooltip="...">Label</item> constructs here |
78d14f80 | 101 | |
74c107ba | 102 | wxString str = GetNodeContent(m_node); |
d64ad2c7 VZ |
103 | wxString tooltip; |
104 | m_node->GetPropVal(wxT("tooltip"), &tooltip); | |
105 | ||
74c107ba | 106 | if (m_resource->GetFlags() & wxXRC_USE_LOCALE) |
d64ad2c7 | 107 | { |
74c107ba | 108 | str = wxGetTranslation(str); |
d64ad2c7 VZ |
109 | if ( !tooltip.empty() ) |
110 | tooltip = wxGetTranslation(tooltip); | |
111 | } | |
112 | ||
113 | labels.push_back(str); | |
114 | tooltips.push_back(tooltip); | |
78d14f80 VS |
115 | |
116 | return NULL; | |
117 | } | |
118 | ||
119 | } | |
120 | ||
78d14f80 VS |
121 | bool wxRadioBoxXmlHandler::CanHandle(wxXmlNode *node) |
122 | { | |
123 | return (IsOfClass(node, wxT("wxRadioBox")) || | |
544fee32 | 124 | (m_insideBox && node->GetName() == wxT("item"))); |
78d14f80 VS |
125 | } |
126 | ||
a1e4ec87 | 127 | #endif // wxUSE_XRC && wxUSE_RADIOBOX |