]>
Commit | Line | Data |
---|---|---|
78d14f80 | 1 | ///////////////////////////////////////////////////////////////////////////// |
1c067fe3 | 2 | // Name: src/xrc/xh_panel.cpp |
b5d6954b | 3 | // Purpose: XRC resource for panels |
78d14f80 VS |
4 | // Author: Vaclav Slavik |
5 | // Created: 2000/03/05 | |
78d14f80 VS |
6 | // Copyright: (c) 2000 Vaclav Slavik |
7 | // Licence: wxWindows licence | |
8 | ///////////////////////////////////////////////////////////////////////////// | |
f80ea77b | 9 | |
78d14f80 VS |
10 | // For compilers that support precompilation, includes "wx.h". |
11 | #include "wx/wxprec.h" | |
12 | ||
13 | #ifdef __BORLANDC__ | |
14 | #pragma hdrstop | |
15 | #endif | |
16 | ||
621be1ec | 17 | #if wxUSE_XRC |
a1e4ec87 | 18 | |
78d14f80 | 19 | #include "wx/xrc/xh_panel.h" |
8e609c82 WS |
20 | |
21 | #ifndef WX_PRECOMP | |
22 | #include "wx/panel.h" | |
76b49cf4 | 23 | #include "wx/frame.h" |
8e609c82 WS |
24 | #endif |
25 | ||
854e189f | 26 | IMPLEMENT_DYNAMIC_CLASS(wxPanelXmlHandler, wxXmlResourceHandler) |
78d14f80 VS |
27 | |
28 | wxPanelXmlHandler::wxPanelXmlHandler() : wxXmlResourceHandler() | |
29 | { | |
1c067fe3 | 30 | #if WXWIN_COMPATIBILITY_2_6 |
544fee32 | 31 | XRC_ADD_STYLE(wxNO_3D); |
1c067fe3 | 32 | #endif // WXWIN_COMPATIBILITY_2_6 |
544fee32 VS |
33 | XRC_ADD_STYLE(wxTAB_TRAVERSAL); |
34 | XRC_ADD_STYLE(wxWS_EX_VALIDATE_RECURSIVELY); | |
1c067fe3 | 35 | |
78d14f80 VS |
36 | AddWindowStyles(); |
37 | } | |
38 | ||
78d14f80 | 39 | wxObject *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 |
55 | bool wxPanelXmlHandler::CanHandle(wxXmlNode *node) |
56 | { | |
57 | return IsOfClass(node, wxT("wxPanel")); | |
58 | } | |
a1e4ec87 | 59 | |
621be1ec | 60 | #endif // wxUSE_XRC |