]>
Commit | Line | Data |
---|---|---|
1 | ///////////////////////////////////////////////////////////////////////////// | |
2 | // Name: xh_panel.cpp | |
3 | // Purpose: XRC resource for panels | |
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 | #if defined(__GNUG__) && !defined(NO_GCC_PRAGMA) | |
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 | #if wxUSE_XRC | |
23 | ||
24 | #include "wx/xrc/xh_panel.h" | |
25 | #include "wx/panel.h" | |
26 | #include "wx/frame.h" // to get wxNO_3D | |
27 | ||
28 | IMPLEMENT_DYNAMIC_CLASS(wxPanelXmlHandler, wxXmlResourceHandler) | |
29 | ||
30 | wxPanelXmlHandler::wxPanelXmlHandler() : wxXmlResourceHandler() | |
31 | { | |
32 | XRC_ADD_STYLE(wxNO_3D); | |
33 | XRC_ADD_STYLE(wxTAB_TRAVERSAL); | |
34 | XRC_ADD_STYLE(wxWS_EX_VALIDATE_RECURSIVELY); | |
35 | ||
36 | AddWindowStyles(); | |
37 | } | |
38 | ||
39 | wxObject *wxPanelXmlHandler::DoCreateResource() | |
40 | { | |
41 | XRC_MAKE_INSTANCE(panel, wxPanel) | |
42 | ||
43 | panel->Create(m_parentAsWindow, | |
44 | GetID(), | |
45 | GetPosition(), GetSize(), | |
46 | GetStyle(wxT("style"), wxTAB_TRAVERSAL), | |
47 | GetName()); | |
48 | ||
49 | SetupWindow(panel); | |
50 | CreateChildren(panel); | |
51 | ||
52 | return panel; | |
53 | } | |
54 | ||
55 | bool wxPanelXmlHandler::CanHandle(wxXmlNode *node) | |
56 | { | |
57 | return IsOfClass(node, wxT("wxPanel")); | |
58 | } | |
59 | ||
60 | #endif // wxUSE_XRC |