wxCHECK_MSG(m_parentSizer != NULL ||
(parentNode && parentNode->GetType() == wxXML_ELEMENT_NODE &&
- m_parentAsWindow != NULL &&
- (m_parentAsWindow->IsKindOf(CLASSINFO(wxWindow)))
- ), NULL,
- wxT("Incorrect use of sizer: parent is not a 'wxWindow'."));
+ m_parentAsWindow), NULL,
+ wxT("Sizer must have a window parent node"));
if (m_class == wxT("wxBoxSizer"))
sizer = Handle_wxBoxSizer();
+#if wxUSE_STATBOX
else if (m_class == wxT("wxStaticBoxSizer"))
sizer = Handle_wxStaticBoxSizer();
+#endif
else if (m_class == wxT("wxGridSizer"))
sizer = Handle_wxGridSizer();
return new wxBoxSizer(GetStyle(wxT("orient"), wxHORIZONTAL));
}
+#if wxUSE_STATBOX
wxSizer* wxSizerXmlHandler::Handle_wxStaticBoxSizer()
{
return new wxStaticBoxSizer(
GetName()),
GetStyle(wxT("orient"), wxHORIZONTAL));
}
+#endif // wxUSE_STATBOX
wxSizer* wxSizerXmlHandler::Handle_wxGridSizer()
{