]> git.saurik.com Git - wxWidgets.git/blob - src/xrc/xh_listb.cpp
implemented subclassing in XRC
[wxWidgets.git] / src / xrc / xh_listb.cpp
1 /////////////////////////////////////////////////////////////////////////////
2 // Name: xh_listb.cpp
3 // Purpose: XRC resource for wxListBox
4 // Author: Bob Mitchell & Vaclav Slavik
5 // Created: 2000/07/29
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_listb.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_listb.h"
23 #include "wx/listbox.h"
24
25 wxListBoxXmlHandler::wxListBoxXmlHandler()
26 : wxXmlResourceHandler() , m_insideBox(FALSE)
27 {
28 ADD_STYLE(wxLB_SINGLE);
29 ADD_STYLE(wxLB_MULTIPLE);
30 ADD_STYLE(wxLB_EXTENDED);
31 ADD_STYLE(wxLB_HSCROLL);
32 ADD_STYLE(wxLB_ALWAYS_SB);
33 ADD_STYLE(wxLB_NEEDED_SB);
34 ADD_STYLE(wxLB_SORT);
35 AddWindowStyles();
36 }
37
38 wxObject *wxListBoxXmlHandler::DoCreateResource()
39 {
40 if( m_class == wxT("wxListBox"))
41 {
42 // find the selection
43 long selection = GetLong( wxT("selection"), -1 );
44
45 // need to build the list of strings from children
46 m_insideBox = TRUE;
47 CreateChildrenPrivately( NULL, GetParamNode(wxT("content")));
48 wxString *strings = (wxString *) NULL;
49 if( strList.GetCount() > 0 )
50 {
51 strings = new wxString[strList.GetCount()];
52 int count = strList.GetCount();
53 for( int i = 0; i < count; i++ )
54 strings[i]=strList[i];
55 }
56
57 wxListBox *control = wxStaticCast(m_instance, wxListBox);
58
59 if (!control)
60 control = new wxListBox;
61
62 control->Create(m_parentAsWindow,
63 GetID(),
64 GetPosition(), GetSize(),
65 strList.GetCount(),
66 strings,
67 GetStyle(),
68 wxDefaultValidator,
69 GetName());
70
71 if( selection != -1 )
72 control->SetSelection( selection );
73
74 SetupWindow(control);
75
76 if( strings != NULL )
77 delete [] strings;
78 strList.Clear(); // dump the strings
79
80 return control;
81 }
82 else
83 {
84 // on the inside now.
85 // handle <item>Label</item>
86
87 // add to the list
88 strList.Add( GetNodeContent(m_node) );
89
90 return NULL;
91 }
92
93 }
94
95
96
97 bool wxListBoxXmlHandler::CanHandle(wxXmlNode *node)
98 {
99 return (IsOfClass(node, wxT("wxListBox")) ||
100 (m_insideBox && node->GetName() == wxT("item"))
101 );
102 }
103
104