git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@12624 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
53 lines
1.3 KiB
C++
53 lines
1.3 KiB
C++
/////////////////////////////////////////////////////////////////////////////
|
|
// Name: xh_stbox.cpp
|
|
// Purpose: XRC resource for wxStaticBox
|
|
// Author: Brian Gavin
|
|
// Created: 2000/09/09
|
|
// RCS-ID: $Id$
|
|
// Copyright: (c) 2000 Brian Gavin
|
|
// Licence: wxWindows licence
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
#ifdef __GNUG__
|
|
#pragma implementation "xh_stbox.h"
|
|
#endif
|
|
|
|
// For compilers that support precompilation, includes "wx.h".
|
|
#include "wx/wxprec.h"
|
|
|
|
#ifdef __BORLANDC__
|
|
#pragma hdrstop
|
|
#endif
|
|
|
|
#include "wx/xrc/xh_stbox.h"
|
|
#include "wx/statbox.h"
|
|
|
|
wxStaticBoxXmlHandler::wxStaticBoxXmlHandler()
|
|
: wxXmlResourceHandler()
|
|
{
|
|
AddWindowStyles();
|
|
}
|
|
|
|
wxObject *wxStaticBoxXmlHandler::DoCreateResource()
|
|
{
|
|
wxStaticBox *box = new wxStaticBox(m_parentAsWindow,
|
|
GetID(),
|
|
GetText(wxT("label")),
|
|
GetPosition(), GetSize(),
|
|
GetStyle(),
|
|
GetName()
|
|
);
|
|
SetupWindow(box);
|
|
|
|
return box;
|
|
}
|
|
|
|
|
|
|
|
bool wxStaticBoxXmlHandler::CanHandle(wxXmlNode *node)
|
|
{
|
|
return IsOfClass(node, wxT("wxStaticBox"));
|
|
}
|
|
|
|
|