1 /////////////////////////////////////////////////////////////////////////////
2 // Name: src/xrc/xh_bmpcbox.cpp
3 // Purpose: XRC resource for wxBitmapComboBox
4 // Author: Jaakko Salli
5 // Created: Sep-10-2006
7 // Copyright: (c) 2006 Jaakko Salli
8 // Licence: wxWindows licence
9 /////////////////////////////////////////////////////////////////////////////
11 // For compilers that support precompilation, includes "wx.h".
12 #include "wx/wxprec.h"
18 #if wxUSE_XRC && wxUSE_BITMAPCOMBOBOX
20 #include "wx/xrc/xh_bmpcbox.h"
27 #include "wx/bmpcbox.h"
29 #include "wx/xml/xml.h"
31 IMPLEMENT_DYNAMIC_CLASS(wxBitmapComboBoxXmlHandler
, wxXmlResourceHandler
)
33 wxBitmapComboBoxXmlHandler::wxBitmapComboBoxXmlHandler()
34 :wxXmlResourceHandler()
38 XRC_ADD_STYLE(wxCB_SORT
);
39 XRC_ADD_STYLE(wxCB_READONLY
);
43 wxObject
*wxBitmapComboBoxXmlHandler::DoCreateResource()
45 if (m_class
== wxT("ownerdrawnitem"))
49 ReportError("ownerdrawnitem only allowed within a wxBitmapComboBox");
53 m_combobox
->Append(GetText(wxT("text")),
54 GetBitmap(wxT("bitmap")));
58 else /*if( m_class == wxT("wxBitmapComboBox"))*/
61 long selection
= GetLong( wxT("selection"), -1 );
63 XRC_MAKE_INSTANCE(control
, wxBitmapComboBox
)
65 control
->Create(m_parentAsWindow
,
67 GetText(wxT("value")),
68 GetPosition(), GetSize(),
78 wxXmlNode
*children_node
= GetParamNode(wxT("object"));
80 wxXmlNode
*n
= children_node
;
84 if ((n
->GetType() == wxXML_ELEMENT_NODE
) &&
85 (n
->GetName() == wxT("object")))
87 CreateResFromNode(n
, control
, NULL
);
96 control
->SetSelection(selection
);
104 bool wxBitmapComboBoxXmlHandler::CanHandle(wxXmlNode
*node
)
106 return ((!m_isInside
&& IsOfClass(node
, wxT("wxBitmapComboBox"))) ||
107 (m_isInside
&& IsOfClass(node
, wxT("ownerdrawnitem"))));
110 #endif // wxUSE_XRC && wxUSE_BITMAPCOMBOBOX