]>
Commit | Line | Data |
---|---|---|
78d14f80 | 1 | ///////////////////////////////////////////////////////////////////////////// |
2ddb4d13 | 2 | // Name: src/xrc/xh_notbk.cpp |
b5d6954b | 3 | // Purpose: XRC resource for wxNotebook |
78d14f80 VS |
4 | // Author: Vaclav Slavik |
5 | // Created: 2000/03/21 | |
6 | // RCS-ID: $Id$ | |
7 | // Copyright: (c) 2000 Vaclav Slavik | |
8 | // Licence: wxWindows licence | |
9 | ///////////////////////////////////////////////////////////////////////////// | |
78d14f80 VS |
10 | |
11 | // For compilers that support precompilation, includes "wx.h". | |
12 | #include "wx/wxprec.h" | |
13 | ||
14 | #ifdef __BORLANDC__ | |
15 | #pragma hdrstop | |
16 | #endif | |
17 | ||
621be1ec | 18 | #if wxUSE_XRC && wxUSE_NOTEBOOK |
78d14f80 | 19 | |
a1e4ec87 | 20 | #include "wx/xrc/xh_notbk.h" |
78d14f80 | 21 | |
e4db172a WS |
22 | #ifndef WX_PRECOMP |
23 | #include "wx/log.h" | |
ed2fbeb8 | 24 | #include "wx/sizer.h" |
e4db172a WS |
25 | #endif |
26 | ||
78d14f80 | 27 | #include "wx/notebook.h" |
48414952 | 28 | #include "wx/imaglist.h" |
78d14f80 | 29 | |
854e189f VS |
30 | IMPLEMENT_DYNAMIC_CLASS(wxNotebookXmlHandler, wxXmlResourceHandler) |
31 | ||
f80ea77b | 32 | wxNotebookXmlHandler::wxNotebookXmlHandler() |
ed2fbeb8 WS |
33 | :wxXmlResourceHandler(), |
34 | m_isInside(false), | |
35 | m_notebook(NULL) | |
78d14f80 | 36 | { |
2ddb4d13 WS |
37 | XRC_ADD_STYLE(wxBK_DEFAULT); |
38 | XRC_ADD_STYLE(wxBK_LEFT); | |
39 | XRC_ADD_STYLE(wxBK_RIGHT); | |
40 | XRC_ADD_STYLE(wxBK_TOP); | |
41 | XRC_ADD_STYLE(wxBK_BOTTOM); | |
42 | ||
43 | #if WXWIN_COMPATIBILITY_2_6 | |
5a439c1a | 44 | XRC_ADD_STYLE(wxNB_DEFAULT); |
544fee32 VS |
45 | XRC_ADD_STYLE(wxNB_LEFT); |
46 | XRC_ADD_STYLE(wxNB_RIGHT); | |
2c12c792 | 47 | XRC_ADD_STYLE(wxNB_TOP); |
544fee32 | 48 | XRC_ADD_STYLE(wxNB_BOTTOM); |
2ddb4d13 | 49 | #endif |
5a439c1a WS |
50 | |
51 | XRC_ADD_STYLE(wxNB_FIXEDWIDTH); | |
52 | XRC_ADD_STYLE(wxNB_MULTILINE); | |
53 | XRC_ADD_STYLE(wxNB_NOPAGETHEME); | |
54 | ||
78d14f80 VS |
55 | AddWindowStyles(); |
56 | } | |
57 | ||
78d14f80 | 58 | wxObject *wxNotebookXmlHandler::DoCreateResource() |
f80ea77b | 59 | { |
78d14f80 VS |
60 | if (m_class == wxT("notebookpage")) |
61 | { | |
62 | wxXmlNode *n = GetParamNode(wxT("object")); | |
63 | ||
544fee32 VS |
64 | if ( !n ) |
65 | n = GetParamNode(wxT("object_ref")); | |
f2588180 | 66 | |
78d14f80 VS |
67 | if (n) |
68 | { | |
69 | bool old_ins = m_isInside; | |
f80ea77b | 70 | m_isInside = false; |
78d14f80 | 71 | wxObject *item = CreateResFromNode(n, m_notebook, NULL); |
71ff7c91 | 72 | m_isInside = old_ins; |
78d14f80 VS |
73 | wxWindow *wnd = wxDynamicCast(item, wxWindow); |
74 | ||
75 | if (wnd) | |
48414952 | 76 | { |
78d14f80 | 77 | m_notebook->AddPage(wnd, GetText(wxT("label")), |
9fbad34d | 78 | GetBool(wxT("selected"))); |
48414952 JS |
79 | if ( HasParam(wxT("bitmap")) ) |
80 | { | |
81 | wxBitmap bmp = GetBitmap(wxT("bitmap"), wxART_OTHER); | |
82 | wxImageList *imgList = m_notebook->GetImageList(); | |
83 | if ( imgList == NULL ) | |
84 | { | |
85 | imgList = new wxImageList( bmp.GetWidth(), bmp.GetHeight() ); | |
86 | m_notebook->AssignImageList( imgList ); | |
87 | } | |
88 | int imgIndex = imgList->Add(bmp); | |
89 | m_notebook->SetPageImage(m_notebook->GetPageCount()-1, imgIndex ); | |
90 | } | |
91 | } | |
f80ea77b WS |
92 | else |
93 | wxLogError(wxT("Error in resource.")); | |
78d14f80 VS |
94 | return wnd; |
95 | } | |
96 | else | |
97 | { | |
98 | wxLogError(wxT("Error in resource: no control within notebook's <page> tag.")); | |
99 | return NULL; | |
100 | } | |
101 | } | |
f80ea77b WS |
102 | |
103 | else | |
544fee32 VS |
104 | { |
105 | XRC_MAKE_INSTANCE(nb, wxNotebook) | |
f2588180 | 106 | |
f80ea77b | 107 | nb->Create(m_parentAsWindow, |
544fee32 VS |
108 | GetID(), |
109 | GetPosition(), GetSize(), | |
110 | GetStyle(wxT("style")), | |
111 | GetName()); | |
f2588180 | 112 | |
311b2ea7 VS |
113 | SetupWindow(nb); |
114 | ||
78d14f80 VS |
115 | wxNotebook *old_par = m_notebook; |
116 | m_notebook = nb; | |
117 | bool old_ins = m_isInside; | |
f80ea77b WS |
118 | m_isInside = true; |
119 | CreateChildren(m_notebook, true/*only this handler*/); | |
78d14f80 VS |
120 | m_isInside = old_ins; |
121 | m_notebook = old_par; | |
122 | ||
adbf2d73 | 123 | return nb; |
78d14f80 VS |
124 | } |
125 | } | |
126 | ||
78d14f80 VS |
127 | bool wxNotebookXmlHandler::CanHandle(wxXmlNode *node) |
128 | { | |
129 | return ((!m_isInside && IsOfClass(node, wxT("wxNotebook"))) || | |
130 | (m_isInside && IsOfClass(node, wxT("notebookpage")))); | |
131 | } | |
132 | ||
621be1ec | 133 | #endif // wxUSE_XRC && wxUSE_NOTEBOOK |