]>
Commit | Line | Data |
---|---|---|
78d14f80 | 1 | ///////////////////////////////////////////////////////////////////////////// |
76b49cf4 | 2 | // Name: src/xrc/xh_menu.cpp |
b5d6954b | 3 | // Purpose: XRC resource for menus and menubars |
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 | ///////////////////////////////////////////////////////////////////////////// | |
f80ea77b | 10 | |
78d14f80 VS |
11 | // For compilers that support precompilation, includes "wx.h". |
12 | #include "wx/wxprec.h" | |
13 | ||
14 | #ifdef __BORLANDC__ | |
15 | #pragma hdrstop | |
16 | #endif | |
17 | ||
dd47af27 | 18 | #if wxUSE_XRC && wxUSE_MENUS |
a1e4ec87 | 19 | |
78d14f80 | 20 | #include "wx/xrc/xh_menu.h" |
76b49cf4 WS |
21 | |
22 | #ifndef WX_PRECOMP | |
23 | #include "wx/frame.h" | |
3b3dc801 | 24 | #include "wx/menu.h" |
76b49cf4 WS |
25 | #endif |
26 | ||
854e189f | 27 | IMPLEMENT_DYNAMIC_CLASS(wxMenuXmlHandler, wxXmlResourceHandler) |
78d14f80 | 28 | |
f80ea77b WS |
29 | wxMenuXmlHandler::wxMenuXmlHandler() : |
30 | wxXmlResourceHandler(), m_insideMenu(false) | |
78d14f80 | 31 | { |
544fee32 | 32 | XRC_ADD_STYLE(wxMENU_TEAROFF); |
78d14f80 VS |
33 | } |
34 | ||
78d14f80 VS |
35 | wxObject *wxMenuXmlHandler::DoCreateResource() |
36 | { | |
37 | if (m_class == wxT("wxMenu")) | |
38 | { | |
c01d5de8 VZ |
39 | wxMenu *menu = m_instance ? wxStaticCast(m_instance, wxMenu) |
40 | : new wxMenu(GetStyle()); | |
41 | ||
78d14f80 VS |
42 | wxString title = GetText(wxT("label")); |
43 | wxString help = GetText(wxT("help")); | |
f80ea77b | 44 | |
78d14f80 | 45 | bool oldins = m_insideMenu; |
f80ea77b WS |
46 | m_insideMenu = true; |
47 | CreateChildren(menu, true/*only this handler*/); | |
78d14f80 VS |
48 | m_insideMenu = oldins; |
49 | ||
50 | wxMenuBar *p_bar = wxDynamicCast(m_parent, wxMenuBar); | |
51 | if (p_bar) | |
b71e9003 | 52 | { |
78d14f80 | 53 | p_bar->Append(menu, title); |
b71e9003 | 54 | } |
78d14f80 VS |
55 | else |
56 | { | |
57 | wxMenu *p_menu = wxDynamicCast(m_parent, wxMenu); | |
58 | if (p_menu) | |
b71e9003 | 59 | { |
78d14f80 | 60 | p_menu->Append(GetID(), title, menu, help); |
b71e9003 JS |
61 | if (HasParam(wxT("enabled"))) |
62 | p_menu->Enable(GetID(), GetBool(wxT("enabled"))); | |
63 | } | |
78d14f80 VS |
64 | } |
65 | ||
66 | return menu; | |
67 | } | |
68 | ||
69 | else | |
70 | { | |
71 | wxMenu *p_menu = wxDynamicCast(m_parent, wxMenu); | |
f80ea77b | 72 | |
78d14f80 VS |
73 | if (m_class == wxT("separator")) |
74 | p_menu->AppendSeparator(); | |
75 | else if (m_class == wxT("break")) | |
76 | p_menu->Break(); | |
77 | else /*wxMenuItem*/ | |
f80ea77b | 78 | { |
78d14f80 | 79 | int id = GetID(); |
78d14f80 | 80 | wxString label = GetText(wxT("label")); |
f80ea77b | 81 | wxString accel = GetText(wxT("accel"), false); |
78d14f80 | 82 | wxString fullLabel = label; |
76b49cf4 | 83 | if (!accel.empty()) |
78d14f80 VS |
84 | fullLabel << wxT("\t") << accel; |
85 | ||
65812490 VS |
86 | wxItemKind kind = wxITEM_NORMAL; |
87 | if (GetBool(wxT("radio"))) | |
88 | kind = wxITEM_RADIO; | |
89 | if (GetBool(wxT("checkable"))) | |
90 | { | |
91 | wxASSERT_MSG( kind == wxITEM_NORMAL, _T("can't have both checkable and radion button at once") ); | |
92 | kind = wxITEM_CHECK; | |
93 | } | |
94 | ||
78d14f80 | 95 | wxMenuItem *mitem = new wxMenuItem(p_menu, id, fullLabel, |
65812490 | 96 | GetText(wxT("help")), kind); |
f80ea77b | 97 | |
200ab0bf | 98 | #if (!defined(__WXMSW__) && !defined(__WXPM__)) || wxUSE_OWNER_DRAWN |
84969af7 JS |
99 | if (HasParam(wxT("bitmap"))) |
100 | mitem->SetBitmap(GetBitmap(wxT("bitmap"), wxART_MENU)); | |
78d14f80 VS |
101 | #endif |
102 | p_menu->Append(mitem); | |
f80ea77b | 103 | mitem->Enable(GetBool(wxT("enabled"), true)); |
65812490 VS |
104 | if (kind == wxITEM_CHECK) |
105 | mitem->Check(GetBool(wxT("checked"))); | |
78d14f80 VS |
106 | } |
107 | return NULL; | |
108 | } | |
109 | } | |
110 | ||
111 | ||
112 | ||
113 | bool wxMenuXmlHandler::CanHandle(wxXmlNode *node) | |
114 | { | |
115 | return IsOfClass(node, wxT("wxMenu")) || | |
f80ea77b | 116 | (m_insideMenu && |
78d14f80 VS |
117 | (IsOfClass(node, wxT("wxMenuItem")) || |
118 | IsOfClass(node, wxT("break")) || | |
119 | IsOfClass(node, wxT("separator"))) | |
120 | ); | |
121 | } | |
122 | ||
854e189f VS |
123 | IMPLEMENT_DYNAMIC_CLASS(wxMenuBarXmlHandler, wxXmlResourceHandler) |
124 | ||
78d14f80 VS |
125 | wxMenuBarXmlHandler::wxMenuBarXmlHandler() : wxXmlResourceHandler() |
126 | { | |
544fee32 | 127 | XRC_ADD_STYLE(wxMB_DOCKABLE); |
78d14f80 VS |
128 | } |
129 | ||
78d14f80 VS |
130 | wxObject *wxMenuBarXmlHandler::DoCreateResource() |
131 | { | |
132 | wxMenuBar *menubar = new wxMenuBar(GetStyle()); | |
133 | CreateChildren(menubar); | |
f2588180 VS |
134 | |
135 | if (m_parentAsWindow) | |
136 | { | |
137 | wxFrame *parentFrame = wxDynamicCast(m_parent, wxFrame); | |
138 | if (parentFrame) | |
139 | parentFrame->SetMenuBar(menubar); | |
140 | } | |
141 | ||
78d14f80 VS |
142 | return menubar; |
143 | } | |
144 | ||
145 | ||
146 | ||
147 | bool wxMenuBarXmlHandler::CanHandle(wxXmlNode *node) | |
148 | { | |
149 | return IsOfClass(node, wxT("wxMenuBar")); | |
150 | } | |
a1e4ec87 | 151 | |
dd47af27 | 152 | #endif // wxUSE_XRC && wxUSE_MENUS |