]>
Commit | Line | Data |
---|---|---|
2bda0e17 | 1 | ///////////////////////////////////////////////////////////////////////////// |
7c0ea335 | 2 | // Name: msw/frame.cpp |
0d53fc34 | 3 | // Purpose: wxFrame |
2bda0e17 KB |
4 | // Author: Julian Smart |
5 | // Modified by: | |
6 | // Created: 01/02/97 | |
7 | // RCS-ID: $Id$ | |
6c9a19aa | 8 | // Copyright: (c) Julian Smart |
2bda0e17 KB |
9 | // Licence: wxWindows licence |
10 | ///////////////////////////////////////////////////////////////////////////// | |
11 | ||
7c0ea335 VZ |
12 | // ============================================================================ |
13 | // declarations | |
14 | // ============================================================================ | |
15 | ||
16 | // ---------------------------------------------------------------------------- | |
17 | // headers | |
18 | // ---------------------------------------------------------------------------- | |
19 | ||
14f355c2 | 20 | #if defined(__GNUG__) && !defined(NO_GCC_PRAGMA) |
7c0ea335 | 21 | #pragma implementation "frame.h" |
2bda0e17 KB |
22 | #endif |
23 | ||
24 | // For compilers that support precompilation, includes "wx.h". | |
25 | #include "wx/wxprec.h" | |
26 | ||
27 | #ifdef __BORLANDC__ | |
9f3362c4 | 28 | #pragma hdrstop |
2bda0e17 KB |
29 | #endif |
30 | ||
31 | #ifndef WX_PRECOMP | |
9f3362c4 | 32 | #include "wx/frame.h" |
9f3362c4 | 33 | #include "wx/app.h" |
1e6feb95 | 34 | #include "wx/menu.h" |
9f3362c4 VZ |
35 | #include "wx/utils.h" |
36 | #include "wx/dialog.h" | |
37 | #include "wx/settings.h" | |
38 | #include "wx/dcclient.h" | |
d3cc7c65 | 39 | #include "wx/mdi.h" |
f6bcfd97 | 40 | #include "wx/panel.h" |
9f3362c4 | 41 | #endif // WX_PRECOMP |
2bda0e17 KB |
42 | |
43 | #include "wx/msw/private.h" | |
7c0ea335 | 44 | |
4676948b JS |
45 | #ifdef __WXWINCE__ |
46 | #include <commctrl.h> | |
47 | #endif | |
48 | ||
7c0ea335 VZ |
49 | #if wxUSE_STATUSBAR |
50 | #include "wx/statusbr.h" | |
ed791986 | 51 | #include "wx/generic/statusbr.h" |
7c0ea335 VZ |
52 | #endif // wxUSE_STATUSBAR |
53 | ||
54 | #if wxUSE_TOOLBAR | |
55 | #include "wx/toolbar.h" | |
56 | #endif // wxUSE_TOOLBAR | |
57 | ||
2bda0e17 | 58 | #include "wx/menuitem.h" |
6776a0b2 | 59 | #include "wx/log.h" |
2bda0e17 | 60 | |
1e6feb95 VZ |
61 | #ifdef __WXUNIVERSAL__ |
62 | #include "wx/univ/theme.h" | |
63 | #include "wx/univ/colschem.h" | |
64 | #endif // __WXUNIVERSAL__ | |
65 | ||
7c0ea335 VZ |
66 | // ---------------------------------------------------------------------------- |
67 | // globals | |
68 | // ---------------------------------------------------------------------------- | |
2bda0e17 | 69 | |
1e6feb95 | 70 | #if wxUSE_MENUS_NATIVE |
03baf031 | 71 | extern wxMenu *wxCurrentPopupMenu; |
1e6feb95 | 72 | #endif // wxUSE_MENUS_NATIVE |
2bda0e17 | 73 | |
7c0ea335 VZ |
74 | // ---------------------------------------------------------------------------- |
75 | // event tables | |
76 | // ---------------------------------------------------------------------------- | |
77 | ||
0d53fc34 | 78 | BEGIN_EVENT_TABLE(wxFrame, wxFrameBase) |
0d53fc34 | 79 | EVT_SYS_COLOUR_CHANGED(wxFrame::OnSysColourChanged) |
2bda0e17 KB |
80 | END_EVENT_TABLE() |
81 | ||
51596bcb | 82 | #if wxUSE_EXTENDED_RTTI |
bc9fb572 JS |
83 | WX_DEFINE_FLAGS( wxFrameStyle ) |
84 | ||
3ff066a4 | 85 | wxBEGIN_FLAGS( wxFrameStyle ) |
bc9fb572 JS |
86 | // new style border flags, we put them first to |
87 | // use them for streaming out | |
3ff066a4 SC |
88 | wxFLAGS_MEMBER(wxBORDER_SIMPLE) |
89 | wxFLAGS_MEMBER(wxBORDER_SUNKEN) | |
90 | wxFLAGS_MEMBER(wxBORDER_DOUBLE) | |
91 | wxFLAGS_MEMBER(wxBORDER_RAISED) | |
92 | wxFLAGS_MEMBER(wxBORDER_STATIC) | |
93 | wxFLAGS_MEMBER(wxBORDER_NONE) | |
bc9fb572 JS |
94 | |
95 | // old style border flags | |
3ff066a4 SC |
96 | wxFLAGS_MEMBER(wxSIMPLE_BORDER) |
97 | wxFLAGS_MEMBER(wxSUNKEN_BORDER) | |
98 | wxFLAGS_MEMBER(wxDOUBLE_BORDER) | |
99 | wxFLAGS_MEMBER(wxRAISED_BORDER) | |
100 | wxFLAGS_MEMBER(wxSTATIC_BORDER) | |
cb0afb26 | 101 | wxFLAGS_MEMBER(wxBORDER) |
bc9fb572 JS |
102 | |
103 | // standard window styles | |
3ff066a4 SC |
104 | wxFLAGS_MEMBER(wxTAB_TRAVERSAL) |
105 | wxFLAGS_MEMBER(wxCLIP_CHILDREN) | |
106 | wxFLAGS_MEMBER(wxTRANSPARENT_WINDOW) | |
107 | wxFLAGS_MEMBER(wxWANTS_CHARS) | |
cb0afb26 | 108 | wxFLAGS_MEMBER(wxFULL_REPAINT_ON_RESIZE) |
3ff066a4 SC |
109 | wxFLAGS_MEMBER(wxALWAYS_SHOW_SB ) |
110 | wxFLAGS_MEMBER(wxVSCROLL) | |
111 | wxFLAGS_MEMBER(wxHSCROLL) | |
bc9fb572 JS |
112 | |
113 | // frame styles | |
3ff066a4 SC |
114 | wxFLAGS_MEMBER(wxSTAY_ON_TOP) |
115 | wxFLAGS_MEMBER(wxCAPTION) | |
116 | wxFLAGS_MEMBER(wxTHICK_FRAME) | |
117 | wxFLAGS_MEMBER(wxSYSTEM_MENU) | |
118 | wxFLAGS_MEMBER(wxRESIZE_BORDER) | |
119 | wxFLAGS_MEMBER(wxRESIZE_BOX) | |
120 | wxFLAGS_MEMBER(wxCLOSE_BOX) | |
121 | wxFLAGS_MEMBER(wxMAXIMIZE_BOX) | |
122 | wxFLAGS_MEMBER(wxMINIMIZE_BOX) | |
bc9fb572 | 123 | |
3ff066a4 SC |
124 | wxFLAGS_MEMBER(wxFRAME_TOOL_WINDOW) |
125 | wxFLAGS_MEMBER(wxFRAME_FLOAT_ON_PARENT) | |
bc9fb572 | 126 | |
3ff066a4 | 127 | wxFLAGS_MEMBER(wxFRAME_SHAPED) |
bc9fb572 | 128 | |
3ff066a4 | 129 | wxEND_FLAGS( wxFrameStyle ) |
bc9fb572 | 130 | |
51596bcb SC |
131 | IMPLEMENT_DYNAMIC_CLASS_XTI(wxFrame, wxTopLevelWindow,"wx/frame.h") |
132 | ||
3ff066a4 SC |
133 | wxBEGIN_PROPERTIES_TABLE(wxFrame) |
134 | wxEVENT_PROPERTY( Menu , wxEVT_COMMAND_MENU_SELECTED , wxCommandEvent) | |
c5ca409b | 135 | |
3ff066a4 | 136 | wxPROPERTY( Title,wxString, SetTitle, GetTitle, wxString() , 0 /*flags*/ , wxT("Helpstring") , wxT("group")) |
af498247 VZ |
137 | wxPROPERTY_FLAGS( WindowStyle , wxFrameStyle , long , SetWindowStyleFlag , GetWindowStyleFlag , EMPTY_MACROVALUE , 0 /*flags*/ , wxT("Helpstring") , wxT("group")) // style |
138 | wxPROPERTY( MenuBar , wxMenuBar * , SetMenuBar , GetMenuBar , EMPTY_MACROVALUE , 0 /*flags*/ , wxT("Helpstring") , wxT("group")) | |
3ff066a4 | 139 | wxEND_PROPERTIES_TABLE() |
51596bcb | 140 | |
3ff066a4 SC |
141 | wxBEGIN_HANDLERS_TABLE(wxFrame) |
142 | wxEND_HANDLERS_TABLE() | |
51596bcb | 143 | |
3ff066a4 | 144 | wxCONSTRUCTOR_6( wxFrame , wxWindow* , Parent , wxWindowID , Id , wxString , Title , wxPoint , Position , wxSize , Size , long , WindowStyle) |
51596bcb SC |
145 | |
146 | #else | |
58b43418 | 147 | IMPLEMENT_DYNAMIC_CLASS(wxFrame, wxTopLevelWindow) |
51596bcb | 148 | #endif |
2bda0e17 | 149 | |
7c0ea335 VZ |
150 | // ============================================================================ |
151 | // implementation | |
152 | // ============================================================================ | |
153 | ||
154 | // ---------------------------------------------------------------------------- | |
155 | // static class members | |
156 | // ---------------------------------------------------------------------------- | |
157 | ||
1e6feb95 VZ |
158 | #if wxUSE_STATUSBAR |
159 | #if wxUSE_NATIVE_STATUSBAR | |
0d53fc34 | 160 | bool wxFrame::m_useNativeStatusBar = TRUE; |
1e6feb95 | 161 | #else |
0d53fc34 | 162 | bool wxFrame::m_useNativeStatusBar = FALSE; |
1e6feb95 VZ |
163 | #endif |
164 | #endif // wxUSE_NATIVE_STATUSBAR | |
2bda0e17 | 165 | |
7c0ea335 VZ |
166 | // ---------------------------------------------------------------------------- |
167 | // creation/destruction | |
168 | // ---------------------------------------------------------------------------- | |
2bda0e17 | 169 | |
0d53fc34 | 170 | void wxFrame::Init() |
2bda0e17 | 171 | { |
9f3362c4 VZ |
172 | #if wxUSE_TOOLTIPS |
173 | m_hwndToolTip = 0; | |
174 | #endif | |
a2327a9f JS |
175 | |
176 | // Data to save/restore when calling ShowFullScreen | |
a2327a9f JS |
177 | m_fsStatusBarFields = 0; |
178 | m_fsStatusBarHeight = 0; | |
179 | m_fsToolBarHeight = 0; | |
f6bcfd97 | 180 | |
9327c3aa | 181 | m_wasMinimized = FALSE; |
7c0ea335 | 182 | } |
9f3362c4 | 183 | |
0d53fc34 | 184 | bool wxFrame::Create(wxWindow *parent, |
7c0ea335 VZ |
185 | wxWindowID id, |
186 | const wxString& title, | |
187 | const wxPoint& pos, | |
188 | const wxSize& size, | |
189 | long style, | |
190 | const wxString& name) | |
191 | { | |
82c9f85c VZ |
192 | if ( !wxTopLevelWindow::Create(parent, id, title, pos, size, style, name) ) |
193 | return FALSE; | |
d2aef312 | 194 | |
a756f210 | 195 | SetBackgroundColour(wxSystemSettings::GetColour(wxSYS_COLOUR_APPWORKSPACE)); |
2bda0e17 | 196 | |
82c9f85c | 197 | return TRUE; |
2bda0e17 KB |
198 | } |
199 | ||
0d53fc34 | 200 | wxFrame::~wxFrame() |
2bda0e17 | 201 | { |
82c9f85c | 202 | m_isBeingDeleted = TRUE; |
82c9f85c | 203 | DeleteAllBars(); |
2bda0e17 KB |
204 | } |
205 | ||
d4597e13 VZ |
206 | // ---------------------------------------------------------------------------- |
207 | // wxFrame client size calculations | |
208 | // ---------------------------------------------------------------------------- | |
2bda0e17 | 209 | |
0d53fc34 | 210 | void wxFrame::DoSetClientSize(int width, int height) |
2bda0e17 | 211 | { |
82c9f85c | 212 | // leave enough space for the status bar if we have (and show) it |
7c0ea335 | 213 | #if wxUSE_STATUSBAR |
8d8bd249 VZ |
214 | wxStatusBar *statbar = GetStatusBar(); |
215 | if ( statbar && statbar->IsShown() ) | |
216 | { | |
8d8bd249 VZ |
217 | height += statbar->GetSize().y; |
218 | } | |
7c0ea335 | 219 | #endif // wxUSE_STATUSBAR |
2bda0e17 | 220 | |
68d02db3 VZ |
221 | // call GetClientAreaOrigin() to take the toolbar into account |
222 | wxPoint pt = GetClientAreaOrigin(); | |
223 | width += pt.x; | |
224 | height += pt.y; | |
225 | ||
82c9f85c | 226 | wxTopLevelWindow::DoSetClientSize(width, height); |
2bda0e17 KB |
227 | } |
228 | ||
d4597e13 VZ |
229 | // Get size *available for subwindows* i.e. excluding menu bar, toolbar etc. |
230 | void wxFrame::DoGetClientSize(int *x, int *y) const | |
231 | { | |
232 | wxTopLevelWindow::DoGetClientSize(x, y); | |
233 | ||
68d02db3 VZ |
234 | // account for the possible toolbar |
235 | wxPoint pt = GetClientAreaOrigin(); | |
236 | if ( x ) | |
237 | *x -= pt.x; | |
238 | ||
239 | if ( y ) | |
240 | *y -= pt.y; | |
241 | ||
d4597e13 VZ |
242 | #if wxUSE_STATUSBAR |
243 | // adjust client area height to take the status bar into account | |
244 | if ( y ) | |
245 | { | |
246 | wxStatusBar *statbar = GetStatusBar(); | |
247 | if ( statbar && statbar->IsShown() ) | |
248 | { | |
249 | *y -= statbar->GetClientSize().y; | |
250 | } | |
251 | } | |
252 | #endif // wxUSE_STATUSBAR | |
253 | } | |
254 | ||
7c0ea335 | 255 | // ---------------------------------------------------------------------------- |
0d53fc34 | 256 | // wxFrame: various geometry-related functions |
7c0ea335 VZ |
257 | // ---------------------------------------------------------------------------- |
258 | ||
0d53fc34 | 259 | void wxFrame::Raise() |
c48926e1 | 260 | { |
c48926e1 | 261 | ::SetForegroundWindow(GetHwnd()); |
c48926e1 VZ |
262 | } |
263 | ||
67bd5bad | 264 | // generate an artificial resize event |
0d53fc34 | 265 | void wxFrame::SendSizeEvent() |
67bd5bad | 266 | { |
67bd5bad GT |
267 | if ( !m_iconized ) |
268 | { | |
82c9f85c VZ |
269 | RECT r = wxGetWindowRect(GetHwnd()); |
270 | ||
67bd5bad GT |
271 | (void)::PostMessage(GetHwnd(), WM_SIZE, |
272 | IsMaximized() ? SIZE_MAXIMIZED : SIZE_RESTORED, | |
273 | MAKELPARAM(r.right - r.left, r.bottom - r.top)); | |
274 | } | |
275 | } | |
276 | ||
d427503c | 277 | #if wxUSE_STATUSBAR |
0d53fc34 | 278 | wxStatusBar *wxFrame::OnCreateStatusBar(int number, |
7c0ea335 VZ |
279 | long style, |
280 | wxWindowID id, | |
281 | const wxString& name) | |
2bda0e17 KB |
282 | { |
283 | wxStatusBar *statusBar = NULL; | |
284 | ||
47d67540 | 285 | #if wxUSE_NATIVE_STATUSBAR |
1f0500b3 | 286 | if ( !UsesNativeStatusBar() ) |
2bda0e17 | 287 | { |
1f0500b3 | 288 | statusBar = (wxStatusBar *)new wxStatusBarGeneric(this, id, style); |
2bda0e17 KB |
289 | } |
290 | else | |
291 | #endif | |
292 | { | |
1f0500b3 VZ |
293 | statusBar = new wxStatusBar(this, id, style, name); |
294 | } | |
ed791986 | 295 | |
1f0500b3 | 296 | statusBar->SetFieldsCount(number); |
2bda0e17 | 297 | |
7c0ea335 | 298 | return statusBar; |
2bda0e17 KB |
299 | } |
300 | ||
0d53fc34 | 301 | void wxFrame::PositionStatusBar() |
2bda0e17 | 302 | { |
d4597e13 | 303 | if ( !m_frameStatusBar || !m_frameStatusBar->IsShown() ) |
ed791986 VZ |
304 | return; |
305 | ||
cbc66a27 VZ |
306 | int w, h; |
307 | GetClientSize(&w, &h); | |
308 | int sw, sh; | |
309 | m_frameStatusBar->GetSize(&sw, &sh); | |
310 | ||
311 | // Since we wish the status bar to be directly under the client area, | |
312 | // we use the adjusted sizes without using wxSIZE_NO_ADJUSTMENTS. | |
313 | m_frameStatusBar->SetSize(0, h, w, sh); | |
2bda0e17 | 314 | } |
d427503c | 315 | #endif // wxUSE_STATUSBAR |
2bda0e17 | 316 | |
6522713c | 317 | #if wxUSE_MENUS_NATIVE |
ea9a4296 | 318 | |
0d53fc34 | 319 | void wxFrame::AttachMenuBar(wxMenuBar *menubar) |
2bda0e17 | 320 | { |
960b193e | 321 | #if defined(__WXWINCE__) && (_WIN32_WCE < 400 || defined(WIN32_PLATFORM_PSPC) || defined(WIN32_PLATFORM_WFSP)) |
a96b4743 JS |
322 | if (!GetToolBar()) |
323 | { | |
324 | wxToolBar* toolBar = new wxToolBar(this, -1, | |
325 | wxDefaultPosition, wxDefaultSize, | |
326 | wxBORDER_NONE | wxTB_HORIZONTAL, | |
af5454a4 | 327 | wxToolBarNameStr, menubar); |
a96b4743 JS |
328 | SetToolBar(toolBar); |
329 | menubar->SetToolBar(toolBar); | |
330 | } | |
960b193e JS |
331 | // Now adjust size for menu bar |
332 | int menuHeight = 26; | |
333 | ||
334 | //When the main window is created using CW_USEDEFAULT the height of the | |
335 | // is created is not taken into account). So we resize the window after | |
336 | // if a menubar is present | |
337 | { | |
338 | RECT rc; | |
339 | ::GetWindowRect((HWND) GetHWND(), &rc); | |
340 | // adjust for menu / titlebar height | |
341 | rc.bottom -= (2*menuHeight-1); | |
342 | ||
343 | MoveWindow((HWND) GetHWND(), rc.left, rc.top, rc.right, rc.bottom, FALSE); | |
344 | } | |
a96b4743 JS |
345 | #endif |
346 | ||
f008af16 | 347 | wxFrameBase::AttachMenuBar(menubar); |
6beb85c0 | 348 | |
f6bcfd97 | 349 | if ( !menubar ) |
c2dcfdef | 350 | { |
f6bcfd97 BP |
351 | // actually remove the menu from the frame |
352 | m_hMenu = (WXHMENU)0; | |
353 | InternalSetMenuBar(); | |
065de612 | 354 | } |
f6bcfd97 | 355 | else // set new non NULL menu bar |
065de612 | 356 | { |
960b193e | 357 | #if !defined(__WXWINCE__) || (_WIN32_WCE >= 400 && !defined(WIN32_PLATFORM_PSPC) && !defined(WIN32_PLATFORM_WFSP)) |
f6bcfd97 | 358 | // Can set a menubar several times. |
f6bcfd97 BP |
359 | if ( menubar->GetHMenu() ) |
360 | { | |
361 | m_hMenu = menubar->GetHMenu(); | |
362 | } | |
f008af16 | 363 | else // no HMENU yet |
f6bcfd97 | 364 | { |
f6bcfd97 | 365 | m_hMenu = menubar->Create(); |
065de612 | 366 | |
f6bcfd97 | 367 | if ( !m_hMenu ) |
f008af16 VZ |
368 | { |
369 | wxFAIL_MSG( _T("failed to create menu bar") ); | |
f6bcfd97 | 370 | return; |
f008af16 | 371 | } |
f6bcfd97 | 372 | } |
39d2f9a7 | 373 | #endif |
f6bcfd97 | 374 | InternalSetMenuBar(); |
1e6feb95 | 375 | } |
2bda0e17 KB |
376 | } |
377 | ||
0d53fc34 | 378 | void wxFrame::InternalSetMenuBar() |
2bda0e17 | 379 | { |
a96b4743 | 380 | #if defined(__WXMICROWIN__) || defined(__WXWINCE__) |
4676948b | 381 | // Nothing |
4676948b | 382 | #else |
42e69d6b | 383 | if ( !::SetMenu(GetHwnd(), (HMENU)m_hMenu) ) |
2bda0e17 | 384 | { |
f6bcfd97 | 385 | wxLogLastError(wxT("SetMenu")); |
2bda0e17 | 386 | } |
04ef50df | 387 | #endif |
2bda0e17 KB |
388 | } |
389 | ||
1e6feb95 VZ |
390 | #endif // wxUSE_MENUS_NATIVE |
391 | ||
2bda0e17 | 392 | // Responds to colour changes, and passes event on to children. |
0d53fc34 | 393 | void wxFrame::OnSysColourChanged(wxSysColourChangedEvent& event) |
2bda0e17 | 394 | { |
a756f210 | 395 | SetBackgroundColour(wxSystemSettings::GetColour(wxSYS_COLOUR_APPWORKSPACE)); |
2bda0e17 KB |
396 | Refresh(); |
397 | ||
1e6feb95 | 398 | #if wxUSE_STATUSBAR |
2bda0e17 KB |
399 | if ( m_frameStatusBar ) |
400 | { | |
401 | wxSysColourChangedEvent event2; | |
402 | event2.SetEventObject( m_frameStatusBar ); | |
02800301 | 403 | m_frameStatusBar->GetEventHandler()->ProcessEvent(event2); |
2bda0e17 | 404 | } |
1e6feb95 | 405 | #endif // wxUSE_STATUSBAR |
2bda0e17 KB |
406 | |
407 | // Propagate the event to the non-top-level children | |
408 | wxWindow::OnSysColourChanged(event); | |
409 | } | |
410 | ||
a2327a9f | 411 | // Pass TRUE to show full screen, FALSE to restore. |
0d53fc34 | 412 | bool wxFrame::ShowFullScreen(bool show, long style) |
a2327a9f | 413 | { |
085ad686 | 414 | if ( IsFullScreen() == show ) |
c641b1d2 VS |
415 | return FALSE; |
416 | ||
a2327a9f JS |
417 | if (show) |
418 | { | |
1e6feb95 | 419 | #if wxUSE_TOOLBAR |
960b193e | 420 | #if defined(__WXWINCE__) && (_WIN32_WCE < 400 || defined(WIN32_PLATFORM_PSPC) || defined(WIN32_PLATFORM_WFSP)) |
09785dd3 JS |
421 | // TODO: hide commandbar |
422 | #else | |
f6bcfd97 | 423 | wxToolBar *theToolBar = GetToolBar(); |
a2327a9f | 424 | if (theToolBar) |
1e6feb95 | 425 | theToolBar->GetSize(NULL, &m_fsToolBarHeight); |
a2327a9f JS |
426 | |
427 | // zap the toolbar, menubar, and statusbar | |
428 | ||
429 | if ((style & wxFULLSCREEN_NOTOOLBAR) && theToolBar) | |
430 | { | |
431 | theToolBar->SetSize(-1,0); | |
432 | theToolBar->Show(FALSE); | |
433 | } | |
09785dd3 | 434 | #endif // __WXWINCE__ |
1e6feb95 | 435 | #endif // wxUSE_TOOLBAR |
a2327a9f | 436 | |
a96b4743 JS |
437 | #if defined(__WXMICROWIN__) |
438 | #elif defined(__WXWINCE__) | |
4676948b | 439 | // TODO: make it work for WinCE |
a96b4743 | 440 | #else |
a2327a9f JS |
441 | if (style & wxFULLSCREEN_NOMENUBAR) |
442 | SetMenu((HWND)GetHWND(), (HMENU) NULL); | |
04ef50df | 443 | #endif |
a2327a9f | 444 | |
1e6feb95 VZ |
445 | #if wxUSE_STATUSBAR |
446 | wxStatusBar *theStatusBar = GetStatusBar(); | |
447 | if (theStatusBar) | |
448 | theStatusBar->GetSize(NULL, &m_fsStatusBarHeight); | |
449 | ||
a2327a9f JS |
450 | // Save the number of fields in the statusbar |
451 | if ((style & wxFULLSCREEN_NOSTATUSBAR) && theStatusBar) | |
452 | { | |
579b10c2 JS |
453 | //m_fsStatusBarFields = theStatusBar->GetFieldsCount(); |
454 | //SetStatusBar((wxStatusBar*) NULL); | |
455 | //delete theStatusBar; | |
456 | theStatusBar->Show(FALSE); | |
a2327a9f JS |
457 | } |
458 | else | |
459 | m_fsStatusBarFields = 0; | |
1e6feb95 | 460 | #endif // wxUSE_STATUSBAR |
a2327a9f JS |
461 | } |
462 | else | |
463 | { | |
1e6feb95 | 464 | #if wxUSE_TOOLBAR |
960b193e | 465 | #if defined(__WXWINCE__) && (_WIN32_WCE < 400 || defined(WIN32_PLATFORM_PSPC) || defined(WIN32_PLATFORM_WFSP)) |
09785dd3 JS |
466 | // TODO: show commandbar |
467 | #else | |
a2327a9f JS |
468 | wxToolBar *theToolBar = GetToolBar(); |
469 | ||
470 | // restore the toolbar, menubar, and statusbar | |
471 | if (theToolBar && (m_fsStyle & wxFULLSCREEN_NOTOOLBAR)) | |
472 | { | |
473 | theToolBar->SetSize(-1, m_fsToolBarHeight); | |
474 | theToolBar->Show(TRUE); | |
475 | } | |
09785dd3 | 476 | #endif // __WXWINCE__ |
1e6feb95 | 477 | #endif // wxUSE_TOOLBAR |
a2327a9f | 478 | |
1e6feb95 VZ |
479 | #if wxUSE_STATUSBAR |
480 | if ( m_fsStyle & wxFULLSCREEN_NOSTATUSBAR ) | |
a2327a9f | 481 | { |
579b10c2 JS |
482 | //CreateStatusBar(m_fsStatusBarFields); |
483 | if (GetStatusBar()) | |
484 | { | |
485 | GetStatusBar()->Show(TRUE); | |
486 | PositionStatusBar(); | |
487 | } | |
a2327a9f | 488 | } |
1e6feb95 | 489 | #endif // wxUSE_STATUSBAR |
a2327a9f | 490 | |
a96b4743 JS |
491 | #if defined(__WXMICROWIN__) |
492 | #elif defined(__WXWINCE__) | |
4676948b | 493 | // TODO: make it work for WinCE |
a96b4743 | 494 | #else |
a2327a9f JS |
495 | if ((m_fsStyle & wxFULLSCREEN_NOMENUBAR) && (m_hMenu != 0)) |
496 | SetMenu((HWND)GetHWND(), (HMENU)m_hMenu); | |
04ef50df | 497 | #endif |
a2327a9f | 498 | } |
f6bcfd97 | 499 | |
085ad686 | 500 | return wxFrameBase::ShowFullScreen(show, style); |
2bda0e17 KB |
501 | } |
502 | ||
7c0ea335 VZ |
503 | // ---------------------------------------------------------------------------- |
504 | // tool/status bar stuff | |
505 | // ---------------------------------------------------------------------------- | |
506 | ||
d427503c | 507 | #if wxUSE_TOOLBAR |
7c0ea335 | 508 | |
0d53fc34 | 509 | wxToolBar* wxFrame::CreateToolBar(long style, wxWindowID id, const wxString& name) |
81d66cf3 | 510 | { |
960b193e | 511 | #if defined(__WXWINCE__) && (_WIN32_WCE < 400 || defined(WIN32_PLATFORM_PSPC) || defined(WIN32_PLATFORM_WFSP)) |
39d2f9a7 JS |
512 | // We may already have a toolbar from calling SetMenuBar. |
513 | if (GetToolBar()) | |
514 | return GetToolBar(); | |
515 | #endif | |
7c0ea335 | 516 | if ( wxFrameBase::CreateToolBar(style, id, name) ) |
81d66cf3 | 517 | { |
81d66cf3 | 518 | PositionToolBar(); |
81d66cf3 | 519 | } |
81d66cf3 | 520 | |
7c0ea335 | 521 | return m_frameToolBar; |
81d66cf3 JS |
522 | } |
523 | ||
0d53fc34 | 524 | void wxFrame::PositionToolBar() |
81d66cf3 | 525 | { |
d4597e13 VZ |
526 | wxToolBar *toolbar = GetToolBar(); |
527 | if ( toolbar && toolbar->IsShown() ) | |
528 | { | |
960b193e | 529 | #if defined(__WXWINCE__) && (_WIN32_WCE < 400 || defined(WIN32_PLATFORM_PSPC) || defined(WIN32_PLATFORM_WFSP)) |
09785dd3 JS |
530 | // We want to do something different in WinCE, because |
531 | // the toolbar should be associated with the commandbar, | |
532 | // and not an independent window. | |
533 | // TODO | |
534 | #else | |
d4597e13 VZ |
535 | // don't call our (or even wxTopLevelWindow) version because we want |
536 | // the real (full) client area size, not excluding the tool/status bar | |
537 | int width, height; | |
538 | wxWindow::DoGetClientSize(&width, &height); | |
81d66cf3 | 539 | |
7c0ea335 | 540 | #if wxUSE_STATUSBAR |
d4597e13 VZ |
541 | wxStatusBar *statbar = GetStatusBar(); |
542 | if ( statbar && statbar->IsShown() ) | |
543 | { | |
544 | height -= statbar->GetClientSize().y; | |
545 | } | |
7c0ea335 | 546 | #endif // wxUSE_STATUSBAR |
81d66cf3 | 547 | |
229de929 | 548 | int tx, ty; |
81d66cf3 | 549 | int tw, th; |
229de929 | 550 | toolbar->GetPosition(&tx, &ty); |
d4597e13 | 551 | toolbar->GetSize(&tw, &th); |
229de929 JS |
552 | |
553 | // Adjust | |
554 | if (ty < 0 && (-ty == th)) | |
555 | ty = 0; | |
556 | if (tx < 0 && (-tx == tw)) | |
557 | tx = 0; | |
558 | ||
559 | int desiredW = tw; | |
560 | int desiredH = th; | |
81d66cf3 | 561 | |
d4597e13 | 562 | if ( toolbar->GetWindowStyleFlag() & wxTB_VERTICAL ) |
81d66cf3 | 563 | { |
229de929 | 564 | desiredH = height; |
81d66cf3 JS |
565 | } |
566 | else | |
567 | { | |
229de929 JS |
568 | desiredW = width; |
569 | // if ( toolbar->GetWindowStyleFlag() & wxTB_FLAT ) | |
570 | // desiredW -= 3; | |
571 | } | |
7c0ea335 | 572 | |
d4597e13 VZ |
573 | // use the 'real' MSW position here, don't offset relativly to the |
574 | // client area origin | |
229de929 JS |
575 | |
576 | // Optimise such that we don't have to always resize the toolbar | |
577 | // when the frame changes, otherwise we'll get a lot of flicker. | |
578 | bool heightChanging = TRUE; | |
579 | bool widthChanging = TRUE; | |
580 | ||
581 | if ( toolbar->GetWindowStyleFlag() & wxTB_VERTICAL ) | |
582 | { | |
583 | // It's OK if the current height is greater than what can be shown. | |
584 | heightChanging = (desiredH > th) ; | |
585 | widthChanging = (desiredW != tw) ; | |
586 | ||
587 | // The next time around, we may not have to set the size | |
588 | if (heightChanging) | |
589 | desiredH = desiredH + 200; | |
590 | } | |
591 | else | |
592 | { | |
593 | // It's OK if the current width is greater than what can be shown. | |
594 | widthChanging = (desiredW > tw) ; | |
595 | heightChanging = (desiredH != th) ; | |
596 | ||
597 | // The next time around, we may not have to set the size | |
598 | if (widthChanging) | |
599 | desiredW = desiredW + 200; | |
600 | } | |
601 | ||
602 | if (tx != 0 || ty != 0 || widthChanging || heightChanging) | |
603 | toolbar->SetSize(0, 0, desiredW, desiredH, wxSIZE_NO_ADJUSTMENTS); | |
604 | ||
09785dd3 | 605 | #endif // __WXWINCE__ |
81d66cf3 JS |
606 | } |
607 | } | |
d4597e13 | 608 | |
d427503c | 609 | #endif // wxUSE_TOOLBAR |
d2aef312 | 610 | |
7c0ea335 VZ |
611 | // ---------------------------------------------------------------------------- |
612 | // frame state (iconized/maximized/...) | |
613 | // ---------------------------------------------------------------------------- | |
614 | ||
a23fd0e1 VZ |
615 | // propagate our state change to all child frames: this allows us to emulate X |
616 | // Windows behaviour where child frames float independently of the parent one | |
617 | // on the desktop, but are iconized/restored with it | |
0d53fc34 | 618 | void wxFrame::IconizeChildFrames(bool bIconize) |
d2aef312 | 619 | { |
222ed1d6 | 620 | for ( wxWindowList::compatibility_iterator node = GetChildren().GetFirst(); |
a23fd0e1 VZ |
621 | node; |
622 | node = node->GetNext() ) | |
623 | { | |
624 | wxWindow *win = node->GetData(); | |
625 | ||
3ca6a5f0 BP |
626 | // iconizing the frames with this style under Win95 shell puts them at |
627 | // the bottom of the screen (as the MDI children) instead of making | |
628 | // them appear in the taskbar because they are, by virtue of this | |
629 | // style, not managed by the taskbar - instead leave Windows take care | |
630 | // of them | |
631 | #ifdef __WIN95__ | |
632 | if ( win->GetWindowStyle() & wxFRAME_TOOL_WINDOW ) | |
633 | continue; | |
634 | #endif // Win95 | |
635 | ||
3f7bc32b VZ |
636 | // the child MDI frames are a special case and should not be touched by |
637 | // the parent frame - instead, they are managed by the user | |
2e9f62da | 638 | wxFrame *frame = wxDynamicCast(win, wxFrame); |
1e6feb95 VZ |
639 | if ( frame |
640 | #if wxUSE_MDI_ARCHITECTURE | |
641 | && !wxDynamicCast(frame, wxMDIChildFrame) | |
642 | #endif // wxUSE_MDI_ARCHITECTURE | |
643 | ) | |
a23fd0e1 | 644 | { |
9327c3aa VZ |
645 | // we don't want to restore the child frames which had been |
646 | // iconized even before we were iconized, so save the child frame | |
647 | // status when iconizing the parent frame and check it when | |
648 | // restoring it | |
649 | if ( bIconize ) | |
650 | { | |
9c72ebec | 651 | frame->m_wasMinimized = frame->IsIconized(); |
9327c3aa VZ |
652 | } |
653 | ||
9c72ebec VZ |
654 | // note that we shouldn't touch the hidden frames neither because |
655 | // iconizing/restoring them would show them as a side effect | |
656 | if ( !frame->m_wasMinimized && frame->IsShown() ) | |
9327c3aa | 657 | frame->Iconize(bIconize); |
a23fd0e1 | 658 | } |
d2aef312 | 659 | } |
d2aef312 VZ |
660 | } |
661 | ||
0d53fc34 | 662 | WXHICON wxFrame::GetDefaultIcon() const |
82c9f85c | 663 | { |
94826170 VZ |
664 | // we don't have any standard icons (any more) |
665 | return (WXHICON)0; | |
82c9f85c VZ |
666 | } |
667 | ||
a23fd0e1 | 668 | // =========================================================================== |
42e69d6b | 669 | // message processing |
a23fd0e1 VZ |
670 | // =========================================================================== |
671 | ||
42e69d6b VZ |
672 | // --------------------------------------------------------------------------- |
673 | // preprocessing | |
674 | // --------------------------------------------------------------------------- | |
675 | ||
0d53fc34 | 676 | bool wxFrame::MSWTranslateMessage(WXMSG* pMsg) |
42e69d6b VZ |
677 | { |
678 | if ( wxWindow::MSWTranslateMessage(pMsg) ) | |
679 | return TRUE; | |
680 | ||
1e6feb95 | 681 | #if wxUSE_MENUS && wxUSE_ACCEL && !defined(__WXUNIVERSAL__) |
42e69d6b VZ |
682 | // try the menu bar accels |
683 | wxMenuBar *menuBar = GetMenuBar(); | |
684 | if ( !menuBar ) | |
685 | return FALSE; | |
686 | ||
687 | const wxAcceleratorTable& acceleratorTable = menuBar->GetAccelTable(); | |
c50f1fb9 | 688 | return acceleratorTable.Translate(this, pMsg); |
1e6feb95 VZ |
689 | #else |
690 | return FALSE; | |
691 | #endif // wxUSE_MENUS && wxUSE_ACCEL | |
42e69d6b VZ |
692 | } |
693 | ||
694 | // --------------------------------------------------------------------------- | |
695 | // our private (non virtual) message handlers | |
696 | // --------------------------------------------------------------------------- | |
697 | ||
0d53fc34 | 698 | bool wxFrame::HandlePaint() |
42e69d6b VZ |
699 | { |
700 | RECT rect; | |
701 | if ( GetUpdateRect(GetHwnd(), &rect, FALSE) ) | |
702 | { | |
4676948b | 703 | #if !defined(__WXMICROWIN__) && !defined(__WXWINCE__) |
42e69d6b VZ |
704 | if ( m_iconized ) |
705 | { | |
f618020a MB |
706 | const wxIcon& icon = GetIcon(); |
707 | HICON hIcon = icon.Ok() ? GetHiconOf(icon) | |
708 | : (HICON)GetDefaultIcon(); | |
42e69d6b VZ |
709 | |
710 | // Hold a pointer to the dc so long as the OnPaint() message | |
711 | // is being processed | |
712 | PAINTSTRUCT ps; | |
713 | HDC hdc = ::BeginPaint(GetHwnd(), &ps); | |
714 | ||
715 | // Erase background before painting or we get white background | |
716 | MSWDefWindowProc(WM_ICONERASEBKGND, (WORD)(LONG)ps.hdc, 0L); | |
717 | ||
718 | if ( hIcon ) | |
719 | { | |
720 | RECT rect; | |
721 | ::GetClientRect(GetHwnd(), &rect); | |
722 | ||
723 | // FIXME: why hardcoded? | |
724 | static const int icon_width = 32; | |
725 | static const int icon_height = 32; | |
726 | ||
727 | int icon_x = (int)((rect.right - icon_width)/2); | |
728 | int icon_y = (int)((rect.bottom - icon_height)/2); | |
729 | ||
730 | ::DrawIcon(hdc, icon_x, icon_y, hIcon); | |
731 | } | |
732 | ||
733 | ::EndPaint(GetHwnd(), &ps); | |
734 | ||
735 | return TRUE; | |
736 | } | |
737 | else | |
04ef50df | 738 | #endif |
42e69d6b | 739 | { |
5d1d2d46 | 740 | return wxWindow::HandlePaint(); |
42e69d6b VZ |
741 | } |
742 | } | |
743 | else | |
744 | { | |
745 | // nothing to paint - processed | |
746 | return TRUE; | |
747 | } | |
748 | } | |
749 | ||
0d53fc34 | 750 | bool wxFrame::HandleSize(int x, int y, WXUINT id) |
42e69d6b VZ |
751 | { |
752 | bool processed = FALSE; | |
4676948b | 753 | #if !defined(__WXMICROWIN__) && !defined(__WXWINCE__) |
42e69d6b VZ |
754 | |
755 | switch ( id ) | |
756 | { | |
757 | case SIZENORMAL: | |
758 | // only do it it if we were iconized before, otherwise resizing the | |
759 | // parent frame has a curious side effect of bringing it under it's | |
760 | // children | |
761 | if ( !m_iconized ) | |
762 | break; | |
763 | ||
764 | // restore all child frames too | |
765 | IconizeChildFrames(FALSE); | |
766 | ||
3dd9b88a VZ |
767 | (void)SendIconizeEvent(FALSE); |
768 | ||
42e69d6b VZ |
769 | // fall through |
770 | ||
771 | case SIZEFULLSCREEN: | |
772 | m_iconized = FALSE; | |
773 | break; | |
774 | ||
775 | case SIZEICONIC: | |
776 | // iconize all child frames too | |
777 | IconizeChildFrames(TRUE); | |
778 | ||
3dd9b88a VZ |
779 | (void)SendIconizeEvent(); |
780 | ||
42e69d6b VZ |
781 | m_iconized = TRUE; |
782 | break; | |
783 | } | |
04ef50df | 784 | #endif |
42e69d6b VZ |
785 | |
786 | if ( !m_iconized ) | |
787 | { | |
1e6feb95 | 788 | #if wxUSE_STATUSBAR |
42e69d6b | 789 | PositionStatusBar(); |
1e6feb95 VZ |
790 | #endif // wxUSE_STATUSBAR |
791 | ||
792 | #if wxUSE_TOOLBAR | |
42e69d6b | 793 | PositionToolBar(); |
1e6feb95 | 794 | #endif // wxUSE_TOOLBAR |
42e69d6b | 795 | |
4e4a5fed | 796 | processed = wxWindow::HandleSize(x, y, id); |
42e69d6b VZ |
797 | } |
798 | ||
799 | return processed; | |
800 | } | |
801 | ||
0d53fc34 | 802 | bool wxFrame::HandleCommand(WXWORD id, WXWORD cmd, WXHWND control) |
42e69d6b VZ |
803 | { |
804 | if ( control ) | |
805 | { | |
806 | // In case it's e.g. a toolbar. | |
807 | wxWindow *win = wxFindWinFromHandle(control); | |
808 | if ( win ) | |
809 | return win->MSWCommand(cmd, id); | |
810 | } | |
811 | ||
812 | // handle here commands from menus and accelerators | |
813 | if ( cmd == 0 || cmd == 1 ) | |
814 | { | |
1e6feb95 | 815 | #if wxUSE_MENUS_NATIVE |
42e69d6b VZ |
816 | if ( wxCurrentPopupMenu ) |
817 | { | |
818 | wxMenu *popupMenu = wxCurrentPopupMenu; | |
819 | wxCurrentPopupMenu = NULL; | |
820 | ||
821 | return popupMenu->MSWCommand(cmd, id); | |
822 | } | |
1e6feb95 | 823 | #endif // wxUSE_MENUS_NATIVE |
42e69d6b VZ |
824 | |
825 | if ( ProcessCommand(id) ) | |
826 | { | |
827 | return TRUE; | |
828 | } | |
829 | } | |
830 | ||
831 | return FALSE; | |
832 | } | |
833 | ||
0d53fc34 | 834 | bool wxFrame::HandleMenuSelect(WXWORD nItem, WXWORD flags, WXHMENU hMenu) |
a23fd0e1 VZ |
835 | { |
836 | int item; | |
c219cecc | 837 | if ( flags == 0xFFFF && hMenu == 0 ) |
a23fd0e1 | 838 | { |
c219cecc | 839 | // menu was removed from screen |
a23fd0e1 VZ |
840 | item = -1; |
841 | } | |
04ef50df | 842 | #ifndef __WXMICROWIN__ |
c219cecc | 843 | else if ( !(flags & MF_POPUP) && !(flags & MF_SEPARATOR) ) |
a23fd0e1 VZ |
844 | { |
845 | item = nItem; | |
846 | } | |
04ef50df | 847 | #endif |
a23fd0e1 VZ |
848 | else |
849 | { | |
c219cecc | 850 | // don't give hints for separators (doesn't make sense) nor for the |
f6bcfd97 BP |
851 | // items opening popup menus (they don't have them anyhow) but do clear |
852 | // the status line - otherwise, we would be left with the help message | |
853 | // for the previous item which doesn't apply any more | |
1f361cdd | 854 | DoGiveHelp(wxEmptyString, FALSE); |
f6bcfd97 | 855 | |
a23fd0e1 VZ |
856 | return FALSE; |
857 | } | |
858 | ||
859 | wxMenuEvent event(wxEVT_MENU_HIGHLIGHT, item); | |
ccef86c7 VZ |
860 | event.SetEventObject(this); |
861 | ||
862 | return GetEventHandler()->ProcessEvent(event); | |
863 | } | |
864 | ||
865 | bool wxFrame::HandleMenuLoop(const wxEventType& evtType, WXWORD isPopup) | |
866 | { | |
867 | // we don't have the menu id here, so we use the id to specify if the event | |
868 | // was from a popup menu or a normal one | |
869 | wxMenuEvent event(evtType, isPopup ? -1 : 0); | |
870 | event.SetEventObject(this); | |
a23fd0e1 VZ |
871 | |
872 | return GetEventHandler()->ProcessEvent(event); | |
873 | } | |
874 | ||
875 | // --------------------------------------------------------------------------- | |
0d53fc34 | 876 | // the window proc for wxFrame |
a23fd0e1 VZ |
877 | // --------------------------------------------------------------------------- |
878 | ||
c140b7e7 | 879 | WXLRESULT wxFrame::MSWWindowProc(WXUINT message, WXWPARAM wParam, WXLPARAM lParam) |
a23fd0e1 | 880 | { |
c140b7e7 | 881 | WXLRESULT rc = 0; |
a23fd0e1 VZ |
882 | bool processed = FALSE; |
883 | ||
884 | switch ( message ) | |
885 | { | |
42e69d6b VZ |
886 | case WM_CLOSE: |
887 | // if we can't close, tell the system that we processed the | |
888 | // message - otherwise it would close us | |
889 | processed = !Close(); | |
890 | break; | |
891 | ||
ccef86c7 VZ |
892 | case WM_SIZE: |
893 | processed = HandleSize(LOWORD(lParam), HIWORD(lParam), wParam); | |
894 | break; | |
895 | ||
42e69d6b VZ |
896 | case WM_COMMAND: |
897 | { | |
898 | WORD id, cmd; | |
899 | WXHWND hwnd; | |
900 | UnpackCommand((WXWPARAM)wParam, (WXLPARAM)lParam, | |
901 | &id, &hwnd, &cmd); | |
902 | ||
903 | processed = HandleCommand(id, cmd, (WXHWND)hwnd); | |
904 | } | |
905 | break; | |
906 | ||
ccef86c7 VZ |
907 | case WM_PAINT: |
908 | processed = HandlePaint(); | |
909 | break; | |
910 | ||
92f1a59c JS |
911 | case WM_INITMENUPOPUP: |
912 | processed = HandleInitMenuPopup((WXHMENU) wParam); | |
913 | break; | |
914 | ||
4676948b | 915 | #if !defined(__WXMICROWIN__) && !defined(__WXWINCE__) |
a23fd0e1 VZ |
916 | case WM_MENUSELECT: |
917 | { | |
42e69d6b VZ |
918 | WXWORD item, flags; |
919 | WXHMENU hmenu; | |
920 | UnpackMenuSelect(wParam, lParam, &item, &flags, &hmenu); | |
921 | ||
922 | processed = HandleMenuSelect(item, flags, hmenu); | |
a23fd0e1 VZ |
923 | } |
924 | break; | |
bc92cdf9 | 925 | |
ccef86c7 VZ |
926 | case WM_EXITMENULOOP: |
927 | processed = HandleMenuLoop(wxEVT_MENU_CLOSE, wParam); | |
928 | break; | |
ccef86c7 | 929 | |
42e69d6b VZ |
930 | case WM_QUERYDRAGICON: |
931 | { | |
f618020a MB |
932 | const wxIcon& icon = GetIcon(); |
933 | HICON hIcon = icon.Ok() ? GetHiconOf(icon) | |
934 | : (HICON)GetDefaultIcon(); | |
42e69d6b VZ |
935 | rc = (long)hIcon; |
936 | processed = rc != 0; | |
937 | } | |
938 | break; | |
ccef86c7 | 939 | #endif // !__WXMICROWIN__ |
a23fd0e1 VZ |
940 | } |
941 | ||
942 | if ( !processed ) | |
7e25f59e | 943 | rc = wxFrameBase::MSWWindowProc(message, wParam, lParam); |
a23fd0e1 VZ |
944 | |
945 | return rc; | |
946 | } | |
21802234 | 947 | |
92f1a59c JS |
948 | // handle WM_INITMENUPOPUP message |
949 | bool wxFrame::HandleInitMenuPopup(WXHMENU hMenu) | |
e39af974 | 950 | { |
92f1a59c JS |
951 | wxMenu* menu = NULL; |
952 | if (GetMenuBar()) | |
953 | { | |
954 | int nCount = GetMenuBar()->GetMenuCount(); | |
955 | for (int n = 0; n < nCount; n++) | |
956 | { | |
957 | if (GetMenuBar()->GetMenu(n)->GetHMenu() == hMenu) | |
958 | { | |
959 | menu = GetMenuBar()->GetMenu(n); | |
960 | break; | |
961 | } | |
962 | } | |
963 | } | |
964 | ||
965 | wxMenuEvent event(wxEVT_MENU_OPEN, 0, menu); | |
e39af974 JS |
966 | event.SetEventObject(this); |
967 | ||
968 | return GetEventHandler()->ProcessEvent(event); | |
e39af974 | 969 | } |