]>
git.saurik.com Git - wxWidgets.git/blob - src/xrc/xh_notbk.cpp
1 /////////////////////////////////////////////////////////////////////////////
2 // Name: src/xrc/xh_notbk.cpp
3 // Purpose: XRC resource for wxNotebook
4 // Author: Vaclav Slavik
7 // Copyright: (c) 2000 Vaclav Slavik
8 // Licence: wxWindows licence
9 /////////////////////////////////////////////////////////////////////////////
11 // For compilers that support precompilation, includes "wx.h".
12 #include "wx/wxprec.h"
18 #if wxUSE_XRC && wxUSE_NOTEBOOK
20 #include "wx/xrc/xh_notbk.h"
27 #include "wx/notebook.h"
28 #include "wx/imaglist.h"
30 IMPLEMENT_DYNAMIC_CLASS(wxNotebookXmlHandler
, wxXmlResourceHandler
)
32 wxNotebookXmlHandler::wxNotebookXmlHandler()
33 :wxXmlResourceHandler(),
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
);
43 #if WXWIN_COMPATIBILITY_2_6
44 XRC_ADD_STYLE(wxNB_DEFAULT
);
45 XRC_ADD_STYLE(wxNB_LEFT
);
46 XRC_ADD_STYLE(wxNB_RIGHT
);
47 XRC_ADD_STYLE(wxNB_TOP
);
48 XRC_ADD_STYLE(wxNB_BOTTOM
);
51 XRC_ADD_STYLE(wxNB_FIXEDWIDTH
);
52 XRC_ADD_STYLE(wxNB_MULTILINE
);
53 XRC_ADD_STYLE(wxNB_NOPAGETHEME
);
58 wxObject
*wxNotebookXmlHandler::DoCreateResource()
60 if (m_class
== wxT("notebookpage"))
62 wxXmlNode
*n
= GetParamNode(wxT("object"));
65 n
= GetParamNode(wxT("object_ref"));
69 bool old_ins
= m_isInside
;
71 wxObject
*item
= CreateResFromNode(n
, m_notebook
, NULL
);
73 wxWindow
*wnd
= wxDynamicCast(item
, wxWindow
);
77 m_notebook
->AddPage(wnd
, GetText(wxT("label")),
78 GetBool(wxT("selected")));
79 if ( HasParam(wxT("bitmap")) )
81 wxBitmap bmp
= GetBitmap(wxT("bitmap"), wxART_OTHER
);
82 wxImageList
*imgList
= m_notebook
->GetImageList();
83 if ( imgList
== NULL
)
85 imgList
= new wxImageList( bmp
.GetWidth(), bmp
.GetHeight() );
86 m_notebook
->AssignImageList( imgList
);
88 int imgIndex
= imgList
->Add(bmp
);
89 m_notebook
->SetPageImage(m_notebook
->GetPageCount()-1, imgIndex
);
93 wxLogError(wxT("Error in resource."));
98 wxLogError(wxT("Error in resource: no control within notebook's <page> tag."));
105 XRC_MAKE_INSTANCE(nb
, wxNotebook
)
107 nb
->Create(m_parentAsWindow
,
109 GetPosition(), GetSize(),
110 GetStyle(wxT("style")),
115 wxNotebook
*old_par
= m_notebook
;
117 bool old_ins
= m_isInside
;
119 CreateChildren(m_notebook
, true/*only this handler*/);
120 m_isInside
= old_ins
;
121 m_notebook
= old_par
;
127 bool wxNotebookXmlHandler::CanHandle(wxXmlNode
*node
)
129 return ((!m_isInside
&& IsOfClass(node
, wxT("wxNotebook"))) ||
130 (m_isInside
&& IsOfClass(node
, wxT("notebookpage"))));
133 #endif // wxUSE_XRC && wxUSE_NOTEBOOK