]> git.saurik.com Git - wxWidgets.git/blame - src/msw/mdi.cpp
don't duplicate SetInitialSocketBuffers()
[wxWidgets.git] / src / msw / mdi.cpp
CommitLineData
2bda0e17 1/////////////////////////////////////////////////////////////////////////////
a967ef9d
VZ
2// Name: src/msw/mdi.cpp
3// Purpose: MDI classes for wxMSW
2bda0e17
KB
4// Author: Julian Smart
5// Modified by:
6// Created: 04/01/98
7// RCS-ID: $Id$
6c9a19aa 8// Copyright: (c) Julian Smart
65571936 9// Licence: wxWindows licence
2bda0e17
KB
10/////////////////////////////////////////////////////////////////////////////
11
a23fd0e1
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__
a23fd0e1 24 #pragma hdrstop
2bda0e17
KB
25#endif
26
efd17a1d 27#if wxUSE_MDI && !defined(__WXUNIVERSAL__)
b442f107 28
59cf2e49
WS
29#include "wx/mdi.h"
30
2bda0e17 31#ifndef WX_PRECOMP
a23fd0e1
VZ
32 #include "wx/frame.h"
33 #include "wx/menu.h"
34 #include "wx/app.h"
35 #include "wx/utils.h"
36 #include "wx/dialog.h"
3304646d 37 #include "wx/statusbr.h"
a23fd0e1 38 #include "wx/settings.h"
0c589ad0
BM
39 #include "wx/intl.h"
40 #include "wx/log.h"
4e3e485b 41 #include "wx/toolbar.h"
2bda0e17
KB
42#endif
43
e27d9a91 44#include "wx/stockitem.h"
2bda0e17
KB
45#include "wx/msw/private.h"
46
2bda0e17
KB
47#include <string.h>
48
a23fd0e1
VZ
49// ---------------------------------------------------------------------------
50// global variables
51// ---------------------------------------------------------------------------
52
e1a6fc11 53extern wxMenu *wxCurrentPopupMenu;
2bda0e17 54
3ca6a5f0 55extern const wxChar *wxMDIFrameClassName; // from app.cpp
2ffa221c 56extern const wxChar *wxMDIChildFrameClassName;
3ca6a5f0 57extern const wxChar *wxMDIChildFrameClassNameNoRedraw;
ac6482e0 58extern void wxRemoveHandleAssociation(wxWindow *win);
a23fd0e1
VZ
59
60// ---------------------------------------------------------------------------
61// constants
62// ---------------------------------------------------------------------------
63
42e69d6b 64static const int IDM_WINDOWTILEHOR = 4001;
a23fd0e1
VZ
65static const int IDM_WINDOWCASCADE = 4002;
66static const int IDM_WINDOWICONS = 4003;
67static const int IDM_WINDOWNEXT = 4004;
42e69d6b 68static const int IDM_WINDOWTILEVERT = 4005;
4f3b37fd 69static const int IDM_WINDOWPREV = 4006;
a23fd0e1
VZ
70
71// This range gives a maximum of 500 MDI children. Should be enough :-)
72static const int wxFIRST_MDI_CHILD = 4100;
73static const int wxLAST_MDI_CHILD = 4600;
2bda0e17 74
42e69d6b
VZ
75// ---------------------------------------------------------------------------
76// private functions
77// ---------------------------------------------------------------------------
78
79// set the MDI menus (by sending the WM_MDISETMENU message) and update the menu
80// of the parent of win (which is supposed to be the MDI client window)
81static void MDISetMenu(wxWindow *win, HMENU hmenuFrame, HMENU hmenuWindow);
82
83// insert the window menu (subMenu) into menu just before "Help" submenu or at
84// the very end if not found
ecc63060 85static void MDIInsertWindowMenu(wxWindow *win, WXHMENU menu, HMENU subMenu);
42e69d6b 86
df61c009 87// Remove the window menu
ecc63060 88static void MDIRemoveWindowMenu(wxWindow *win, WXHMENU menu);
df61c009 89
42e69d6b
VZ
90// is this an id of an MDI child?
91inline bool IsMdiCommandId(int id)
92{
93 return (id >= wxFIRST_MDI_CHILD) && (id <= wxLAST_MDI_CHILD);
94}
95
4e152a23 96// unpack the parameters of WM_MDIACTIVATE message
2917e920
BM
97static void UnpackMDIActivate(WXWPARAM wParam, WXLPARAM lParam,
98 WXWORD *activate, WXHWND *hwndAct, WXHWND *hwndDeact);
42e69d6b 99
4e152a23 100// return the HMENU of the MDI menu
ecc63060
VZ
101//
102// this function works correctly even when we don't have a window menu and just
103// returns 0 then
4e152a23
VZ
104static inline HMENU GetMDIWindowMenu(wxMDIParentFrame *frame)
105{
106 wxMenu *menu = frame->GetWindowMenu();
107 return menu ? GetHmenuOf(menu) : 0;
108}
109
a23fd0e1
VZ
110// ===========================================================================
111// implementation
112// ===========================================================================
113
114// ---------------------------------------------------------------------------
115// wxWin macros
116// ---------------------------------------------------------------------------
2bda0e17 117
225fe9d6
VZ
118IMPLEMENT_DYNAMIC_CLASS(wxMDIParentFrame, wxFrame)
119IMPLEMENT_DYNAMIC_CLASS(wxMDIChildFrame, wxFrame)
120IMPLEMENT_DYNAMIC_CLASS(wxMDIClientWindow, wxWindow)
2bda0e17
KB
121
122BEGIN_EVENT_TABLE(wxMDIParentFrame, wxFrame)
a23fd0e1 123 EVT_SIZE(wxMDIParentFrame::OnSize)
6bbe97b7 124 EVT_ICONIZE(wxMDIParentFrame::OnIconized)
a23fd0e1 125 EVT_SYS_COLOUR_CHANGED(wxMDIParentFrame::OnSysColourChanged)
2bda0e17
KB
126END_EVENT_TABLE()
127
f6bcfd97
BP
128BEGIN_EVENT_TABLE(wxMDIChildFrame, wxFrame)
129 EVT_IDLE(wxMDIChildFrame::OnIdle)
130END_EVENT_TABLE()
131
2bda0e17 132BEGIN_EVENT_TABLE(wxMDIClientWindow, wxWindow)
a23fd0e1 133 EVT_SCROLL(wxMDIClientWindow::OnScroll)
2bda0e17
KB
134END_EVENT_TABLE()
135
42e69d6b
VZ
136// ===========================================================================
137// wxMDIParentFrame: the frame which contains the client window which manages
138// the children
139// ===========================================================================
2bda0e17 140
c2dcfdef 141wxMDIParentFrame::wxMDIParentFrame()
2bda0e17 142{
4f8090e0 143 m_parentFrameActive = true;
2bda0e17
KB
144}
145
146bool wxMDIParentFrame::Create(wxWindow *parent,
a23fd0e1
VZ
147 wxWindowID id,
148 const wxString& title,
149 const wxPoint& pos,
150 const wxSize& size,
151 long style,
152 const wxString& name)
2bda0e17 153{
3d8dea7e
VZ
154 // this style can be used to prevent a window from having the standard MDI
155 // "Window" menu
d2824cdb 156 if ( !(style & wxFRAME_NO_WINDOW_MENU) )
df61c009 157 {
d2824cdb 158 // normal case: we have the window menu, so construct it
df61c009
JS
159 m_windowMenu = new wxMenu;
160
b0a2157c
VZ
161 m_windowMenu->Append(IDM_WINDOWCASCADE, _("&Cascade"));
162 m_windowMenu->Append(IDM_WINDOWTILEHOR, _("Tile &Horizontally"));
163 m_windowMenu->Append(IDM_WINDOWTILEVERT, _("Tile &Vertically"));
df61c009 164 m_windowMenu->AppendSeparator();
b0a2157c
VZ
165 m_windowMenu->Append(IDM_WINDOWICONS, _("&Arrange Icons"));
166 m_windowMenu->Append(IDM_WINDOWNEXT, _("&Next"));
4f3b37fd 167 m_windowMenu->Append(IDM_WINDOWPREV, _("&Previous"));
df61c009
JS
168 }
169
4f8090e0 170 m_parentFrameActive = true;
2bda0e17
KB
171
172 if (!parent)
173 wxTopLevelWindows.Append(this);
174
175 SetName(name);
176 m_windowStyle = style;
177
b225f659
VZ
178 if ( parent )
179 parent->AddChild(this);
2bda0e17 180
598ddd96 181 if ( id != wxID_ANY )
2bda0e17
KB
182 m_windowId = id;
183 else
b225f659 184 m_windowId = NewControlId();
2bda0e17 185
912c192f
VZ
186 WXDWORD exflags;
187 WXDWORD msflags = MSWGetCreateWindowFlags(&exflags);
ea723360
JS
188 msflags &= ~WS_VSCROLL;
189 msflags &= ~WS_HSCROLL;
2bda0e17 190
b225f659 191 if ( !wxWindow::MSWCreate(wxMDIFrameClassName,
e0a050e3 192 title.wx_str(),
b225f659
VZ
193 pos, size,
194 msflags,
195 exflags) )
3ca6a5f0 196 {
4f8090e0 197 return false;
3ca6a5f0 198 }
2bda0e17 199
5bee6b2b
VZ
200 SetOwnBackgroundColour(wxSystemSettings::GetColour(wxSYS_COLOUR_APPWORKSPACE));
201
f6bcfd97 202 // unlike (almost?) all other windows, frames are created hidden
4f8090e0 203 m_isShown = false;
f6bcfd97 204
4f8090e0 205 return true;
2bda0e17
KB
206}
207
c2dcfdef 208wxMDIParentFrame::~wxMDIParentFrame()
2bda0e17 209{
d1e44484 210 // see comment in ~wxMDIChildFrame
1904aa72 211#if wxUSE_TOOLBAR
f048e32f 212 m_frameToolBar = NULL;
1904aa72 213#endif
67a99992 214#if wxUSE_STATUSBAR
c0bcc480 215 m_frameStatusBar = NULL;
67a99992 216#endif // wxUSE_STATUSBAR
f048e32f 217
d1e44484
VZ
218 DestroyChildren();
219
4e152a23
VZ
220 // the MDI frame menubar is not automatically deleted by Windows unlike for
221 // the normal frames
222 if ( m_hMenu )
4e152a23 223 ::DestroyMenu((HMENU)m_hMenu);
4e152a23 224
42e69d6b
VZ
225 if ( m_clientWindow )
226 {
227 if ( m_clientWindow->MSWGetOldWndProc() )
228 m_clientWindow->UnsubclassWin();
2bda0e17 229
42e69d6b
VZ
230 m_clientWindow->SetHWND(0);
231 delete m_clientWindow;
232 }
2bda0e17
KB
233}
234
ecc63060
VZ
235// ----------------------------------------------------------------------------
236// wxMDIParentFrame child management
237// ----------------------------------------------------------------------------
238
239int wxMDIParentFrame::GetChildFramesCount() const
240{
241 int count = 0;
242 for ( wxWindowList::const_iterator i = GetChildren().begin();
243 i != GetChildren().end();
244 ++i )
245 {
246 if ( wxDynamicCast(*i, wxMDIChildFrame) )
247 count++;
248 }
249
250 return count;
251}
252
253void wxMDIParentFrame::AddMDIChild(wxMDIChildFrame * WXUNUSED(child))
254{
255 if ( GetChildFramesCount() == 1 )
256 {
257 // first MDI child added, we need to insert the window menu now if we
258 // have it
259 AddWindowMenu();
260 }
261}
262
263void wxMDIParentFrame::RemoveMDIChild(wxMDIChildFrame * WXUNUSED(child))
264{
265 if ( GetChildFramesCount() == 1 )
266 {
267 // last MDI child is being removed, remove the now unnecessary window
268 // menu too
269 RemoveWindowMenu();
270 }
271}
272
273// ----------------------------------------------------------------------------
274// wxMDIParentFrame window menu handling
275// ----------------------------------------------------------------------------
276
277void wxMDIParentFrame::AddWindowMenu()
278{
279 if ( m_windowMenu )
280 MDIInsertWindowMenu(GetClientWindow(), m_hMenu, GetMDIWindowMenu(this));
281}
282
283void wxMDIParentFrame::RemoveWindowMenu()
284{
285 if ( m_windowMenu )
286 MDIRemoveWindowMenu(GetClientWindow(), m_hMenu);
287}
288
1e6feb95
VZ
289#if wxUSE_MENUS_NATIVE
290
42e69d6b 291void wxMDIParentFrame::InternalSetMenuBar()
2bda0e17 292{
4f8090e0 293 m_parentFrameActive = true;
2bda0e17 294
ecc63060
VZ
295 if ( GetActiveChild() )
296 {
297 AddWindowMenu();
298 }
299 else // we don't have any MDI children yet
300 {
301 // wait until we do to add the window menu but do set the main menu for
302 // now (this is done by AddWindowMenu() as a side effect)
303 MDISetMenu(GetClientWindow(), (HMENU)m_hMenu, NULL);
304 }
2bda0e17
KB
305}
306
1e6feb95
VZ
307#endif // wxUSE_MENUS_NATIVE
308
df61c009
JS
309void wxMDIParentFrame::SetWindowMenu(wxMenu* menu)
310{
d2824cdb
VZ
311 // notice that Remove/AddWindowMenu() are safe to call even when
312 // m_windowMenu is NULL
313 RemoveWindowMenu();
df61c009 314
d2824cdb 315 delete m_windowMenu;
4e152a23 316
d2824cdb 317 m_windowMenu = menu;
ecc63060 318
d2824cdb 319 AddWindowMenu();
df61c009
JS
320}
321
6aca4628
CE
322void wxMDIParentFrame::DoMenuUpdates(wxMenu* menu)
323{
324 wxMDIChildFrame *child = GetActiveChild();
325 if ( child )
326 {
327 wxEvtHandler* source = child->GetEventHandler();
328 wxMenuBar* bar = child->GetMenuBar();
329
330 if (menu)
331 {
332 menu->UpdateUI(source);
333 }
334 else
335 {
336 if ( bar != NULL )
337 {
338 int nCount = bar->GetMenuCount();
339 for (int n = 0; n < nCount; n++)
92218ce6 340 bar->GetMenu(n)->UpdateUI(source);
6aca4628
CE
341 }
342 }
343 }
344 else
345 {
346 wxFrameBase::DoMenuUpdates(menu);
347 }
348}
349
10816efb
VZ
350const wxMenuItem *wxMDIParentFrame::FindItemInMenuBar(int menuId) const
351{
352 const wxMenuItem *item = wxFrame::FindItemInMenuBar(menuId);
353 if ( !item && m_currentChild )
354 {
355 item = m_currentChild->FindItemInMenuBar(menuId);
356 }
357
358 return item;
359}
360
6bbe97b7 361void wxMDIParentFrame::UpdateClientSize()
2bda0e17 362{
2bda0e17 363 if ( GetClientWindow() )
42e69d6b
VZ
364 {
365 int width, height;
366 GetClientSize(&width, &height);
2bda0e17 367
42e69d6b
VZ
368 GetClientWindow()->SetSize(0, 0, width, height);
369 }
2bda0e17
KB
370}
371
6bbe97b7
VZ
372void wxMDIParentFrame::OnSize(wxSizeEvent& WXUNUSED(event))
373{
374 UpdateClientSize();
375
376 // do not call event.Skip() here, it somehow messes up MDI client window
377}
378
379void wxMDIParentFrame::OnIconized(wxIconizeEvent& event)
380{
381 event.Skip();
382
6ad7799c 383 if ( !event.IsIconized() )
6bbe97b7 384 UpdateClientSize();
6bbe97b7
VZ
385}
386
2bda0e17 387// Returns the active MDI child window
c2dcfdef 388wxMDIChildFrame *wxMDIParentFrame::GetActiveChild() const
2bda0e17 389{
a23fd0e1
VZ
390 HWND hWnd = (HWND)::SendMessage(GetWinHwnd(GetClientWindow()),
391 WM_MDIGETACTIVE, 0, 0L);
392 if ( hWnd == 0 )
393 return NULL;
ecc63060
VZ
394
395 return (wxMDIChildFrame *)wxFindWinFromHandle(hWnd);
2bda0e17
KB
396}
397
2bda0e17
KB
398// Responds to colour changes, and passes event on to children.
399void wxMDIParentFrame::OnSysColourChanged(wxSysColourChangedEvent& event)
400{
401 if ( m_clientWindow )
402 {
a756f210 403 m_clientWindow->SetBackgroundColour(wxSystemSettings::GetColour(wxSYS_COLOUR_APPWORKSPACE));
2bda0e17
KB
404 m_clientWindow->Refresh();
405 }
2bda0e17 406
42e69d6b 407 event.Skip();
2bda0e17
KB
408}
409
82c9f85c
VZ
410WXHICON wxMDIParentFrame::GetDefaultIcon() const
411{
94826170
VZ
412 // we don't have any standard icons (any more)
413 return (WXHICON)0;
82c9f85c
VZ
414}
415
42e69d6b 416// ---------------------------------------------------------------------------
2bda0e17 417// MDI operations
42e69d6b
VZ
418// ---------------------------------------------------------------------------
419
c2dcfdef 420void wxMDIParentFrame::Cascade()
2bda0e17 421{
a23fd0e1 422 ::SendMessage(GetWinHwnd(GetClientWindow()), WM_MDICASCADE, 0, 0);
2bda0e17
KB
423}
424
0d97c090 425void wxMDIParentFrame::Tile(wxOrientation orient)
2bda0e17 426{
0d97c090
VZ
427 wxASSERT_MSG( orient == wxHORIZONTAL || orient == wxVERTICAL,
428 _T("invalid orientation value") );
429
430 ::SendMessage(GetWinHwnd(GetClientWindow()), WM_MDITILE,
431 orient == wxHORIZONTAL ? MDITILE_HORIZONTAL
432 : MDITILE_VERTICAL, 0);
2bda0e17
KB
433}
434
c2dcfdef 435void wxMDIParentFrame::ArrangeIcons()
2bda0e17 436{
a23fd0e1 437 ::SendMessage(GetWinHwnd(GetClientWindow()), WM_MDIICONARRANGE, 0, 0);
2bda0e17
KB
438}
439
c2dcfdef 440void wxMDIParentFrame::ActivateNext()
2bda0e17 441{
a23fd0e1 442 ::SendMessage(GetWinHwnd(GetClientWindow()), WM_MDINEXT, 0, 0);
2bda0e17
KB
443}
444
c2dcfdef 445void wxMDIParentFrame::ActivatePrevious()
2bda0e17 446{
a23fd0e1 447 ::SendMessage(GetWinHwnd(GetClientWindow()), WM_MDINEXT, 0, 1);
2bda0e17
KB
448}
449
42e69d6b 450// ---------------------------------------------------------------------------
a23fd0e1 451// the MDI parent frame window proc
42e69d6b
VZ
452// ---------------------------------------------------------------------------
453
c140b7e7 454WXLRESULT wxMDIParentFrame::MSWWindowProc(WXUINT message,
a23fd0e1
VZ
455 WXWPARAM wParam,
456 WXLPARAM lParam)
2bda0e17 457{
c140b7e7 458 WXLRESULT rc = 0;
4f8090e0 459 bool processed = false;
2bda0e17 460
a23fd0e1
VZ
461 switch ( message )
462 {
42e69d6b
VZ
463 case WM_ACTIVATE:
464 {
465 WXWORD state, minimized;
466 WXHWND hwnd;
467 UnpackActivate(wParam, lParam, &state, &minimized, &hwnd);
468
469 processed = HandleActivate(state, minimized != 0, hwnd);
470 }
471 break;
472
473 case WM_COMMAND:
474 {
475 WXWORD id, cmd;
476 WXHWND hwnd;
477 UnpackCommand(wParam, lParam, &id, &hwnd, &cmd);
478
479 (void)HandleCommand(id, cmd, hwnd);
480
481 // even if the frame didn't process it, there is no need to try it
01ebf752 482 // once again (i.e. call wxFrame::HandleCommand()) - we just did it,
42e69d6b 483 // so pretend we processed the message anyhow
4f8090e0 484 processed = true;
42e69d6b 485 }
b3818fbe
VZ
486
487 // always pass this message DefFrameProc(), otherwise MDI menu
01ebf752 488 // commands (and sys commands - more surprisingly!) won't work
b3818fbe 489 MSWDefWindowProc(message, wParam, lParam);
42e69d6b
VZ
490 break;
491
a23fd0e1
VZ
492 case WM_CREATE:
493 m_clientWindow = OnCreateClient();
494 // Uses own style for client style
495 if ( !m_clientWindow->CreateClient(this, GetWindowStyleFlag()) )
496 {
497 wxLogMessage(_("Failed to create MDI parent frame."));
2bda0e17 498
a23fd0e1
VZ
499 rc = -1;
500 }
2bda0e17 501
4f8090e0 502 processed = true;
a23fd0e1 503 break;
2bda0e17 504
a23fd0e1 505 case WM_ERASEBKGND:
4f8090e0 506 processed = true;
2bda0e17 507
a23fd0e1 508 // we erase background ourselves
4f8090e0 509 rc = true;
a23fd0e1
VZ
510 break;
511
b3818fbe 512 case WM_SIZE:
31f658e4
CE
513 // though we don't (usually) resize the MDI client to exactly fit the
514 // client area we need to pass this one to DefFrameProc to allow the children to show
b3818fbe 515 break;
a23fd0e1 516 }
2bda0e17 517
a23fd0e1
VZ
518 if ( !processed )
519 rc = wxFrame::MSWWindowProc(message, wParam, lParam);
2bda0e17 520
a23fd0e1 521 return rc;
2bda0e17
KB
522}
523
42e69d6b 524bool wxMDIParentFrame::HandleActivate(int state, bool minimized, WXHWND activate)
2bda0e17 525{
4f8090e0 526 bool processed = false;
a23fd0e1 527
42e69d6b 528 if ( wxWindow::HandleActivate(state, minimized, activate) )
a23fd0e1
VZ
529 {
530 // already processed
4f8090e0 531 processed = true;
a23fd0e1 532 }
2bda0e17
KB
533
534 // If this window is an MDI parent, we must also send an OnActivate message
535 // to the current child.
42e69d6b 536 if ( (m_currentChild != NULL) &&
a23fd0e1 537 ((state == WA_ACTIVE) || (state == WA_CLICKACTIVE)) )
c2dcfdef 538 {
4f8090e0 539 wxActivateEvent event(wxEVT_ACTIVATE, true, m_currentChild->GetId());
debe6624 540 event.SetEventObject( m_currentChild );
937013e0 541 if ( m_currentChild->HandleWindowEvent(event) )
4f8090e0 542 processed = true;
2bda0e17 543 }
a23fd0e1
VZ
544
545 return processed;
2bda0e17
KB
546}
547
8a0dce9c 548bool wxMDIParentFrame::HandleCommand(WXWORD id_, WXWORD cmd, WXHWND hwnd)
2bda0e17 549{
8a0dce9c
VZ
550 // sign extend to int from short before comparing with the other int ids
551 int id = (signed short)id_;
552
2bda0e17 553 // In case it's e.g. a toolbar.
42e69d6b 554 if ( hwnd )
e1a6fc11 555 {
42e69d6b
VZ
556 wxWindow *win = wxFindWinFromHandle(hwnd);
557 if ( win )
558 return win->MSWCommand(cmd, id);
e1a6fc11
JS
559 }
560
7dbe942a
JS
561 if (wxCurrentPopupMenu)
562 {
563 wxMenu *popupMenu = wxCurrentPopupMenu;
564 wxCurrentPopupMenu = NULL;
565 if (popupMenu->MSWCommand(cmd, id))
566 return true;
567 }
568
42e69d6b
VZ
569 // is it one of standard MDI commands?
570 WXWPARAM wParam = 0;
4f3b37fd 571 WXLPARAM lParam = 0;
42e69d6b
VZ
572 int msg;
573 switch ( id )
2bda0e17 574 {
42e69d6b
VZ
575 case IDM_WINDOWCASCADE:
576 msg = WM_MDICASCADE;
577 wParam = MDITILE_SKIPDISABLED;
578 break;
579
580 case IDM_WINDOWTILEHOR:
581 wParam |= MDITILE_HORIZONTAL;
582 // fall through
583
584 case IDM_WINDOWTILEVERT:
585 if ( !wParam )
586 wParam = MDITILE_VERTICAL;
587 msg = WM_MDITILE;
588 wParam |= MDITILE_SKIPDISABLED;
589 break;
590
591 case IDM_WINDOWICONS:
592 msg = WM_MDIICONARRANGE;
593 break;
594
595 case IDM_WINDOWNEXT:
596 msg = WM_MDINEXT;
4f3b37fd
JS
597 lParam = 0; // next child
598 break;
599
600 case IDM_WINDOWPREV:
601 msg = WM_MDINEXT;
602 lParam = 1; // previous child
42e69d6b
VZ
603 break;
604
605 default:
606 msg = 0;
2bda0e17 607 }
c2dcfdef 608
42e69d6b 609 if ( msg )
2bda0e17 610 {
4f3b37fd 611 ::SendMessage(GetWinHwnd(GetClientWindow()), msg, wParam, lParam);
42e69d6b 612
4f8090e0 613 return true;
2bda0e17 614 }
42e69d6b
VZ
615
616 // FIXME VZ: what does this test do??
617 if (id >= 0xF000)
2bda0e17 618 {
4f8090e0 619 return false; // Get WndProc to call default proc
2bda0e17 620 }
42e69d6b
VZ
621
622 if ( IsMdiCommandId(id) )
2bda0e17 623 {
222ed1d6 624 wxWindowList::compatibility_iterator node = GetChildren().GetFirst();
42e69d6b 625 while ( node )
2bda0e17 626 {
d162a7ee 627 wxWindow *child = node->GetData();
42e69d6b 628 if ( child->GetHWND() )
2bda0e17 629 {
6756a5f8
VZ
630 int childId = wxGetWindowId(child->GetHWND());
631 if ( childId == (signed short)id )
42e69d6b
VZ
632 {
633 ::SendMessage( GetWinHwnd(GetClientWindow()),
634 WM_MDIACTIVATE,
635 (WPARAM)child->GetHWND(), 0);
4f8090e0 636 return true;
42e69d6b 637 }
2bda0e17 638 }
42e69d6b 639 node = node->GetNext();
2bda0e17 640 }
2bda0e17 641 }
42e69d6b 642 else if ( m_parentFrameActive )
2bda0e17 643 {
42e69d6b
VZ
644 return ProcessCommand(id);
645 }
646 else if ( m_currentChild )
647 {
648 return m_currentChild->HandleCommand(id, cmd, hwnd);
649 }
650 else
651 {
652 // this shouldn't happen because it means that our messages are being
653 // lost (they're not sent to the parent frame nor to the children)
f6bcfd97 654 wxFAIL_MSG(wxT("MDI parent frame is not active, yet there is no active MDI child?"));
2bda0e17 655 }
2bda0e17 656
4f8090e0 657 return false;
2bda0e17
KB
658}
659
c140b7e7 660WXLRESULT wxMDIParentFrame::MSWDefWindowProc(WXUINT message,
42e69d6b
VZ
661 WXWPARAM wParam,
662 WXLPARAM lParam)
2bda0e17 663{
c2dcfdef
VZ
664 WXHWND clientWnd;
665 if ( GetClientWindow() )
666 clientWnd = GetClientWindow()->GetHWND();
667 else
668 clientWnd = 0;
2bda0e17 669
a23fd0e1 670 return DefFrameProc(GetHwnd(), (HWND)clientWnd, message, wParam, lParam);
2bda0e17
KB
671}
672
57a7b7c1
JS
673bool wxMDIParentFrame::MSWTranslateMessage(WXMSG* msg)
674{
a23fd0e1 675 MSG *pMsg = (MSG *)msg;
2bda0e17 676
f6bcfd97 677 // first let the current child get it
a23fd0e1
VZ
678 if ( m_currentChild && m_currentChild->GetHWND() &&
679 m_currentChild->MSWTranslateMessage(msg) )
680 {
4f8090e0 681 return true;
a23fd0e1 682 }
2bda0e17 683
f6bcfd97
BP
684 // then try out accel table (will also check the menu accels)
685 if ( wxFrame::MSWTranslateMessage(msg) )
a23fd0e1 686 {
4f8090e0 687 return true;
a23fd0e1 688 }
2bda0e17 689
f6bcfd97 690 // finally, check for MDI specific built in accel keys
a23fd0e1
VZ
691 if ( pMsg->message == WM_KEYDOWN || pMsg->message == WM_SYSKEYDOWN )
692 {
693 if ( ::TranslateMDISysAccel(GetWinHwnd(GetClientWindow()), pMsg))
4f8090e0 694 return true;
a23fd0e1 695 }
57a7b7c1 696
4f8090e0 697 return false;
2bda0e17
KB
698}
699
42e69d6b 700// ===========================================================================
a23fd0e1 701// wxMDIChildFrame
42e69d6b 702// ===========================================================================
2bda0e17 703
f6bcfd97 704void wxMDIChildFrame::Init()
2bda0e17 705{
4f8090e0 706 m_needsResize = true;
2596e9fb 707 m_needsInitialShow = true;
2bda0e17
KB
708}
709
710bool wxMDIChildFrame::Create(wxMDIParentFrame *parent,
a23fd0e1
VZ
711 wxWindowID id,
712 const wxString& title,
713 const wxPoint& pos,
714 const wxSize& size,
715 long style,
716 const wxString& name)
2bda0e17 717{
d2824cdb
VZ
718 m_mdiParent = parent;
719
2bda0e17
KB
720 SetName(name);
721
598ddd96 722 if ( id != wxID_ANY )
2bda0e17
KB
723 m_windowId = id;
724 else
cf2810aa 725 m_windowId = NewControlId();
2bda0e17 726
42e69d6b
VZ
727 if ( parent )
728 {
729 parent->AddChild(this);
730 }
2bda0e17 731
2bda0e17
KB
732 int x = pos.x;
733 int y = pos.y;
734 int width = size.x;
735 int height = size.y;
736
737 MDICREATESTRUCT mcs;
c2dcfdef 738
e441e1f4
VZ
739 mcs.szClass = style & wxFULL_REPAINT_ON_RESIZE
740 ? wxMDIChildFrameClassName
741 : wxMDIChildFrameClassNameNoRedraw;
e0a050e3 742 mcs.szTitle = title.wx_str();
2bda0e17 743 mcs.hOwner = wxGetInstance();
598ddd96 744 if (x != wxDefaultCoord)
42e69d6b
VZ
745 mcs.x = x;
746 else
747 mcs.x = CW_USEDEFAULT;
2bda0e17 748
598ddd96 749 if (y != wxDefaultCoord)
42e69d6b
VZ
750 mcs.y = y;
751 else
752 mcs.y = CW_USEDEFAULT;
2bda0e17 753
598ddd96 754 if (width != wxDefaultCoord)
42e69d6b
VZ
755 mcs.cx = width;
756 else
757 mcs.cx = CW_USEDEFAULT;
2bda0e17 758
598ddd96 759 if (height != wxDefaultCoord)
42e69d6b
VZ
760 mcs.cy = height;
761 else
762 mcs.cy = CW_USEDEFAULT;
2bda0e17 763
2596e9fb 764 DWORD msflags = WS_OVERLAPPED | WS_CLIPCHILDREN;
2bda0e17
KB
765 if (style & wxMINIMIZE_BOX)
766 msflags |= WS_MINIMIZEBOX;
767 if (style & wxMAXIMIZE_BOX)
768 msflags |= WS_MAXIMIZEBOX;
1c067fe3 769 if (style & wxRESIZE_BORDER)
2bda0e17
KB
770 msflags |= WS_THICKFRAME;
771 if (style & wxSYSTEM_MENU)
772 msflags |= WS_SYSMENU;
773 if ((style & wxMINIMIZE) || (style & wxICONIZE))
774 msflags |= WS_MINIMIZE;
775 if (style & wxMAXIMIZE)
776 msflags |= WS_MAXIMIZE;
777 if (style & wxCAPTION)
778 msflags |= WS_CAPTION;
779
780 mcs.style = msflags;
781
782 mcs.lParam = 0;
783
b225f659
VZ
784 wxWindowCreationHook hook(this);
785
3ca6a5f0 786 m_hWnd = (WXHWND)::SendMessage(GetWinHwnd(parent->GetClientWindow()),
dca0f651 787 WM_MDICREATE, 0, (LPARAM)&mcs);
2bda0e17 788
05ae668c
VZ
789 if ( !m_hWnd )
790 {
791 wxLogLastError(_T("WM_MDICREATE"));
792 return false;
793 }
794
795 SubclassWin(m_hWnd);
2bda0e17 796
ecc63060
VZ
797 parent->AddMDIChild(this);
798
4f8090e0 799 return true;
2bda0e17
KB
800}
801
c2dcfdef 802wxMDIChildFrame::~wxMDIChildFrame()
2bda0e17 803{
b38e5da1
VZ
804 // if we hadn't been created, there is nothing to destroy
805 if ( !m_hWnd )
806 return;
807
ecc63060
VZ
808 GetMDIParent()->RemoveMDIChild(this);
809
d1e44484
VZ
810 // will be destroyed by DestroyChildren() but reset them before calling it
811 // to avoid using dangling pointers if a callback comes in the meanwhile
1904aa72 812#if wxUSE_TOOLBAR
627a3091 813 m_frameToolBar = NULL;
1904aa72 814#endif
67a99992 815#if wxUSE_STATUSBAR
627a3091 816 m_frameStatusBar = NULL;
67a99992 817#endif // wxUSE_STATUSBAR
627a3091 818
d1e44484
VZ
819 DestroyChildren();
820
ecc63060 821 MDIRemoveWindowMenu(NULL, m_hMenu);
4e152a23 822
c2dcfdef 823 MSWDestroyWindow();
2bda0e17
KB
824}
825
2596e9fb
VS
826bool wxMDIChildFrame::Show(bool show)
827{
828 m_needsInitialShow = false;
6fa30495
KH
829
830 if (!wxFrame::Show(show))
831 return false;
832
833 // KH: Without this call, new MDI children do not become active.
834 // This was added here after the same BringWindowToTop call was
835 // removed from wxTopLevelWindow::Show (November 2005)
836 if ( show )
837 ::BringWindowToTop(GetHwnd());
838
e45a6885
VZ
839 // we need to refresh the MDI frame window menu to include (or exclude if
840 // we've been hidden) this frame
d2824cdb 841 wxMDIParentFrame * const parent = GetMDIParent();
e45a6885
VZ
842 MDISetMenu(parent->GetClientWindow(), NULL, NULL);
843
6fa30495 844 return true;
2596e9fb
VS
845}
846
2bda0e17 847// Set the client size (i.e. leave the calculation of borders etc.
77ffb593 848// to wxWidgets)
cc2b7472 849void wxMDIChildFrame::DoSetClientSize(int width, int height)
2bda0e17 850{
b3818fbe 851 HWND hWnd = GetHwnd();
2bda0e17
KB
852
853 RECT rect;
2de8030d 854 ::GetClientRect(hWnd, &rect);
2bda0e17
KB
855
856 RECT rect2;
857 GetWindowRect(hWnd, &rect2);
858
859 // Find the difference between the entire window (title bar and all)
860 // and the client area; add this to the new client size to move the
861 // window
862 int actual_width = rect2.right - rect2.left - rect.right + width;
863 int actual_height = rect2.bottom - rect2.top - rect.bottom + height;
864
67a99992 865#if wxUSE_STATUSBAR
a2327a9f 866 if (GetStatusBar() && GetStatusBar()->IsShown())
2bda0e17 867 {
c2dcfdef
VZ
868 int sx, sy;
869 GetStatusBar()->GetSize(&sx, &sy);
2bda0e17
KB
870 actual_height += sy;
871 }
67a99992 872#endif // wxUSE_STATUSBAR
2bda0e17
KB
873
874 POINT point;
875 point.x = rect2.left;
876 point.y = rect2.top;
877
878 // If there's an MDI parent, must subtract the parent's top left corner
879 // since MoveWindow moves relative to the parent
d2824cdb
VZ
880 wxMDIParentFrame * const mdiParent = GetMDIParent();
881 ::ScreenToClient(GetHwndOf(mdiParent->GetClientWindow()), &point);
2bda0e17 882
4f8090e0 883 MoveWindow(hWnd, point.x, point.y, actual_width, actual_height, (BOOL)true);
debe6624 884
5c519b6c
WS
885 wxSize size(width, height);
886 wxSizeEvent event(size, m_windowId);
debe6624 887 event.SetEventObject( this );
937013e0 888 HandleWindowEvent(event);
2bda0e17
KB
889}
890
3e85709e
VZ
891// Unlike other wxTopLevelWindowBase, the mdi child's "GetPosition" is not the
892// same as its GetScreenPosition
893void wxMDIChildFrame::DoGetScreenPosition(int *x, int *y) const
894{
895 HWND hWnd = GetHwnd();
896
897 RECT rect;
898 ::GetWindowRect(hWnd, &rect);
899 if (x)
900 *x = rect.left;
901 if (y)
902 *y = rect.top;
903}
904
905
cc2b7472 906void wxMDIChildFrame::DoGetPosition(int *x, int *y) const
2bda0e17
KB
907{
908 RECT rect;
b3818fbe 909 GetWindowRect(GetHwnd(), &rect);
2bda0e17
KB
910 POINT point;
911 point.x = rect.left;
912 point.y = rect.top;
913
914 // Since we now have the absolute screen coords,
915 // if there's a parent we must subtract its top left corner
d2824cdb
VZ
916 wxMDIParentFrame * const mdiParent = GetMDIParent();
917 ::ScreenToClient(GetHwndOf(mdiParent->GetClientWindow()), &point);
2bda0e17 918
1696dde5
JS
919 if (x)
920 *x = point.x;
921 if (y)
922 *y = point.y;
2bda0e17
KB
923}
924
42e69d6b 925void wxMDIChildFrame::InternalSetMenuBar()
2bda0e17 926{
d2824cdb 927 wxMDIParentFrame * const parent = GetMDIParent();
2bda0e17 928
ecc63060 929 MDIInsertWindowMenu(parent->GetClientWindow(),
4e152a23 930 m_hMenu, GetMDIWindowMenu(parent));
2bda0e17 931
4f8090e0 932 parent->m_parentFrameActive = false;
2bda0e17
KB
933}
934
e3307ddd
CE
935void wxMDIChildFrame::DetachMenuBar()
936{
ecc63060 937 MDIRemoveWindowMenu(NULL, m_hMenu);
6bbe97b7 938 wxFrame::DetachMenuBar();
e3307ddd
CE
939}
940
82c9f85c
VZ
941WXHICON wxMDIChildFrame::GetDefaultIcon() const
942{
94826170
VZ
943 // we don't have any standard icons (any more)
944 return (WXHICON)0;
82c9f85c
VZ
945}
946
42e69d6b 947// ---------------------------------------------------------------------------
2bda0e17 948// MDI operations
42e69d6b
VZ
949// ---------------------------------------------------------------------------
950
9b73db3c 951void wxMDIChildFrame::Maximize(bool maximize)
2bda0e17 952{
d2824cdb 953 wxMDIParentFrame * const parent = GetMDIParent();
2bda0e17 954 if ( parent && parent->GetClientWindow() )
9b73db3c
VZ
955 {
956 ::SendMessage(GetWinHwnd(parent->GetClientWindow()),
957 maximize ? WM_MDIMAXIMIZE : WM_MDIRESTORE,
958 (WPARAM)GetHwnd(), 0);
959 }
2bda0e17
KB
960}
961
c2dcfdef 962void wxMDIChildFrame::Restore()
2bda0e17 963{
d2824cdb 964 wxMDIParentFrame * const parent = GetMDIParent();
2bda0e17 965 if ( parent && parent->GetClientWindow() )
9b73db3c
VZ
966 {
967 ::SendMessage(GetWinHwnd(parent->GetClientWindow()), WM_MDIRESTORE,
968 (WPARAM) GetHwnd(), 0);
969 }
2bda0e17
KB
970}
971
c2dcfdef 972void wxMDIChildFrame::Activate()
2bda0e17 973{
d2824cdb 974 wxMDIParentFrame * const parent = GetMDIParent();
2bda0e17 975 if ( parent && parent->GetClientWindow() )
9b73db3c
VZ
976 {
977 ::SendMessage(GetWinHwnd(parent->GetClientWindow()), WM_MDIACTIVATE,
978 (WPARAM) GetHwnd(), 0);
979 }
2bda0e17
KB
980}
981
42e69d6b
VZ
982// ---------------------------------------------------------------------------
983// MDI window proc and message handlers
984// ---------------------------------------------------------------------------
985
c140b7e7 986WXLRESULT wxMDIChildFrame::MSWWindowProc(WXUINT message,
42e69d6b
VZ
987 WXWPARAM wParam,
988 WXLPARAM lParam)
989{
c140b7e7 990 WXLRESULT rc = 0;
4f8090e0 991 bool processed = false;
42e69d6b
VZ
992
993 switch ( message )
994 {
995 case WM_COMMAND:
996 {
997 WORD id, cmd;
998 WXHWND hwnd;
999 UnpackCommand((WXWPARAM)wParam, (WXLPARAM)lParam,
1000 &id, &hwnd, &cmd);
1001
1002 processed = HandleCommand(id, cmd, (WXHWND)hwnd);
1003 }
1004 break;
1005
42e69d6b 1006 case WM_GETMINMAXINFO:
3ebcfb76
VZ
1007 processed = HandleGetMinMaxInfo((MINMAXINFO *)lParam);
1008 break;
42e69d6b
VZ
1009
1010 case WM_MDIACTIVATE:
1011 {
1012 WXWORD act;
1013 WXHWND hwndAct, hwndDeact;
1014 UnpackMDIActivate(wParam, lParam, &act, &hwndAct, &hwndDeact);
1015
1016 processed = HandleMDIActivate(act, hwndAct, hwndDeact);
1017 }
b3818fbe
VZ
1018 // fall through
1019
1020 case WM_MOVE:
1021 // must pass WM_MOVE to DefMDIChildProc() to recalculate MDI client
1022 // scrollbars if necessary
1023
1024 // fall through
1025
1026 case WM_SIZE:
1027 // must pass WM_SIZE to DefMDIChildProc(), otherwise many weird
1028 // things happen
1029 MSWDefWindowProc(message, wParam, lParam);
42e69d6b
VZ
1030 break;
1031
b3818fbe
VZ
1032 case WM_SYSCOMMAND:
1033 // DefMDIChildProc handles SC_{NEXT/PREV}WINDOW here, so pass it
1034 // the message (the base class version does not)
1035 return MSWDefWindowProc(message, wParam, lParam);
1036
42e69d6b
VZ
1037 case WM_WINDOWPOSCHANGING:
1038 processed = HandleWindowPosChanging((LPWINDOWPOS)lParam);
1039 break;
1040 }
1041
1042 if ( !processed )
1043 rc = wxFrame::MSWWindowProc(message, wParam, lParam);
1044
1045 return rc;
1046}
1047
8a0dce9c 1048bool wxMDIChildFrame::HandleCommand(WXWORD id_, WXWORD cmd, WXHWND hwnd)
2bda0e17 1049{
8a0dce9c
VZ
1050 // sign extend to int from short before comparing with the other int ids
1051 int id = (signed short)id_;
1052
2bda0e17 1053 // In case it's e.g. a toolbar.
42e69d6b
VZ
1054 if ( hwnd )
1055 {
1056 wxWindow *win = wxFindWinFromHandle(hwnd);
1057 if (win)
1058 return win->MSWCommand(cmd, id);
1059 }
2bda0e17 1060
e1a6fc11
JS
1061 if (wxCurrentPopupMenu)
1062 {
1063 wxMenu *popupMenu = wxCurrentPopupMenu;
1064 wxCurrentPopupMenu = NULL;
1065 if (popupMenu->MSWCommand(cmd, id))
4f8090e0 1066 return true;
e1a6fc11
JS
1067 }
1068
3ca6a5f0 1069 bool processed;
dd60b9ec 1070 if (GetMenuBar() && GetMenuBar()->FindItem(id))
2bda0e17 1071 {
3ca6a5f0 1072 processed = ProcessCommand(id);
2bda0e17
KB
1073 }
1074 else
3ca6a5f0 1075 {
4f8090e0 1076 processed = false;
3ca6a5f0 1077 }
42e69d6b 1078
3ca6a5f0 1079 return processed;
2bda0e17
KB
1080}
1081
42e69d6b
VZ
1082bool wxMDIChildFrame::HandleMDIActivate(long WXUNUSED(activate),
1083 WXHWND hwndAct,
1084 WXHWND hwndDeact)
2bda0e17 1085{
d2824cdb 1086 wxMDIParentFrame * const parent = GetMDIParent();
2bda0e17 1087
42e69d6b 1088 HMENU menuToSet = 0;
57a7b7c1 1089
42e69d6b 1090 bool activated;
57a7b7c1 1091
42e69d6b
VZ
1092 if ( m_hWnd == hwndAct )
1093 {
4f8090e0 1094 activated = true;
42e69d6b 1095 parent->m_currentChild = this;
2bda0e17 1096
42e69d6b
VZ
1097 HMENU child_menu = (HMENU)GetWinMenu();
1098 if ( child_menu )
1099 {
4f8090e0 1100 parent->m_parentFrameActive = false;
2bda0e17 1101
42e69d6b
VZ
1102 menuToSet = child_menu;
1103 }
1104 }
1105 else if ( m_hWnd == hwndDeact )
2bda0e17 1106 {
42e69d6b 1107 wxASSERT_MSG( parent->m_currentChild == this,
223d09f6 1108 wxT("can't deactivate MDI child which wasn't active!") );
42e69d6b 1109
4f8090e0 1110 activated = false;
42e69d6b 1111 parent->m_currentChild = NULL;
2bda0e17 1112
42e69d6b 1113 HMENU parent_menu = (HMENU)parent->GetWinMenu();
f4075804
VZ
1114
1115 // activate the the parent menu only when there is no other child
1116 // that has been activated
1117 if ( parent_menu && !hwndAct )
42e69d6b 1118 {
4f8090e0 1119 parent->m_parentFrameActive = true;
42e69d6b
VZ
1120
1121 menuToSet = parent_menu;
1122 }
1123 }
1124 else
1125 {
18d2e170 1126 // we have nothing to do with it
4f8090e0 1127 return false;
2bda0e17 1128 }
debe6624 1129
42e69d6b
VZ
1130 if ( menuToSet )
1131 {
4e152a23
VZ
1132 MDISetMenu(parent->GetClientWindow(),
1133 menuToSet, GetMDIWindowMenu(parent));
42e69d6b
VZ
1134 }
1135
1136 wxActivateEvent event(wxEVT_ACTIVATE, activated, m_windowId);
debe6624 1137 event.SetEventObject( this );
2bda0e17 1138
c03b48d7
GT
1139 ResetWindowStyle((void *)NULL);
1140
937013e0 1141 return HandleWindowEvent(event);
42e69d6b
VZ
1142}
1143
1144bool wxMDIChildFrame::HandleWindowPosChanging(void *pos)
1145{
1146 WINDOWPOS *lpPos = (WINDOWPOS *)pos;
a71d815b 1147
42e69d6b 1148 if (!(lpPos->flags & SWP_NOSIZE))
2bda0e17 1149 {
42e69d6b 1150 RECT rectClient;
b3818fbe
VZ
1151 DWORD dwExStyle = ::GetWindowLong(GetHwnd(), GWL_EXSTYLE);
1152 DWORD dwStyle = ::GetWindowLong(GetHwnd(), GWL_STYLE);
42e69d6b
VZ
1153 if (ResetWindowStyle((void *) & rectClient) && (dwStyle & WS_MAXIMIZE))
1154 {
4f8090e0 1155 ::AdjustWindowRectEx(&rectClient, dwStyle, false, dwExStyle);
42e69d6b
VZ
1156 lpPos->x = rectClient.left;
1157 lpPos->y = rectClient.top;
1158 lpPos->cx = rectClient.right - rectClient.left;
1159 lpPos->cy = rectClient.bottom - rectClient.top;
1160 }
42e69d6b 1161 }
42e69d6b 1162
4f8090e0 1163 return false;
42e69d6b
VZ
1164}
1165
3ebcfb76
VZ
1166bool wxMDIChildFrame::HandleGetMinMaxInfo(void *mmInfo)
1167{
1168 MINMAXINFO *info = (MINMAXINFO *)mmInfo;
1169
1170 // let the default window proc calculate the size of MDI children
1171 // frames because it is based on the size of the MDI client window,
1172 // not on the values specified in wxWindow m_max variables
d9f9aa2d 1173 bool processed = MSWDefWindowProc(WM_GETMINMAXINFO, 0, (LPARAM)mmInfo) != 0;
3ebcfb76 1174
e7dda1ff
VS
1175 int minWidth = GetMinWidth(),
1176 minHeight = GetMinHeight();
1177
3ebcfb76 1178 // but allow GetSizeHints() to set the min size
a71d815b 1179 if ( minWidth != wxDefaultCoord )
3ebcfb76 1180 {
e7dda1ff 1181 info->ptMinTrackSize.x = minWidth;
3ebcfb76 1182
4f8090e0 1183 processed = true;
3ebcfb76
VZ
1184 }
1185
a71d815b 1186 if ( minHeight != wxDefaultCoord )
3ebcfb76 1187 {
e7dda1ff 1188 info->ptMinTrackSize.y = minHeight;
3ebcfb76 1189
4f8090e0 1190 processed = true;
3ebcfb76
VZ
1191 }
1192
4c9d78a4 1193 return processed;
3ebcfb76
VZ
1194}
1195
42e69d6b
VZ
1196// ---------------------------------------------------------------------------
1197// MDI specific message translation/preprocessing
1198// ---------------------------------------------------------------------------
2bda0e17 1199
c140b7e7 1200WXLRESULT wxMDIChildFrame::MSWDefWindowProc(WXUINT message, WXWPARAM wParam, WXLPARAM lParam)
42e69d6b
VZ
1201{
1202 return DefMDIChildProc(GetHwnd(),
1203 (UINT)message, (WPARAM)wParam, (LPARAM)lParam);
1204}
1205
1206bool wxMDIChildFrame::MSWTranslateMessage(WXMSG* msg)
1207{
1ac76609
VZ
1208 // we must pass the parent frame to ::TranslateAccelerator(), otherwise it
1209 // doesn't do its job correctly for MDI child menus
55ae1551 1210 return MSWDoTranslateMessage(GetMDIParent(), msg);
2bda0e17
KB
1211}
1212
42e69d6b
VZ
1213// ---------------------------------------------------------------------------
1214// misc
1215// ---------------------------------------------------------------------------
1216
c2dcfdef 1217void wxMDIChildFrame::MSWDestroyWindow()
2bda0e17 1218{
d2824cdb 1219 wxMDIParentFrame * const parent = GetMDIParent();
2bda0e17 1220
42e69d6b
VZ
1221 // Must make sure this handle is invalidated (set to NULL) since all sorts
1222 // of things could happen after the child client is destroyed, but before
1223 // the wxFrame is destroyed.
2bda0e17 1224
42e69d6b 1225 HWND oldHandle = (HWND)GetHWND();
b3818fbe
VZ
1226 SendMessage(GetWinHwnd(parent->GetClientWindow()), WM_MDIDESTROY,
1227 (WPARAM)oldHandle, 0);
18d2e170 1228
ecc63060
VZ
1229 if (parent->GetActiveChild() == NULL)
1230 ResetWindowStyle(NULL);
18d2e170 1231
42e69d6b
VZ
1232 if (m_hMenu)
1233 {
1234 ::DestroyMenu((HMENU) m_hMenu);
1235 m_hMenu = 0;
1236 }
ac6482e0 1237 wxRemoveHandleAssociation(this);
42e69d6b 1238 m_hWnd = 0;
2bda0e17
KB
1239}
1240
42e69d6b
VZ
1241// Change the client window's extended style so we don't get a client edge
1242// style when a child is maximised (a double border looks silly.)
2bda0e17
KB
1243bool wxMDIChildFrame::ResetWindowStyle(void *vrect)
1244{
2bda0e17 1245 RECT *rect = (RECT *)vrect;
d2824cdb 1246 wxMDIParentFrame * const pFrameWnd = GetMDIParent();
c2dcfdef 1247 wxMDIChildFrame* pChild = pFrameWnd->GetActiveChild();
a71d815b 1248
c2dcfdef
VZ
1249 if (!pChild || (pChild == this))
1250 {
47ca6bfb 1251 HWND hwndClient = GetWinHwnd(pFrameWnd->GetClientWindow());
8082a771
VZ
1252 DWORD dwStyle = ::GetWindowLong(hwndClient, GWL_EXSTYLE);
1253
1254 // we want to test whether there is a maximized child, so just set
1255 // dwThisStyle to 0 if there is no child at all
1256 DWORD dwThisStyle = pChild
1f3943e0 1257 ? ::GetWindowLong(GetWinHwnd(pChild), GWL_STYLE) : 0;
c2dcfdef 1258 DWORD dwNewStyle = dwStyle;
8082a771 1259 if ( dwThisStyle & WS_MAXIMIZE )
c2dcfdef
VZ
1260 dwNewStyle &= ~(WS_EX_CLIENTEDGE);
1261 else
1262 dwNewStyle |= WS_EX_CLIENTEDGE;
1263
1264 if (dwStyle != dwNewStyle)
1265 {
47ca6bfb
VZ
1266 // force update of everything
1267 ::RedrawWindow(hwndClient, NULL, NULL,
1268 RDW_INVALIDATE | RDW_ALLCHILDREN);
1269 ::SetWindowLong(hwndClient, GWL_EXSTYLE, dwNewStyle);
1270 ::SetWindowPos(hwndClient, NULL, 0, 0, 0, 0,
42e69d6b
VZ
1271 SWP_FRAMECHANGED | SWP_NOACTIVATE |
1272 SWP_NOMOVE | SWP_NOSIZE | SWP_NOZORDER |
1273 SWP_NOCOPYBITS);
c2dcfdef 1274 if (rect)
47ca6bfb 1275 ::GetClientRect(hwndClient, rect);
2bda0e17 1276
4f8090e0 1277 return true;
2bda0e17 1278 }
c2dcfdef 1279 }
a23fd0e1 1280
4f8090e0 1281 return false;
2bda0e17
KB
1282}
1283
42e69d6b
VZ
1284// ===========================================================================
1285// wxMDIClientWindow: the window of predefined (by Windows) class which
1286// contains the child frames
1287// ===========================================================================
2bda0e17 1288
debe6624 1289bool wxMDIClientWindow::CreateClient(wxMDIParentFrame *parent, long style)
2bda0e17 1290{
a756f210 1291 m_backgroundColour = wxSystemSettings::GetColour(wxSYS_COLOUR_APPWORKSPACE);
2bda0e17 1292
42e69d6b
VZ
1293 CLIENTCREATESTRUCT ccs;
1294 m_windowStyle = style;
1295 m_parent = parent;
c2dcfdef 1296
4e152a23 1297 ccs.hWindowMenu = GetMDIWindowMenu(parent);
42e69d6b 1298 ccs.idFirstChild = wxFIRST_MDI_CHILD;
2bda0e17 1299
5c44cd05 1300 DWORD msStyle = MDIS_ALLCHILDSTYLES | WS_VISIBLE | WS_CHILD |
b0766406
JS
1301 WS_CLIPCHILDREN | WS_CLIPSIBLINGS;
1302
42e69d6b
VZ
1303 if ( style & wxHSCROLL )
1304 msStyle |= WS_HSCROLL;
1305 if ( style & wxVSCROLL )
1306 msStyle |= WS_VSCROLL;
2bda0e17 1307
42e69d6b 1308 DWORD exStyle = WS_EX_CLIENTEDGE;
2bda0e17 1309
b225f659 1310 wxWindowCreationHook hook(this);
42e69d6b
VZ
1311 m_hWnd = (WXHWND)::CreateWindowEx
1312 (
1313 exStyle,
223d09f6 1314 wxT("MDICLIENT"),
42e69d6b
VZ
1315 NULL,
1316 msStyle,
1317 0, 0, 0, 0,
1318 GetWinHwnd(parent),
1319 NULL,
1320 wxGetInstance(),
1321 (LPSTR)(LPCLIENTCREATESTRUCT)&ccs);
1322 if ( !m_hWnd )
1323 {
f6bcfd97 1324 wxLogLastError(wxT("CreateWindowEx(MDI client)"));
2bda0e17 1325
4f8090e0 1326 return false;
42e69d6b 1327 }
2bda0e17 1328
42e69d6b 1329 SubclassWin(m_hWnd);
2bda0e17 1330
4f8090e0 1331 return true;
2bda0e17
KB
1332}
1333
1334// Explicitly call default scroll behaviour
1335void wxMDIClientWindow::OnScroll(wxScrollEvent& event)
1336{
1337 // Note: for client windows, the scroll position is not set in
1338 // WM_HSCROLL, WM_VSCROLL, so we can't easily determine what
1339 // scroll position we're at.
1340 // This makes it hard to paint patterns or bitmaps in the background,
1341 // and have the client area scrollable as well.
1342
1343 if ( event.GetOrientation() == wxHORIZONTAL )
1344 m_scrollX = event.GetPosition(); // Always returns zero!
1345 else
1346 m_scrollY = event.GetPosition(); // Always returns zero!
1347
42e69d6b
VZ
1348 event.Skip();
1349}
1350
ec06b234
JS
1351void wxMDIClientWindow::DoSetSize(int x, int y, int width, int height, int sizeFlags)
1352{
1353 // Try to fix a problem whereby if you show an MDI child frame, then reposition the
1354 // client area, you can end up with a non-refreshed portion in the client window
1355 // (see OGL studio sample). So check if the position is changed and if so,
1356 // redraw the MDI child frames.
1357
6bbe97b7 1358 const wxPoint oldPos = GetPosition();
ec06b234 1359
6bbe97b7 1360 wxWindow::DoSetSize(x, y, width, height, sizeFlags | wxSIZE_FORCE);
ec06b234 1361
6bbe97b7 1362 const wxPoint newPos = GetPosition();
ec06b234
JS
1363
1364 if ((newPos.x != oldPos.x) || (newPos.y != oldPos.y))
1365 {
1366 if (GetParent())
1367 {
222ed1d6 1368 wxWindowList::compatibility_iterator node = GetParent()->GetChildren().GetFirst();
ec06b234
JS
1369 while (node)
1370 {
d162a7ee 1371 wxWindow *child = node->GetData();
ec06b234
JS
1372 if (child->IsKindOf(CLASSINFO(wxMDIChildFrame)))
1373 {
d162a7ee
VZ
1374 ::RedrawWindow(GetHwndOf(child),
1375 NULL,
1376 NULL,
1377 RDW_FRAME |
1378 RDW_ALLCHILDREN |
1379 RDW_INVALIDATE);
ec06b234 1380 }
4f8090e0 1381 node = node->GetNext();
ec06b234
JS
1382 }
1383 }
1384 }
1385}
1386
f6bcfd97
BP
1387void wxMDIChildFrame::OnIdle(wxIdleEvent& event)
1388{
2596e9fb
VS
1389 // wxMSW prior to 2.5.3 created MDI child frames as visible, which resulted
1390 // in flicker e.g. when the frame contained controls with non-trivial
1391 // layout. Since 2.5.3, the frame is created hidden as all other top level
1392 // windows. In order to maintain backward compatibility, the frame is shown
1393 // in OnIdle, unless Show(false) was called by the programmer before.
1394 if ( m_needsInitialShow )
1395 {
1396 Show(true);
1397 }
5c519b6c 1398
f6bcfd97
BP
1399 // MDI child frames get their WM_SIZE when they're constructed but at this
1400 // moment they don't have any children yet so all child windows will be
1401 // positioned incorrectly when they are added later - to fix this, we
1402 // generate an artificial size event here
1403 if ( m_needsResize )
1404 {
4f8090e0 1405 m_needsResize = false; // avoid any possibility of recursion
f6bcfd97
BP
1406
1407 SendSizeEvent();
1408 }
1409
1410 event.Skip();
1411}
1412
42e69d6b
VZ
1413// ---------------------------------------------------------------------------
1414// non member functions
1415// ---------------------------------------------------------------------------
1416
1417static void MDISetMenu(wxWindow *win, HMENU hmenuFrame, HMENU hmenuWindow)
1418{
e45a6885
VZ
1419 if ( hmenuFrame || hmenuWindow )
1420 {
1421 if ( !::SendMessage(GetWinHwnd(win),
1422 WM_MDISETMENU,
1423 (WPARAM)hmenuFrame,
1424 (LPARAM)hmenuWindow) )
1425 {
0d7c4404
VZ
1426#ifdef __WXDEBUG__
1427 DWORD err = ::GetLastError();
1428 if ( err )
1429 wxLogApiError(_T("SendMessage(WM_MDISETMENU)"), err);
1430#endif // __WXDEBUG__
e45a6885
VZ
1431 }
1432 }
42e69d6b
VZ
1433
1434 // update menu bar of the parent window
1435 wxWindow *parent = win->GetParent();
223d09f6 1436 wxCHECK_RET( parent, wxT("MDI client without parent frame? weird...") );
42e69d6b 1437
a967ef9d 1438 ::SendMessage(GetWinHwnd(win), WM_MDIREFRESHMENU, 0, 0L);
788722ac 1439
42e69d6b
VZ
1440 ::DrawMenuBar(GetWinHwnd(parent));
1441}
1442
ecc63060 1443static void MDIInsertWindowMenu(wxWindow *win, WXHMENU menu, HMENU subMenu)
42e69d6b
VZ
1444{
1445 // Try to insert Window menu in front of Help, otherwise append it.
1446 HMENU hmenu = (HMENU)menu;
df61c009
JS
1447
1448 if (subMenu)
1449 {
4e152a23 1450 int N = GetMenuItemCount(hmenu);
4f8090e0 1451 bool success = false;
4e152a23 1452 for ( int i = 0; i < N; i++ )
42e69d6b 1453 {
4e152a23
VZ
1454 wxChar buf[256];
1455 int chars = GetMenuString(hmenu, i, buf, WXSIZEOF(buf), MF_BYPOSITION);
1456 if ( chars == 0 )
1457 {
1458 wxLogLastError(wxT("GetMenuString"));
42e69d6b 1459
4e152a23
VZ
1460 continue;
1461 }
1462
4d931bcc 1463 wxString strBuf(buf);
e27d9a91 1464 if ( wxStripMenuCodes(strBuf) == wxGetStockLabel(wxID_HELP,false) )
4e152a23 1465 {
4f8090e0 1466 success = true;
4e152a23 1467 ::InsertMenu(hmenu, i, MF_BYPOSITION | MF_POPUP | MF_STRING,
dca0f651 1468 (UINT_PTR)subMenu, _("&Window").wx_str());
4e152a23
VZ
1469 break;
1470 }
42e69d6b
VZ
1471 }
1472
4e152a23 1473 if ( !success )
42e69d6b 1474 {
dca0f651
VZ
1475 ::AppendMenu(hmenu, MF_POPUP,
1476 (UINT_PTR)subMenu, _("&Window").wx_str());
42e69d6b
VZ
1477 }
1478 }
1479
42e69d6b
VZ
1480 MDISetMenu(win, hmenu, subMenu);
1481}
1482
ecc63060 1483static void MDIRemoveWindowMenu(wxWindow *win, WXHMENU menu)
df61c009 1484{
4e152a23
VZ
1485 HMENU hMenu = (HMENU)menu;
1486
1487 if ( hMenu )
df61c009 1488 {
4e152a23
VZ
1489 wxChar buf[1024];
1490
1491 int N = ::GetMenuItemCount(hMenu);
1492 for ( int i = 0; i < N; i++ )
df61c009 1493 {
4e152a23
VZ
1494 if ( !::GetMenuString(hMenu, i, buf, WXSIZEOF(buf), MF_BYPOSITION) )
1495 {
2c62b3c3
VZ
1496 // Ignore successful read of menu string with length 0 which
1497 // occurs, for example, for a maximized MDI childs system menu
1498 if ( ::GetLastError() != 0 )
1499 {
1500 wxLogLastError(wxT("GetMenuString"));
1501 }
df61c009 1502
4e152a23
VZ
1503 continue;
1504 }
df61c009 1505
4e152a23
VZ
1506 if ( wxStrcmp(buf, _("&Window")) == 0 )
1507 {
1508 if ( !::RemoveMenu(hMenu, i, MF_BYPOSITION) )
1509 {
1510 wxLogLastError(wxT("RemoveMenu"));
1511 }
1512
1513 break;
1514 }
df61c009
JS
1515 }
1516 }
1517
4e152a23
VZ
1518 if ( win )
1519 {
1520 // we don't change the windows menu, but we update the main one
1521 MDISetMenu(win, hMenu, NULL);
1522 }
df61c009
JS
1523}
1524
2917e920
BM
1525static void UnpackMDIActivate(WXWPARAM wParam, WXLPARAM lParam,
1526 WXWORD *activate, WXHWND *hwndAct, WXHWND *hwndDeact)
42e69d6b 1527{
4f8090e0 1528 *activate = true;
42e69d6b
VZ
1529 *hwndAct = (WXHWND)lParam;
1530 *hwndDeact = (WXHWND)wParam;
2bda0e17 1531}
b9f933ab 1532
efd17a1d 1533#endif // wxUSE_MDI && !defined(__WXUNIVERSAL__)