]> git.saurik.com Git - wxWidgets.git/blame - src/msw/frame.cpp
allow specifying the mask colour in wxImage::ConvertAlphaToMask() (closes #10143)
[wxWidgets.git] / src / msw / frame.cpp
CommitLineData
2bda0e17 1/////////////////////////////////////////////////////////////////////////////
08b97268 2// Name: src/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
65571936 9// Licence: wxWindows licence
2bda0e17
KB
10/////////////////////////////////////////////////////////////////////////////
11
7c0ea335
VZ
12// ============================================================================
13// declarations
14// ============================================================================
15
16// ----------------------------------------------------------------------------
17// headers
18// ----------------------------------------------------------------------------
19
2bda0e17
KB
20// For compilers that support precompilation, includes "wx.h".
21#include "wx/wxprec.h"
22
23#ifdef __BORLANDC__
9f3362c4 24 #pragma hdrstop
2bda0e17
KB
25#endif
26
76b49cf4
WS
27#include "wx/frame.h"
28
2bda0e17 29#ifndef WX_PRECOMP
57bd4c60 30 #include "wx/msw/wrapcctl.h" // include <commctrl.h> "properly"
9f3362c4 31 #include "wx/app.h"
1e6feb95 32 #include "wx/menu.h"
9f3362c4
VZ
33 #include "wx/utils.h"
34 #include "wx/dialog.h"
35 #include "wx/settings.h"
36 #include "wx/dcclient.h"
d3cc7c65 37 #include "wx/mdi.h"
f6bcfd97 38 #include "wx/panel.h"
e4db172a 39 #include "wx/log.h"
4e3e485b 40 #include "wx/toolbar.h"
3304646d 41 #include "wx/statusbr.h"
25466131 42 #include "wx/menuitem.h"
9f3362c4 43#endif // WX_PRECOMP
2bda0e17
KB
44
45#include "wx/msw/private.h"
7c0ea335 46
afafd942 47#if defined(__POCKETPC__) || defined(__SMARTPHONE__)
855ec944
VZ
48 #include <ole2.h>
49 #include <aygshell.h>
50 #include "wx/msw/winundef.h"
afafd942
JS
51#endif
52
8f62e633
RD
53#include "wx/generic/statusbr.h"
54
1e6feb95
VZ
55#ifdef __WXUNIVERSAL__
56 #include "wx/univ/theme.h"
57 #include "wx/univ/colschem.h"
58#endif // __WXUNIVERSAL__
59
7c0ea335
VZ
60// ----------------------------------------------------------------------------
61// globals
62// ----------------------------------------------------------------------------
2bda0e17 63
1e6feb95 64#if wxUSE_MENUS_NATIVE
03baf031 65 extern wxMenu *wxCurrentPopupMenu;
1e6feb95 66#endif // wxUSE_MENUS_NATIVE
2bda0e17 67
7c0ea335
VZ
68// ----------------------------------------------------------------------------
69// event tables
70// ----------------------------------------------------------------------------
71
0d53fc34 72BEGIN_EVENT_TABLE(wxFrame, wxFrameBase)
0d53fc34 73 EVT_SYS_COLOUR_CHANGED(wxFrame::OnSysColourChanged)
2bda0e17
KB
74END_EVENT_TABLE()
75
51596bcb 76#if wxUSE_EXTENDED_RTTI
bc9fb572
JS
77WX_DEFINE_FLAGS( wxFrameStyle )
78
3ff066a4 79wxBEGIN_FLAGS( wxFrameStyle )
bc9fb572
JS
80 // new style border flags, we put them first to
81 // use them for streaming out
3ff066a4
SC
82 wxFLAGS_MEMBER(wxBORDER_SIMPLE)
83 wxFLAGS_MEMBER(wxBORDER_SUNKEN)
84 wxFLAGS_MEMBER(wxBORDER_DOUBLE)
85 wxFLAGS_MEMBER(wxBORDER_RAISED)
86 wxFLAGS_MEMBER(wxBORDER_STATIC)
87 wxFLAGS_MEMBER(wxBORDER_NONE)
cbe874bd 88
bc9fb572 89 // old style border flags
3ff066a4
SC
90 wxFLAGS_MEMBER(wxSIMPLE_BORDER)
91 wxFLAGS_MEMBER(wxSUNKEN_BORDER)
92 wxFLAGS_MEMBER(wxDOUBLE_BORDER)
93 wxFLAGS_MEMBER(wxRAISED_BORDER)
94 wxFLAGS_MEMBER(wxSTATIC_BORDER)
cb0afb26 95 wxFLAGS_MEMBER(wxBORDER)
bc9fb572
JS
96
97 // standard window styles
3ff066a4
SC
98 wxFLAGS_MEMBER(wxTAB_TRAVERSAL)
99 wxFLAGS_MEMBER(wxCLIP_CHILDREN)
100 wxFLAGS_MEMBER(wxTRANSPARENT_WINDOW)
101 wxFLAGS_MEMBER(wxWANTS_CHARS)
cb0afb26 102 wxFLAGS_MEMBER(wxFULL_REPAINT_ON_RESIZE)
3ff066a4
SC
103 wxFLAGS_MEMBER(wxALWAYS_SHOW_SB )
104 wxFLAGS_MEMBER(wxVSCROLL)
105 wxFLAGS_MEMBER(wxHSCROLL)
bc9fb572
JS
106
107 // frame styles
3ff066a4
SC
108 wxFLAGS_MEMBER(wxSTAY_ON_TOP)
109 wxFLAGS_MEMBER(wxCAPTION)
1c067fe3 110#if WXWIN_COMPATIBILITY_2_6
3ff066a4 111 wxFLAGS_MEMBER(wxTHICK_FRAME)
1c067fe3 112#endif // WXWIN_COMPATIBILITY_2_6
3ff066a4
SC
113 wxFLAGS_MEMBER(wxSYSTEM_MENU)
114 wxFLAGS_MEMBER(wxRESIZE_BORDER)
1c067fe3 115#if WXWIN_COMPATIBILITY_2_6
3ff066a4 116 wxFLAGS_MEMBER(wxRESIZE_BOX)
1c067fe3 117#endif // WXWIN_COMPATIBILITY_2_6
3ff066a4
SC
118 wxFLAGS_MEMBER(wxCLOSE_BOX)
119 wxFLAGS_MEMBER(wxMAXIMIZE_BOX)
120 wxFLAGS_MEMBER(wxMINIMIZE_BOX)
bc9fb572 121
3ff066a4
SC
122 wxFLAGS_MEMBER(wxFRAME_TOOL_WINDOW)
123 wxFLAGS_MEMBER(wxFRAME_FLOAT_ON_PARENT)
bc9fb572 124
3ff066a4 125 wxFLAGS_MEMBER(wxFRAME_SHAPED)
bc9fb572 126
3ff066a4 127wxEND_FLAGS( wxFrameStyle )
bc9fb572 128
51596bcb
SC
129IMPLEMENT_DYNAMIC_CLASS_XTI(wxFrame, wxTopLevelWindow,"wx/frame.h")
130
3ff066a4 131wxBEGIN_PROPERTIES_TABLE(wxFrame)
fb8a56b7 132 wxEVENT_PROPERTY( Menu , wxEVT_COMMAND_MENU_SELECTED , wxCommandEvent)
c5ca409b 133
3ff066a4 134 wxPROPERTY( Title,wxString, SetTitle, GetTitle, wxString() , 0 /*flags*/ , wxT("Helpstring") , wxT("group"))
af498247
VZ
135 wxPROPERTY_FLAGS( WindowStyle , wxFrameStyle , long , SetWindowStyleFlag , GetWindowStyleFlag , EMPTY_MACROVALUE , 0 /*flags*/ , wxT("Helpstring") , wxT("group")) // style
136 wxPROPERTY( MenuBar , wxMenuBar * , SetMenuBar , GetMenuBar , EMPTY_MACROVALUE , 0 /*flags*/ , wxT("Helpstring") , wxT("group"))
3ff066a4 137wxEND_PROPERTIES_TABLE()
51596bcb 138
3ff066a4
SC
139wxBEGIN_HANDLERS_TABLE(wxFrame)
140wxEND_HANDLERS_TABLE()
51596bcb 141
cbe874bd 142wxCONSTRUCTOR_6( wxFrame , wxWindow* , Parent , wxWindowID , Id , wxString , Title , wxPoint , Position , wxSize , Size , long , WindowStyle)
51596bcb
SC
143
144#else
58b43418 145IMPLEMENT_DYNAMIC_CLASS(wxFrame, wxTopLevelWindow)
51596bcb 146#endif
2bda0e17 147
7c0ea335
VZ
148// ============================================================================
149// implementation
150// ============================================================================
151
152// ----------------------------------------------------------------------------
153// static class members
154// ----------------------------------------------------------------------------
155
1e6feb95
VZ
156#if wxUSE_STATUSBAR
157 #if wxUSE_NATIVE_STATUSBAR
cbe874bd 158 bool wxFrame::m_useNativeStatusBar = true;
1e6feb95 159 #else
cbe874bd 160 bool wxFrame::m_useNativeStatusBar = false;
1e6feb95
VZ
161 #endif
162#endif // wxUSE_NATIVE_STATUSBAR
2bda0e17 163
7c0ea335
VZ
164// ----------------------------------------------------------------------------
165// creation/destruction
166// ----------------------------------------------------------------------------
2bda0e17 167
0d53fc34 168void wxFrame::Init()
2bda0e17 169{
cf8ff92f
VZ
170#if wxUSE_MENUS
171 m_hMenu = NULL;
172#endif // wxUSE_MENUS
173
9f3362c4
VZ
174#if wxUSE_TOOLTIPS
175 m_hwndToolTip = 0;
176#endif
a2327a9f 177
cbe874bd 178 m_wasMinimized = false;
7c0ea335 179}
9f3362c4 180
0d53fc34 181bool wxFrame::Create(wxWindow *parent,
7c0ea335
VZ
182 wxWindowID id,
183 const wxString& title,
184 const wxPoint& pos,
185 const wxSize& size,
186 long style,
187 const wxString& name)
188{
82c9f85c 189 if ( !wxTopLevelWindow::Create(parent, id, title, pos, size, style, name) )
ef6d716b 190 return false;
d2aef312 191
98a02e87 192 SetOwnBackgroundColour(wxSystemSettings::GetColour(wxSYS_COLOUR_APPWORKSPACE));
b9691677 193
aaf803e9 194#if defined(__SMARTPHONE__)
ef6d716b
WS
195 SetLeftMenu(wxID_EXIT, _("Done"));
196#endif
197
855ec944 198#if wxUSE_ACCEL && defined(__POCKETPC__)
aaf803e9
JS
199 // The guidelines state that Ctrl+Q should quit the app.
200 // Let's define an accelerator table to send wxID_EXIT.
201 wxAcceleratorEntry entries[1];
202 entries[0].Set(wxACCEL_CTRL, 'Q', wxID_EXIT);
203 wxAcceleratorTable accel(1, entries);
204 SetAcceleratorTable(accel);
855ec944 205#endif // wxUSE_ACCEL && __POCKETPC__
aaf803e9 206
ef6d716b 207 return true;
2bda0e17
KB
208}
209
0d53fc34 210wxFrame::~wxFrame()
2bda0e17 211{
c6212a0c
VZ
212 SendDestroyEvent();
213
82c9f85c 214 DeleteAllBars();
2bda0e17
KB
215}
216
d4597e13
VZ
217// ----------------------------------------------------------------------------
218// wxFrame client size calculations
219// ----------------------------------------------------------------------------
2bda0e17 220
0d53fc34 221void wxFrame::DoSetClientSize(int width, int height)
2bda0e17 222{
82c9f85c 223 // leave enough space for the status bar if we have (and show) it
7c0ea335 224#if wxUSE_STATUSBAR
8d8bd249
VZ
225 wxStatusBar *statbar = GetStatusBar();
226 if ( statbar && statbar->IsShown() )
227 {
8d8bd249
VZ
228 height += statbar->GetSize().y;
229 }
7c0ea335 230#endif // wxUSE_STATUSBAR
2bda0e17 231
68d02db3
VZ
232 // call GetClientAreaOrigin() to take the toolbar into account
233 wxPoint pt = GetClientAreaOrigin();
234 width += pt.x;
235 height += pt.y;
3882e746 236
7a976304 237#if wxUSE_TOOLBAR
3882e746
VZ
238 wxToolBar * const toolbar = GetToolBar();
239 if ( toolbar )
7a976304 240 {
3882e746 241 if ( toolbar->HasFlag(wxTB_RIGHT | wxTB_BOTTOM) )
7a976304 242 {
3882e746
VZ
243 const wxSize sizeTB = toolbar->GetSize();
244 if ( toolbar->HasFlag(wxTB_RIGHT) )
245 width -= sizeTB.x;
246 else // wxTB_BOTTOM
247 height -= sizeTB.y;
7a976304 248 }
3882e746 249 //else: toolbar already taken into account by GetClientAreaOrigin()
7a976304 250 }
3882e746 251#endif // wxUSE_TOOLBAR
68d02db3 252
82c9f85c 253 wxTopLevelWindow::DoSetClientSize(width, height);
2bda0e17
KB
254}
255
d4597e13
VZ
256// Get size *available for subwindows* i.e. excluding menu bar, toolbar etc.
257void wxFrame::DoGetClientSize(int *x, int *y) const
258{
259 wxTopLevelWindow::DoGetClientSize(x, y);
260
68d02db3
VZ
261 // account for the possible toolbar
262 wxPoint pt = GetClientAreaOrigin();
263 if ( x )
264 *x -= pt.x;
265
266 if ( y )
267 *y -= pt.y;
3882e746 268
5b2acc3a 269#if wxUSE_TOOLBAR
3882e746
VZ
270 wxToolBar * const toolbar = GetToolBar();
271 if ( toolbar )
5b2acc3a 272 {
3882e746 273 if ( toolbar->HasFlag(wxTB_RIGHT | wxTB_BOTTOM) )
5b2acc3a 274 {
3882e746
VZ
275 const wxSize sizeTB = toolbar->GetSize();
276 if ( toolbar->HasFlag(wxTB_RIGHT) )
277 {
278 if ( x )
279 *x -= sizeTB.x;
280 }
281 else // wxTB_BOTTOM
282 {
283 if ( y )
284 *y -= sizeTB.y;
285 }
7a976304 286 }
3882e746 287 //else: toolbar already taken into account by GetClientAreaOrigin()
7a976304 288 }
3882e746
VZ
289#endif // wxUSE_TOOLBAR
290
d4597e13
VZ
291#if wxUSE_STATUSBAR
292 // adjust client area height to take the status bar into account
293 if ( y )
294 {
295 wxStatusBar *statbar = GetStatusBar();
296 if ( statbar && statbar->IsShown() )
297 {
298 *y -= statbar->GetClientSize().y;
299 }
300 }
301#endif // wxUSE_STATUSBAR
302}
303
7c0ea335 304// ----------------------------------------------------------------------------
0d53fc34 305// wxFrame: various geometry-related functions
7c0ea335
VZ
306// ----------------------------------------------------------------------------
307
0d53fc34 308void wxFrame::Raise()
c48926e1 309{
c48926e1 310 ::SetForegroundWindow(GetHwnd());
c48926e1
VZ
311}
312
67bd5bad 313// generate an artificial resize event
ecdc1183 314void wxFrame::SendSizeEvent(int flags)
67bd5bad 315{
67bd5bad
GT
316 if ( !m_iconized )
317 {
82c9f85c
VZ
318 RECT r = wxGetWindowRect(GetHwnd());
319
ecdc1183
VZ
320 if ( flags & wxSEND_EVENT_POST )
321 {
322 ::PostMessage(GetHwnd(), WM_SIZE,
323 IsMaximized() ? SIZE_MAXIMIZED : SIZE_RESTORED,
324 MAKELPARAM(r.right - r.left, r.bottom - r.top));
325 }
326 else // send it
327 {
328 ::SendMessage(GetHwnd(), WM_SIZE,
329 IsMaximized() ? SIZE_MAXIMIZED : SIZE_RESTORED,
330 MAKELPARAM(r.right - r.left, r.bottom - r.top));
331 }
67bd5bad
GT
332 }
333}
334
d427503c 335#if wxUSE_STATUSBAR
0d53fc34 336wxStatusBar *wxFrame::OnCreateStatusBar(int number,
7c0ea335
VZ
337 long style,
338 wxWindowID id,
339 const wxString& name)
2bda0e17 340{
5cb598ae 341 wxStatusBar *statusBar wxDUMMY_INITIALIZE(NULL);
2bda0e17 342
47d67540 343#if wxUSE_NATIVE_STATUSBAR
1f0500b3 344 if ( !UsesNativeStatusBar() )
2bda0e17 345 {
1f0500b3 346 statusBar = (wxStatusBar *)new wxStatusBarGeneric(this, id, style);
2bda0e17
KB
347 }
348 else
349#endif
350 {
1f0500b3
VZ
351 statusBar = new wxStatusBar(this, id, style, name);
352 }
ed791986 353
1f0500b3 354 statusBar->SetFieldsCount(number);
2bda0e17 355
7c0ea335 356 return statusBar;
2bda0e17
KB
357}
358
0d53fc34 359void wxFrame::PositionStatusBar()
2bda0e17 360{
d4597e13 361 if ( !m_frameStatusBar || !m_frameStatusBar->IsShown() )
ed791986
VZ
362 return;
363
cbc66a27
VZ
364 int w, h;
365 GetClientSize(&w, &h);
3882e746 366
cbc66a27
VZ
367 int sw, sh;
368 m_frameStatusBar->GetSize(&sw, &sh);
369
8efbb8ad
VZ
370 int x = 0;
371#if wxUSE_TOOLBAR
372 wxToolBar * const toolbar = GetToolBar();
373 if ( toolbar && !toolbar->HasFlag(wxTB_TOP) )
374 {
375 const wxSize sizeTB = toolbar->GetSize();
376
377 if ( toolbar->HasFlag(wxTB_LEFT | wxTB_RIGHT) )
378 {
379 if ( toolbar->HasFlag(wxTB_LEFT) )
380 x -= sizeTB.x;
381
382 w += sizeTB.x;
383 }
384 else // wxTB_BOTTOM
385 {
386 // we need to position the status bar below the toolbar
387 h += sizeTB.y;
388 }
389 }
390 //else: no adjustments necessary for the toolbar on top
391#endif // wxUSE_TOOLBAR
392
cbc66a27
VZ
393 // Since we wish the status bar to be directly under the client area,
394 // we use the adjusted sizes without using wxSIZE_NO_ADJUSTMENTS.
8efbb8ad 395 m_frameStatusBar->SetSize(x, h, w, sh);
2bda0e17 396}
3882e746 397
d427503c 398#endif // wxUSE_STATUSBAR
2bda0e17 399
6522713c 400#if wxUSE_MENUS_NATIVE
ea9a4296 401
0d53fc34 402void wxFrame::AttachMenuBar(wxMenuBar *menubar)
2bda0e17 403{
3180bc0e 404#if defined(__SMARTPHONE__) && defined(__WXWINCE__)
fb8a56b7 405
ed679e74
WS
406 wxMenu *autoMenu = NULL;
407
408 if( menubar->GetMenuCount() == 1 )
409 {
410 autoMenu = wxTopLevelWindowMSW::ButtonMenu::DuplicateMenu(menubar->GetMenu(0));
52af3158 411 SetRightMenu(wxID_ANY, menubar->GetMenuLabel(0), autoMenu);
ed679e74
WS
412 }
413 else
fb8a56b7 414 {
ed679e74
WS
415 autoMenu = new wxMenu;
416
417 for( size_t n = 0; n < menubar->GetMenuCount(); n++ )
418 {
419 wxMenu *item = menubar->GetMenu(n);
52af3158 420 wxString label = menubar->GetMenuLabel(n);
ed679e74
WS
421 wxMenu *new_item = wxTopLevelWindowMSW::ButtonMenu::DuplicateMenu(item);
422 autoMenu->Append(wxID_ANY, label, new_item);
423 }
424
425 SetRightMenu(wxID_ANY, _("Menu"), autoMenu);
fb8a56b7
WS
426 }
427
fb8a56b7 428#elif defined(WINCE_WITHOUT_COMMANDBAR)
a96b4743
JS
429 if (!GetToolBar())
430 {
a9102b36 431 wxToolMenuBar* toolBar = new wxToolMenuBar(this, wxID_ANY,
a96b4743
JS
432 wxDefaultPosition, wxDefaultSize,
433 wxBORDER_NONE | wxTB_HORIZONTAL,
af5454a4 434 wxToolBarNameStr, menubar);
a96b4743
JS
435 SetToolBar(toolBar);
436 menubar->SetToolBar(toolBar);
437 }
fb8a56b7 438
c0a91b51
VZ
439 // When the main window is created using CW_USEDEFAULT the height of the
440 // menubar is not taken into account, so we resize it afterwards if a
441 // menubar is present
442 HWND hwndMenuBar = SHFindMenuBar(GetHwnd());
443 if ( hwndMenuBar )
fb8a56b7 444 {
c0a91b51
VZ
445 RECT mbRect;
446 ::GetWindowRect(hwndMenuBar, &mbRect);
447 const int menuHeight = mbRect.bottom - mbRect.top;
448
fb8a56b7 449 RECT rc;
c0a91b51 450 ::GetWindowRect(GetHwnd(), &rc);
fb8a56b7
WS
451 // adjust for menu / titlebar height
452 rc.bottom -= (2*menuHeight-1);
453
c0a91b51 454 ::MoveWindow(Gethwnd(), rc.left, rc.top, rc.right, rc.bottom, FALSE);
fb8a56b7 455 }
a96b4743
JS
456#endif
457
f008af16 458 wxFrameBase::AttachMenuBar(menubar);
6beb85c0 459
f6bcfd97 460 if ( !menubar )
c2dcfdef 461 {
f6bcfd97
BP
462 // actually remove the menu from the frame
463 m_hMenu = (WXHMENU)0;
464 InternalSetMenuBar();
065de612 465 }
f6bcfd97 466 else // set new non NULL menu bar
065de612 467 {
3d487566 468#if !defined(__WXWINCE__) || defined(WINCE_WITH_COMMANDBAR)
f6bcfd97 469 // Can set a menubar several times.
f6bcfd97
BP
470 if ( menubar->GetHMenu() )
471 {
472 m_hMenu = menubar->GetHMenu();
473 }
f008af16 474 else // no HMENU yet
f6bcfd97 475 {
f6bcfd97 476 m_hMenu = menubar->Create();
065de612 477
f6bcfd97 478 if ( !m_hMenu )
f008af16
VZ
479 {
480 wxFAIL_MSG( _T("failed to create menu bar") );
f6bcfd97 481 return;
f008af16 482 }
f6bcfd97 483 }
39d2f9a7 484#endif
f6bcfd97 485 InternalSetMenuBar();
1e6feb95 486 }
2bda0e17
KB
487}
488
0d53fc34 489void wxFrame::InternalSetMenuBar()
2bda0e17 490{
a96b4743 491#if defined(__WXMICROWIN__) || defined(__WXWINCE__)
4676948b 492 // Nothing
4676948b 493#else
42e69d6b 494 if ( !::SetMenu(GetHwnd(), (HMENU)m_hMenu) )
2bda0e17 495 {
f6bcfd97 496 wxLogLastError(wxT("SetMenu"));
2bda0e17 497 }
04ef50df 498#endif
2bda0e17
KB
499}
500
1e6feb95
VZ
501#endif // wxUSE_MENUS_NATIVE
502
2bda0e17 503// Responds to colour changes, and passes event on to children.
0d53fc34 504void wxFrame::OnSysColourChanged(wxSysColourChangedEvent& event)
2bda0e17 505{
98a02e87 506 SetOwnBackgroundColour(wxSystemSettings::GetColour(wxSYS_COLOUR_APPWORKSPACE));
2bda0e17
KB
507 Refresh();
508
1e6feb95 509#if wxUSE_STATUSBAR
2bda0e17
KB
510 if ( m_frameStatusBar )
511 {
512 wxSysColourChangedEvent event2;
513 event2.SetEventObject( m_frameStatusBar );
937013e0 514 m_frameStatusBar->HandleWindowEvent(event2);
2bda0e17 515 }
1e6feb95 516#endif // wxUSE_STATUSBAR
2bda0e17
KB
517
518 // Propagate the event to the non-top-level children
519 wxWindow::OnSysColourChanged(event);
520}
521
cbe874bd 522// Pass true to show full screen, false to restore.
0d53fc34 523bool wxFrame::ShowFullScreen(bool show, long style)
a2327a9f 524{
b01a88e0
VZ
525 // TODO-CE: add support for CE
526#if !defined(__WXMICROWIN__) && !defined(__WXWINCE__)
085ad686 527 if ( IsFullScreen() == show )
cbe874bd 528 return false;
c641b1d2 529
a2327a9f
JS
530 if (show)
531 {
b01a88e0
VZ
532 // zap the toolbar, menubar, and statusbar if needed
533 //
534 // TODO: hide commandbar for WINCE_WITH_COMMANDBAR
1e6feb95 535#if wxUSE_TOOLBAR
f6bcfd97 536 wxToolBar *theToolBar = GetToolBar();
a2327a9f
JS
537
538 if ((style & wxFULLSCREEN_NOTOOLBAR) && theToolBar)
539 {
b01a88e0
VZ
540 if ( theToolBar->IsShown() )
541 {
542 theToolBar->SetSize(wxDefaultCoord,0);
543 theToolBar->Show(false);
544 }
545 else // prevent it from being restored later
546 {
547 style &= ~wxFULLSCREEN_NOTOOLBAR;
548 }
a2327a9f 549 }
1e6feb95 550#endif // wxUSE_TOOLBAR
a2327a9f
JS
551
552 if (style & wxFULLSCREEN_NOMENUBAR)
553 SetMenu((HWND)GetHWND(), (HMENU) NULL);
554
1e6feb95
VZ
555#if wxUSE_STATUSBAR
556 wxStatusBar *theStatusBar = GetStatusBar();
1e6feb95 557
a2327a9f
JS
558 // Save the number of fields in the statusbar
559 if ((style & wxFULLSCREEN_NOSTATUSBAR) && theStatusBar)
560 {
b01a88e0
VZ
561 if ( theStatusBar->IsShown() )
562 theStatusBar->Show(false);
563 else
564 style &= ~wxFULLSCREEN_NOSTATUSBAR;
a2327a9f 565 }
1e6feb95 566#endif // wxUSE_STATUSBAR
a2327a9f 567 }
b01a88e0 568 else // restore to normal
a2327a9f 569 {
b01a88e0 570 // restore the toolbar, menubar, and statusbar if we had hid them
1e6feb95 571#if wxUSE_TOOLBAR
a2327a9f
JS
572 wxToolBar *theToolBar = GetToolBar();
573
b01a88e0 574 if ((m_fsStyle & wxFULLSCREEN_NOTOOLBAR) && theToolBar)
a2327a9f 575 {
cbe874bd 576 theToolBar->Show(true);
a2327a9f 577 }
1e6feb95 578#endif // wxUSE_TOOLBAR
a2327a9f 579
a8ff046b 580#if wxUSE_MENUS
bc88602a
JS
581 if (m_fsStyle & wxFULLSCREEN_NOMENUBAR)
582 {
583 WXHMENU menu = m_hMenu;
584
585#if wxUSE_MDI_ARCHITECTURE
586 wxMDIParentFrame *frame = wxDynamicCast(this, wxMDIParentFrame);
587 if (frame)
588 {
589 wxMDIChildFrame *child = frame->GetActiveChild();
590 if (child)
591 {
592 menu = child->GetWinMenu();
593 }
594 }
595#endif // wxUSE_MDI_ARCHITECTURE
596
597 if (menu)
598 {
599 ::SetMenu(GetHwnd(), (HMENU)menu);
600 }
601 }
a8ff046b 602#endif // wxUSE_MENUS
b01a88e0 603
1e6feb95 604#if wxUSE_STATUSBAR
b01a88e0
VZ
605 wxStatusBar *theStatusBar = GetStatusBar();
606
607 if ((m_fsStyle & wxFULLSCREEN_NOSTATUSBAR) && theStatusBar)
a2327a9f 608 {
b01a88e0
VZ
609 theStatusBar->Show(true);
610 PositionStatusBar();
a2327a9f 611 }
1e6feb95 612#endif // wxUSE_STATUSBAR
a2327a9f 613 }
b01a88e0 614#endif // !defined(__WXMICROWIN__) && !defined(__WXWINCE__)
f6bcfd97 615
085ad686 616 return wxFrameBase::ShowFullScreen(show, style);
2bda0e17
KB
617}
618
7c0ea335
VZ
619// ----------------------------------------------------------------------------
620// tool/status bar stuff
621// ----------------------------------------------------------------------------
622
d427503c 623#if wxUSE_TOOLBAR
7c0ea335 624
0d53fc34 625wxToolBar* wxFrame::CreateToolBar(long style, wxWindowID id, const wxString& name)
81d66cf3 626{
3d487566 627#if defined(WINCE_WITHOUT_COMMANDBAR)
39d2f9a7
JS
628 // We may already have a toolbar from calling SetMenuBar.
629 if (GetToolBar())
630 return GetToolBar();
631#endif
7c0ea335 632 if ( wxFrameBase::CreateToolBar(style, id, name) )
81d66cf3 633 {
81d66cf3 634 PositionToolBar();
81d66cf3 635 }
81d66cf3 636
7c0ea335 637 return m_frameToolBar;
81d66cf3
JS
638}
639
0d53fc34 640void wxFrame::PositionToolBar()
81d66cf3 641{
8898842f
VZ
642 // TODO: we want to do something different in WinCE, because the toolbar
643 // should be associated with the commandbar, instead of being
644 // independent window.
645#if !defined(WINCE_WITHOUT_COMMANDBAR)
d4597e13
VZ
646 wxToolBar *toolbar = GetToolBar();
647 if ( toolbar && toolbar->IsShown() )
648 {
649 // don't call our (or even wxTopLevelWindow) version because we want
650 // the real (full) client area size, not excluding the tool/status bar
651 int width, height;
652 wxWindow::DoGetClientSize(&width, &height);
81d66cf3 653
7c0ea335 654#if wxUSE_STATUSBAR
d4597e13
VZ
655 wxStatusBar *statbar = GetStatusBar();
656 if ( statbar && statbar->IsShown() )
657 {
658 height -= statbar->GetClientSize().y;
659 }
7c0ea335 660#endif // wxUSE_STATUSBAR
3882e746
VZ
661
662 int tx, ty, tw, th;
663 toolbar->GetPosition( &tx, &ty );
664 toolbar->GetSize( &tw, &th );
665
dd639a4f 666 int x, y;
3882e746
VZ
667 if ( toolbar->HasFlag(wxTB_BOTTOM) )
668 {
669 x = 0;
670 y = height - th;
671 }
672 else if ( toolbar->HasFlag(wxTB_RIGHT) )
673 {
674 x = width - tw;
675 y = 0;
676 }
677 else // left or top
678 {
679 x = 0;
680 y = 0;
681 }
682
3d487566 683#if defined(WINCE_WITH_COMMANDBAR)
fb8a56b7
WS
684 // We're using a commandbar - so we have to allow for it.
685 if (GetMenuBar() && GetMenuBar()->GetCommandBar())
686 {
687 RECT rect;
688 ::GetWindowRect((HWND) GetMenuBar()->GetCommandBar(), &rect);
689 y = rect.bottom - rect.top;
690 }
3882e746
VZ
691#endif // WINCE_WITH_COMMANDBAR
692
693 if ( toolbar->HasFlag(wxTB_BOTTOM) )
694 {
695 if ( ty < 0 && ( -ty == th ) )
696 ty = height - th;
697 if ( tx < 0 && (-tx == tw ) )
698 tx = 0;
699 }
700 else if ( toolbar->HasFlag(wxTB_RIGHT) )
7a976304
VZ
701 {
702 if( ty < 0 && ( -ty == th ) )
703 ty = 0;
704 if( tx < 0 && ( -tx == tw ) )
705 tx = width - tw;
706 }
3882e746
VZ
707 else // left or top
708 {
709 if (ty < 0 && (-ty == th))
710 ty = 0;
711 if (tx < 0 && (-tx == tw))
712 tx = 0;
713 }
cbe874bd 714
229de929
JS
715 int desiredW = tw;
716 int desiredH = th;
81d66cf3 717
7a976304 718 if ( toolbar->IsVertical() )
81d66cf3 719 {
229de929 720 desiredH = height;
81d66cf3
JS
721 }
722 else
723 {
229de929 724 desiredW = width;
cbe874bd 725 }
7c0ea335 726
d4597e13
VZ
727 // use the 'real' MSW position here, don't offset relativly to the
728 // client area origin
229de929
JS
729
730 // Optimise such that we don't have to always resize the toolbar
cbe874bd 731 // when the frame changes, otherwise we'll get a lot of flicker.
5cb598ae
WS
732 bool heightChanging wxDUMMY_INITIALIZE(true);
733 bool widthChanging wxDUMMY_INITIALIZE(true);
cbe874bd 734
7a976304 735 if ( toolbar->IsVertical() )
229de929
JS
736 {
737 // It's OK if the current height is greater than what can be shown.
738 heightChanging = (desiredH > th) ;
739 widthChanging = (desiredW != tw) ;
cbe874bd
WS
740
741 // The next time around, we may not have to set the size
229de929
JS
742 if (heightChanging)
743 desiredH = desiredH + 200;
744 }
745 else
746 {
747 // It's OK if the current width is greater than what can be shown.
748 widthChanging = (desiredW > tw) ;
749 heightChanging = (desiredH != th) ;
750
cbe874bd 751 // The next time around, we may not have to set the size
229de929
JS
752 if (widthChanging)
753 desiredW = desiredW + 200;
754 }
cbe874bd 755
229de929 756 if (tx != 0 || ty != 0 || widthChanging || heightChanging)
45f27284 757 toolbar->SetSize(x, y, desiredW, desiredH, wxSIZE_NO_ADJUSTMENTS);
cbe874bd 758
81d66cf3 759 }
8898842f 760#endif // !WINCE_WITH_COMMANDBAR
81d66cf3 761}
d4597e13 762
d427503c 763#endif // wxUSE_TOOLBAR
d2aef312 764
7c0ea335
VZ
765// ----------------------------------------------------------------------------
766// frame state (iconized/maximized/...)
767// ----------------------------------------------------------------------------
768
a23fd0e1
VZ
769// propagate our state change to all child frames: this allows us to emulate X
770// Windows behaviour where child frames float independently of the parent one
771// on the desktop, but are iconized/restored with it
0d53fc34 772void wxFrame::IconizeChildFrames(bool bIconize)
d2aef312 773{
4bc0f25e
VZ
774 m_iconized = bIconize;
775
222ed1d6 776 for ( wxWindowList::compatibility_iterator node = GetChildren().GetFirst();
a23fd0e1
VZ
777 node;
778 node = node->GetNext() )
779 {
780 wxWindow *win = node->GetData();
781
3ca6a5f0
BP
782 // iconizing the frames with this style under Win95 shell puts them at
783 // the bottom of the screen (as the MDI children) instead of making
784 // them appear in the taskbar because they are, by virtue of this
785 // style, not managed by the taskbar - instead leave Windows take care
786 // of them
3ca6a5f0
BP
787 if ( win->GetWindowStyle() & wxFRAME_TOOL_WINDOW )
788 continue;
3ca6a5f0 789
3f7bc32b
VZ
790 // the child MDI frames are a special case and should not be touched by
791 // the parent frame - instead, they are managed by the user
2e9f62da 792 wxFrame *frame = wxDynamicCast(win, wxFrame);
1e6feb95
VZ
793 if ( frame
794#if wxUSE_MDI_ARCHITECTURE
4ab2824c 795 && !frame->IsMDIChild()
1e6feb95
VZ
796#endif // wxUSE_MDI_ARCHITECTURE
797 )
a23fd0e1 798 {
9327c3aa
VZ
799 // we don't want to restore the child frames which had been
800 // iconized even before we were iconized, so save the child frame
801 // status when iconizing the parent frame and check it when
802 // restoring it
803 if ( bIconize )
804 {
9c72ebec 805 frame->m_wasMinimized = frame->IsIconized();
9327c3aa
VZ
806 }
807
9c72ebec
VZ
808 // note that we shouldn't touch the hidden frames neither because
809 // iconizing/restoring them would show them as a side effect
810 if ( !frame->m_wasMinimized && frame->IsShown() )
9327c3aa 811 frame->Iconize(bIconize);
a23fd0e1 812 }
d2aef312 813 }
d2aef312
VZ
814}
815
0d53fc34 816WXHICON wxFrame::GetDefaultIcon() const
82c9f85c 817{
94826170
VZ
818 // we don't have any standard icons (any more)
819 return (WXHICON)0;
82c9f85c
VZ
820}
821
a23fd0e1 822// ===========================================================================
42e69d6b 823// message processing
a23fd0e1
VZ
824// ===========================================================================
825
42e69d6b
VZ
826// ---------------------------------------------------------------------------
827// preprocessing
828// ---------------------------------------------------------------------------
829
1ac76609 830bool wxFrame::MSWDoTranslateMessage(wxFrame *frame, WXMSG *pMsg)
42e69d6b
VZ
831{
832 if ( wxWindow::MSWTranslateMessage(pMsg) )
cbe874bd 833 return true;
42e69d6b 834
1e6feb95 835#if wxUSE_MENUS && wxUSE_ACCEL && !defined(__WXUNIVERSAL__)
7802da36 836 // try the menu bar accelerators
42e69d6b 837 wxMenuBar *menuBar = GetMenuBar();
7802da36
VZ
838 if ( menuBar && menuBar->GetAcceleratorTable()->Translate(frame, pMsg) )
839 return true;
a1a1ca89 840#endif // wxUSE_MENUS && wxUSE_ACCEL
42e69d6b 841
cbe874bd 842 return false;
42e69d6b
VZ
843}
844
845// ---------------------------------------------------------------------------
846// our private (non virtual) message handlers
847// ---------------------------------------------------------------------------
848
4bc0f25e 849bool wxFrame::HandleSize(int WXUNUSED(x), int WXUNUSED(y), WXUINT id)
42e69d6b 850{
4676948b 851#if !defined(__WXMICROWIN__) && !defined(__WXWINCE__)
42e69d6b
VZ
852 switch ( id )
853 {
4bc0f25e
VZ
854 case SIZE_RESTORED:
855 case SIZE_MAXIMIZED:
42e69d6b
VZ
856 // only do it it if we were iconized before, otherwise resizing the
857 // parent frame has a curious side effect of bringing it under it's
858 // children
859 if ( !m_iconized )
860 break;
861
862 // restore all child frames too
cbe874bd 863 IconizeChildFrames(false);
42e69d6b 864
cbe874bd 865 (void)SendIconizeEvent(false);
42e69d6b
VZ
866 break;
867
4bc0f25e 868 case SIZE_MINIMIZED:
42e69d6b 869 // iconize all child frames too
cbe874bd 870 IconizeChildFrames(true);
42e69d6b
VZ
871 break;
872 }
276c8cfb
WS
873#else
874 wxUnusedVar(id);
4bc0f25e 875#endif // !__WXWINCE__
42e69d6b
VZ
876
877 if ( !m_iconized )
878 {
1e6feb95 879#if wxUSE_STATUSBAR
42e69d6b 880 PositionStatusBar();
1e6feb95
VZ
881#endif // wxUSE_STATUSBAR
882
883#if wxUSE_TOOLBAR
42e69d6b 884 PositionToolBar();
1e6feb95 885#endif // wxUSE_TOOLBAR
42e69d6b 886
3d487566 887#if defined(WINCE_WITH_COMMANDBAR)
fb8a56b7
WS
888 // Position the menu command bar
889 if (GetMenuBar() && GetMenuBar()->GetCommandBar())
890 {
891 RECT rect;
892 ::GetWindowRect((HWND) GetMenuBar()->GetCommandBar(), &rect);
893 wxSize clientSz = GetClientSize();
894
895 if ( !::MoveWindow((HWND) GetMenuBar()->GetCommandBar(), 0, 0, clientSz.x, rect.bottom - rect.top, true ) )
896 {
897 wxLogLastError(wxT("MoveWindow"));
898 }
899
900 }
4bc0f25e 901#endif // WINCE_WITH_COMMANDBAR
42e69d6b
VZ
902 }
903
4bc0f25e
VZ
904 // call the base class version to generate the appropriate events
905 return false;
42e69d6b
VZ
906}
907
660e7fda 908bool wxFrame::HandleCommand(WXWORD id_, WXWORD cmd, WXHWND control)
42e69d6b 909{
a6ac49b1
VZ
910 // we only need to handle the menu and accelerator commands from the items
911 // of our menu bar, base wxWindow class already handles the rest
912 if ( !control && (cmd == 0 /* menu */ || cmd == 1 /* accel */) )
42e69d6b 913 {
1e6feb95 914#if wxUSE_MENUS_NATIVE
a6ac49b1 915 if ( !wxCurrentPopupMenu )
1e6feb95 916#endif // wxUSE_MENUS_NATIVE
fb8a56b7 917 {
a6ac49b1
VZ
918 wxMenuBar * const mbar = GetMenuBar();
919 if ( mbar )
920 {
921 // sign extend to int from short before comparing with the
922 // other int ids
923 const int id = (signed short)id_;
fb8a56b7 924
a6ac49b1
VZ
925 wxMenuItem * const mitem = mbar->FindItem(id);
926 if ( mitem )
927 return ProcessCommand(mitem);
928 }
42e69d6b
VZ
929 }
930 }
931
a6ac49b1 932 return wxFrameBase::HandleCommand(id_, cmd, control);;
42e69d6b
VZ
933}
934
a8ff046b
VZ
935#if wxUSE_MENUS
936
0d53fc34 937bool wxFrame::HandleMenuSelect(WXWORD nItem, WXWORD flags, WXHMENU hMenu)
a23fd0e1
VZ
938{
939 int item;
c219cecc 940 if ( flags == 0xFFFF && hMenu == 0 )
a23fd0e1 941 {
c219cecc 942 // menu was removed from screen
a23fd0e1
VZ
943 item = -1;
944 }
04ef50df 945#ifndef __WXMICROWIN__
c219cecc 946 else if ( !(flags & MF_POPUP) && !(flags & MF_SEPARATOR) )
a23fd0e1
VZ
947 {
948 item = nItem;
949 }
04ef50df 950#endif
a23fd0e1
VZ
951 else
952 {
c219cecc 953 // don't give hints for separators (doesn't make sense) nor for the
f6bcfd97
BP
954 // items opening popup menus (they don't have them anyhow) but do clear
955 // the status line - otherwise, we would be left with the help message
956 // for the previous item which doesn't apply any more
6d99eb3e 957 DoGiveHelp(wxEmptyString, true);
f6bcfd97 958
cbe874bd 959 return false;
a23fd0e1
VZ
960 }
961
962 wxMenuEvent event(wxEVT_MENU_HIGHLIGHT, item);
ccef86c7
VZ
963 event.SetEventObject(this);
964
937013e0 965 return HandleWindowEvent(event);
ccef86c7
VZ
966}
967
968bool wxFrame::HandleMenuLoop(const wxEventType& evtType, WXWORD isPopup)
969{
970 // we don't have the menu id here, so we use the id to specify if the event
971 // was from a popup menu or a normal one
972 wxMenuEvent event(evtType, isPopup ? -1 : 0);
973 event.SetEventObject(this);
a23fd0e1 974
937013e0 975 return HandleWindowEvent(event);
a23fd0e1
VZ
976}
977
a8ff046b
VZ
978bool wxFrame::HandleInitMenuPopup(WXHMENU hMenu)
979{
980 wxMenu* menu = NULL;
981 if (GetMenuBar())
982 {
983 int nCount = GetMenuBar()->GetMenuCount();
984 for (int n = 0; n < nCount; n++)
985 {
986 if (GetMenuBar()->GetMenu(n)->GetHMenu() == hMenu)
987 {
988 menu = GetMenuBar()->GetMenu(n);
989 break;
990 }
991 }
992 }
993
994 wxMenuEvent event(wxEVT_MENU_OPEN, 0, menu);
995 event.SetEventObject(this);
996
937013e0 997 return HandleWindowEvent(event);
a8ff046b
VZ
998}
999
1000#endif // wxUSE_MENUS
1001
a23fd0e1 1002// ---------------------------------------------------------------------------
0d53fc34 1003// the window proc for wxFrame
a23fd0e1
VZ
1004// ---------------------------------------------------------------------------
1005
c140b7e7 1006WXLRESULT wxFrame::MSWWindowProc(WXUINT message, WXWPARAM wParam, WXLPARAM lParam)
a23fd0e1 1007{
c140b7e7 1008 WXLRESULT rc = 0;
cbe874bd 1009 bool processed = false;
a23fd0e1
VZ
1010
1011 switch ( message )
1012 {
42e69d6b
VZ
1013 case WM_CLOSE:
1014 // if we can't close, tell the system that we processed the
1015 // message - otherwise it would close us
1016 processed = !Close();
1017 break;
1018
ccef86c7
VZ
1019 case WM_SIZE:
1020 processed = HandleSize(LOWORD(lParam), HIWORD(lParam), wParam);
1021 break;
1022
42e69d6b
VZ
1023 case WM_COMMAND:
1024 {
1025 WORD id, cmd;
1026 WXHWND hwnd;
1027 UnpackCommand((WXWPARAM)wParam, (WXLPARAM)lParam,
1028 &id, &hwnd, &cmd);
1029
a6ac49b1
VZ
1030 HandleCommand(id, cmd, (WXHWND)hwnd);
1031
1032 // don't pass WM_COMMAND to the base class whether we processed
1033 // it or not because we did generate an event for it (our
1034 // HandleCommand() calls the base class version) and we must
1035 // not do it again or the handlers which skip the event would
1036 // be called twice
1037 processed = true;
42e69d6b
VZ
1038 }
1039 break;
1040
a8ff046b
VZ
1041#if !defined(__WXMICROWIN__) && !defined(__WXWINCE__)
1042#if wxUSE_MENUS
92f1a59c
JS
1043 case WM_INITMENUPOPUP:
1044 processed = HandleInitMenuPopup((WXHMENU) wParam);
1045 break;
1046
a23fd0e1
VZ
1047 case WM_MENUSELECT:
1048 {
42e69d6b
VZ
1049 WXWORD item, flags;
1050 WXHMENU hmenu;
1051 UnpackMenuSelect(wParam, lParam, &item, &flags, &hmenu);
1052
1053 processed = HandleMenuSelect(item, flags, hmenu);
a23fd0e1
VZ
1054 }
1055 break;
bc92cdf9 1056
ccef86c7 1057 case WM_EXITMENULOOP:
373a5fb3 1058 processed = HandleMenuLoop(wxEVT_MENU_CLOSE, (WXWORD)wParam);
ccef86c7 1059 break;
a8ff046b 1060#endif // wxUSE_MENUS
ccef86c7 1061
42e69d6b
VZ
1062 case WM_QUERYDRAGICON:
1063 {
f618020a
MB
1064 const wxIcon& icon = GetIcon();
1065 HICON hIcon = icon.Ok() ? GetHiconOf(icon)
1066 : (HICON)GetDefaultIcon();
dca0f651 1067 rc = (WXLRESULT)hIcon;
42e69d6b
VZ
1068 processed = rc != 0;
1069 }
1070 break;
ccef86c7 1071#endif // !__WXMICROWIN__
a23fd0e1
VZ
1072 }
1073
1074 if ( !processed )
7e25f59e 1075 rc = wxFrameBase::MSWWindowProc(message, wParam, lParam);
a23fd0e1
VZ
1076
1077 return rc;
1078}
21802234 1079
a9928e9d
JS
1080// ----------------------------------------------------------------------------
1081// wxFrame size management: we exclude the areas taken by menu/status/toolbars
1082// from the client area, so the client area is what's really available for the
1083// frame contents
1084// ----------------------------------------------------------------------------
1085
1086// get the origin of the client area in the client coordinates
1087wxPoint wxFrame::GetClientAreaOrigin() const
1088{
1089 wxPoint pt = wxTopLevelWindow::GetClientAreaOrigin();
1090
1091#if wxUSE_TOOLBAR && !defined(__WXUNIVERSAL__) && \
1092 (!defined(__WXWINCE__) || (_WIN32_WCE >= 400 && !defined(__POCKETPC__) && !defined(__SMARTPHONE__)))
3882e746 1093 wxToolBar * const toolbar = GetToolBar();
a9928e9d
JS
1094 if ( toolbar && toolbar->IsShown() )
1095 {
3882e746 1096 const wxSize sizeTB = toolbar->GetSize();
a9928e9d 1097
3882e746 1098 if ( toolbar->HasFlag(wxTB_TOP) )
a9928e9d 1099 {
3882e746 1100 pt.y += sizeTB.y;
a9928e9d 1101 }
3882e746 1102 else if ( toolbar->HasFlag(wxTB_LEFT) )
a9928e9d 1103 {
3882e746 1104 pt.x += sizeTB.x;
a9928e9d
JS
1105 }
1106 }
1107#endif // wxUSE_TOOLBAR
1108
3d487566 1109#if defined(WINCE_WITH_COMMANDBAR)
fb8a56b7
WS
1110 if (GetMenuBar() && GetMenuBar()->GetCommandBar())
1111 {
1112 RECT rect;
1113 ::GetWindowRect((HWND) GetMenuBar()->GetCommandBar(), &rect);
1114 pt.y += (rect.bottom - rect.top);
1115 }
a9928e9d
JS
1116#endif
1117
1118 return pt;
1119}