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