]> git.saurik.com Git - wxWidgets.git/blame - src/msw/frame.cpp
Make wxEventLoop::AddSourceForFD() static.
[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
7f3f059a 64#if wxUSE_MENUS || wxUSE_MENUS_NATIVE
03baf031 65 extern wxMenu *wxCurrentPopupMenu;
7f3f059a 66#endif // wxUSE_MENUS || 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
7c0ea335
VZ
76// ============================================================================
77// implementation
78// ============================================================================
79
80// ----------------------------------------------------------------------------
81// static class members
82// ----------------------------------------------------------------------------
83
1e6feb95
VZ
84#if wxUSE_STATUSBAR
85 #if wxUSE_NATIVE_STATUSBAR
cbe874bd 86 bool wxFrame::m_useNativeStatusBar = true;
1e6feb95 87 #else
cbe874bd 88 bool wxFrame::m_useNativeStatusBar = false;
1e6feb95
VZ
89 #endif
90#endif // wxUSE_NATIVE_STATUSBAR
2bda0e17 91
7c0ea335
VZ
92// ----------------------------------------------------------------------------
93// creation/destruction
94// ----------------------------------------------------------------------------
2bda0e17 95
0d53fc34 96void wxFrame::Init()
2bda0e17 97{
cf8ff92f
VZ
98#if wxUSE_MENUS
99 m_hMenu = NULL;
100#endif // wxUSE_MENUS
101
9f3362c4
VZ
102#if wxUSE_TOOLTIPS
103 m_hwndToolTip = 0;
104#endif
a2327a9f 105
cbe874bd 106 m_wasMinimized = false;
7c0ea335 107}
9f3362c4 108
0d53fc34 109bool wxFrame::Create(wxWindow *parent,
7c0ea335
VZ
110 wxWindowID id,
111 const wxString& title,
112 const wxPoint& pos,
113 const wxSize& size,
114 long style,
115 const wxString& name)
116{
82c9f85c 117 if ( !wxTopLevelWindow::Create(parent, id, title, pos, size, style, name) )
ef6d716b 118 return false;
d2aef312 119
98a02e87 120 SetOwnBackgroundColour(wxSystemSettings::GetColour(wxSYS_COLOUR_APPWORKSPACE));
b9691677 121
aaf803e9 122#if defined(__SMARTPHONE__)
ef6d716b
WS
123 SetLeftMenu(wxID_EXIT, _("Done"));
124#endif
125
855ec944 126#if wxUSE_ACCEL && defined(__POCKETPC__)
aaf803e9
JS
127 // The guidelines state that Ctrl+Q should quit the app.
128 // Let's define an accelerator table to send wxID_EXIT.
129 wxAcceleratorEntry entries[1];
130 entries[0].Set(wxACCEL_CTRL, 'Q', wxID_EXIT);
131 wxAcceleratorTable accel(1, entries);
132 SetAcceleratorTable(accel);
855ec944 133#endif // wxUSE_ACCEL && __POCKETPC__
aaf803e9 134
ef6d716b 135 return true;
2bda0e17
KB
136}
137
0d53fc34 138wxFrame::~wxFrame()
2bda0e17 139{
c6212a0c
VZ
140 SendDestroyEvent();
141
82c9f85c 142 DeleteAllBars();
2bda0e17
KB
143}
144
d4597e13
VZ
145// ----------------------------------------------------------------------------
146// wxFrame client size calculations
147// ----------------------------------------------------------------------------
2bda0e17 148
0d53fc34 149void wxFrame::DoSetClientSize(int width, int height)
2bda0e17 150{
82c9f85c 151 // leave enough space for the status bar if we have (and show) it
7c0ea335 152#if wxUSE_STATUSBAR
8d8bd249
VZ
153 wxStatusBar *statbar = GetStatusBar();
154 if ( statbar && statbar->IsShown() )
155 {
8d8bd249
VZ
156 height += statbar->GetSize().y;
157 }
7c0ea335 158#endif // wxUSE_STATUSBAR
2bda0e17 159
68d02db3
VZ
160 // call GetClientAreaOrigin() to take the toolbar into account
161 wxPoint pt = GetClientAreaOrigin();
162 width += pt.x;
163 height += pt.y;
3882e746 164
7a976304 165#if wxUSE_TOOLBAR
3882e746
VZ
166 wxToolBar * const toolbar = GetToolBar();
167 if ( toolbar )
7a976304 168 {
3882e746 169 if ( toolbar->HasFlag(wxTB_RIGHT | wxTB_BOTTOM) )
7a976304 170 {
3882e746
VZ
171 const wxSize sizeTB = toolbar->GetSize();
172 if ( toolbar->HasFlag(wxTB_RIGHT) )
173 width -= sizeTB.x;
174 else // wxTB_BOTTOM
175 height -= sizeTB.y;
7a976304 176 }
3882e746 177 //else: toolbar already taken into account by GetClientAreaOrigin()
7a976304 178 }
3882e746 179#endif // wxUSE_TOOLBAR
68d02db3 180
82c9f85c 181 wxTopLevelWindow::DoSetClientSize(width, height);
2bda0e17
KB
182}
183
d4597e13
VZ
184// Get size *available for subwindows* i.e. excluding menu bar, toolbar etc.
185void wxFrame::DoGetClientSize(int *x, int *y) const
186{
187 wxTopLevelWindow::DoGetClientSize(x, y);
188
68d02db3
VZ
189 // account for the possible toolbar
190 wxPoint pt = GetClientAreaOrigin();
191 if ( x )
192 *x -= pt.x;
193
194 if ( y )
195 *y -= pt.y;
3882e746 196
5b2acc3a 197#if wxUSE_TOOLBAR
3882e746
VZ
198 wxToolBar * const toolbar = GetToolBar();
199 if ( toolbar )
5b2acc3a 200 {
3882e746 201 if ( toolbar->HasFlag(wxTB_RIGHT | wxTB_BOTTOM) )
5b2acc3a 202 {
3882e746
VZ
203 const wxSize sizeTB = toolbar->GetSize();
204 if ( toolbar->HasFlag(wxTB_RIGHT) )
205 {
206 if ( x )
207 *x -= sizeTB.x;
208 }
209 else // wxTB_BOTTOM
210 {
211 if ( y )
212 *y -= sizeTB.y;
213 }
7a976304 214 }
3882e746 215 //else: toolbar already taken into account by GetClientAreaOrigin()
7a976304 216 }
3882e746
VZ
217#endif // wxUSE_TOOLBAR
218
d4597e13
VZ
219#if wxUSE_STATUSBAR
220 // adjust client area height to take the status bar into account
221 if ( y )
222 {
223 wxStatusBar *statbar = GetStatusBar();
224 if ( statbar && statbar->IsShown() )
225 {
c22bbd08 226 *y -= statbar->GetSize().y;
d4597e13
VZ
227 }
228 }
229#endif // wxUSE_STATUSBAR
230}
231
7c0ea335 232// ----------------------------------------------------------------------------
0d53fc34 233// wxFrame: various geometry-related functions
7c0ea335
VZ
234// ----------------------------------------------------------------------------
235
67bd5bad 236// generate an artificial resize event
ecdc1183 237void wxFrame::SendSizeEvent(int flags)
67bd5bad 238{
67bd5bad
GT
239 if ( !m_iconized )
240 {
82c9f85c
VZ
241 RECT r = wxGetWindowRect(GetHwnd());
242
ecdc1183
VZ
243 if ( flags & wxSEND_EVENT_POST )
244 {
245 ::PostMessage(GetHwnd(), WM_SIZE,
246 IsMaximized() ? SIZE_MAXIMIZED : SIZE_RESTORED,
247 MAKELPARAM(r.right - r.left, r.bottom - r.top));
248 }
249 else // send it
250 {
251 ::SendMessage(GetHwnd(), WM_SIZE,
252 IsMaximized() ? SIZE_MAXIMIZED : SIZE_RESTORED,
253 MAKELPARAM(r.right - r.left, r.bottom - r.top));
254 }
67bd5bad
GT
255 }
256}
257
d427503c 258#if wxUSE_STATUSBAR
0d53fc34 259wxStatusBar *wxFrame::OnCreateStatusBar(int number,
7c0ea335
VZ
260 long style,
261 wxWindowID id,
262 const wxString& name)
2bda0e17 263{
5cb598ae 264 wxStatusBar *statusBar wxDUMMY_INITIALIZE(NULL);
2bda0e17 265
47d67540 266#if wxUSE_NATIVE_STATUSBAR
1f0500b3 267 if ( !UsesNativeStatusBar() )
2bda0e17 268 {
1f0500b3 269 statusBar = (wxStatusBar *)new wxStatusBarGeneric(this, id, style);
2bda0e17
KB
270 }
271 else
272#endif
273 {
1f0500b3
VZ
274 statusBar = new wxStatusBar(this, id, style, name);
275 }
ed791986 276
1f0500b3 277 statusBar->SetFieldsCount(number);
2bda0e17 278
7c0ea335 279 return statusBar;
2bda0e17
KB
280}
281
0d53fc34 282void wxFrame::PositionStatusBar()
2bda0e17 283{
d4597e13 284 if ( !m_frameStatusBar || !m_frameStatusBar->IsShown() )
ed791986
VZ
285 return;
286
cbc66a27
VZ
287 int w, h;
288 GetClientSize(&w, &h);
3882e746 289
cbc66a27
VZ
290 int sw, sh;
291 m_frameStatusBar->GetSize(&sw, &sh);
292
8efbb8ad
VZ
293 int x = 0;
294#if wxUSE_TOOLBAR
295 wxToolBar * const toolbar = GetToolBar();
296 if ( toolbar && !toolbar->HasFlag(wxTB_TOP) )
297 {
298 const wxSize sizeTB = toolbar->GetSize();
299
300 if ( toolbar->HasFlag(wxTB_LEFT | wxTB_RIGHT) )
301 {
302 if ( toolbar->HasFlag(wxTB_LEFT) )
303 x -= sizeTB.x;
304
305 w += sizeTB.x;
306 }
307 else // wxTB_BOTTOM
308 {
309 // we need to position the status bar below the toolbar
310 h += sizeTB.y;
311 }
312 }
313 //else: no adjustments necessary for the toolbar on top
314#endif // wxUSE_TOOLBAR
315
cbc66a27
VZ
316 // Since we wish the status bar to be directly under the client area,
317 // we use the adjusted sizes without using wxSIZE_NO_ADJUSTMENTS.
8efbb8ad 318 m_frameStatusBar->SetSize(x, h, w, sh);
2bda0e17 319}
3882e746 320
d427503c 321#endif // wxUSE_STATUSBAR
2bda0e17 322
6522713c 323#if wxUSE_MENUS_NATIVE
ea9a4296 324
0d53fc34 325void wxFrame::AttachMenuBar(wxMenuBar *menubar)
2bda0e17 326{
3180bc0e 327#if defined(__SMARTPHONE__) && defined(__WXWINCE__)
fb8a56b7 328
ed679e74
WS
329 wxMenu *autoMenu = NULL;
330
331 if( menubar->GetMenuCount() == 1 )
332 {
333 autoMenu = wxTopLevelWindowMSW::ButtonMenu::DuplicateMenu(menubar->GetMenu(0));
52af3158 334 SetRightMenu(wxID_ANY, menubar->GetMenuLabel(0), autoMenu);
ed679e74
WS
335 }
336 else
fb8a56b7 337 {
ed679e74
WS
338 autoMenu = new wxMenu;
339
340 for( size_t n = 0; n < menubar->GetMenuCount(); n++ )
341 {
342 wxMenu *item = menubar->GetMenu(n);
52af3158 343 wxString label = menubar->GetMenuLabel(n);
ed679e74
WS
344 wxMenu *new_item = wxTopLevelWindowMSW::ButtonMenu::DuplicateMenu(item);
345 autoMenu->Append(wxID_ANY, label, new_item);
346 }
347
348 SetRightMenu(wxID_ANY, _("Menu"), autoMenu);
fb8a56b7
WS
349 }
350
fb8a56b7 351#elif defined(WINCE_WITHOUT_COMMANDBAR)
a96b4743
JS
352 if (!GetToolBar())
353 {
a9102b36 354 wxToolMenuBar* toolBar = new wxToolMenuBar(this, wxID_ANY,
a96b4743
JS
355 wxDefaultPosition, wxDefaultSize,
356 wxBORDER_NONE | wxTB_HORIZONTAL,
af5454a4 357 wxToolBarNameStr, menubar);
a96b4743
JS
358 SetToolBar(toolBar);
359 menubar->SetToolBar(toolBar);
360 }
fb8a56b7 361
c0a91b51
VZ
362 // When the main window is created using CW_USEDEFAULT the height of the
363 // menubar is not taken into account, so we resize it afterwards if a
364 // menubar is present
365 HWND hwndMenuBar = SHFindMenuBar(GetHwnd());
366 if ( hwndMenuBar )
fb8a56b7 367 {
c0a91b51
VZ
368 RECT mbRect;
369 ::GetWindowRect(hwndMenuBar, &mbRect);
370 const int menuHeight = mbRect.bottom - mbRect.top;
371
fb8a56b7 372 RECT rc;
c0a91b51 373 ::GetWindowRect(GetHwnd(), &rc);
fb8a56b7
WS
374 // adjust for menu / titlebar height
375 rc.bottom -= (2*menuHeight-1);
376
102db80f 377 ::MoveWindow(GetHwnd(), rc.left, rc.top, rc.right, rc.bottom, FALSE);
fb8a56b7 378 }
a96b4743
JS
379#endif
380
f008af16 381 wxFrameBase::AttachMenuBar(menubar);
6beb85c0 382
f6bcfd97 383 if ( !menubar )
c2dcfdef 384 {
f6bcfd97
BP
385 // actually remove the menu from the frame
386 m_hMenu = (WXHMENU)0;
387 InternalSetMenuBar();
065de612 388 }
f6bcfd97 389 else // set new non NULL menu bar
065de612 390 {
3d487566 391#if !defined(__WXWINCE__) || defined(WINCE_WITH_COMMANDBAR)
f6bcfd97 392 // Can set a menubar several times.
f6bcfd97
BP
393 if ( menubar->GetHMenu() )
394 {
395 m_hMenu = menubar->GetHMenu();
396 }
f008af16 397 else // no HMENU yet
f6bcfd97 398 {
f6bcfd97 399 m_hMenu = menubar->Create();
065de612 400
f6bcfd97 401 if ( !m_hMenu )
f008af16 402 {
9a83f860 403 wxFAIL_MSG( wxT("failed to create menu bar") );
f6bcfd97 404 return;
f008af16 405 }
f6bcfd97 406 }
39d2f9a7 407#endif
f6bcfd97 408 InternalSetMenuBar();
1e6feb95 409 }
2bda0e17
KB
410}
411
0d53fc34 412void wxFrame::InternalSetMenuBar()
2bda0e17 413{
a96b4743 414#if defined(__WXMICROWIN__) || defined(__WXWINCE__)
4676948b 415 // Nothing
4676948b 416#else
42e69d6b 417 if ( !::SetMenu(GetHwnd(), (HMENU)m_hMenu) )
2bda0e17 418 {
f6bcfd97 419 wxLogLastError(wxT("SetMenu"));
2bda0e17 420 }
04ef50df 421#endif
2bda0e17
KB
422}
423
1e6feb95
VZ
424#endif // wxUSE_MENUS_NATIVE
425
95316a3f
VZ
426#if wxUSE_MENUS
427wxMenu* wxFrame::MSWFindMenuFromHMENU(WXHMENU hMenu)
428{
429 return GetMenuBar() ? GetMenuBar()->MSWGetMenu(hMenu) : NULL;
430}
431#endif // wxUSE_MENUS
432
2bda0e17 433// Responds to colour changes, and passes event on to children.
0d53fc34 434void wxFrame::OnSysColourChanged(wxSysColourChangedEvent& event)
2bda0e17 435{
3ceb10b1
VZ
436 // Don't override the colour explicitly set by the user, if any.
437 if ( !UseBgCol() )
438 {
439 SetOwnBackgroundColour(wxSystemSettings::GetColour(wxSYS_COLOUR_APPWORKSPACE));
440 Refresh();
441 }
2bda0e17 442
1e6feb95 443#if wxUSE_STATUSBAR
2bda0e17
KB
444 if ( m_frameStatusBar )
445 {
446 wxSysColourChangedEvent event2;
447 event2.SetEventObject( m_frameStatusBar );
937013e0 448 m_frameStatusBar->HandleWindowEvent(event2);
2bda0e17 449 }
1e6feb95 450#endif // wxUSE_STATUSBAR
2bda0e17
KB
451
452 // Propagate the event to the non-top-level children
453 wxWindow::OnSysColourChanged(event);
454}
455
cbe874bd 456// Pass true to show full screen, false to restore.
0d53fc34 457bool wxFrame::ShowFullScreen(bool show, long style)
a2327a9f 458{
b01a88e0
VZ
459 // TODO-CE: add support for CE
460#if !defined(__WXMICROWIN__) && !defined(__WXWINCE__)
085ad686 461 if ( IsFullScreen() == show )
cbe874bd 462 return false;
c641b1d2 463
a2327a9f
JS
464 if (show)
465 {
b01a88e0
VZ
466 // zap the toolbar, menubar, and statusbar if needed
467 //
468 // TODO: hide commandbar for WINCE_WITH_COMMANDBAR
1e6feb95 469#if wxUSE_TOOLBAR
f6bcfd97 470 wxToolBar *theToolBar = GetToolBar();
a2327a9f
JS
471
472 if ((style & wxFULLSCREEN_NOTOOLBAR) && theToolBar)
473 {
b01a88e0
VZ
474 if ( theToolBar->IsShown() )
475 {
476 theToolBar->SetSize(wxDefaultCoord,0);
477 theToolBar->Show(false);
478 }
479 else // prevent it from being restored later
480 {
481 style &= ~wxFULLSCREEN_NOTOOLBAR;
482 }
a2327a9f 483 }
1e6feb95 484#endif // wxUSE_TOOLBAR
a2327a9f
JS
485
486 if (style & wxFULLSCREEN_NOMENUBAR)
487 SetMenu((HWND)GetHWND(), (HMENU) NULL);
488
1e6feb95
VZ
489#if wxUSE_STATUSBAR
490 wxStatusBar *theStatusBar = GetStatusBar();
1e6feb95 491
a2327a9f
JS
492 // Save the number of fields in the statusbar
493 if ((style & wxFULLSCREEN_NOSTATUSBAR) && theStatusBar)
494 {
b01a88e0
VZ
495 if ( theStatusBar->IsShown() )
496 theStatusBar->Show(false);
497 else
498 style &= ~wxFULLSCREEN_NOSTATUSBAR;
a2327a9f 499 }
1e6feb95 500#endif // wxUSE_STATUSBAR
a2327a9f 501 }
b01a88e0 502 else // restore to normal
a2327a9f 503 {
b01a88e0 504 // restore the toolbar, menubar, and statusbar if we had hid them
1e6feb95 505#if wxUSE_TOOLBAR
a2327a9f
JS
506 wxToolBar *theToolBar = GetToolBar();
507
b01a88e0 508 if ((m_fsStyle & wxFULLSCREEN_NOTOOLBAR) && theToolBar)
a2327a9f 509 {
cbe874bd 510 theToolBar->Show(true);
a2327a9f 511 }
1e6feb95 512#endif // wxUSE_TOOLBAR
a2327a9f 513
a8ff046b 514#if wxUSE_MENUS
bc88602a
JS
515 if (m_fsStyle & wxFULLSCREEN_NOMENUBAR)
516 {
51181d29
VZ
517 const WXHMENU hmenu = MSWGetActiveMenu();
518 if ( hmenu )
519 ::SetMenu(GetHwnd(), (HMENU)hmenu);
bc88602a 520 }
a8ff046b 521#endif // wxUSE_MENUS
b01a88e0 522
1e6feb95 523#if wxUSE_STATUSBAR
b01a88e0
VZ
524 wxStatusBar *theStatusBar = GetStatusBar();
525
526 if ((m_fsStyle & wxFULLSCREEN_NOSTATUSBAR) && theStatusBar)
a2327a9f 527 {
b01a88e0
VZ
528 theStatusBar->Show(true);
529 PositionStatusBar();
a2327a9f 530 }
1e6feb95 531#endif // wxUSE_STATUSBAR
a2327a9f 532 }
b01a88e0 533#endif // !defined(__WXMICROWIN__) && !defined(__WXWINCE__)
f6bcfd97 534
085ad686 535 return wxFrameBase::ShowFullScreen(show, style);
2bda0e17
KB
536}
537
7c0ea335
VZ
538// ----------------------------------------------------------------------------
539// tool/status bar stuff
540// ----------------------------------------------------------------------------
541
d427503c 542#if wxUSE_TOOLBAR
7c0ea335 543
0d53fc34 544wxToolBar* wxFrame::CreateToolBar(long style, wxWindowID id, const wxString& name)
81d66cf3 545{
3d487566 546#if defined(WINCE_WITHOUT_COMMANDBAR)
39d2f9a7
JS
547 // We may already have a toolbar from calling SetMenuBar.
548 if (GetToolBar())
549 return GetToolBar();
550#endif
7c0ea335 551 if ( wxFrameBase::CreateToolBar(style, id, name) )
81d66cf3 552 {
81d66cf3 553 PositionToolBar();
81d66cf3 554 }
81d66cf3 555
7c0ea335 556 return m_frameToolBar;
81d66cf3
JS
557}
558
0d53fc34 559void wxFrame::PositionToolBar()
81d66cf3 560{
8898842f
VZ
561 // TODO: we want to do something different in WinCE, because the toolbar
562 // should be associated with the commandbar, instead of being
563 // independent window.
564#if !defined(WINCE_WITHOUT_COMMANDBAR)
d4597e13
VZ
565 wxToolBar *toolbar = GetToolBar();
566 if ( toolbar && toolbar->IsShown() )
567 {
568 // don't call our (or even wxTopLevelWindow) version because we want
569 // the real (full) client area size, not excluding the tool/status bar
570 int width, height;
571 wxWindow::DoGetClientSize(&width, &height);
81d66cf3 572
7c0ea335 573#if wxUSE_STATUSBAR
d4597e13
VZ
574 wxStatusBar *statbar = GetStatusBar();
575 if ( statbar && statbar->IsShown() )
576 {
577 height -= statbar->GetClientSize().y;
578 }
7c0ea335 579#endif // wxUSE_STATUSBAR
3882e746
VZ
580
581 int tx, ty, tw, th;
582 toolbar->GetPosition( &tx, &ty );
583 toolbar->GetSize( &tw, &th );
584
dd639a4f 585 int x, y;
3882e746
VZ
586 if ( toolbar->HasFlag(wxTB_BOTTOM) )
587 {
588 x = 0;
589 y = height - th;
590 }
591 else if ( toolbar->HasFlag(wxTB_RIGHT) )
592 {
593 x = width - tw;
594 y = 0;
595 }
596 else // left or top
597 {
598 x = 0;
599 y = 0;
600 }
601
3d487566 602#if defined(WINCE_WITH_COMMANDBAR)
fb8a56b7
WS
603 // We're using a commandbar - so we have to allow for it.
604 if (GetMenuBar() && GetMenuBar()->GetCommandBar())
605 {
606 RECT rect;
607 ::GetWindowRect((HWND) GetMenuBar()->GetCommandBar(), &rect);
608 y = rect.bottom - rect.top;
609 }
3882e746
VZ
610#endif // WINCE_WITH_COMMANDBAR
611
612 if ( toolbar->HasFlag(wxTB_BOTTOM) )
613 {
614 if ( ty < 0 && ( -ty == th ) )
615 ty = height - th;
616 if ( tx < 0 && (-tx == tw ) )
617 tx = 0;
618 }
619 else if ( toolbar->HasFlag(wxTB_RIGHT) )
7a976304
VZ
620 {
621 if( ty < 0 && ( -ty == th ) )
622 ty = 0;
623 if( tx < 0 && ( -tx == tw ) )
624 tx = width - tw;
625 }
3882e746
VZ
626 else // left or top
627 {
628 if (ty < 0 && (-ty == th))
629 ty = 0;
630 if (tx < 0 && (-tx == tw))
631 tx = 0;
632 }
cbe874bd 633
563f85a9
VZ
634 int desiredW,
635 desiredH;
81d66cf3 636
7a976304 637 if ( toolbar->IsVertical() )
81d66cf3 638 {
563f85a9 639 desiredW = tw;
229de929 640 desiredH = height;
81d66cf3
JS
641 }
642 else
643 {
229de929 644 desiredW = width;
563f85a9 645 desiredH = th;
cbe874bd 646 }
7c0ea335 647
563f85a9 648 // use the 'real' MSW position here, don't offset relatively to the
d4597e13 649 // client area origin
563f85a9 650 toolbar->SetSize(x, y, desiredW, desiredH, wxSIZE_NO_ADJUSTMENTS);
cbe874bd 651
81d66cf3 652 }
8898842f 653#endif // !WINCE_WITH_COMMANDBAR
81d66cf3 654}
d4597e13 655
d427503c 656#endif // wxUSE_TOOLBAR
d2aef312 657
7c0ea335
VZ
658// ----------------------------------------------------------------------------
659// frame state (iconized/maximized/...)
660// ----------------------------------------------------------------------------
661
a23fd0e1
VZ
662// propagate our state change to all child frames: this allows us to emulate X
663// Windows behaviour where child frames float independently of the parent one
664// on the desktop, but are iconized/restored with it
0d53fc34 665void wxFrame::IconizeChildFrames(bool bIconize)
d2aef312 666{
4bc0f25e
VZ
667 m_iconized = bIconize;
668
222ed1d6 669 for ( wxWindowList::compatibility_iterator node = GetChildren().GetFirst();
a23fd0e1
VZ
670 node;
671 node = node->GetNext() )
672 {
673 wxWindow *win = node->GetData();
674
3ca6a5f0
BP
675 // iconizing the frames with this style under Win95 shell puts them at
676 // the bottom of the screen (as the MDI children) instead of making
677 // them appear in the taskbar because they are, by virtue of this
678 // style, not managed by the taskbar - instead leave Windows take care
679 // of them
3ca6a5f0
BP
680 if ( win->GetWindowStyle() & wxFRAME_TOOL_WINDOW )
681 continue;
3ca6a5f0 682
3f7bc32b
VZ
683 // the child MDI frames are a special case and should not be touched by
684 // the parent frame - instead, they are managed by the user
2e9f62da 685 wxFrame *frame = wxDynamicCast(win, wxFrame);
1e6feb95
VZ
686 if ( frame
687#if wxUSE_MDI_ARCHITECTURE
4ab2824c 688 && !frame->IsMDIChild()
1e6feb95
VZ
689#endif // wxUSE_MDI_ARCHITECTURE
690 )
a23fd0e1 691 {
9327c3aa
VZ
692 // we don't want to restore the child frames which had been
693 // iconized even before we were iconized, so save the child frame
694 // status when iconizing the parent frame and check it when
695 // restoring it
696 if ( bIconize )
697 {
9c72ebec 698 frame->m_wasMinimized = frame->IsIconized();
9327c3aa
VZ
699 }
700
9c72ebec
VZ
701 // note that we shouldn't touch the hidden frames neither because
702 // iconizing/restoring them would show them as a side effect
703 if ( !frame->m_wasMinimized && frame->IsShown() )
9327c3aa 704 frame->Iconize(bIconize);
a23fd0e1 705 }
d2aef312 706 }
d2aef312
VZ
707}
708
0d53fc34 709WXHICON wxFrame::GetDefaultIcon() const
82c9f85c 710{
94826170
VZ
711 // we don't have any standard icons (any more)
712 return (WXHICON)0;
82c9f85c
VZ
713}
714
a23fd0e1 715// ===========================================================================
42e69d6b 716// message processing
a23fd0e1
VZ
717// ===========================================================================
718
42e69d6b
VZ
719// ---------------------------------------------------------------------------
720// preprocessing
721// ---------------------------------------------------------------------------
722
1ac76609 723bool wxFrame::MSWDoTranslateMessage(wxFrame *frame, WXMSG *pMsg)
42e69d6b
VZ
724{
725 if ( wxWindow::MSWTranslateMessage(pMsg) )
cbe874bd 726 return true;
42e69d6b 727
1e6feb95 728#if wxUSE_MENUS && wxUSE_ACCEL && !defined(__WXUNIVERSAL__)
7802da36 729 // try the menu bar accelerators
42e69d6b 730 wxMenuBar *menuBar = GetMenuBar();
7802da36
VZ
731 if ( menuBar && menuBar->GetAcceleratorTable()->Translate(frame, pMsg) )
732 return true;
a1a1ca89 733#endif // wxUSE_MENUS && wxUSE_ACCEL
42e69d6b 734
cbe874bd 735 return false;
42e69d6b
VZ
736}
737
738// ---------------------------------------------------------------------------
739// our private (non virtual) message handlers
740// ---------------------------------------------------------------------------
741
4bc0f25e 742bool wxFrame::HandleSize(int WXUNUSED(x), int WXUNUSED(y), WXUINT id)
42e69d6b 743{
4676948b 744#if !defined(__WXMICROWIN__) && !defined(__WXWINCE__)
42e69d6b
VZ
745 switch ( id )
746 {
4bc0f25e
VZ
747 case SIZE_RESTORED:
748 case SIZE_MAXIMIZED:
42e69d6b
VZ
749 // only do it it if we were iconized before, otherwise resizing the
750 // parent frame has a curious side effect of bringing it under it's
751 // children
752 if ( !m_iconized )
753 break;
754
755 // restore all child frames too
cbe874bd 756 IconizeChildFrames(false);
42e69d6b 757
cbe874bd 758 (void)SendIconizeEvent(false);
42e69d6b
VZ
759 break;
760
4bc0f25e 761 case SIZE_MINIMIZED:
42e69d6b 762 // iconize all child frames too
cbe874bd 763 IconizeChildFrames(true);
42e69d6b
VZ
764 break;
765 }
276c8cfb
WS
766#else
767 wxUnusedVar(id);
4bc0f25e 768#endif // !__WXWINCE__
42e69d6b
VZ
769
770 if ( !m_iconized )
771 {
1e6feb95 772#if wxUSE_STATUSBAR
42e69d6b 773 PositionStatusBar();
1e6feb95
VZ
774#endif // wxUSE_STATUSBAR
775
776#if wxUSE_TOOLBAR
42e69d6b 777 PositionToolBar();
1e6feb95 778#endif // wxUSE_TOOLBAR
42e69d6b 779
3d487566 780#if defined(WINCE_WITH_COMMANDBAR)
fb8a56b7
WS
781 // Position the menu command bar
782 if (GetMenuBar() && GetMenuBar()->GetCommandBar())
783 {
784 RECT rect;
785 ::GetWindowRect((HWND) GetMenuBar()->GetCommandBar(), &rect);
786 wxSize clientSz = GetClientSize();
787
788 if ( !::MoveWindow((HWND) GetMenuBar()->GetCommandBar(), 0, 0, clientSz.x, rect.bottom - rect.top, true ) )
789 {
790 wxLogLastError(wxT("MoveWindow"));
791 }
792
793 }
4bc0f25e 794#endif // WINCE_WITH_COMMANDBAR
42e69d6b
VZ
795 }
796
4bc0f25e
VZ
797 // call the base class version to generate the appropriate events
798 return false;
42e69d6b
VZ
799}
800
1483e5db 801bool wxFrame::HandleCommand(WXWORD id, WXWORD cmd, WXHWND control)
42e69d6b 802{
1483e5db 803#if wxUSE_MENUS
f8114048
JS
804
805#if defined(WINCE_WITHOUT_COMMANDBAR)
806 if (GetToolBar() && GetToolBar()->FindById(id))
807 return GetToolBar()->MSWCommand(cmd, id);
808#endif
809
a6ac49b1
VZ
810 // we only need to handle the menu and accelerator commands from the items
811 // of our menu bar, base wxWindow class already handles the rest
812 if ( !control && (cmd == 0 /* menu */ || cmd == 1 /* accel */) )
42e69d6b 813 {
1e6feb95 814#if wxUSE_MENUS_NATIVE
a6ac49b1 815 if ( !wxCurrentPopupMenu )
1e6feb95 816#endif // wxUSE_MENUS_NATIVE
fb8a56b7 817 {
79f9ea05 818 wxMenuItem * const mitem = FindItemInMenuBar((signed short)id);
1483e5db
VZ
819 if ( mitem )
820 return ProcessCommand(mitem);
42e69d6b
VZ
821 }
822 }
1483e5db 823#endif // wxUSE_MENUS
42e69d6b 824
1483e5db 825 return wxFrameBase::HandleCommand(id, cmd, control);;
42e69d6b
VZ
826}
827
a23fd0e1 828// ---------------------------------------------------------------------------
0d53fc34 829// the window proc for wxFrame
a23fd0e1
VZ
830// ---------------------------------------------------------------------------
831
c140b7e7 832WXLRESULT wxFrame::MSWWindowProc(WXUINT message, WXWPARAM wParam, WXLPARAM lParam)
a23fd0e1 833{
c140b7e7 834 WXLRESULT rc = 0;
cbe874bd 835 bool processed = false;
a23fd0e1
VZ
836
837 switch ( message )
838 {
42e69d6b
VZ
839 case WM_CLOSE:
840 // if we can't close, tell the system that we processed the
841 // message - otherwise it would close us
842 processed = !Close();
843 break;
844
ccef86c7
VZ
845 case WM_SIZE:
846 processed = HandleSize(LOWORD(lParam), HIWORD(lParam), wParam);
847 break;
848
42e69d6b
VZ
849 case WM_COMMAND:
850 {
851 WORD id, cmd;
852 WXHWND hwnd;
853 UnpackCommand((WXWPARAM)wParam, (WXLPARAM)lParam,
854 &id, &hwnd, &cmd);
855
a6ac49b1
VZ
856 HandleCommand(id, cmd, (WXHWND)hwnd);
857
858 // don't pass WM_COMMAND to the base class whether we processed
859 // it or not because we did generate an event for it (our
860 // HandleCommand() calls the base class version) and we must
861 // not do it again or the handlers which skip the event would
862 // be called twice
863 processed = true;
42e69d6b
VZ
864 }
865 break;
866
a8ff046b 867#if !defined(__WXMICROWIN__) && !defined(__WXWINCE__)
42e69d6b
VZ
868 case WM_QUERYDRAGICON:
869 {
f618020a 870 const wxIcon& icon = GetIcon();
a1b806b9 871 HICON hIcon = icon.IsOk() ? GetHiconOf(icon)
f618020a 872 : (HICON)GetDefaultIcon();
dca0f651 873 rc = (WXLRESULT)hIcon;
42e69d6b
VZ
874 processed = rc != 0;
875 }
876 break;
ccef86c7 877#endif // !__WXMICROWIN__
a23fd0e1
VZ
878 }
879
880 if ( !processed )
7e25f59e 881 rc = wxFrameBase::MSWWindowProc(message, wParam, lParam);
a23fd0e1
VZ
882
883 return rc;
884}
21802234 885
a9928e9d
JS
886// ----------------------------------------------------------------------------
887// wxFrame size management: we exclude the areas taken by menu/status/toolbars
888// from the client area, so the client area is what's really available for the
889// frame contents
890// ----------------------------------------------------------------------------
891
892// get the origin of the client area in the client coordinates
893wxPoint wxFrame::GetClientAreaOrigin() const
894{
895 wxPoint pt = wxTopLevelWindow::GetClientAreaOrigin();
896
897#if wxUSE_TOOLBAR && !defined(__WXUNIVERSAL__) && \
898 (!defined(__WXWINCE__) || (_WIN32_WCE >= 400 && !defined(__POCKETPC__) && !defined(__SMARTPHONE__)))
3882e746 899 wxToolBar * const toolbar = GetToolBar();
a9928e9d
JS
900 if ( toolbar && toolbar->IsShown() )
901 {
3882e746 902 const wxSize sizeTB = toolbar->GetSize();
a9928e9d 903
3882e746 904 if ( toolbar->HasFlag(wxTB_TOP) )
a9928e9d 905 {
3882e746 906 pt.y += sizeTB.y;
a9928e9d 907 }
3882e746 908 else if ( toolbar->HasFlag(wxTB_LEFT) )
a9928e9d 909 {
3882e746 910 pt.x += sizeTB.x;
a9928e9d
JS
911 }
912 }
913#endif // wxUSE_TOOLBAR
914
3d487566 915#if defined(WINCE_WITH_COMMANDBAR)
fb8a56b7
WS
916 if (GetMenuBar() && GetMenuBar()->GetCommandBar())
917 {
918 RECT rect;
919 ::GetWindowRect((HWND) GetMenuBar()->GetCommandBar(), &rect);
920 pt.y += (rect.bottom - rect.top);
921 }
a9928e9d
JS
922#endif
923
924 return pt;
925}