]> git.saurik.com Git - wxWidgets.git/blame - contrib/src/xrc/xh_choic.cpp
implemented subclassing in XRC
[wxWidgets.git] / contrib / 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"
24
25wxChoiceXmlHandler::wxChoiceXmlHandler()
26: wxXmlResourceHandler() , m_insideBox(FALSE)
27{
28 ADD_STYLE(wxCB_SORT);
29 AddWindowStyles();
30}
31
32wxObject *wxChoiceXmlHandler::DoCreateResource()
33{
34 if( m_class == wxT("wxChoice"))
35 {
36 // find the selection
37 long selection = GetLong( wxT("selection"), -1 );
38
39 // need to build the list of strings from children
40 m_insideBox = TRUE;
41 CreateChildrenPrivately( NULL, GetParamNode(wxT("content")));
42 wxString *strings = (wxString *) NULL;
43 if( strList.GetCount() > 0 )
44 {
45 strings = new wxString[strList.GetCount()];
46 int count = strList.GetCount();
47 for( int i = 0; i < count; i++ )
48 strings[i]=strList[i];
49 }
50
f2588180
VS
51 wxChoice *control = wxStaticCast(m_instance, wxChoice);
52
53 if (!control)
54 control = new wxChoice;
55
56 control->Create(m_parentAsWindow,
57 GetID(),
58 GetPosition(), GetSize(),
59 strList.GetCount(),
60 strings,
61 GetStyle(),
62 wxDefaultValidator,
63 GetName());
78d14f80
VS
64
65 if( selection != -1 )
66 control->SetSelection( selection );
67
68 SetupWindow(control);
69
70 if( strings != NULL )
71 delete [] strings;
72 strList.Clear(); // dump the strings
73
74 return control;
75 }
76 else
77 {
78 // on the inside now.
79 // handle <item>Label</item>
80
81 // add to the list
82 strList.Add( GetNodeContent(m_node) );
83
84 return NULL;
85 }
86
87}
88
89
90
91bool wxChoiceXmlHandler::CanHandle(wxXmlNode *node)
92{
93 return (IsOfClass(node, wxT("wxChoice")) ||
94 (m_insideBox && node->GetName() == wxT("item"))
95 );
96}
97
98