]>
Commit | Line | Data |
---|---|---|
78d14f80 | 1 | ///////////////////////////////////////////////////////////////////////////// |
88a7a4e1 | 2 | // Name: src/xrc/xh_combo.cpp |
5f6475c1 | 3 | // Purpose: XRC resource for wxComboBox |
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_COMBOBOX |
a1e4ec87 | 19 | |
78d14f80 | 20 | #include "wx/xrc/xh_combo.h" |
88a7a4e1 WS |
21 | |
22 | #ifndef WX_PRECOMP | |
23 | #include "wx/intl.h" | |
a5bbd1cc | 24 | #include "wx/combobox.h" |
7920be66 | 25 | #include "wx/textctrl.h" // for wxTE_PROCESS_ENTER |
88a7a4e1 WS |
26 | #endif |
27 | ||
854e189f VS |
28 | IMPLEMENT_DYNAMIC_CLASS(wxComboBoxXmlHandler, wxXmlResourceHandler) |
29 | ||
f80ea77b | 30 | wxComboBoxXmlHandler::wxComboBoxXmlHandler() |
a5bbd1cc WS |
31 | :wxXmlResourceHandler() |
32 | ,m_insideBox(false) | |
78d14f80 | 33 | { |
544fee32 VS |
34 | XRC_ADD_STYLE(wxCB_SIMPLE); |
35 | XRC_ADD_STYLE(wxCB_SORT); | |
36 | XRC_ADD_STYLE(wxCB_READONLY); | |
37 | XRC_ADD_STYLE(wxCB_DROPDOWN); | |
1d196b01 | 38 | XRC_ADD_STYLE(wxTE_PROCESS_ENTER); |
78d14f80 VS |
39 | AddWindowStyles(); |
40 | } | |
41 | ||
42 | wxObject *wxComboBoxXmlHandler::DoCreateResource() | |
f80ea77b | 43 | { |
78d14f80 VS |
44 | if( m_class == wxT("wxComboBox")) |
45 | { | |
46 | // find the selection | |
47 | long selection = GetLong( wxT("selection"), -1 ); | |
48 | ||
49 | // need to build the list of strings from children | |
f80ea77b | 50 | m_insideBox = true; |
544fee32 | 51 | CreateChildrenPrivately(NULL, GetParamNode(wxT("content"))); |
78d14f80 | 52 | |
544fee32 | 53 | XRC_MAKE_INSTANCE(control, wxComboBox) |
78d14f80 | 54 | |
544fee32 | 55 | control->Create(m_parentAsWindow, |
f2588180 VS |
56 | GetID(), |
57 | GetText(wxT("value")), | |
58 | GetPosition(), GetSize(), | |
187d8152 | 59 | strList, |
f2588180 VS |
60 | GetStyle(), |
61 | wxDefaultValidator, | |
62 | GetName()); | |
78d14f80 | 63 | |
544fee32 VS |
64 | if (selection != -1) |
65 | control->SetSelection(selection); | |
78d14f80 VS |
66 | |
67 | SetupWindow(control); | |
68 | ||
f80ea77b | 69 | strList.Clear(); // dump the strings |
78d14f80 VS |
70 | |
71 | return control; | |
72 | } | |
73 | else | |
74 | { | |
75 | // on the inside now. | |
76 | // handle <item>Label</item> | |
77 | ||
78 | // add to the list | |
74c107ba VS |
79 | wxString str = GetNodeContent(m_node); |
80 | if (m_resource->GetFlags() & wxXRC_USE_LOCALE) | |
d4a724d4 | 81 | str = wxGetTranslation(str, m_resource->GetDomain()); |
74c107ba | 82 | strList.Add(str); |
78d14f80 VS |
83 | |
84 | return NULL; | |
85 | } | |
78d14f80 VS |
86 | } |
87 | ||
78d14f80 VS |
88 | bool wxComboBoxXmlHandler::CanHandle(wxXmlNode *node) |
89 | { | |
90 | return (IsOfClass(node, wxT("wxComboBox")) || | |
544fee32 | 91 | (m_insideBox && node->GetName() == wxT("item"))); |
78d14f80 VS |
92 | } |
93 | ||
621be1ec | 94 | #endif // wxUSE_XRC && wxUSE_COMBOBOX |