]> git.saurik.com Git - wxWidgets.git/blame - contrib/src/xrc/xh_combo.cpp
Updated to use correct value for wxSTC_MASK_FOLDERS
[wxWidgets.git] / contrib / src / xrc / xh_combo.cpp
CommitLineData
78d14f80
VS
1/////////////////////////////////////////////////////////////////////////////
2// Name: xh_combo.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/////////////////////////////////////////////////////////////////////////////
10
11#ifdef __GNUG__
12#pragma implementation "xh_combo.h"
13#endif
14
15// For compilers that support precompilation, includes "wx.h".
16#include "wx/wxprec.h"
17
18#ifdef __BORLANDC__
19 #pragma hdrstop
20#endif
21
22#include "wx/xrc/xh_combo.h"
23#include "wx/combobox.h"
24
25#if wxUSE_COMBOBOX
26
27wxComboBoxXmlHandler::wxComboBoxXmlHandler()
28: wxXmlResourceHandler() , m_insideBox(FALSE)
29{
544fee32
VS
30 XRC_ADD_STYLE(wxCB_SIMPLE);
31 XRC_ADD_STYLE(wxCB_SORT);
32 XRC_ADD_STYLE(wxCB_READONLY);
33 XRC_ADD_STYLE(wxCB_DROPDOWN);
78d14f80
VS
34 AddWindowStyles();
35}
36
37wxObject *wxComboBoxXmlHandler::DoCreateResource()
38{
39 if( m_class == wxT("wxComboBox"))
40 {
41 // find the selection
42 long selection = GetLong( wxT("selection"), -1 );
43
44 // need to build the list of strings from children
45 m_insideBox = TRUE;
544fee32 46 CreateChildrenPrivately(NULL, GetParamNode(wxT("content")));
78d14f80 47 wxString *strings = (wxString *) NULL;
544fee32 48 if (strList.GetCount() > 0)
78d14f80
VS
49 {
50 strings = new wxString[strList.GetCount()];
51 int count = strList.GetCount();
544fee32 52 for (int i = 0; i < count; i++)
78d14f80
VS
53 strings[i]=strList[i];
54 }
55
544fee32 56 XRC_MAKE_INSTANCE(control, wxComboBox)
78d14f80 57
544fee32 58 control->Create(m_parentAsWindow,
f2588180
VS
59 GetID(),
60 GetText(wxT("value")),
61 GetPosition(), GetSize(),
62 strList.GetCount(),
63 strings,
64 GetStyle(),
65 wxDefaultValidator,
66 GetName());
78d14f80 67
544fee32
VS
68 if (selection != -1)
69 control->SetSelection(selection);
78d14f80
VS
70
71 SetupWindow(control);
72
544fee32
VS
73 if (strings != NULL)
74 delete[] strings;
78d14f80
VS
75 strList.Clear(); // dump the strings
76
77 return control;
78 }
79 else
80 {
81 // on the inside now.
82 // handle <item>Label</item>
83
84 // add to the list
544fee32 85 strList.Add(GetNodeContent(m_node));
78d14f80
VS
86
87 return NULL;
88 }
78d14f80
VS
89}
90
78d14f80
VS
91bool wxComboBoxXmlHandler::CanHandle(wxXmlNode *node)
92{
93 return (IsOfClass(node, wxT("wxComboBox")) ||
544fee32 94 (m_insideBox && node->GetName() == wxT("item")));
78d14f80
VS
95}
96
97#endif