Files correlati : Commento : Spostamento in libraries delle librerie esterne di Campo per una maggiore pulizia e organizzazione git-svn-id: svn://10.65.10.50/branches/R_10_00@24150 c028cbd2-c16b-5b4b-a496-9718f37d4682
62 lines
1.5 KiB
C++
62 lines
1.5 KiB
C++
/////////////////////////////////////////////////////////////////////////////
|
|
// Name: src/xrc/xh_panel.cpp
|
|
// Purpose: XRC resource for panels
|
|
// Author: Vaclav Slavik
|
|
// Created: 2000/03/05
|
|
// RCS-ID: $Id: xh_panel.cpp 39045 2006-05-05 08:10:55Z ABX $
|
|
// Copyright: (c) 2000 Vaclav Slavik
|
|
// Licence: wxWindows licence
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
// For compilers that support precompilation, includes "wx.h".
|
|
#include "wx/wxprec.h"
|
|
|
|
#ifdef __BORLANDC__
|
|
#pragma hdrstop
|
|
#endif
|
|
|
|
#if wxUSE_XRC
|
|
|
|
#include "wx/xrc/xh_panel.h"
|
|
|
|
#ifndef WX_PRECOMP
|
|
#include "wx/panel.h"
|
|
#include "wx/frame.h"
|
|
#endif
|
|
|
|
IMPLEMENT_DYNAMIC_CLASS(wxPanelXmlHandler, wxXmlResourceHandler)
|
|
|
|
wxPanelXmlHandler::wxPanelXmlHandler() : wxXmlResourceHandler()
|
|
{
|
|
#if WXWIN_COMPATIBILITY_2_6
|
|
XRC_ADD_STYLE(wxNO_3D);
|
|
#endif // WXWIN_COMPATIBILITY_2_6
|
|
XRC_ADD_STYLE(wxTAB_TRAVERSAL);
|
|
XRC_ADD_STYLE(wxWS_EX_VALIDATE_RECURSIVELY);
|
|
|
|
AddWindowStyles();
|
|
}
|
|
|
|
wxObject *wxPanelXmlHandler::DoCreateResource()
|
|
{
|
|
XRC_MAKE_INSTANCE(panel, wxPanel)
|
|
|
|
panel->Create(m_parentAsWindow,
|
|
GetID(),
|
|
GetPosition(), GetSize(),
|
|
GetStyle(wxT("style"), wxTAB_TRAVERSAL),
|
|
GetName());
|
|
|
|
SetupWindow(panel);
|
|
CreateChildren(panel);
|
|
|
|
return panel;
|
|
}
|
|
|
|
bool wxPanelXmlHandler::CanHandle(wxXmlNode *node)
|
|
{
|
|
return IsOfClass(node, wxT("wxPanel"));
|
|
}
|
|
|
|
#endif // wxUSE_XRC
|