]> git.saurik.com Git - wxWidgets.git/blame - src/msw/mdi.cpp
Added Greg's wxBitmapButton patch, take 2.
[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$
8// Copyright: (c) Julian Smart and Markus Holzem
c2dcfdef 9// Licence: wxWindows license
2bda0e17
KB
10/////////////////////////////////////////////////////////////////////////////
11
a23fd0e1
VZ
12// ===========================================================================
13// declarations
14// ===========================================================================
15
16// ---------------------------------------------------------------------------
17// headers
18// ---------------------------------------------------------------------------
19
2bda0e17 20#ifdef __GNUG__
a23fd0e1 21 #pragma implementation "mdi.h"
2bda0e17
KB
22#endif
23
24// For compilers that support precompilation, includes "wx.h".
25#include "wx/wxprec.h"
26
27#ifdef __BORLANDC__
a23fd0e1 28 #pragma hdrstop
2bda0e17
KB
29#endif
30
31#ifndef WX_PRECOMP
a23fd0e1
VZ
32 #include "wx/setup.h"
33 #include "wx/frame.h"
34 #include "wx/menu.h"
35 #include "wx/app.h"
36 #include "wx/utils.h"
37 #include "wx/dialog.h"
7c0ea335
VZ
38 #if wxUSE_STATUSBAR
39 #include "wx/statusbr.h"
40 #endif
a23fd0e1 41 #include "wx/settings.h"
0c589ad0
BM
42 #include "wx/intl.h"
43 #include "wx/log.h"
2bda0e17
KB
44#endif
45
46#include "wx/mdi.h"
47#include "wx/msw/private.h"
48
7c0ea335 49#if wxUSE_STATUSBAR && wxUSE_NATIVE_STATUSBAR
3096bd2f 50 #include "wx/msw/statbr95.h"
2bda0e17
KB
51#endif
52
7c0ea335
VZ
53#if wxUSE_TOOLBAR
54 #include "wx/toolbar.h"
55#endif // wxUSE_TOOLBAR
56
2bda0e17
KB
57#include <string.h>
58
a23fd0e1
VZ
59// ---------------------------------------------------------------------------
60// global variables
61// ---------------------------------------------------------------------------
62
63extern wxWindowList wxModelessWindows; // from dialog.cpp
e1a6fc11 64extern wxMenu *wxCurrentPopupMenu;
2bda0e17 65
3ca6a5f0 66extern const wxChar *wxMDIFrameClassName; // from app.cpp
2ffa221c 67extern const wxChar *wxMDIChildFrameClassName;
3ca6a5f0
BP
68extern const wxChar *wxMDIChildFrameClassNameNoRedraw;
69
a23fd0e1
VZ
70extern wxWindow *wxWndHook; // from window.cpp
71
c7527e3f 72extern void wxAssociateWinWithHandle(HWND hWnd, wxWindow *win);
ac6482e0 73extern void wxRemoveHandleAssociation(wxWindow *win);
a23fd0e1 74
42e69d6b
VZ
75static HWND invalidHandle = 0;
76
a23fd0e1
VZ
77// ---------------------------------------------------------------------------
78// constants
79// ---------------------------------------------------------------------------
80
81static const int IDM_WINDOWTILE = 4001;
42e69d6b 82static const int IDM_WINDOWTILEHOR = 4001;
a23fd0e1
VZ
83static const int IDM_WINDOWCASCADE = 4002;
84static const int IDM_WINDOWICONS = 4003;
85static const int IDM_WINDOWNEXT = 4004;
42e69d6b 86static const int IDM_WINDOWTILEVERT = 4005;
a23fd0e1
VZ
87
88// This range gives a maximum of 500 MDI children. Should be enough :-)
89static const int wxFIRST_MDI_CHILD = 4100;
90static const int wxLAST_MDI_CHILD = 4600;
2bda0e17
KB
91
92// Status border dimensions
a23fd0e1
VZ
93static const int wxTHICK_LINE_BORDER = 3;
94static const int wxTHICK_LINE_WIDTH = 1;
2bda0e17 95
42e69d6b
VZ
96// ---------------------------------------------------------------------------
97// private functions
98// ---------------------------------------------------------------------------
99
100// set the MDI menus (by sending the WM_MDISETMENU message) and update the menu
101// of the parent of win (which is supposed to be the MDI client window)
102static void MDISetMenu(wxWindow *win, HMENU hmenuFrame, HMENU hmenuWindow);
103
104// insert the window menu (subMenu) into menu just before "Help" submenu or at
105// the very end if not found
106static void InsertWindowMenu(wxWindow *win, WXHMENU menu, HMENU subMenu);
107
df61c009
JS
108// Remove the window menu
109static void RemoveWindowMenu(wxWindow *win, WXHMENU menu);
110
42e69d6b
VZ
111// is this an id of an MDI child?
112inline bool IsMdiCommandId(int id)
113{
114 return (id >= wxFIRST_MDI_CHILD) && (id <= wxLAST_MDI_CHILD);
115}
116
2917e920
BM
117static void UnpackMDIActivate(WXWPARAM wParam, WXLPARAM lParam,
118 WXWORD *activate, WXHWND *hwndAct, WXHWND *hwndDeact);
42e69d6b 119
a23fd0e1
VZ
120// ===========================================================================
121// implementation
122// ===========================================================================
123
124// ---------------------------------------------------------------------------
125// wxWin macros
126// ---------------------------------------------------------------------------
2bda0e17 127
225fe9d6
VZ
128IMPLEMENT_DYNAMIC_CLASS(wxMDIParentFrame, wxFrame)
129IMPLEMENT_DYNAMIC_CLASS(wxMDIChildFrame, wxFrame)
130IMPLEMENT_DYNAMIC_CLASS(wxMDIClientWindow, wxWindow)
2bda0e17
KB
131
132BEGIN_EVENT_TABLE(wxMDIParentFrame, wxFrame)
a23fd0e1 133 EVT_SIZE(wxMDIParentFrame::OnSize)
a23fd0e1 134 EVT_SYS_COLOUR_CHANGED(wxMDIParentFrame::OnSysColourChanged)
2bda0e17
KB
135END_EVENT_TABLE()
136
f6bcfd97
BP
137BEGIN_EVENT_TABLE(wxMDIChildFrame, wxFrame)
138 EVT_IDLE(wxMDIChildFrame::OnIdle)
139END_EVENT_TABLE()
140
2bda0e17 141BEGIN_EVENT_TABLE(wxMDIClientWindow, wxWindow)
a23fd0e1 142 EVT_SCROLL(wxMDIClientWindow::OnScroll)
2bda0e17
KB
143END_EVENT_TABLE()
144
42e69d6b
VZ
145// ===========================================================================
146// wxMDIParentFrame: the frame which contains the client window which manages
147// the children
148// ===========================================================================
2bda0e17 149
c2dcfdef 150wxMDIParentFrame::wxMDIParentFrame()
2bda0e17
KB
151{
152 m_clientWindow = NULL;
153 m_currentChild = NULL;
df61c009 154 m_windowMenu = (wxMenu*) NULL;
2bda0e17 155 m_parentFrameActive = TRUE;
2bda0e17
KB
156}
157
158bool wxMDIParentFrame::Create(wxWindow *parent,
a23fd0e1
VZ
159 wxWindowID id,
160 const wxString& title,
161 const wxPoint& pos,
162 const wxSize& size,
163 long style,
164 const wxString& name)
2bda0e17 165{
3d8dea7e
VZ
166 m_defaultIcon = (WXHICON) (wxSTD_MDIPARENTFRAME_ICON
167 ? wxSTD_MDIPARENTFRAME_ICON
168 : wxDEFAULT_MDIPARENTFRAME_ICON);
2bda0e17 169
2bda0e17
KB
170 m_clientWindow = NULL;
171 m_currentChild = NULL;
df61c009 172
3d8dea7e
VZ
173 // this style can be used to prevent a window from having the standard MDI
174 // "Window" menu
175 if ( style & wxFRAME_NO_WINDOW_MENU )
176 {
177 m_windowMenu = (wxMenu *)NULL;
178 }
179 else // normal case: we have the window menu, so construct it
df61c009 180 {
df61c009
JS
181 m_windowMenu = new wxMenu;
182
3d8dea7e
VZ
183 m_windowMenu->Append(IDM_WINDOWCASCADE, wxT("&Cascade"));
184 m_windowMenu->Append(IDM_WINDOWTILEHOR, wxT("Tile &Horizontally"));
185 m_windowMenu->Append(IDM_WINDOWTILEVERT, wxT("Tile &Vertically"));
df61c009 186 m_windowMenu->AppendSeparator();
3d8dea7e
VZ
187 m_windowMenu->Append(IDM_WINDOWICONS, wxT("&Arrange Icons"));
188 m_windowMenu->Append(IDM_WINDOWNEXT, wxT("&Next"));
df61c009
JS
189 }
190
2bda0e17
KB
191 m_parentFrameActive = TRUE;
192
193 if (!parent)
194 wxTopLevelWindows.Append(this);
195
196 SetName(name);
197 m_windowStyle = style;
198
199 if (parent) parent->AddChild(this);
200
201 if ( id > -1 )
202 m_windowId = id;
203 else
204 m_windowId = (int)NewControlId();
205
206 int x = pos.x;
207 int y = pos.y;
208 int width = size.x;
209 int height = size.y;
210
42e69d6b 211 DWORD msflags = WS_OVERLAPPED;
2bda0e17
KB
212 if (style & wxMINIMIZE_BOX)
213 msflags |= WS_MINIMIZEBOX;
214 if (style & wxMAXIMIZE_BOX)
215 msflags |= WS_MAXIMIZEBOX;
216 if (style & wxTHICK_FRAME)
217 msflags |= WS_THICKFRAME;
218 if (style & wxSYSTEM_MENU)
219 msflags |= WS_SYSMENU;
220 if ((style & wxMINIMIZE) || (style & wxICONIZE))
221 msflags |= WS_MINIMIZE;
222 if (style & wxMAXIMIZE)
223 msflags |= WS_MAXIMIZE;
224 if (style & wxCAPTION)
225 msflags |= WS_CAPTION;
46851318 226
0655ad29
VZ
227 if (style & wxCLIP_CHILDREN)
228 msflags |= WS_CLIPCHILDREN;
2bda0e17 229
3ca6a5f0
BP
230 if ( !wxWindow::MSWCreate(m_windowId,
231 parent,
232 wxMDIFrameClassName,
233 this,
234 title,
235 x, y, width, height,
236 msflags) )
237 {
238 return FALSE;
239 }
2bda0e17
KB
240
241 wxModelessWindows.Append(this);
242
f6bcfd97
BP
243 // unlike (almost?) all other windows, frames are created hidden
244 m_isShown = FALSE;
245
2bda0e17
KB
246 return TRUE;
247}
248
c2dcfdef 249wxMDIParentFrame::~wxMDIParentFrame()
2bda0e17 250{
42e69d6b 251 DestroyChildren();
f048e32f
VZ
252 // already delete by DestroyChildren()
253 m_frameToolBar = NULL;
c0bcc480 254 m_frameStatusBar = NULL;
f048e32f 255
df61c009
JS
256 // ::DestroyMenu((HMENU)m_windowMenu);
257 if (m_windowMenu)
258 {
259 delete m_windowMenu;
260 m_windowMenu = (wxMenu*) NULL;
261 }
2bda0e17 262
42e69d6b
VZ
263 if ( m_clientWindow )
264 {
265 if ( m_clientWindow->MSWGetOldWndProc() )
266 m_clientWindow->UnsubclassWin();
2bda0e17 267
42e69d6b
VZ
268 m_clientWindow->SetHWND(0);
269 delete m_clientWindow;
270 }
2bda0e17
KB
271}
272
42e69d6b 273void wxMDIParentFrame::InternalSetMenuBar()
2bda0e17 274{
df61c009 275// HMENU subMenu = GetSubMenu((HMENU) m_windowMenu, 0);
2bda0e17 276
42e69d6b 277 m_parentFrameActive = TRUE;
2bda0e17 278
df61c009
JS
279 HMENU subMenu = (HMENU) 0;
280 if (GetWindowMenu())
281 subMenu = (HMENU) GetWindowMenu()->GetHMenu();
282
42e69d6b 283 InsertWindowMenu(GetClientWindow(), m_hMenu, subMenu);
2bda0e17
KB
284}
285
df61c009
JS
286void wxMDIParentFrame::SetWindowMenu(wxMenu* menu)
287{
288 if (m_windowMenu)
289 {
290 if (GetMenuBar())
291 {
292 // Remove old window menu
293 RemoveWindowMenu(GetClientWindow(), m_hMenu);
294 }
295
296 delete m_windowMenu;
297 m_windowMenu = (wxMenu*) NULL;
298 }
299 if (menu)
300 {
301 m_windowMenu = menu;
302 if (GetMenuBar())
303 InsertWindowMenu(GetClientWindow(), m_hMenu, (HMENU) m_windowMenu->GetHMenu());
304 }
305}
306
a967ef9d 307void wxMDIParentFrame::OnSize(wxSizeEvent&)
2bda0e17 308{
2bda0e17 309 if ( GetClientWindow() )
42e69d6b
VZ
310 {
311 int width, height;
312 GetClientSize(&width, &height);
2bda0e17 313
42e69d6b
VZ
314 GetClientWindow()->SetSize(0, 0, width, height);
315 }
2bda0e17
KB
316}
317
2bda0e17 318// Returns the active MDI child window
c2dcfdef 319wxMDIChildFrame *wxMDIParentFrame::GetActiveChild() const
2bda0e17 320{
a23fd0e1
VZ
321 HWND hWnd = (HWND)::SendMessage(GetWinHwnd(GetClientWindow()),
322 WM_MDIGETACTIVE, 0, 0L);
323 if ( hWnd == 0 )
324 return NULL;
325 else
326 return (wxMDIChildFrame *)wxFindWinFromHandle((WXHWND) hWnd);
2bda0e17
KB
327}
328
a23fd0e1
VZ
329// Create the client window class (don't Create the window, just return a new
330// class)
c2dcfdef 331wxMDIClientWindow *wxMDIParentFrame::OnCreateClient()
2bda0e17 332{
a23fd0e1 333 return new wxMDIClientWindow;
2bda0e17
KB
334}
335
336// Responds to colour changes, and passes event on to children.
337void wxMDIParentFrame::OnSysColourChanged(wxSysColourChangedEvent& event)
338{
339 if ( m_clientWindow )
340 {
341 m_clientWindow->SetBackgroundColour(wxSystemSettings::GetSystemColour(wxSYS_COLOUR_APPWORKSPACE));
342 m_clientWindow->Refresh();
343 }
2bda0e17 344
42e69d6b 345 event.Skip();
2bda0e17
KB
346}
347
42e69d6b 348// ---------------------------------------------------------------------------
2bda0e17 349// MDI operations
42e69d6b
VZ
350// ---------------------------------------------------------------------------
351
c2dcfdef 352void wxMDIParentFrame::Cascade()
2bda0e17 353{
a23fd0e1 354 ::SendMessage(GetWinHwnd(GetClientWindow()), WM_MDICASCADE, 0, 0);
2bda0e17
KB
355}
356
42e69d6b 357// TODO: add a direction argument (hor/vert)
c2dcfdef 358void wxMDIParentFrame::Tile()
2bda0e17 359{
a23fd0e1 360 ::SendMessage(GetWinHwnd(GetClientWindow()), WM_MDITILE, MDITILE_HORIZONTAL, 0);
2bda0e17
KB
361}
362
c2dcfdef 363void wxMDIParentFrame::ArrangeIcons()
2bda0e17 364{
a23fd0e1 365 ::SendMessage(GetWinHwnd(GetClientWindow()), WM_MDIICONARRANGE, 0, 0);
2bda0e17
KB
366}
367
c2dcfdef 368void wxMDIParentFrame::ActivateNext()
2bda0e17 369{
a23fd0e1 370 ::SendMessage(GetWinHwnd(GetClientWindow()), WM_MDINEXT, 0, 0);
2bda0e17
KB
371}
372
c2dcfdef 373void wxMDIParentFrame::ActivatePrevious()
2bda0e17 374{
a23fd0e1 375 ::SendMessage(GetWinHwnd(GetClientWindow()), WM_MDINEXT, 0, 1);
2bda0e17
KB
376}
377
42e69d6b 378// ---------------------------------------------------------------------------
a23fd0e1 379// the MDI parent frame window proc
42e69d6b
VZ
380// ---------------------------------------------------------------------------
381
a23fd0e1
VZ
382long wxMDIParentFrame::MSWWindowProc(WXUINT message,
383 WXWPARAM wParam,
384 WXLPARAM lParam)
2bda0e17 385{
a23fd0e1
VZ
386 long rc = 0;
387 bool processed = FALSE;
2bda0e17 388
a23fd0e1
VZ
389 switch ( message )
390 {
42e69d6b
VZ
391 case WM_ACTIVATE:
392 {
393 WXWORD state, minimized;
394 WXHWND hwnd;
395 UnpackActivate(wParam, lParam, &state, &minimized, &hwnd);
396
397 processed = HandleActivate(state, minimized != 0, hwnd);
398 }
399 break;
400
401 case WM_COMMAND:
402 {
403 WXWORD id, cmd;
404 WXHWND hwnd;
405 UnpackCommand(wParam, lParam, &id, &hwnd, &cmd);
406
407 (void)HandleCommand(id, cmd, hwnd);
408
409 // even if the frame didn't process it, there is no need to try it
410 // once again (i.e. call wxFrame::HandleCommand()) - we just dud it,
411 // so pretend we processed the message anyhow
412 processed = TRUE;
413 }
b3818fbe
VZ
414
415 // always pass this message DefFrameProc(), otherwise MDI menu
416 // commands (and sys commands - more surprizingly!) won't work
417 MSWDefWindowProc(message, wParam, lParam);
42e69d6b
VZ
418 break;
419
a23fd0e1
VZ
420 case WM_CREATE:
421 m_clientWindow = OnCreateClient();
422 // Uses own style for client style
423 if ( !m_clientWindow->CreateClient(this, GetWindowStyleFlag()) )
424 {
425 wxLogMessage(_("Failed to create MDI parent frame."));
2bda0e17 426
a23fd0e1
VZ
427 rc = -1;
428 }
2bda0e17 429
a23fd0e1
VZ
430 processed = TRUE;
431 break;
2bda0e17 432
a23fd0e1
VZ
433 case WM_ERASEBKGND:
434 processed = TRUE;
2bda0e17 435
a23fd0e1
VZ
436 // we erase background ourselves
437 rc = TRUE;
438 break;
439
440 case WM_MENUSELECT:
441 {
42e69d6b
VZ
442 WXWORD item, flags;
443 WXHMENU hmenu;
444 UnpackMenuSelect(wParam, lParam, &item, &flags, &hmenu);
445
a23fd0e1
VZ
446 if ( m_parentFrameActive )
447 {
42e69d6b 448 processed = HandleMenuSelect(item, flags, hmenu);
a23fd0e1
VZ
449 }
450 else if (m_currentChild)
451 {
452 processed = m_currentChild->
42e69d6b 453 HandleMenuSelect(item, flags, hmenu);
a23fd0e1
VZ
454 }
455 }
456 break;
b3818fbe
VZ
457
458 case WM_SIZE:
0655ad29
VZ
459 // as we don't (usually) resize the MDI client to exactly fit the
460 // client area (we put it below the toolbar, above statusbar &c),
461 // we should not pass this one to DefFrameProc
b3818fbe 462 break;
a23fd0e1 463 }
2bda0e17 464
a23fd0e1
VZ
465 if ( !processed )
466 rc = wxFrame::MSWWindowProc(message, wParam, lParam);
2bda0e17 467
a23fd0e1 468 return rc;
2bda0e17
KB
469}
470
42e69d6b 471bool wxMDIParentFrame::HandleActivate(int state, bool minimized, WXHWND activate)
2bda0e17 472{
a23fd0e1
VZ
473 bool processed = FALSE;
474
42e69d6b 475 if ( wxWindow::HandleActivate(state, minimized, activate) )
a23fd0e1
VZ
476 {
477 // already processed
478 processed = TRUE;
479 }
2bda0e17
KB
480
481 // If this window is an MDI parent, we must also send an OnActivate message
482 // to the current child.
42e69d6b 483 if ( (m_currentChild != NULL) &&
a23fd0e1 484 ((state == WA_ACTIVE) || (state == WA_CLICKACTIVE)) )
c2dcfdef 485 {
debe6624
JS
486 wxActivateEvent event(wxEVT_ACTIVATE, TRUE, m_currentChild->GetId());
487 event.SetEventObject( m_currentChild );
a23fd0e1
VZ
488 if ( m_currentChild->GetEventHandler()->ProcessEvent(event) )
489 processed = TRUE;
2bda0e17 490 }
a23fd0e1
VZ
491
492 return processed;
2bda0e17
KB
493}
494
42e69d6b 495bool wxMDIParentFrame::HandleCommand(WXWORD id, WXWORD cmd, WXHWND hwnd)
2bda0e17 496{
2bda0e17 497 // In case it's e.g. a toolbar.
42e69d6b 498 if ( hwnd )
e1a6fc11 499 {
42e69d6b
VZ
500 wxWindow *win = wxFindWinFromHandle(hwnd);
501 if ( win )
502 return win->MSWCommand(cmd, id);
e1a6fc11
JS
503 }
504
42e69d6b
VZ
505 // is it one of standard MDI commands?
506 WXWPARAM wParam = 0;
507 int msg;
508 switch ( id )
2bda0e17 509 {
42e69d6b
VZ
510 case IDM_WINDOWCASCADE:
511 msg = WM_MDICASCADE;
512 wParam = MDITILE_SKIPDISABLED;
513 break;
514
515 case IDM_WINDOWTILEHOR:
516 wParam |= MDITILE_HORIZONTAL;
517 // fall through
518
519 case IDM_WINDOWTILEVERT:
520 if ( !wParam )
521 wParam = MDITILE_VERTICAL;
522 msg = WM_MDITILE;
523 wParam |= MDITILE_SKIPDISABLED;
524 break;
525
526 case IDM_WINDOWICONS:
527 msg = WM_MDIICONARRANGE;
528 break;
529
530 case IDM_WINDOWNEXT:
531 msg = WM_MDINEXT;
532 break;
533
534 default:
535 msg = 0;
2bda0e17 536 }
c2dcfdef 537
42e69d6b 538 if ( msg )
2bda0e17 539 {
42e69d6b
VZ
540 ::SendMessage(GetWinHwnd(GetClientWindow()), msg, wParam, 0);
541
542 return TRUE;
2bda0e17 543 }
42e69d6b
VZ
544
545 // FIXME VZ: what does this test do??
546 if (id >= 0xF000)
2bda0e17 547 {
42e69d6b 548 return FALSE; // Get WndProc to call default proc
2bda0e17 549 }
42e69d6b
VZ
550
551 if ( IsMdiCommandId(id) )
2bda0e17 552 {
42e69d6b
VZ
553 wxWindowList::Node* node = GetChildren().GetFirst();
554 while ( node )
2bda0e17 555 {
42e69d6b
VZ
556 wxWindow* child = node->GetData();
557 if ( child->GetHWND() )
2bda0e17 558 {
42e69d6b 559 long childId = wxGetWindowId(child->GetHWND());
48c12cb1 560 if (childId == (long)id)
42e69d6b
VZ
561 {
562 ::SendMessage( GetWinHwnd(GetClientWindow()),
563 WM_MDIACTIVATE,
564 (WPARAM)child->GetHWND(), 0);
565 return TRUE;
566 }
2bda0e17 567 }
42e69d6b 568 node = node->GetNext();
2bda0e17 569 }
2bda0e17 570 }
42e69d6b 571 else if ( m_parentFrameActive )
2bda0e17 572 {
42e69d6b
VZ
573 return ProcessCommand(id);
574 }
575 else if ( m_currentChild )
576 {
577 return m_currentChild->HandleCommand(id, cmd, hwnd);
578 }
579 else
580 {
581 // this shouldn't happen because it means that our messages are being
582 // lost (they're not sent to the parent frame nor to the children)
f6bcfd97 583 wxFAIL_MSG(wxT("MDI parent frame is not active, yet there is no active MDI child?"));
2bda0e17 584 }
2bda0e17 585
42e69d6b 586 return FALSE;
2bda0e17
KB
587}
588
42e69d6b
VZ
589long wxMDIParentFrame::MSWDefWindowProc(WXUINT message,
590 WXWPARAM wParam,
591 WXLPARAM lParam)
2bda0e17 592{
c2dcfdef
VZ
593 WXHWND clientWnd;
594 if ( GetClientWindow() )
595 clientWnd = GetClientWindow()->GetHWND();
596 else
597 clientWnd = 0;
2bda0e17 598
a23fd0e1 599 return DefFrameProc(GetHwnd(), (HWND)clientWnd, message, wParam, lParam);
2bda0e17
KB
600}
601
57a7b7c1
JS
602bool wxMDIParentFrame::MSWTranslateMessage(WXMSG* msg)
603{
a23fd0e1 604 MSG *pMsg = (MSG *)msg;
2bda0e17 605
f6bcfd97 606 // first let the current child get it
a23fd0e1
VZ
607 if ( m_currentChild && m_currentChild->GetHWND() &&
608 m_currentChild->MSWTranslateMessage(msg) )
609 {
610 return TRUE;
611 }
2bda0e17 612
f6bcfd97
BP
613 // then try out accel table (will also check the menu accels)
614 if ( wxFrame::MSWTranslateMessage(msg) )
a23fd0e1
VZ
615 {
616 return TRUE;
617 }
2bda0e17 618
f6bcfd97 619 // finally, check for MDI specific built in accel keys
a23fd0e1
VZ
620 if ( pMsg->message == WM_KEYDOWN || pMsg->message == WM_SYSKEYDOWN )
621 {
622 if ( ::TranslateMDISysAccel(GetWinHwnd(GetClientWindow()), pMsg))
623 return TRUE;
624 }
57a7b7c1 625
a23fd0e1 626 return FALSE;
2bda0e17
KB
627}
628
42e69d6b 629// ===========================================================================
a23fd0e1 630// wxMDIChildFrame
42e69d6b 631// ===========================================================================
2bda0e17 632
f6bcfd97 633void wxMDIChildFrame::Init()
2bda0e17 634{
f6bcfd97 635 m_needsResize = TRUE;
2bda0e17
KB
636}
637
638bool wxMDIChildFrame::Create(wxMDIParentFrame *parent,
a23fd0e1
VZ
639 wxWindowID id,
640 const wxString& title,
641 const wxPoint& pos,
642 const wxSize& size,
643 long style,
644 const wxString& name)
2bda0e17 645{
42e69d6b
VZ
646 m_defaultIcon = (WXHICON)(wxSTD_MDICHILDFRAME_ICON ? wxSTD_MDICHILDFRAME_ICON
647 : wxDEFAULT_MDICHILDFRAME_ICON);
2bda0e17
KB
648
649 SetName(name);
650
651 if ( id > -1 )
652 m_windowId = id;
653 else
654 m_windowId = (int)NewControlId();
655
42e69d6b
VZ
656 if ( parent )
657 {
658 parent->AddChild(this);
659 }
2bda0e17
KB
660
661 wxWndHook = this;
662
663 int x = pos.x;
664 int y = pos.y;
665 int width = size.x;
666 int height = size.y;
667
668 MDICREATESTRUCT mcs;
c2dcfdef 669
3ca6a5f0
BP
670 mcs.szClass = style & wxNO_FULL_REPAINT_ON_RESIZE
671 ? wxMDIChildFrameClassNameNoRedraw
672 : wxMDIChildFrameClassName;
2bda0e17
KB
673 mcs.szTitle = title;
674 mcs.hOwner = wxGetInstance();
42e69d6b
VZ
675 if (x > -1)
676 mcs.x = x;
677 else
678 mcs.x = CW_USEDEFAULT;
2bda0e17 679
42e69d6b
VZ
680 if (y > -1)
681 mcs.y = y;
682 else
683 mcs.y = CW_USEDEFAULT;
2bda0e17 684
42e69d6b
VZ
685 if (width > -1)
686 mcs.cx = width;
687 else
688 mcs.cx = CW_USEDEFAULT;
2bda0e17 689
42e69d6b
VZ
690 if (height > -1)
691 mcs.cy = height;
692 else
693 mcs.cy = CW_USEDEFAULT;
2bda0e17 694
42e69d6b 695 DWORD msflags = WS_OVERLAPPED | WS_CLIPCHILDREN;
2bda0e17
KB
696 if (style & wxMINIMIZE_BOX)
697 msflags |= WS_MINIMIZEBOX;
698 if (style & wxMAXIMIZE_BOX)
699 msflags |= WS_MAXIMIZEBOX;
700 if (style & wxTHICK_FRAME)
701 msflags |= WS_THICKFRAME;
702 if (style & wxSYSTEM_MENU)
703 msflags |= WS_SYSMENU;
704 if ((style & wxMINIMIZE) || (style & wxICONIZE))
705 msflags |= WS_MINIMIZE;
706 if (style & wxMAXIMIZE)
707 msflags |= WS_MAXIMIZE;
708 if (style & wxCAPTION)
709 msflags |= WS_CAPTION;
710
711 mcs.style = msflags;
712
713 mcs.lParam = 0;
714
3ca6a5f0
BP
715 m_hWnd = (WXHWND)::SendMessage(GetWinHwnd(parent->GetClientWindow()),
716 WM_MDICREATE, 0, (LONG)(LPSTR)&mcs);
2bda0e17 717
2bda0e17 718 wxWndHook = NULL;
c7527e3f 719 wxAssociateWinWithHandle((HWND) GetHWND(), this);
2bda0e17 720
b3818fbe
VZ
721 // VZ: what's this? an act of piracy?
722 //SetWindowLong(GetHwnd(), 0, (long)this);
2bda0e17
KB
723
724 wxModelessWindows.Append(this);
921a43c1
GT
725
726 // Necessary to make ResetWindowStyle() work
727 // and will be called eventually anyway
728 Activate();
729
730 // Without this, a maximized child will still
731 // a double border around the child
732 ResetWindowStyle((void *)NULL); // Set the Client ExStyle right
733
2bda0e17
KB
734 return TRUE;
735}
736
c2dcfdef 737wxMDIChildFrame::~wxMDIChildFrame()
2bda0e17 738{
627a3091
JS
739 DestroyChildren();
740
741 // already delete by DestroyChildren()
742 m_frameToolBar = NULL;
743 m_frameStatusBar = NULL;
744
c2dcfdef 745 MSWDestroyWindow();
2bda0e17
KB
746}
747
748// Set the client size (i.e. leave the calculation of borders etc.
749// to wxWindows)
cc2b7472 750void wxMDIChildFrame::DoSetClientSize(int width, int height)
2bda0e17 751{
b3818fbe 752 HWND hWnd = GetHwnd();
2bda0e17
KB
753
754 RECT rect;
2de8030d 755 ::GetClientRect(hWnd, &rect);
2bda0e17
KB
756
757 RECT rect2;
758 GetWindowRect(hWnd, &rect2);
759
760 // Find the difference between the entire window (title bar and all)
761 // and the client area; add this to the new client size to move the
762 // window
763 int actual_width = rect2.right - rect2.left - rect.right + width;
764 int actual_height = rect2.bottom - rect2.top - rect.bottom + height;
765
a2327a9f 766 if (GetStatusBar() && GetStatusBar()->IsShown())
2bda0e17 767 {
c2dcfdef
VZ
768 int sx, sy;
769 GetStatusBar()->GetSize(&sx, &sy);
2bda0e17
KB
770 actual_height += sy;
771 }
772
773 POINT point;
774 point.x = rect2.left;
775 point.y = rect2.top;
776
777 // If there's an MDI parent, must subtract the parent's top left corner
778 // since MoveWindow moves relative to the parent
779 wxMDIParentFrame *mdiParent = (wxMDIParentFrame *)GetParent();
780 ::ScreenToClient((HWND) mdiParent->GetClientWindow()->GetHWND(), &point);
781
782 MoveWindow(hWnd, point.x, point.y, actual_width, actual_height, (BOOL)TRUE);
debe6624 783
2bda0e17 784 wxSizeEvent event(wxSize(width, height), m_windowId);
debe6624 785 event.SetEventObject( this );
2bda0e17 786 GetEventHandler()->ProcessEvent(event);
2bda0e17
KB
787}
788
cc2b7472 789void wxMDIChildFrame::DoGetPosition(int *x, int *y) const
2bda0e17
KB
790{
791 RECT rect;
b3818fbe 792 GetWindowRect(GetHwnd(), &rect);
2bda0e17
KB
793 POINT point;
794 point.x = rect.left;
795 point.y = rect.top;
796
797 // Since we now have the absolute screen coords,
798 // if there's a parent we must subtract its top left corner
799 wxMDIParentFrame *mdiParent = (wxMDIParentFrame *)GetParent();
800 ::ScreenToClient((HWND) mdiParent->GetClientWindow()->GetHWND(), &point);
801
802 *x = point.x;
803 *y = point.y;
804}
805
42e69d6b 806void wxMDIChildFrame::InternalSetMenuBar()
2bda0e17 807{
42e69d6b 808 wxMDIParentFrame *parent = (wxMDIParentFrame *)GetParent();
2bda0e17 809
df61c009
JS
810 // HMENU subMenu = GetSubMenu((HMENU)parent->GetWindowMenu(), 0);
811 HMENU subMenu = (HMENU) 0;
812 if (parent->GetWindowMenu())
813 subMenu = (HMENU) parent->GetWindowMenu()->GetHMenu();
2bda0e17 814
42e69d6b 815 InsertWindowMenu(parent->GetClientWindow(), m_hMenu, subMenu);
2bda0e17 816
42e69d6b 817 parent->m_parentFrameActive = FALSE;
2bda0e17
KB
818}
819
42e69d6b 820// ---------------------------------------------------------------------------
2bda0e17 821// MDI operations
42e69d6b
VZ
822// ---------------------------------------------------------------------------
823
9b73db3c 824void wxMDIChildFrame::Maximize(bool maximize)
2bda0e17
KB
825{
826 wxMDIParentFrame *parent = (wxMDIParentFrame *)GetParent();
827 if ( parent && parent->GetClientWindow() )
9b73db3c
VZ
828 {
829 ::SendMessage(GetWinHwnd(parent->GetClientWindow()),
830 maximize ? WM_MDIMAXIMIZE : WM_MDIRESTORE,
831 (WPARAM)GetHwnd(), 0);
832 }
2bda0e17
KB
833}
834
c2dcfdef 835void wxMDIChildFrame::Restore()
2bda0e17
KB
836{
837 wxMDIParentFrame *parent = (wxMDIParentFrame *)GetParent();
838 if ( parent && parent->GetClientWindow() )
9b73db3c
VZ
839 {
840 ::SendMessage(GetWinHwnd(parent->GetClientWindow()), WM_MDIRESTORE,
841 (WPARAM) GetHwnd(), 0);
842 }
2bda0e17
KB
843}
844
c2dcfdef 845void wxMDIChildFrame::Activate()
2bda0e17
KB
846{
847 wxMDIParentFrame *parent = (wxMDIParentFrame *)GetParent();
848 if ( parent && parent->GetClientWindow() )
9b73db3c
VZ
849 {
850 ::SendMessage(GetWinHwnd(parent->GetClientWindow()), WM_MDIACTIVATE,
851 (WPARAM) GetHwnd(), 0);
852 }
2bda0e17
KB
853}
854
42e69d6b
VZ
855// ---------------------------------------------------------------------------
856// MDI window proc and message handlers
857// ---------------------------------------------------------------------------
858
859long wxMDIChildFrame::MSWWindowProc(WXUINT message,
860 WXWPARAM wParam,
861 WXLPARAM lParam)
862{
863 long rc = 0;
864 bool processed = FALSE;
865
866 switch ( message )
867 {
868 case WM_COMMAND:
869 {
870 WORD id, cmd;
871 WXHWND hwnd;
872 UnpackCommand((WXWPARAM)wParam, (WXLPARAM)lParam,
873 &id, &hwnd, &cmd);
874
875 processed = HandleCommand(id, cmd, (WXHWND)hwnd);
876 }
877 break;
878
42e69d6b
VZ
879 case WM_GETMINMAXINFO:
880 // let the default window proc calculate the size of MDI children
881 // frames because it is based on the size of the MDI client window,
882 // not on the values specified in wxWindow m_min/max variables
883 return MSWDefWindowProc(message, wParam, lParam);
884
885 case WM_MDIACTIVATE:
886 {
887 WXWORD act;
888 WXHWND hwndAct, hwndDeact;
889 UnpackMDIActivate(wParam, lParam, &act, &hwndAct, &hwndDeact);
890
891 processed = HandleMDIActivate(act, hwndAct, hwndDeact);
892 }
b3818fbe
VZ
893 // fall through
894
895 case WM_MOVE:
896 // must pass WM_MOVE to DefMDIChildProc() to recalculate MDI client
897 // scrollbars if necessary
898
899 // fall through
900
901 case WM_SIZE:
902 // must pass WM_SIZE to DefMDIChildProc(), otherwise many weird
903 // things happen
904 MSWDefWindowProc(message, wParam, lParam);
42e69d6b
VZ
905 break;
906
b3818fbe
VZ
907 case WM_SYSCOMMAND:
908 // DefMDIChildProc handles SC_{NEXT/PREV}WINDOW here, so pass it
909 // the message (the base class version does not)
910 return MSWDefWindowProc(message, wParam, lParam);
911
42e69d6b
VZ
912 case WM_WINDOWPOSCHANGING:
913 processed = HandleWindowPosChanging((LPWINDOWPOS)lParam);
914 break;
915 }
916
917 if ( !processed )
918 rc = wxFrame::MSWWindowProc(message, wParam, lParam);
919
920 return rc;
921}
922
42e69d6b 923bool wxMDIChildFrame::HandleCommand(WXWORD id, WXWORD cmd, WXHWND hwnd)
2bda0e17 924{
2bda0e17 925 // In case it's e.g. a toolbar.
42e69d6b
VZ
926 if ( hwnd )
927 {
928 wxWindow *win = wxFindWinFromHandle(hwnd);
929 if (win)
930 return win->MSWCommand(cmd, id);
931 }
2bda0e17 932
e1a6fc11
JS
933 if (wxCurrentPopupMenu)
934 {
935 wxMenu *popupMenu = wxCurrentPopupMenu;
936 wxCurrentPopupMenu = NULL;
937 if (popupMenu->MSWCommand(cmd, id))
938 return TRUE;
939 }
940
3ca6a5f0 941 bool processed;
dd60b9ec 942 if (GetMenuBar() && GetMenuBar()->FindItem(id))
2bda0e17 943 {
3ca6a5f0 944 processed = ProcessCommand(id);
2bda0e17
KB
945 }
946 else
3ca6a5f0
BP
947 {
948 processed = FALSE;
949 }
42e69d6b 950
3ca6a5f0 951 return processed;
2bda0e17
KB
952}
953
42e69d6b
VZ
954bool wxMDIChildFrame::HandleMDIActivate(long WXUNUSED(activate),
955 WXHWND hwndAct,
956 WXHWND hwndDeact)
2bda0e17 957{
42e69d6b 958 wxMDIParentFrame *parent = (wxMDIParentFrame *)GetParent();
2bda0e17 959
42e69d6b 960 HMENU menuToSet = 0;
57a7b7c1 961
42e69d6b 962 bool activated;
57a7b7c1 963
42e69d6b
VZ
964 if ( m_hWnd == hwndAct )
965 {
966 activated = TRUE;
967 parent->m_currentChild = this;
2bda0e17 968
42e69d6b
VZ
969 HMENU child_menu = (HMENU)GetWinMenu();
970 if ( child_menu )
971 {
972 parent->m_parentFrameActive = FALSE;
2bda0e17 973
42e69d6b
VZ
974 menuToSet = child_menu;
975 }
976 }
977 else if ( m_hWnd == hwndDeact )
2bda0e17 978 {
42e69d6b 979 wxASSERT_MSG( parent->m_currentChild == this,
223d09f6 980 wxT("can't deactivate MDI child which wasn't active!") );
42e69d6b
VZ
981
982 activated = FALSE;
983 parent->m_currentChild = NULL;
2bda0e17 984
42e69d6b
VZ
985 HMENU parent_menu = (HMENU)parent->GetWinMenu();
986 if ( parent_menu )
987 {
988 parent->m_parentFrameActive = TRUE;
989
990 menuToSet = parent_menu;
991 }
992 }
993 else
994 {
18d2e170 995 // we have nothing to do with it
42e69d6b 996 return FALSE;
2bda0e17 997 }
debe6624 998
42e69d6b
VZ
999 if ( menuToSet )
1000 {
df61c009
JS
1001 HMENU subMenu = (HMENU) 0;
1002 if (parent->GetWindowMenu())
1003 subMenu = (HMENU) parent->GetWindowMenu()->GetHMenu();
42e69d6b
VZ
1004
1005 MDISetMenu(parent->GetClientWindow(), menuToSet, subMenu);
1006 }
1007
1008 wxActivateEvent event(wxEVT_ACTIVATE, activated, m_windowId);
debe6624 1009 event.SetEventObject( this );
2bda0e17 1010
42e69d6b
VZ
1011 return GetEventHandler()->ProcessEvent(event);
1012}
1013
1014bool wxMDIChildFrame::HandleWindowPosChanging(void *pos)
1015{
1016 WINDOWPOS *lpPos = (WINDOWPOS *)pos;
1017#if defined(__WIN95__)
1018 if (!(lpPos->flags & SWP_NOSIZE))
2bda0e17 1019 {
42e69d6b 1020 RECT rectClient;
b3818fbe
VZ
1021 DWORD dwExStyle = ::GetWindowLong(GetHwnd(), GWL_EXSTYLE);
1022 DWORD dwStyle = ::GetWindowLong(GetHwnd(), GWL_STYLE);
42e69d6b
VZ
1023 if (ResetWindowStyle((void *) & rectClient) && (dwStyle & WS_MAXIMIZE))
1024 {
1025 ::AdjustWindowRectEx(&rectClient, dwStyle, FALSE, dwExStyle);
1026 lpPos->x = rectClient.left;
1027 lpPos->y = rectClient.top;
1028 lpPos->cx = rectClient.right - rectClient.left;
1029 lpPos->cy = rectClient.bottom - rectClient.top;
1030 }
1031 wxMDIParentFrame* pFrameWnd = (wxMDIParentFrame *)GetParent();
a2327a9f 1032 if (pFrameWnd && pFrameWnd->GetToolBar() && pFrameWnd->GetToolBar()->IsShown())
42e69d6b
VZ
1033 {
1034 pFrameWnd->GetToolBar()->Refresh();
1035 }
1036 }
1037#endif // Win95
1038
1039 return FALSE;
1040}
1041
1042// ---------------------------------------------------------------------------
1043// MDI specific message translation/preprocessing
1044// ---------------------------------------------------------------------------
2bda0e17 1045
42e69d6b
VZ
1046long wxMDIChildFrame::MSWDefWindowProc(WXUINT message, WXUINT wParam, WXLPARAM lParam)
1047{
1048 return DefMDIChildProc(GetHwnd(),
1049 (UINT)message, (WPARAM)wParam, (LPARAM)lParam);
1050}
1051
1052bool wxMDIChildFrame::MSWTranslateMessage(WXMSG* msg)
1053{
5a2762f0 1054 return wxFrame::MSWTranslateMessage(msg);
2bda0e17
KB
1055}
1056
42e69d6b
VZ
1057// ---------------------------------------------------------------------------
1058// misc
1059// ---------------------------------------------------------------------------
1060
c2dcfdef 1061void wxMDIChildFrame::MSWDestroyWindow()
2bda0e17 1062{
42e69d6b 1063 MSWDetachWindowMenu();
b3818fbe 1064 invalidHandle = GetHwnd();
2bda0e17 1065
42e69d6b 1066 wxMDIParentFrame *parent = (wxMDIParentFrame *)GetParent();
2bda0e17 1067
42e69d6b
VZ
1068 // Must make sure this handle is invalidated (set to NULL) since all sorts
1069 // of things could happen after the child client is destroyed, but before
1070 // the wxFrame is destroyed.
2bda0e17 1071
42e69d6b 1072 HWND oldHandle = (HWND)GetHWND();
b3818fbe
VZ
1073 SendMessage(GetWinHwnd(parent->GetClientWindow()), WM_MDIDESTROY,
1074 (WPARAM)oldHandle, 0);
18d2e170
JS
1075
1076 if (parent->GetActiveChild() == (wxMDIChildFrame*) NULL)
1077 ResetWindowStyle((void*) NULL);
1078
42e69d6b 1079 invalidHandle = 0;
2bda0e17 1080
42e69d6b
VZ
1081 if (m_hMenu)
1082 {
1083 ::DestroyMenu((HMENU) m_hMenu);
1084 m_hMenu = 0;
1085 }
ac6482e0 1086 wxRemoveHandleAssociation(this);
42e69d6b 1087 m_hWnd = 0;
2bda0e17
KB
1088}
1089
42e69d6b
VZ
1090// Change the client window's extended style so we don't get a client edge
1091// style when a child is maximised (a double border looks silly.)
2bda0e17
KB
1092bool wxMDIChildFrame::ResetWindowStyle(void *vrect)
1093{
1094#if defined(__WIN95__)
1095 RECT *rect = (RECT *)vrect;
c2dcfdef
VZ
1096 wxMDIParentFrame* pFrameWnd = (wxMDIParentFrame *)GetParent();
1097 wxMDIChildFrame* pChild = pFrameWnd->GetActiveChild();
1098 if (!pChild || (pChild == this))
1099 {
47ca6bfb 1100 HWND hwndClient = GetWinHwnd(pFrameWnd->GetClientWindow());
8082a771
VZ
1101 DWORD dwStyle = ::GetWindowLong(hwndClient, GWL_EXSTYLE);
1102
1103 // we want to test whether there is a maximized child, so just set
1104 // dwThisStyle to 0 if there is no child at all
1105 DWORD dwThisStyle = pChild
1f3943e0 1106 ? ::GetWindowLong(GetWinHwnd(pChild), GWL_STYLE) : 0;
c2dcfdef 1107 DWORD dwNewStyle = dwStyle;
8082a771 1108 if ( dwThisStyle & WS_MAXIMIZE )
c2dcfdef
VZ
1109 dwNewStyle &= ~(WS_EX_CLIENTEDGE);
1110 else
1111 dwNewStyle |= WS_EX_CLIENTEDGE;
1112
1113 if (dwStyle != dwNewStyle)
1114 {
47ca6bfb
VZ
1115 // force update of everything
1116 ::RedrawWindow(hwndClient, NULL, NULL,
1117 RDW_INVALIDATE | RDW_ALLCHILDREN);
1118 ::SetWindowLong(hwndClient, GWL_EXSTYLE, dwNewStyle);
1119 ::SetWindowPos(hwndClient, NULL, 0, 0, 0, 0,
42e69d6b
VZ
1120 SWP_FRAMECHANGED | SWP_NOACTIVATE |
1121 SWP_NOMOVE | SWP_NOSIZE | SWP_NOZORDER |
1122 SWP_NOCOPYBITS);
c2dcfdef 1123 if (rect)
47ca6bfb 1124 ::GetClientRect(hwndClient, rect);
2bda0e17 1125
42e69d6b 1126 return TRUE;
2bda0e17 1127 }
c2dcfdef 1128 }
42e69d6b 1129#endif // Win95
a23fd0e1
VZ
1130
1131 return FALSE;
2bda0e17
KB
1132}
1133
42e69d6b
VZ
1134// ===========================================================================
1135// wxMDIClientWindow: the window of predefined (by Windows) class which
1136// contains the child frames
1137// ===========================================================================
2bda0e17 1138
debe6624 1139bool wxMDIClientWindow::CreateClient(wxMDIParentFrame *parent, long style)
2bda0e17 1140{
42e69d6b 1141 m_backgroundColour = wxSystemSettings::GetSystemColour(wxSYS_COLOUR_APPWORKSPACE);
2bda0e17 1142
42e69d6b
VZ
1143 CLIENTCREATESTRUCT ccs;
1144 m_windowStyle = style;
1145 m_parent = parent;
c2dcfdef 1146
df61c009
JS
1147 ccs.hWindowMenu = (HMENU) 0;
1148 if (parent->GetWindowMenu())
1149 ccs.hWindowMenu = (HMENU) parent->GetWindowMenu()->GetHMenu();
42e69d6b 1150 ccs.idFirstChild = wxFIRST_MDI_CHILD;
2bda0e17 1151
f0ded96f 1152 DWORD msStyle = MDIS_ALLCHILDSTYLES | WS_VISIBLE | WS_CHILD | WS_CLIPCHILDREN;
42e69d6b
VZ
1153 if ( style & wxHSCROLL )
1154 msStyle |= WS_HSCROLL;
1155 if ( style & wxVSCROLL )
1156 msStyle |= WS_VSCROLL;
2bda0e17
KB
1157
1158#if defined(__WIN95__)
42e69d6b 1159 DWORD exStyle = WS_EX_CLIENTEDGE;
2bda0e17 1160#else
42e69d6b 1161 DWORD exStyle = 0;
2bda0e17
KB
1162#endif
1163
42e69d6b
VZ
1164 wxWndHook = this;
1165 m_hWnd = (WXHWND)::CreateWindowEx
1166 (
1167 exStyle,
223d09f6 1168 wxT("MDICLIENT"),
42e69d6b
VZ
1169 NULL,
1170 msStyle,
1171 0, 0, 0, 0,
1172 GetWinHwnd(parent),
1173 NULL,
1174 wxGetInstance(),
1175 (LPSTR)(LPCLIENTCREATESTRUCT)&ccs);
1176 if ( !m_hWnd )
1177 {
f6bcfd97 1178 wxLogLastError(wxT("CreateWindowEx(MDI client)"));
2bda0e17 1179
42e69d6b
VZ
1180 return FALSE;
1181 }
2bda0e17 1182
42e69d6b
VZ
1183 SubclassWin(m_hWnd);
1184 wxWndHook = NULL;
2bda0e17 1185
42e69d6b 1186 return TRUE;
2bda0e17
KB
1187}
1188
1189// Explicitly call default scroll behaviour
1190void wxMDIClientWindow::OnScroll(wxScrollEvent& event)
1191{
1192 // Note: for client windows, the scroll position is not set in
1193 // WM_HSCROLL, WM_VSCROLL, so we can't easily determine what
1194 // scroll position we're at.
1195 // This makes it hard to paint patterns or bitmaps in the background,
1196 // and have the client area scrollable as well.
1197
1198 if ( event.GetOrientation() == wxHORIZONTAL )
1199 m_scrollX = event.GetPosition(); // Always returns zero!
1200 else
1201 m_scrollY = event.GetPosition(); // Always returns zero!
1202
42e69d6b
VZ
1203 event.Skip();
1204}
1205
ec06b234
JS
1206void wxMDIClientWindow::DoSetSize(int x, int y, int width, int height, int sizeFlags)
1207{
1208 // Try to fix a problem whereby if you show an MDI child frame, then reposition the
1209 // client area, you can end up with a non-refreshed portion in the client window
1210 // (see OGL studio sample). So check if the position is changed and if so,
1211 // redraw the MDI child frames.
1212
1213 wxPoint oldPos = GetPosition();
1214
1215 wxWindow::DoSetSize(x, y, width, height, sizeFlags);
1216
1217 wxPoint newPos = GetPosition();
1218
1219 if ((newPos.x != oldPos.x) || (newPos.y != oldPos.y))
1220 {
1221 if (GetParent())
1222 {
1223 wxNode* node = GetParent()->GetChildren().First();
1224 while (node)
1225 {
1226 wxWindow* child = (wxWindow*) node->Data();
1227 if (child->IsKindOf(CLASSINFO(wxMDIChildFrame)))
1228 {
1229 HWND hWnd = (HWND) child->GetHWND();
1230 ::RedrawWindow(hWnd, NULL, NULL, RDW_FRAME|RDW_ALLCHILDREN|RDW_INVALIDATE );
1231 }
1232 node = node->Next();
1233 }
1234 }
1235 }
1236}
1237
f6bcfd97
BP
1238void wxMDIChildFrame::OnIdle(wxIdleEvent& event)
1239{
1240 // MDI child frames get their WM_SIZE when they're constructed but at this
1241 // moment they don't have any children yet so all child windows will be
1242 // positioned incorrectly when they are added later - to fix this, we
1243 // generate an artificial size event here
1244 if ( m_needsResize )
1245 {
1246 m_needsResize = FALSE; // avoid any possibility of recursion
1247
1248 SendSizeEvent();
1249 }
1250
1251 event.Skip();
1252}
1253
42e69d6b
VZ
1254// ---------------------------------------------------------------------------
1255// non member functions
1256// ---------------------------------------------------------------------------
1257
1258static void MDISetMenu(wxWindow *win, HMENU hmenuFrame, HMENU hmenuWindow)
1259{
1260 ::SendMessage(GetWinHwnd(win), WM_MDISETMENU,
1261#ifdef __WIN32__
f6bcfd97 1262 (WPARAM)hmenuFrame, (LPARAM)hmenuWindow
42e69d6b 1263#else
f6bcfd97 1264 0, MAKELPARAM(hmenuFrame, hmenuWindow)
42e69d6b 1265#endif
f6bcfd97 1266 );
42e69d6b
VZ
1267
1268 // update menu bar of the parent window
1269 wxWindow *parent = win->GetParent();
223d09f6 1270 wxCHECK_RET( parent, wxT("MDI client without parent frame? weird...") );
42e69d6b 1271
a967ef9d 1272 ::SendMessage(GetWinHwnd(win), WM_MDIREFRESHMENU, 0, 0L);
42e69d6b
VZ
1273 ::DrawMenuBar(GetWinHwnd(parent));
1274}
1275
1276static void InsertWindowMenu(wxWindow *win, WXHMENU menu, HMENU subMenu)
1277{
1278 // Try to insert Window menu in front of Help, otherwise append it.
1279 HMENU hmenu = (HMENU)menu;
df61c009
JS
1280
1281 if (subMenu)
1282 {
42e69d6b
VZ
1283 int N = GetMenuItemCount(hmenu);
1284 bool success = FALSE;
1285 for ( int i = 0; i < N; i++ )
1286 {
837e5743 1287 wxChar buf[256];
42e69d6b
VZ
1288 int chars = GetMenuString(hmenu, i, buf, WXSIZEOF(buf), MF_BYPOSITION);
1289 if ( chars == 0 )
1290 {
223d09f6 1291 wxLogLastError(wxT("GetMenuString"));
42e69d6b
VZ
1292
1293 continue;
1294 }
1295
f6bcfd97 1296 if ( wxStripMenuCodes(wxString(buf)).IsSameAs(_("Help")) )
42e69d6b
VZ
1297 {
1298 success = TRUE;
1299 ::InsertMenu(hmenu, i, MF_BYPOSITION | MF_POPUP | MF_STRING,
f6bcfd97 1300 (UINT)subMenu, _("&Window"));
42e69d6b
VZ
1301 break;
1302 }
1303 }
1304
1305 if ( !success )
1306 {
f6bcfd97 1307 ::AppendMenu(hmenu, MF_POPUP, (UINT)subMenu, _("&Window"));
42e69d6b 1308 }
df61c009 1309 }
42e69d6b
VZ
1310
1311 MDISetMenu(win, hmenu, subMenu);
1312}
1313
df61c009
JS
1314static void RemoveWindowMenu(wxWindow *win, WXHMENU menu)
1315{
1316 // Try to insert Window menu in front of Help, otherwise append it.
1317 HMENU hmenu = (HMENU)menu;
1318 int N = GetMenuItemCount(hmenu);
df61c009
JS
1319 for ( int i = 0; i < N; i++ )
1320 {
1321 wxChar buf[256];
1322 int chars = GetMenuString(hmenu, i, buf, WXSIZEOF(buf), MF_BYPOSITION);
1323 if ( chars == 0 )
1324 {
1325 wxLogLastError(wxT("GetMenuString"));
1326
1327 continue;
1328 }
1329
f6bcfd97 1330 if ( wxStripMenuCodes(wxString(buf)).IsSameAs(_("Window")) )
df61c009 1331 {
df61c009
JS
1332 ::RemoveMenu(hmenu, i, MF_BYPOSITION);
1333 break;
1334 }
1335 }
1336
1337 // Does passing 0 for the window menu really work with WM_MDISETMENU?
1338 MDISetMenu(win, hmenu, 0);
1339}
1340
2917e920
BM
1341static void UnpackMDIActivate(WXWPARAM wParam, WXLPARAM lParam,
1342 WXWORD *activate, WXHWND *hwndAct, WXHWND *hwndDeact)
42e69d6b
VZ
1343{
1344#ifdef __WIN32__
1345 *activate = TRUE;
1346 *hwndAct = (WXHWND)lParam;
1347 *hwndDeact = (WXHWND)wParam;
1348#else // Win16
1349 *activate = (WXWORD)wParam;
1350 *hwndAct = (WXHWND)LOWORD(lParam);
1351 *hwndDeact = (WXHWND)HIWORD(lParam);
1352#endif // Win32/Win16
2bda0e17 1353}