]> git.saurik.com Git - wxWidgets.git/blame - src/xrc/xh_panel.cpp
Fixes so joystick not only compiles on Linux, but it actually works too!
[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/////////////////////////////////////////////////////////////////////////////
10
11#ifdef __GNUG__
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
22#include "wx/xrc/xh_panel.h"
23#include "wx/panel.h"
dbe839cc 24#include "wx/frame.h" // to get wxNO_3D
78d14f80 25
854e189f 26IMPLEMENT_DYNAMIC_CLASS(wxPanelXmlHandler, wxXmlResourceHandler)
78d14f80
VS
27
28wxPanelXmlHandler::wxPanelXmlHandler() : wxXmlResourceHandler()
29{
544fee32
VS
30 XRC_ADD_STYLE(wxNO_3D);
31 XRC_ADD_STYLE(wxTAB_TRAVERSAL);
32 XRC_ADD_STYLE(wxWS_EX_VALIDATE_RECURSIVELY);
33 XRC_ADD_STYLE(wxCLIP_CHILDREN);
78d14f80
VS
34 AddWindowStyles();
35}
36
78d14f80
VS
37wxObject *wxPanelXmlHandler::DoCreateResource()
38{
544fee32 39 XRC_MAKE_INSTANCE(panel, wxPanel)
f2588180
VS
40
41 panel->Create(m_parentAsWindow,
42 GetID(),
43 GetPosition(), GetSize(),
44 GetStyle(wxT("style"), wxTAB_TRAVERSAL),
45 GetName());
46
78d14f80
VS
47 SetupWindow(panel);
48 CreateChildren(panel);
49
50 return panel;
51}
52
78d14f80
VS
53bool wxPanelXmlHandler::CanHandle(wxXmlNode *node)
54{
55 return IsOfClass(node, wxT("wxPanel"));
56}