]> git.saurik.com Git - wxWidgets.git/blame - src/xrc/xh_choic.cpp
attempt to recommit , contained binary data for some reason
[wxWidgets.git] / src / xrc / xh_choic.cpp
CommitLineData
78d14f80
VS
1/////////////////////////////////////////////////////////////////////////////
2// Name: xh_choic.cpp
b5d6954b 3// Purpose: XRC resource for wxChoice
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_choic.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_choic.h"
23#include "wx/choice.h"
02df3799 24#include "wx/intl.h"
78d14f80
VS
25
26wxChoiceXmlHandler::wxChoiceXmlHandler()
27: wxXmlResourceHandler() , m_insideBox(FALSE)
28{
544fee32 29 XRC_ADD_STYLE(wxCB_SORT);
78d14f80
VS
30 AddWindowStyles();
31}
32
33wxObject *wxChoiceXmlHandler::DoCreateResource()
34{
35 if( m_class == wxT("wxChoice"))
36 {
37 // find the selection
544fee32 38 long selection = GetLong(wxT("selection"), -1);
78d14f80
VS
39
40 // need to build the list of strings from children
41 m_insideBox = TRUE;
544fee32 42 CreateChildrenPrivately(NULL, GetParamNode(wxT("content")));
78d14f80 43 wxString *strings = (wxString *) NULL;
544fee32 44 if (strList.GetCount() > 0)
78d14f80
VS
45 {
46 strings = new wxString[strList.GetCount()];
47 int count = strList.GetCount();
544fee32 48 for (int i = 0; i < count; i++)
78d14f80
VS
49 strings[i]=strList[i];
50 }
51
544fee32 52 XRC_MAKE_INSTANCE(control, wxChoice)
f2588180
VS
53
54 control->Create(m_parentAsWindow,
55 GetID(),
56 GetPosition(), GetSize(),
57 strList.GetCount(),
58 strings,
59 GetStyle(),
60 wxDefaultValidator,
61 GetName());
78d14f80 62
544fee32
VS
63 if (selection != -1)
64 control->SetSelection(selection);
78d14f80
VS
65
66 SetupWindow(control);
67
544fee32
VS
68 if (strings != NULL)
69 delete[] strings;
78d14f80
VS
70 strList.Clear(); // dump the strings
71
72 return control;
73 }
74 else
75 {
76 // on the inside now.
77 // handle <item>Label</item>
78
79 // add to the list
74c107ba
VS
80 wxString str = GetNodeContent(m_node);
81 if (m_resource->GetFlags() & wxXRC_USE_LOCALE)
82 str = wxGetTranslation(str);
83 strList.Add(str);
78d14f80
VS
84
85 return NULL;
86 }
78d14f80
VS
87}
88
78d14f80
VS
89bool wxChoiceXmlHandler::CanHandle(wxXmlNode *node)
90{
91 return (IsOfClass(node, wxT("wxChoice")) ||
544fee32 92 (m_insideBox && node->GetName() == wxT("item")));
78d14f80 93}