This commit is huge but there are no non-white-space changes in it. Some files containing third-party sources (src/msw/wince/time.cpp, src/x11/pango*.cpp) were left unchanged. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@61724 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
102 lines
2.7 KiB
C++
102 lines
2.7 KiB
C++
/////////////////////////////////////////////////////////////////////////////
|
|
// Name: src/xrc/xh_collpane.cpp
|
|
// Purpose: XML resource handler for wxCollapsiblePane
|
|
// Author: Francesco Montorsi
|
|
// Created: 2006-10-27
|
|
// RCS-ID: $Id$
|
|
// Copyright: (c) 2006 Francesco Montorsi
|
|
// Licence: wxWindows licence
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
// For compilers that support precompilation, includes "wx.h".
|
|
#include "wx/wxprec.h"
|
|
|
|
#ifdef __BORLANDC__
|
|
#pragma hdrstop
|
|
#endif
|
|
|
|
#if wxUSE_XRC && wxUSE_COLLPANE
|
|
|
|
#ifndef WX_PRECOMP
|
|
#include "wx/log.h"
|
|
#endif
|
|
|
|
#include "wx/collpane.h"
|
|
#include "wx/xrc/xh_collpane.h"
|
|
|
|
IMPLEMENT_DYNAMIC_CLASS(wxCollapsiblePaneXmlHandler, wxXmlResourceHandler)
|
|
|
|
wxCollapsiblePaneXmlHandler::wxCollapsiblePaneXmlHandler()
|
|
: wxXmlResourceHandler(), m_isInside(false)
|
|
{
|
|
XRC_ADD_STYLE(wxCP_NO_TLW_RESIZE);
|
|
XRC_ADD_STYLE(wxCP_DEFAULT_STYLE);
|
|
AddWindowStyles();
|
|
}
|
|
|
|
wxObject *wxCollapsiblePaneXmlHandler::DoCreateResource()
|
|
{
|
|
if (m_class == wxT("panewindow")) // read the XRC for the pane window
|
|
{
|
|
wxXmlNode *n = GetParamNode(wxT("object"));
|
|
|
|
if ( !n )
|
|
n = GetParamNode(wxT("object_ref"));
|
|
|
|
if (n)
|
|
{
|
|
bool old_ins = m_isInside;
|
|
m_isInside = false;
|
|
wxObject *item = CreateResFromNode(n, m_collpane->GetPane(), NULL);
|
|
m_isInside = old_ins;
|
|
|
|
return item;
|
|
}
|
|
else
|
|
{
|
|
ReportError("no control within panewindow");
|
|
return NULL;
|
|
}
|
|
}
|
|
else
|
|
{
|
|
XRC_MAKE_INSTANCE(ctrl, wxCollapsiblePane)
|
|
|
|
wxString label = GetParamValue(wxT("label"));
|
|
if (label.empty())
|
|
{
|
|
ReportParamError("label", "label cannot be empty");
|
|
return NULL;
|
|
}
|
|
|
|
ctrl->Create(m_parentAsWindow,
|
|
GetID(),
|
|
label,
|
|
GetPosition(), GetSize(),
|
|
GetStyle(wxT("style"), wxCP_DEFAULT_STYLE),
|
|
wxDefaultValidator,
|
|
GetName());
|
|
|
|
ctrl->Collapse(GetBool(wxT("collapsed")));
|
|
SetupWindow(ctrl);
|
|
|
|
wxCollapsiblePane *old_par = m_collpane;
|
|
m_collpane = ctrl;
|
|
bool old_ins = m_isInside;
|
|
m_isInside = true;
|
|
CreateChildren(m_collpane, true/*only this handler*/);
|
|
m_isInside = old_ins;
|
|
m_collpane = old_par;
|
|
|
|
return ctrl;
|
|
}
|
|
}
|
|
|
|
bool wxCollapsiblePaneXmlHandler::CanHandle(wxXmlNode *node)
|
|
{
|
|
return IsOfClass(node, wxT("wxCollapsiblePane")) ||
|
|
(m_isInside && IsOfClass(node, wxT("panewindow")));
|
|
}
|
|
|
|
#endif // wxUSE_XRC && wxUSE_COLLPANE
|