add support of wxTE_PROCESS_ENTER (1/2 of patch 1831995)
[wxWidgets.git] / src / xrc / xh_combo.cpp
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 XRC_ADD_STYLE(wxTE_PROCESS_ENTER);
38 AddWindowStyles();
39 }
40
41 wxObject *wxComboBoxXmlHandler::DoCreateResource()
42 {
43 if( m_class == wxT("wxComboBox"))
44 {
45 // find the selection
46 long selection = GetLong( wxT("selection"), -1 );
47
48 // need to build the list of strings from children
49 m_insideBox = true;
50 CreateChildrenPrivately(NULL, GetParamNode(wxT("content")));
51
52 XRC_MAKE_INSTANCE(control, wxComboBox)
53
54 control->Create(m_parentAsWindow,
55 GetID(),
56 GetText(wxT("value")),
57 GetPosition(), GetSize(),
58 strList,
59 GetStyle(),
60 wxDefaultValidator,
61 GetName());
62
63 if (selection != -1)
64 control->SetSelection(selection);
65
66 SetupWindow(control);
67
68 strList.Clear(); // dump the strings
69
70 return control;
71 }
72 else
73 {
74 // on the inside now.
75 // handle <item>Label</item>
76
77 // add to the list
78 wxString str = GetNodeContent(m_node);
79 if (m_resource->GetFlags() & wxXRC_USE_LOCALE)
80 str = wxGetTranslation(str, m_resource->GetDomain());
81 strList.Add(str);
82
83 return NULL;
84 }
85 }
86
87 bool wxComboBoxXmlHandler::CanHandle(wxXmlNode *node)
88 {
89 return (IsOfClass(node, wxT("wxComboBox")) ||
90 (m_insideBox && node->GetName() == wxT("item")));
91 }
92
93 #endif // wxUSE_XRC && wxUSE_COMBOBOX