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