]> git.saurik.com Git - wxWidgets.git/blame - src/xrc/xh_panel.cpp
check that wxString is valid before dumping it
[wxWidgets.git] / src / xrc / xh_panel.cpp
CommitLineData
78d14f80
VS
1/////////////////////////////////////////////////////////////////////////////
2// Name: xh_panel.cpp
b5d6954b 3// Purpose: XRC resource for panels
78d14f80
VS
4// Author: Vaclav Slavik
5// Created: 2000/03/05
6// RCS-ID: $Id$
7// Copyright: (c) 2000 Vaclav Slavik
8// Licence: wxWindows licence
9/////////////////////////////////////////////////////////////////////////////
f80ea77b 10
c575e45a 11#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
78d14f80
VS
12#pragma implementation "xh_panel.h"
13#endif
14
15// For compilers that support precompilation, includes "wx.h".
16#include "wx/wxprec.h"
17
18#ifdef __BORLANDC__
19 #pragma hdrstop
20#endif
21
621be1ec 22#if wxUSE_XRC
a1e4ec87 23
78d14f80
VS
24#include "wx/xrc/xh_panel.h"
25#include "wx/panel.h"
dbe839cc 26#include "wx/frame.h" // to get wxNO_3D
78d14f80 27
854e189f 28IMPLEMENT_DYNAMIC_CLASS(wxPanelXmlHandler, wxXmlResourceHandler)
78d14f80
VS
29
30wxPanelXmlHandler::wxPanelXmlHandler() : wxXmlResourceHandler()
31{
544fee32
VS
32 XRC_ADD_STYLE(wxNO_3D);
33 XRC_ADD_STYLE(wxTAB_TRAVERSAL);
34 XRC_ADD_STYLE(wxWS_EX_VALIDATE_RECURSIVELY);
9dc579b3 35
78d14f80
VS
36 AddWindowStyles();
37}
38
78d14f80 39wxObject *wxPanelXmlHandler::DoCreateResource()
f80ea77b 40{
544fee32 41 XRC_MAKE_INSTANCE(panel, wxPanel)
f2588180
VS
42
43 panel->Create(m_parentAsWindow,
44 GetID(),
45 GetPosition(), GetSize(),
46 GetStyle(wxT("style"), wxTAB_TRAVERSAL),
47 GetName());
48
78d14f80
VS
49 SetupWindow(panel);
50 CreateChildren(panel);
f80ea77b 51
78d14f80
VS
52 return panel;
53}
54
78d14f80
VS
55bool wxPanelXmlHandler::CanHandle(wxXmlNode *node)
56{
57 return IsOfClass(node, wxT("wxPanel"));
58}
a1e4ec87 59
621be1ec 60#endif // wxUSE_XRC