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