]>
git.saurik.com Git - wxWidgets.git/blob - src/xrc/xh_listb.cpp
1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: XRC resource for wxListBox
4 // Author: Bob Mitchell & Vaclav Slavik
7 // Copyright: (c) 2000 Bob Mitchell and Verant Interactive
8 // Licence: wxWindows licence
9 /////////////////////////////////////////////////////////////////////////////
11 // For compilers that support precompilation, includes "wx.h".
12 #include "wx/wxprec.h"
20 #include "wx/xrc/xh_listb.h"
21 #include "wx/listbox.h"
24 IMPLEMENT_DYNAMIC_CLASS(wxListBoxXmlHandler
, wxXmlResourceHandler
)
26 wxListBoxXmlHandler::wxListBoxXmlHandler()
27 : wxXmlResourceHandler() , m_insideBox(false)
29 XRC_ADD_STYLE(wxLB_SINGLE
);
30 XRC_ADD_STYLE(wxLB_MULTIPLE
);
31 XRC_ADD_STYLE(wxLB_EXTENDED
);
32 XRC_ADD_STYLE(wxLB_HSCROLL
);
33 XRC_ADD_STYLE(wxLB_ALWAYS_SB
);
34 XRC_ADD_STYLE(wxLB_NEEDED_SB
);
35 XRC_ADD_STYLE(wxLB_SORT
);
39 wxObject
*wxListBoxXmlHandler::DoCreateResource()
41 if( m_class
== wxT("wxListBox"))
44 long selection
= GetLong(wxT("selection"), -1);
46 // need to build the list of strings from children
48 CreateChildrenPrivately(NULL
, GetParamNode(wxT("content")));
49 wxString
*strings
= (wxString
*) NULL
;
50 if (strList
.GetCount() > 0)
52 strings
= new wxString
[strList
.GetCount()];
53 int count
= strList
.GetCount();
54 for (int i
= 0; i
< count
; i
++)
55 strings
[i
]=strList
[i
];
58 XRC_MAKE_INSTANCE(control
, wxListBox
)
60 control
->Create(m_parentAsWindow
,
62 GetPosition(), GetSize(),
70 control
->SetSelection(selection
);
76 strList
.Clear(); // dump the strings
83 // handle <item>Label</item>
86 wxString str
= GetNodeContent(m_node
);
87 if (m_resource
->GetFlags() & wxXRC_USE_LOCALE
)
88 str
= wxGetTranslation(str
);
95 bool wxListBoxXmlHandler::CanHandle(wxXmlNode
*node
)
97 return (IsOfClass(node
, wxT("wxListBox")) ||
98 (m_insideBox
&& node
->GetName() == wxT("item")));