]>
Commit | Line | Data |
---|---|---|
f45e4fad DW |
1 | /////////////////////////////////////////////////////////////////////////////// |
2 | // Name: msw/toplevel.cpp | |
3 | // Purpose: implements wxTopLevelWindow for MSW | |
4 | // Author: Vadim Zeitlin | |
5 | // Modified by: | |
6 | // Created: 30.12.01 | |
7 | // RCS-ID: $Id$ | |
8 | // Copyright: (c) 2001 SciTech Software, Inc. (www.scitechsoft.com) | |
9 | // License: wxWindows license | |
10 | /////////////////////////////////////////////////////////////////////////////// | |
11 | ||
12 | // ============================================================================ | |
13 | // declarations | |
14 | // ============================================================================ | |
15 | ||
16 | // ---------------------------------------------------------------------------- | |
17 | // headers | |
18 | // ---------------------------------------------------------------------------- | |
19 | ||
20 | #ifdef __GNUG__ | |
21 | #pragma implementation "toplevel.h" | |
22 | #endif | |
23 | ||
24 | // For compilers that support precompilation, includes "wx.h". | |
25 | #include "wx/wxprec.h" | |
26 | ||
27 | #ifdef __BORLANDC__ | |
28 | #pragma hdrstop | |
29 | #endif | |
30 | ||
31 | #ifndef WX_PRECOMP | |
32 | #include "wx/app.h" | |
33 | #include "wx/toplevel.h" | |
34 | #include "wx/string.h" | |
35 | #include "wx/log.h" | |
36 | #include "wx/intl.h" | |
37 | #include "wx/frame.h" | |
a4a16252 | 38 | #include "wx/control.h" |
f45e4fad DW |
39 | #endif //WX_PRECOMP |
40 | ||
41 | #include "wx/os2/private.h" | |
42 | ||
43 | // ---------------------------------------------------------------------------- | |
44 | // stubs for missing functions under MicroWindows | |
45 | // ---------------------------------------------------------------------------- | |
46 | ||
47 | ||
48 | // ---------------------------------------------------------------------------- | |
49 | // globals | |
50 | // ---------------------------------------------------------------------------- | |
51 | ||
52 | // list of all frames and modeless dialogs | |
53 | wxWindowList wxModelessWindows; | |
54 | ||
55 | // the name of the default wxWindows class | |
793c7f9b DW |
56 | extern void wxAssociateWinWithHandle( HWND hWnd |
57 | ,wxWindowOS2* pWin | |
58 | ); | |
45e0dc94 | 59 | bool wxTopLevelWindowOS2::m_sbInitialized = FALSE; |
f45e4fad DW |
60 | |
61 | // ============================================================================ | |
62 | // wxTopLevelWindowMSW implementation | |
63 | // ============================================================================ | |
64 | ||
65 | // Dialog window proc | |
66 | MRESULT EXPENTRY wxDlgProc( HWND WXUNUSED(hWnd) | |
67 | ,UINT uMessage | |
68 | ,MPARAM WXUNUSED(wParam) | |
69 | ,MPARAM WXUNUSED(lParam) | |
70 | ) | |
71 | { | |
72 | if (uMessage == WM_INITDLG) | |
73 | { | |
74 | // | |
75 | // For this message, returning TRUE tells system to set focus to the | |
76 | // first control in the dialog box. | |
77 | // | |
78 | return (MRESULT)TRUE; | |
79 | } | |
80 | else | |
81 | { | |
82 | // | |
83 | // For all the other ones, FALSE means that we didn't process the | |
84 | // message | |
85 | // | |
86 | return (MRESULT)FALSE; | |
87 | } | |
88 | } // end of wxDlgProc | |
89 | ||
90 | // ---------------------------------------------------------------------------- | |
91 | // wxTopLevelWindowOS2 creation | |
92 | // ---------------------------------------------------------------------------- | |
93 | ||
94 | void wxTopLevelWindowOS2::Init() | |
95 | { | |
96 | m_bIconized = m_bMaximizeOnShow = FALSE; | |
97 | ||
98 | // | |
99 | // Unlike (almost?) all other windows, frames are created hidden | |
100 | // | |
101 | m_isShown = FALSE; | |
102 | ||
103 | // | |
104 | // Data to save/restore when calling ShowFullScreen | |
105 | m_lFsStyle = 0; | |
106 | m_lFsOldWindowStyle = 0; | |
107 | m_bFsIsMaximized = FALSE; | |
108 | m_bFsIsShowing = FALSE; | |
109 | ||
110 | m_hFrame = NULLHANDLE; | |
111 | memset(&m_vSwp, 0, sizeof(SWP)); | |
112 | memset(&m_vSwpClient, 0, sizeof(SWP)); | |
113 | } // end of wxTopLevelWindowIOS2::Init | |
114 | ||
115 | long wxTopLevelWindowOS2::OS2GetCreateWindowFlags( | |
116 | long* plExflags | |
117 | ) const | |
118 | { | |
119 | long lStyle = GetWindowStyle(); | |
120 | long lMsflags = 0; | |
121 | ||
122 | if (lStyle == wxDEFAULT_FRAME_STYLE) | |
123 | lMsflags = FCF_SIZEBORDER | FCF_TITLEBAR | FCF_SYSMENU | | |
124 | FCF_MINMAX | FCF_TASKLIST; | |
125 | else | |
126 | { | |
127 | if ((lStyle & wxCAPTION) == wxCAPTION) | |
128 | lMsflags = FCF_TASKLIST; | |
129 | else | |
130 | lMsflags = FCF_NOMOVEWITHOWNER; | |
131 | ||
132 | if ((lStyle & wxVSCROLL) == wxVSCROLL) | |
133 | lMsflags |= FCF_VERTSCROLL; | |
134 | if ((lStyle & wxHSCROLL) == wxHSCROLL) | |
135 | lMsflags |= FCF_HORZSCROLL; | |
136 | if (lStyle & wxMINIMIZE_BOX) | |
137 | lMsflags |= FCF_MINBUTTON; | |
138 | if (lStyle & wxMAXIMIZE_BOX) | |
139 | lMsflags |= FCF_MAXBUTTON; | |
140 | if (lStyle & wxTHICK_FRAME) | |
141 | lMsflags |= FCF_DLGBORDER; | |
142 | if (lStyle & wxSYSTEM_MENU) | |
143 | lMsflags |= FCF_SYSMENU; | |
144 | if (lStyle & wxCAPTION) | |
145 | lMsflags |= FCF_TASKLIST; | |
146 | if (lStyle & wxCLIP_CHILDREN) | |
147 | { | |
148 | // Invalid for frame windows under PM | |
149 | } | |
150 | ||
151 | if (lStyle & wxTINY_CAPTION_VERT) | |
152 | lMsflags |= FCF_TASKLIST; | |
153 | if (lStyle & wxTINY_CAPTION_HORIZ) | |
154 | lMsflags |= FCF_TASKLIST; | |
155 | ||
156 | if ((lStyle & wxTHICK_FRAME) == 0) | |
157 | lMsflags |= FCF_BORDER; | |
158 | if (lStyle & wxFRAME_TOOL_WINDOW) | |
159 | *plExflags = kFrameToolWindow; | |
160 | ||
161 | if (lStyle & wxSTAY_ON_TOP) | |
162 | lMsflags |= FCF_SYSMODAL; | |
163 | } | |
164 | return lMsflags; | |
165 | } // end of wxTopLevelWindowOS2::OS2GetCreateWindowFlags | |
166 | ||
167 | bool wxTopLevelWindowOS2::CreateDialog( | |
168 | ULONG ulDlgTemplate | |
169 | , const wxString& rsTitle | |
170 | , const wxPoint& rPos | |
171 | , const wxSize& rSize | |
172 | ) | |
173 | { | |
174 | wxWindow* pParent = GetParent(); | |
175 | ||
176 | // | |
177 | // For the dialogs without wxDIALOG_NO_PARENT style, use the top level | |
178 | // app window as parent - this avoids creating modal dialogs without | |
179 | // parent | |
180 | // | |
181 | if (!pParent && !(GetWindowStyleFlag() & wxDIALOG_NO_PARENT)) | |
182 | { | |
183 | pParent = wxTheApp->GetTopWindow(); | |
184 | ||
185 | if (pParent) | |
186 | { | |
187 | // | |
188 | // Don't use transient windows as parents, this is dangerous as it | |
189 | // can lead to a crash if the parent is destroyed before the child | |
190 | // | |
191 | // also don't use the window which is currently hidden as then the | |
192 | // dialog would be hidden as well | |
193 | if ((pParent->GetExtraStyle() & wxWS_EX_TRANSIENT) || | |
194 | !pParent->IsShown()) | |
195 | { | |
196 | pParent = NULL; | |
197 | } | |
198 | } | |
199 | } | |
200 | ||
201 | HWND hWndDlg; | |
1b086de1 | 202 | HWND hWndOwner; |
f45e4fad DW |
203 | |
204 | if (pParent) | |
1b086de1 | 205 | hWndOwner = GetHwndOf(pParent); |
f45e4fad | 206 | else |
1b086de1 | 207 | hWndOwner = HWND_DESKTOP; |
f45e4fad | 208 | |
1b086de1 DW |
209 | hWndDlg = ::WinLoadDlg( HWND_DESKTOP |
210 | ,hWndOwner | |
f45e4fad DW |
211 | ,(PFNWP)wxDlgProc |
212 | ,NULL | |
213 | ,(ULONG)ulDlgTemplate | |
214 | ,(PVOID)this | |
215 | ); | |
216 | ||
217 | m_hWnd = (WXHWND) hWndDlg; | |
218 | ||
219 | if ( !m_hWnd ) | |
220 | { | |
221 | wxFAIL_MSG(_("Did you forget to include wx/os2/wx.rc in your resources?")); | |
222 | ||
223 | wxLogSysError(_("Can't create dialog using template '%ul'"), ulDlgTemplate); | |
224 | ||
225 | return FALSE; | |
226 | } | |
227 | ||
228 | // | |
229 | // Move the dialog to its initial position without forcing repainting | |
230 | // | |
231 | int nX; | |
232 | int nY; | |
233 | int nWidth; | |
234 | int nHeight; | |
235 | ||
236 | if (!OS2GetCreateWindowCoords( rPos | |
237 | ,rSize | |
238 | ,nX | |
239 | ,nY | |
240 | ,nWidth | |
241 | ,nHeight | |
242 | )) | |
243 | { | |
244 | nX = nWidth = (int)CW_USEDEFAULT; | |
245 | } | |
246 | ||
247 | // | |
248 | // We can't use CW_USEDEFAULT here as we're not calling CreateWindow() | |
249 | // and passing CW_USEDEFAULT to MoveWindow() results in resizing the | |
250 | // window to (0, 0) size which breaks quite a lot of things, e.g. the | |
251 | // sizer calculation in wxSizer::Fit() | |
252 | // | |
253 | if (nWidth == (int)CW_USEDEFAULT) | |
254 | { | |
255 | // | |
256 | // The exact number doesn't matter, the dialog will be resized | |
257 | // again soon anyhow but it should be big enough to allow | |
258 | // calculation relying on "totalSize - clientSize > 0" work, i.e. | |
259 | // at least greater than the title bar height | |
260 | // | |
261 | nWidth = nHeight = 100; | |
262 | } | |
263 | if (nX == (int)CW_USEDEFAULT) | |
264 | { | |
265 | // | |
266 | // Centre it on the screen - what else can we do? | |
267 | // | |
268 | wxSize vSizeDpy = wxGetDisplaySize(); | |
269 | ||
270 | nX = (vSizeDpy.x - nWidth) / 2; | |
271 | nY = (vSizeDpy.y - nHeight) / 2; | |
272 | } | |
626af800 DW |
273 | m_backgroundColour.Set(wxString("LIGHT GREY")); |
274 | ||
275 | LONG lColor = (LONG)m_backgroundColour.GetPixel(); | |
276 | ||
277 | if (!::WinSetPresParam( m_hWnd | |
278 | ,PP_BACKGROUNDCOLOR | |
279 | ,sizeof(LONG) | |
280 | ,(PVOID)&lColor | |
281 | )) | |
282 | { | |
283 | return FALSE; | |
284 | } | |
b3260bce | 285 | |
f45e4fad DW |
286 | ::WinSetWindowPos( GetHwnd() |
287 | ,HWND_TOP | |
288 | ,nX | |
289 | ,nY | |
290 | ,nWidth | |
291 | ,nHeight | |
292 | ,SWP_MOVE | SWP_SIZE | SWP_ZORDER | SWP_SHOW | |
293 | ); | |
859e65de | 294 | ::WinQueryWindowPos(GetHwnd(), GetSwp()); |
626af800 | 295 | m_hFrame = m_hWnd; |
f45e4fad DW |
296 | SubclassWin(m_hWnd); |
297 | return TRUE; | |
298 | } // end of wxTopLevelWindowOS2::CreateDialog | |
299 | ||
300 | bool wxTopLevelWindowOS2::CreateFrame( | |
301 | const wxString& rsTitle | |
302 | , const wxPoint& rPos | |
303 | , const wxSize& rSize | |
304 | ) | |
305 | { | |
306 | long lExflags; | |
307 | long lFlags = OS2GetCreateWindowFlags(&lExflags); | |
308 | long lStyle = GetWindowStyleFlag(); | |
309 | int nX = rPos.x; | |
310 | int nY = rPos.y; | |
311 | int nWidth = rSize.x; | |
312 | int nHeight = rSize.y; | |
313 | ULONG ulStyleFlags = 0L; | |
314 | ERRORID vError; | |
315 | wxString sError; | |
316 | wxWindow* pParent = GetParent(); | |
317 | HWND hParent; | |
318 | HWND hFrame; | |
319 | HWND hClient; | |
320 | ||
321 | if (pParent) | |
322 | hParent = GetHwndOf(pParent); | |
323 | else | |
324 | hParent = HWND_DESKTOP; | |
325 | ||
326 | if ((lStyle & wxMINIMIZE) || (lStyle & wxICONIZE)) | |
327 | ulStyleFlags |= WS_MINIMIZED; | |
328 | if (lStyle & wxMAXIMIZE) | |
329 | ulStyleFlags |= WS_MAXIMIZED; | |
330 | ||
331 | // | |
332 | // Clear the visible flag, we always call show | |
333 | // | |
334 | ulStyleFlags &= (unsigned long)~WS_VISIBLE; | |
335 | m_bIconized = FALSE; | |
336 | ||
337 | // | |
338 | // Create the frame window: We break ranks with other ports now | |
339 | // and instead of calling down into the base wxWindow class' OS2Create | |
340 | // we do all our own stuff here. We will set the needed pieces | |
341 | // of wxWindow manually, here. | |
342 | // | |
343 | ||
344 | hFrame = ::WinCreateStdWindow( hParent | |
345 | ,ulStyleFlags // frame-window style | |
346 | ,(PULONG)&lFlags // window style | |
347 | ,(PSZ)wxFrameClassName // class name | |
348 | ,(PSZ)rsTitle.c_str() // window title | |
349 | ,0L // default client style | |
350 | ,NULLHANDLE // resource in executable file | |
351 | ,0 // resource id | |
352 | ,&hClient // receives client window handle | |
353 | ); | |
354 | if (!hFrame) | |
355 | { | |
356 | vError = ::WinGetLastError(vHabmain); | |
357 | sError = wxPMErrorToStr(vError); | |
358 | wxLogError("Error creating frame. Error: %s\n", sError); | |
359 | return FALSE; | |
360 | } | |
361 | ||
362 | // | |
363 | // wxWindow class' m_hWnd set here and needed associations | |
364 | // | |
365 | m_hFrame = hFrame; | |
366 | m_hWnd = hClient; | |
367 | wxAssociateWinWithHandle(m_hWnd, this); | |
368 | wxAssociateWinWithHandle(m_hFrame, this); | |
369 | ||
e58dab20 | 370 | m_backgroundColour.Set(wxString("MEDIUM GREY")); |
f45e4fad DW |
371 | |
372 | LONG lColor = (LONG)m_backgroundColour.GetPixel(); | |
373 | ||
374 | if (!::WinSetPresParam( m_hWnd | |
375 | ,PP_BACKGROUNDCOLOR | |
376 | ,sizeof(LONG) | |
377 | ,(PVOID)&lColor | |
378 | )) | |
379 | { | |
380 | vError = ::WinGetLastError(vHabmain); | |
381 | sError = wxPMErrorToStr(vError); | |
382 | wxLogError("Error creating frame. Error: %s\n", sError); | |
383 | return FALSE; | |
384 | } | |
385 | ||
386 | // | |
387 | // Now need to subclass window. Instead of calling the SubClassWin in wxWindow | |
388 | // we manually subclass here because we don't want to use the main wxWndProc | |
389 | // by default | |
390 | // | |
391 | m_fnOldWndProc = (WXFARPROC) ::WinSubclassWindow(m_hFrame, (PFNWP)wxFrameMainWndProc); | |
392 | ||
393 | // | |
394 | // Now size everything. If adding a menu the client will need to be resized. | |
395 | // | |
396 | ||
397 | if (pParent) | |
398 | { | |
399 | nY = pParent->GetSize().y - (nY + nHeight); | |
400 | } | |
401 | else | |
402 | { | |
403 | RECTL vRect; | |
404 | ||
405 | ::WinQueryWindowRect(HWND_DESKTOP, &vRect); | |
406 | nY = vRect.yTop - (nY + nHeight); | |
407 | } | |
408 | if (!::WinSetWindowPos( m_hFrame | |
409 | ,HWND_TOP | |
410 | ,nX | |
411 | ,nY | |
412 | ,nWidth | |
413 | ,nHeight | |
414 | ,SWP_SIZE | SWP_MOVE | SWP_ACTIVATE | SWP_ZORDER | |
415 | )) | |
416 | { | |
417 | vError = ::WinGetLastError(vHabmain); | |
418 | sError = wxPMErrorToStr(vError); | |
419 | wxLogError("Error sizing frame. Error: %s\n", sError); | |
420 | return FALSE; | |
421 | } | |
54ffa107 DW |
422 | lStyle = ::WinQueryWindowULong( m_hWnd |
423 | ,QWL_STYLE | |
424 | ); | |
425 | lStyle |= WS_CLIPCHILDREN; | |
426 | ::WinSetWindowULong( m_hWnd | |
427 | ,QWL_STYLE | |
428 | ,lStyle | |
429 | ); | |
f45e4fad DW |
430 | return TRUE; |
431 | } // end of wxTopLevelWindowOS2::CreateFrame | |
432 | ||
433 | bool wxTopLevelWindowOS2::Create( | |
434 | wxWindow* pParent | |
435 | , wxWindowID vId | |
436 | , const wxString& rsTitle | |
437 | , const wxPoint& rPos | |
438 | , const wxSize& rSize | |
439 | , long lStyle | |
440 | , const wxString& rsName | |
441 | ) | |
442 | { | |
443 | // | |
444 | // Init our fields | |
445 | // | |
446 | Init(); | |
447 | m_windowStyle = lStyle; | |
448 | SetName(rsName); | |
449 | m_windowId = vId == -1 ? NewControlId() : vId; | |
450 | wxTopLevelWindows.Append(this); | |
451 | if (pParent) | |
452 | pParent->AddChild(this); | |
453 | ||
454 | if (GetExtraStyle() & wxTOPLEVEL_EX_DIALOG) | |
455 | { | |
456 | // | |
457 | // We have different dialog templates to allows creation of dialogs | |
458 | // with & without captions under OS2indows, resizeable or not (but a | |
459 | // resizeable dialog always has caption - otherwise it would look too | |
460 | // strange) | |
461 | // | |
462 | ULONG ulDlgTemplate; | |
463 | ||
464 | if (lStyle & wxRESIZE_BORDER) | |
465 | ulDlgTemplate = (ULONG)kResizeableDialog; | |
466 | else if (lStyle & wxCAPTION) | |
467 | ulDlgTemplate = (ULONG)kCaptionDialog; | |
468 | else | |
469 | ulDlgTemplate = (ULONG)kNoCaptionDialog; | |
470 | return CreateDialog( ulDlgTemplate | |
471 | ,rsTitle | |
472 | ,rPos | |
473 | ,rSize | |
474 | ); | |
475 | } | |
476 | else // !dialog | |
477 | { | |
478 | return CreateFrame( rsTitle | |
479 | ,rPos | |
480 | ,rSize | |
481 | ); | |
482 | } | |
483 | } // end of wxTopLevelWindowOS2::Create | |
484 | ||
485 | wxTopLevelWindowOS2::~wxTopLevelWindowOS2() | |
486 | { | |
487 | wxTopLevelWindows.DeleteObject(this); | |
488 | ||
489 | if (wxModelessWindows.Find(this)) | |
490 | wxModelessWindows.DeleteObject(this); | |
491 | ||
492 | // | |
493 | // If this is the last top-level window, exit. | |
494 | // | |
495 | if (wxTheApp && (wxTopLevelWindows.Number() == 0)) | |
496 | { | |
497 | wxTheApp->SetTopWindow(NULL); | |
498 | if ( wxTheApp->GetExitOnFrameDelete() ) | |
499 | { | |
500 | ::WinPostMsg(NULL, WM_QUIT, 0, 0); | |
501 | } | |
502 | } | |
503 | } // end of wxTopLevelWindowOS2::~wxTopLevelWindowOS2 | |
504 | ||
f45e4fad DW |
505 | // ---------------------------------------------------------------------------- |
506 | // wxTopLevelWindowOS2 client size | |
507 | // ---------------------------------------------------------------------------- | |
508 | ||
509 | void wxTopLevelWindowOS2::DoSetClientSize( | |
510 | int nWidth | |
511 | , int nHeight | |
512 | ) | |
513 | { | |
514 | // | |
515 | // Call GetClientAreaOrigin() to take the toolbar into account | |
516 | // | |
517 | wxPoint vPt = GetClientAreaOrigin(); | |
518 | ||
519 | nWidth += vPt.x; | |
520 | nHeight += vPt.y; | |
521 | ||
522 | wxWindow::DoSetClientSize( nWidth | |
523 | ,nHeight | |
524 | ); | |
525 | } // end of wxTopLevelWindowOS2::DoSetClientSize | |
526 | ||
527 | void wxTopLevelWindowOS2::DoGetClientSize( | |
528 | int* pnX | |
529 | , int* pnY | |
530 | ) const | |
531 | { | |
532 | wxWindow::DoGetClientSize( pnX | |
533 | ,pnY | |
534 | ); | |
535 | ||
536 | wxPoint vPt = GetClientAreaOrigin(); | |
537 | ||
538 | if (pnX) | |
539 | *pnX -= vPt.x; | |
540 | ||
541 | if (pnY) | |
542 | *pnY += vPt.y; | |
543 | } // end of wxTopLevelWindowOS2::DoGetClientSize | |
544 | ||
545 | // ---------------------------------------------------------------------------- | |
546 | // wxTopLevelWindowOS2 showing | |
547 | // ---------------------------------------------------------------------------- | |
548 | ||
549 | void wxTopLevelWindowOS2::DoShowWindow( | |
550 | int nShowCmd | |
551 | ) | |
552 | { | |
54ffa107 | 553 | ::WinShowWindow(m_hFrame, (BOOL)(nShowCmd & SWP_SHOW)); |
239c2e96 DW |
554 | |
555 | // | |
556 | // Need to artificially send a size event as wxApps often expect to do some | |
557 | // final child control sizing | |
558 | SendSizeEvent(); | |
f45e4fad DW |
559 | m_bIconized = nShowCmd == SWP_MINIMIZE; |
560 | } // end of wxTopLevelWindowOS2::DoShowWindow | |
561 | ||
562 | bool wxTopLevelWindowOS2::Show( | |
563 | bool bShow | |
564 | ) | |
565 | { | |
566 | int nShowCmd; | |
567 | SWP vSwp; | |
568 | RECTL vRect; | |
569 | ||
570 | if (bShow) | |
571 | { | |
572 | if (m_bMaximizeOnShow) | |
573 | { | |
54ffa107 | 574 | nShowCmd = SWP_MAXIMIZE; |
f45e4fad DW |
575 | m_bMaximizeOnShow = FALSE; |
576 | } | |
577 | else | |
578 | { | |
54ffa107 | 579 | nShowCmd = SWP_SHOW; |
f45e4fad DW |
580 | } |
581 | } | |
582 | else // hide | |
583 | { | |
584 | nShowCmd = SWP_HIDE; | |
585 | } | |
586 | DoShowWindow(nShowCmd); | |
587 | ||
588 | if (bShow) | |
589 | { | |
590 | wxActivateEvent vEvent(wxEVT_ACTIVATE, TRUE, m_windowId); | |
591 | ||
592 | ::WinQueryWindowPos(m_hFrame, &vSwp); | |
593 | m_bIconized = vSwp.fl & SWP_MINIMIZE; | |
594 | ::WinQueryWindowPos(m_hWnd, &m_vSwpClient); | |
595 | ::WinSendMsg(m_hFrame, WM_UPDATEFRAME, (MPARAM)~0, 0); | |
4a46a5df | 596 | ::WinQueryWindowPos(m_hWnd, &vSwp); |
f45e4fad | 597 | ::WinEnableWindow(m_hFrame, TRUE); |
859e65de DW |
598 | |
599 | // | |
600 | // Deal with children | |
601 | // | |
602 | MoveChildren(m_vSwpClient.cy - vSwp.cy); | |
f45e4fad DW |
603 | vEvent.SetEventObject(this); |
604 | GetEventHandler()->ProcessEvent(vEvent); | |
605 | } | |
606 | else | |
607 | { | |
608 | // | |
609 | // Try to highlight the correct window (the parent) | |
610 | // | |
611 | if (GetParent()) | |
612 | { | |
613 | HWND hWndParent = GetHwndOf(GetParent()); | |
614 | ||
615 | ::WinQueryWindowPos(hWndParent, &vSwp); | |
616 | m_bIconized = vSwp.fl & SWP_MINIMIZE; | |
617 | if (hWndParent) | |
618 | ::WinSetWindowPos( hWndParent | |
619 | ,HWND_TOP | |
620 | ,vSwp.x | |
621 | ,vSwp.y | |
622 | ,vSwp.cx | |
623 | ,vSwp.cy | |
624 | ,SWP_ZORDER | SWP_ACTIVATE | SWP_SHOW | SWP_MOVE | |
625 | ); | |
626 | ::WinEnableWindow(hWndParent, TRUE); | |
627 | } | |
628 | } | |
629 | return TRUE; | |
630 | } // end of wxTopLevelWindowOS2::Show | |
631 | ||
632 | // ---------------------------------------------------------------------------- | |
633 | // wxTopLevelWindowOS2 maximize/minimize | |
634 | // ---------------------------------------------------------------------------- | |
635 | ||
636 | void wxTopLevelWindowOS2::Maximize( | |
637 | bool bMaximize | |
638 | ) | |
639 | { | |
640 | if (IsShown()) | |
641 | { | |
642 | // | |
643 | // Just maximize it directly | |
644 | // | |
645 | DoShowWindow(bMaximize ? SWP_MAXIMIZE : SWP_RESTORE); | |
646 | } | |
647 | else // hidden | |
648 | { | |
649 | // | |
650 | // We can't maximize the hidden frame because it shows it as well, so | |
651 | // just remember that we should do it later in this case | |
652 | // | |
653 | m_bMaximizeOnShow = TRUE; | |
654 | } | |
655 | } // end of wxTopLevelWindowOS2::Maximize | |
656 | ||
657 | bool wxTopLevelWindowOS2::IsMaximized() const | |
658 | { | |
659 | bool bIconic; | |
660 | ||
661 | ::WinQueryWindowPos(m_hFrame, (PSWP)&m_vSwp); | |
662 | return (m_vSwp.fl & SWP_MAXIMIZE); | |
663 | } // end of wxTopLevelWindowOS2::IsMaximized | |
664 | ||
665 | void wxTopLevelWindowOS2::Iconize( | |
666 | bool bIconize | |
667 | ) | |
668 | { | |
669 | DoShowWindow(bIconize ? SWP_MINIMIZE : SWP_RESTORE); | |
670 | } // end of wxTopLevelWindowOS2::Iconize | |
671 | ||
672 | bool wxTopLevelWindowOS2::IsIconized() const | |
673 | { | |
674 | // also update the current state | |
675 | ::WinQueryWindowPos(m_hFrame, (PSWP)&m_vSwp); | |
676 | if (m_vSwp.fl & SWP_MINIMIZE) | |
677 | ((wxTopLevelWindow*)this)->m_bIconized = TRUE; | |
678 | else | |
679 | ((wxTopLevelWindow*)this)->m_bIconized = FALSE; | |
680 | return m_bIconized; | |
681 | } // end of wxTopLevelWindowOS2::IsIconized | |
682 | ||
683 | void wxTopLevelWindowOS2::Restore() | |
684 | { | |
685 | DoShowWindow(SWP_RESTORE); | |
686 | } // end of wxTopLevelWindowOS2::Restore | |
687 | ||
239c2e96 DW |
688 | // generate an artificial resize event |
689 | void wxTopLevelWindowOS2::SendSizeEvent() | |
690 | { | |
691 | if (!m_bIconized) | |
692 | { | |
693 | RECTL vRect = wxGetWindowRect(GetHwnd()); | |
694 | ||
695 | (void)::WinPostMsg( m_hFrame | |
696 | ,WM_SIZE | |
697 | ,MPFROM2SHORT(vRect.xRight - vRect.xLeft, vRect.yTop - vRect.yBottom) | |
698 | ,MPFROM2SHORT(vRect.xRight - vRect.xLeft, vRect.yTop - vRect.yBottom) | |
699 | ); | |
700 | } | |
701 | } // end of wxTopLevelWindowOS2::SendSizeEvent | |
702 | ||
f45e4fad DW |
703 | // ---------------------------------------------------------------------------- |
704 | // wxTopLevelWindowOS2 fullscreen | |
705 | // ---------------------------------------------------------------------------- | |
706 | ||
707 | bool wxTopLevelWindowOS2::ShowFullScreen( | |
708 | bool bShow | |
709 | , long lStyle | |
710 | ) | |
711 | { | |
712 | if (bShow) | |
713 | { | |
714 | if (IsFullScreen()) | |
715 | return FALSE; | |
716 | ||
717 | m_bFsIsShowing = TRUE; | |
718 | m_lFsStyle = lStyle; | |
719 | ||
720 | // | |
721 | // Zap the frame borders | |
722 | // | |
723 | ||
724 | // | |
725 | // Save the 'normal' window lStyle | |
726 | // | |
727 | m_lFsOldWindowStyle = ::WinQueryWindowULong( (HWND)GetHWND() | |
728 | ,QWL_STYLE | |
729 | ); | |
730 | ||
731 | // | |
732 | // Save the old position, width & height, maximize state | |
733 | // | |
734 | m_vFsOldSize = GetRect(); | |
735 | m_bFsIsMaximized = IsMaximized(); | |
736 | ||
737 | // | |
738 | // Decide which window lStyle flags to turn off | |
739 | // | |
740 | LONG lNewStyle = m_lFsOldWindowStyle; | |
741 | LONG lOffFlags = 0; | |
742 | ||
743 | if (lStyle & wxFULLSCREEN_NOBORDER) | |
744 | lOffFlags |= FCF_BORDER; | |
745 | if (lStyle & wxFULLSCREEN_NOCAPTION) | |
746 | lOffFlags |= (FCF_TASKLIST | FCF_SYSMENU); | |
747 | ||
748 | lNewStyle &= (~lOffFlags); | |
749 | ||
750 | // | |
751 | // Change our window style to be compatible with full-screen mode | |
752 | // | |
753 | ::WinSetWindowULong( (HWND)GetHWND() | |
754 | ,QWL_STYLE | |
755 | ,lNewStyle | |
756 | ); | |
757 | ||
758 | // | |
759 | // Resize to the size of the desktop | |
760 | // | |
761 | int nWidth; | |
762 | int nHeight; | |
763 | RECTL vRect = wxGetWindowRect(HWND_DESKTOP); | |
764 | ||
765 | nWidth = vRect.xRight - vRect.xLeft; | |
766 | nHeight = vRect.yTop - vRect.yBottom; | |
767 | ||
768 | SetSize( nWidth | |
769 | ,nHeight | |
770 | ); | |
771 | ||
772 | // | |
773 | // Now flush the window style cache and actually go full-screen | |
774 | // | |
775 | ::WinSetWindowPos( m_hFrame | |
776 | ,HWND_TOP | |
777 | ,0 | |
778 | ,0 | |
779 | ,nWidth | |
780 | ,nHeight | |
781 | ,SWP_SIZE | SWP_MOVE | |
782 | ); | |
783 | ||
784 | wxSizeEvent vEvent( wxSize( nWidth | |
785 | ,nHeight | |
786 | ) | |
787 | ,GetId() | |
788 | ); | |
789 | ||
790 | GetEventHandler()->ProcessEvent(vEvent); | |
791 | return TRUE; | |
792 | } | |
793 | else | |
794 | { | |
795 | if (!IsFullScreen()) | |
796 | return FALSE; | |
797 | ||
798 | m_bFsIsShowing = FALSE; | |
799 | Maximize(m_bFsIsMaximized); | |
800 | ::WinSetWindowULong( (HWND)GetHWND() | |
801 | ,QWL_STYLE | |
802 | ,m_lFsOldWindowStyle | |
803 | ); | |
804 | ::WinSetWindowPos( m_hFrame | |
805 | ,HWND_TOP | |
806 | ,m_vFsOldSize.x | |
807 | ,m_vFsOldSize.y | |
808 | ,m_vFsOldSize.width | |
809 | ,m_vFsOldSize.height | |
810 | ,SWP_SIZE | SWP_MOVE | |
811 | ); | |
812 | return TRUE; | |
813 | } | |
814 | } // end of wxTopLevelWindowOS2::ShowFullScreen | |
815 | ||
816 | // ---------------------------------------------------------------------------- | |
817 | // wxTopLevelWindowOS2 misc | |
818 | // ---------------------------------------------------------------------------- | |
819 | ||
820 | void wxTopLevelWindowOS2::SetIcon( | |
821 | const wxIcon& rIcon | |
822 | ) | |
823 | { | |
824 | // | |
825 | // This sets m_icon | |
826 | // | |
827 | wxTopLevelWindowBase::SetIcon(rIcon); | |
828 | ||
829 | if (m_icon.Ok()) | |
830 | { | |
831 | ::WinSendMsg( m_hFrame | |
832 | ,WM_SETICON | |
833 | ,(MPARAM)((HPOINTER)m_icon.GetHICON()) | |
834 | ,NULL | |
835 | ); | |
836 | ::WinSendMsg( m_hFrame | |
837 | ,WM_UPDATEFRAME | |
838 | ,(MPARAM)FCF_ICON | |
839 | ,(MPARAM)0 | |
840 | ); | |
841 | } | |
842 | } // end of wxTopLevelWindowOS2::SetIcon | |
843 | ||
844 | bool wxTopLevelWindowOS2::EnableCloseButton( | |
845 | bool bEnable | |
846 | ) | |
847 | { | |
848 | // | |
849 | // Get system (a.k.a. window) menu | |
850 | // | |
851 | HMENU hMenu = ::WinWindowFromID(m_hFrame, FID_SYSMENU); | |
852 | ||
853 | if (!hMenu) | |
854 | { | |
855 | wxLogLastError(_T("GetSystemMenu")); | |
856 | return FALSE; | |
857 | } | |
858 | ||
859 | // | |
860 | // Enabling/disabling the close item from it also automatically | |
861 | // disables/enables the close title bar button | |
862 | // | |
863 | if (bEnable) | |
864 | (void)::WinSendMsg( hMenu | |
865 | ,MM_SETITEMATTR | |
866 | ,MPFROM2SHORT(SC_CLOSE, FALSE) | |
867 | ,MPFROM2SHORT(MIA_DISABLED, FALSE) | |
868 | ); | |
869 | else | |
870 | (void)::WinSendMsg( hMenu | |
871 | ,MM_SETITEMATTR | |
872 | ,MPFROM2SHORT(SC_CLOSE, FALSE) | |
873 | ,MPFROM2SHORT(MIA_DISABLED, MIA_DISABLED) | |
874 | ); | |
875 | ||
876 | // | |
877 | // Update appearance immediately | |
878 | // | |
879 | ::WinSendMsg( m_hFrame | |
880 | ,WM_UPDATEFRAME | |
881 | ,(MPARAM)FCF_MENU | |
882 | ,(MPARAM)0 | |
883 | ); | |
884 | return TRUE; | |
885 | } // end of wxTopLevelWindowOS2::EnableCloseButton | |
886 |