]>
Commit | Line | Data |
---|---|---|
82c9f85c VZ |
1 | /////////////////////////////////////////////////////////////////////////////// |
2 | // Name: msw/toplevel.cpp | |
3 | // Purpose: implements wxTopLevelWindow for MSW | |
4 | // Author: Vadim Zeitlin | |
5 | // Modified by: | |
6 | // Created: 24.09.01 | |
7 | // RCS-ID: $Id$ | |
8 | // Copyright: (c) 2001 SciTech Software, Inc. (www.scitechsoft.com) | |
6c9a19aa | 9 | // License: wxWindows licence |
82c9f85c VZ |
10 | /////////////////////////////////////////////////////////////////////////////// |
11 | ||
12 | // ============================================================================ | |
13 | // declarations | |
14 | // ============================================================================ | |
15 | ||
16 | // ---------------------------------------------------------------------------- | |
17 | // headers | |
18 | // ---------------------------------------------------------------------------- | |
19 | ||
14f355c2 | 20 | #if defined(__GNUG__) && !defined(NO_GCC_PRAGMA) |
82c9f85c VZ |
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 | |
3a922bb4 RL |
32 | #include "wx/app.h" |
33 | #include "wx/toplevel.h" | |
82c9f85c VZ |
34 | #include "wx/string.h" |
35 | #include "wx/log.h" | |
36 | #include "wx/intl.h" | |
14dd645e | 37 | #include "wx/frame.h" |
706d74ab | 38 | #include "wx/containr.h" // wxSetFocusToChild() |
82c9f85c VZ |
39 | #endif //WX_PRECOMP |
40 | ||
2b5f62a0 VZ |
41 | #include "wx/module.h" |
42 | ||
82c9f85c | 43 | #include "wx/msw/private.h" |
80a81a12 JS |
44 | |
45 | #if defined(__WXWINCE__) | |
46 | #include <ole2.h> | |
47 | #include <shellapi.h> | |
48 | #include <aygshell.h> | |
49 | #endif | |
50 | ||
4676948b JS |
51 | #include "wx/msw/winundef.h" |
52 | ||
ffcb4ee4 JS |
53 | // This can't be undefed in winundef.h or |
54 | // there are further errors | |
55 | #if defined(__WXWINCE__) && defined(CreateDialog) | |
56 | #undef CreateDialog | |
57 | #endif | |
58 | ||
716645d3 | 59 | #include "wx/display.h" |
7e25f59e | 60 | |
e121a72a MB |
61 | #ifndef ICON_BIG |
62 | #define ICON_BIG 1 | |
63 | #endif | |
64 | ||
65 | #ifndef ICON_SMALL | |
66 | #define ICON_SMALL 0 | |
67 | #endif | |
68 | ||
82c9f85c VZ |
69 | // ---------------------------------------------------------------------------- |
70 | // stubs for missing functions under MicroWindows | |
71 | // ---------------------------------------------------------------------------- | |
72 | ||
73 | #ifdef __WXMICROWIN__ | |
74 | ||
c67d6888 | 75 | // static inline bool IsIconic(HWND WXUNUSED(hwnd)) { return FALSE; } |
82c9f85c VZ |
76 | static inline bool IsZoomed(HWND WXUNUSED(hwnd)) { return FALSE; } |
77 | ||
78 | #endif // __WXMICROWIN__ | |
79 | ||
12447831 VZ |
80 | // NB: wxDlgProc must be defined here and not in dialog.cpp because the latter |
81 | // is not included by wxUniv build which does need wxDlgProc | |
61179e28 VZ |
82 | LONG APIENTRY _EXPORT |
83 | wxDlgProc(HWND hDlg, UINT message, WPARAM wParam, LPARAM lParam); | |
84 | ||
82c9f85c VZ |
85 | // ---------------------------------------------------------------------------- |
86 | // globals | |
87 | // ---------------------------------------------------------------------------- | |
88 | ||
89 | // list of all frames and modeless dialogs | |
90 | wxWindowList wxModelessWindows; | |
91 | ||
b225f659 VZ |
92 | // the name of the default wxWindows class |
93 | extern const wxChar *wxCanvasClassName; | |
94 | ||
2b5f62a0 VZ |
95 | // ---------------------------------------------------------------------------- |
96 | // wxTLWHiddenParentModule: used to manage the hidden parent window (we need a | |
97 | // module to ensure that the window is always deleted) | |
98 | // ---------------------------------------------------------------------------- | |
99 | ||
100 | class wxTLWHiddenParentModule : public wxModule | |
101 | { | |
102 | public: | |
103 | // module init/finalize | |
104 | virtual bool OnInit(); | |
105 | virtual void OnExit(); | |
106 | ||
107 | // get the hidden window (creates on demand) | |
108 | static HWND GetHWND(); | |
109 | ||
110 | private: | |
111 | // the HWND of the hidden parent | |
112 | static HWND ms_hwnd; | |
113 | ||
114 | // the class used to create it | |
115 | static const wxChar *ms_className; | |
116 | ||
117 | DECLARE_DYNAMIC_CLASS(wxTLWHiddenParentModule) | |
118 | }; | |
119 | ||
120 | IMPLEMENT_DYNAMIC_CLASS(wxTLWHiddenParentModule, wxModule) | |
9dfef5ac | 121 | |
82c9f85c VZ |
122 | // ============================================================================ |
123 | // wxTopLevelWindowMSW implementation | |
124 | // ============================================================================ | |
125 | ||
085ad686 VZ |
126 | BEGIN_EVENT_TABLE(wxTopLevelWindowMSW, wxTopLevelWindowBase) |
127 | EVT_ACTIVATE(wxTopLevelWindowMSW::OnActivate) | |
128 | END_EVENT_TABLE() | |
129 | ||
82c9f85c VZ |
130 | // ---------------------------------------------------------------------------- |
131 | // wxTopLevelWindowMSW creation | |
132 | // ---------------------------------------------------------------------------- | |
133 | ||
134 | void wxTopLevelWindowMSW::Init() | |
135 | { | |
136 | m_iconized = | |
137 | m_maximizeOnShow = FALSE; | |
b225f659 VZ |
138 | |
139 | // unlike (almost?) all other windows, frames are created hidden | |
140 | m_isShown = FALSE; | |
c641b1d2 VS |
141 | |
142 | // Data to save/restore when calling ShowFullScreen | |
143 | m_fsStyle = 0; | |
144 | m_fsOldWindowStyle = 0; | |
145 | m_fsIsMaximized = FALSE; | |
146 | m_fsIsShowing = FALSE; | |
085ad686 VZ |
147 | |
148 | m_winLastFocused = (wxWindow *)NULL; | |
b225f659 VZ |
149 | } |
150 | ||
b2d5a7ee | 151 | WXDWORD wxTopLevelWindowMSW::MSWGetStyle(long style, WXDWORD *exflags) const |
b225f659 | 152 | { |
b2d5a7ee VZ |
153 | // let the base class deal with the common styles but fix the ones which |
154 | // don't make sense for us (we also deal with the borders ourselves) | |
155 | WXDWORD msflags = wxWindow::MSWGetStyle | |
156 | ( | |
157 | (style & ~wxBORDER_MASK) | wxBORDER_NONE, exflags | |
31e7e89f | 158 | ) & ~WS_CHILD & ~WS_VISIBLE; |
b225f659 VZ |
159 | |
160 | // first select the kind of window being created | |
dfb06c62 VZ |
161 | // |
162 | // note that if we don't set WS_POPUP, Windows assumes WS_OVERLAPPED and | |
163 | // creates a window with both caption and border, hence we also test it | |
164 | // below in some other cases | |
0e082993 | 165 | if ( style & wxFRAME_TOOL_WINDOW ) |
b2d5a7ee | 166 | msflags |= WS_POPUP; |
b225f659 | 167 | else |
39d2f9a7 JS |
168 | { |
169 | #ifdef __WXWINCE__ | |
170 | if (msflags & WS_BORDER) | |
171 | #endif | |
172 | msflags |= WS_OVERLAPPED; | |
173 | } | |
0e082993 VZ |
174 | |
175 | // border and caption styles | |
176 | if ( style & wxRESIZE_BORDER ) | |
4676948b JS |
177 | { |
178 | #ifndef __WXWINCE__ | |
0e082993 | 179 | msflags |= WS_THICKFRAME; |
4676948b JS |
180 | #endif |
181 | } | |
f8d56830 JS |
182 | else if ( exflags && ((style & wxBORDER_DOUBLE) || (style & wxBORDER_RAISED)) ) |
183 | *exflags |= WS_EX_DLGMODALFRAME; | |
0e082993 VZ |
184 | else if ( !(style & wxBORDER_NONE) ) |
185 | msflags |= WS_BORDER; | |
39d2f9a7 | 186 | #ifndef __WXWINCE__ |
dfb06c62 VZ |
187 | else |
188 | msflags |= WS_POPUP; | |
39d2f9a7 | 189 | #endif |
0e082993 VZ |
190 | |
191 | if ( style & wxCAPTION ) | |
192 | msflags |= WS_CAPTION; | |
39d2f9a7 | 193 | #ifndef __WXWINCE__ |
dfb06c62 | 194 | else |
b225f659 | 195 | msflags |= WS_POPUP; |
39d2f9a7 | 196 | #endif |
b225f659 VZ |
197 | |
198 | // next translate the individual flags | |
199 | if ( style & wxMINIMIZE_BOX ) | |
200 | msflags |= WS_MINIMIZEBOX; | |
201 | if ( style & wxMAXIMIZE_BOX ) | |
202 | msflags |= WS_MAXIMIZEBOX; | |
b225f659 VZ |
203 | if ( style & wxSYSTEM_MENU ) |
204 | msflags |= WS_SYSMENU; | |
4676948b | 205 | #ifndef __WXWINCE__ |
b225f659 VZ |
206 | if ( style & wxMINIMIZE ) |
207 | msflags |= WS_MINIMIZE; | |
208 | if ( style & wxMAXIMIZE ) | |
209 | msflags |= WS_MAXIMIZE; | |
4676948b | 210 | #endif |
0e082993 | 211 | |
b225f659 VZ |
212 | // Keep this here because it saves recoding this function in wxTinyFrame |
213 | #if wxUSE_ITSY_BITSY && !defined(__WIN32__) | |
214 | if ( style & wxTINY_CAPTION_VERT ) | |
215 | msflags |= IBS_VERTCAPTION; | |
216 | if ( style & wxTINY_CAPTION_HORIZ ) | |
217 | msflags |= IBS_HORZCAPTION; | |
218 | #else | |
219 | if ( style & (wxTINY_CAPTION_VERT | wxTINY_CAPTION_HORIZ) ) | |
220 | msflags |= WS_CAPTION; | |
221 | #endif | |
222 | ||
223 | if ( exflags ) | |
224 | { | |
f8d56830 | 225 | #if !defined(__WIN16__) |
35bf863b VZ |
226 | if ( !(GetExtraStyle() & wxTOPLEVEL_EX_DIALOG) ) |
227 | { | |
9dfef5ac VZ |
228 | if ( style & wxFRAME_TOOL_WINDOW ) |
229 | { | |
230 | // create the palette-like window | |
35bf863b | 231 | *exflags |= WS_EX_TOOLWINDOW; |
404a4d93 VZ |
232 | |
233 | // tool windows shouldn't appear on the taskbar (as documented) | |
234 | style |= wxFRAME_NO_TASKBAR; | |
9dfef5ac VZ |
235 | } |
236 | ||
237 | // We have to solve 2 different problems here: | |
238 | // | |
239 | // 1. frames with wxFRAME_NO_TASKBAR flag shouldn't appear in the | |
240 | // taskbar even if they don't have a parent | |
241 | // | |
242 | // 2. frames without this style should appear in the taskbar even | |
243 | // if they're owned (Windows only puts non owned windows into | |
244 | // the taskbar normally) | |
245 | // | |
246 | // The second one is solved here by using WS_EX_APPWINDOW flag, the | |
247 | // first one is dealt with in our MSWGetParent() method | |
248 | // implementation | |
4676948b | 249 | #ifndef __WXWINCE__ |
9dfef5ac VZ |
250 | if ( !(style & wxFRAME_NO_TASKBAR) && GetParent() ) |
251 | { | |
252 | // need to force the frame to appear in the taskbar | |
35bf863b | 253 | *exflags |= WS_EX_APPWINDOW; |
9dfef5ac | 254 | } |
4676948b | 255 | #endif |
9dfef5ac | 256 | //else: nothing to do [here] |
35bf863b VZ |
257 | } |
258 | #endif // !Win16 | |
b225f659 VZ |
259 | |
260 | if ( style & wxSTAY_ON_TOP ) | |
261 | *exflags |= WS_EX_TOPMOST; | |
262 | ||
263 | #ifdef __WIN32__ | |
b2d5a7ee | 264 | if ( GetExtraStyle() & wxFRAME_EX_CONTEXTHELP ) |
68d02db3 | 265 | *exflags |= WS_EX_CONTEXTHELP; |
b225f659 VZ |
266 | #endif // __WIN32__ |
267 | } | |
268 | ||
269 | return msflags; | |
270 | } | |
271 | ||
9dfef5ac VZ |
272 | WXHWND wxTopLevelWindowMSW::MSWGetParent() const |
273 | { | |
274 | // for the frames without wxFRAME_FLOAT_ON_PARENT style we should use NULL | |
275 | // parent HWND or it would be always on top of its parent which is not what | |
276 | // we usually want (in fact, we only want it for frames with the | |
277 | // wxFRAME_FLOAT_ON_PARENT flag) | |
2b5f62a0 | 278 | HWND hwndParent = NULL; |
9dfef5ac VZ |
279 | if ( HasFlag(wxFRAME_FLOAT_ON_PARENT) ) |
280 | { | |
2b5f62a0 | 281 | const wxWindow *parent = GetParent(); |
9dfef5ac | 282 | |
2b5f62a0 VZ |
283 | if ( !parent ) |
284 | { | |
285 | // this flag doesn't make sense then and will be ignored | |
286 | wxFAIL_MSG( _T("wxFRAME_FLOAT_ON_PARENT but no parent?") ); | |
287 | } | |
288 | else | |
289 | { | |
290 | hwndParent = GetHwndOf(parent); | |
291 | } | |
9dfef5ac | 292 | } |
2b5f62a0 | 293 | //else: don't float on parent, must not be owned |
9dfef5ac VZ |
294 | |
295 | // now deal with the 2nd taskbar-related problem (see comments above in | |
296 | // MSWGetStyle()) | |
2b5f62a0 | 297 | if ( HasFlag(wxFRAME_NO_TASKBAR) && !hwndParent ) |
9dfef5ac | 298 | { |
2b5f62a0 VZ |
299 | // use hidden parent |
300 | hwndParent = wxTLWHiddenParentModule::GetHWND(); | |
9dfef5ac VZ |
301 | } |
302 | ||
2b5f62a0 | 303 | return (WXHWND)hwndParent; |
9dfef5ac VZ |
304 | } |
305 | ||
6e8515a3 | 306 | bool wxTopLevelWindowMSW::CreateDialog(const void *dlgTemplate, |
b225f659 VZ |
307 | const wxString& title, |
308 | const wxPoint& pos, | |
309 | const wxSize& size) | |
310 | { | |
311 | #ifdef __WXMICROWIN__ | |
312 | // no dialogs support under MicroWin yet | |
313 | return CreateFrame(title, pos, size); | |
314 | #else // !__WXMICROWIN__ | |
315 | wxWindow *parent = GetParent(); | |
316 | ||
317 | // for the dialogs without wxDIALOG_NO_PARENT style, use the top level | |
318 | // app window as parent - this avoids creating modal dialogs without | |
319 | // parent | |
320 | if ( !parent && !(GetWindowStyleFlag() & wxDIALOG_NO_PARENT) ) | |
321 | { | |
322 | parent = wxTheApp->GetTopWindow(); | |
e058b98d | 323 | |
39cc7a0b | 324 | if ( parent ) |
e058b98d | 325 | { |
39cc7a0b VZ |
326 | // don't use transient windows as parents, this is dangerous as it |
327 | // can lead to a crash if the parent is destroyed before the child | |
328 | // | |
329 | // also don't use the window which is currently hidden as then the | |
330 | // dialog would be hidden as well | |
331 | if ( (parent->GetExtraStyle() & wxWS_EX_TRANSIENT) || | |
332 | !parent->IsShown() ) | |
333 | { | |
334 | parent = NULL; | |
335 | } | |
e058b98d | 336 | } |
b225f659 VZ |
337 | } |
338 | ||
434005ca VZ |
339 | m_hWnd = (WXHWND)::CreateDialogIndirect |
340 | ( | |
341 | wxGetInstance(), | |
342 | (DLGTEMPLATE*)dlgTemplate, | |
343 | parent ? GetHwndOf(parent) : NULL, | |
344 | (DLGPROC)wxDlgProc | |
345 | ); | |
b225f659 VZ |
346 | |
347 | if ( !m_hWnd ) | |
348 | { | |
7e99eddf | 349 | wxFAIL_MSG(wxT("Failed to create dialog. Incorrect DLGTEMPLATE?")); |
b225f659 | 350 | |
7e99eddf | 351 | wxLogSysError(wxT("Can't create dialog using memory template")); |
b225f659 VZ |
352 | |
353 | return FALSE; | |
354 | } | |
355 | ||
b2d5a7ee | 356 | WXDWORD exflags; |
b225f659 VZ |
357 | (void)MSWGetCreateWindowFlags(&exflags); |
358 | ||
359 | if ( exflags ) | |
360 | { | |
361 | ::SetWindowLong(GetHwnd(), GWL_EXSTYLE, exflags); | |
cef338d3 VZ |
362 | ::SetWindowPos(GetHwnd(), |
363 | exflags & WS_EX_TOPMOST ? HWND_TOPMOST : 0, | |
364 | 0, 0, 0, 0, | |
b225f659 VZ |
365 | SWP_NOSIZE | |
366 | SWP_NOMOVE | | |
cef338d3 | 367 | (exflags & WS_EX_TOPMOST ? 0 : SWP_NOZORDER) | |
b225f659 VZ |
368 | SWP_NOACTIVATE); |
369 | } | |
370 | ||
371 | #if defined(__WIN95__) | |
372 | // For some reason, the system menu is activated when we use the | |
373 | // WS_EX_CONTEXTHELP style, so let's set a reasonable icon | |
374 | if ( exflags & WS_EX_CONTEXTHELP ) | |
375 | { | |
376 | wxFrame *winTop = wxDynamicCast(wxTheApp->GetTopWindow(), wxFrame); | |
377 | if ( winTop ) | |
378 | { | |
379 | wxIcon icon = winTop->GetIcon(); | |
380 | if ( icon.Ok() ) | |
381 | { | |
382 | ::SendMessage(GetHwnd(), WM_SETICON, | |
383 | (WPARAM)TRUE, | |
384 | (LPARAM)GetHiconOf(icon)); | |
385 | } | |
386 | } | |
387 | } | |
388 | #endif // __WIN95__ | |
389 | ||
390 | // move the dialog to its initial position without forcing repainting | |
391 | int x, y, w, h; | |
4c53c743 | 392 | if ( !MSWGetCreateWindowCoords(pos, size, x, y, w, h) ) |
b225f659 | 393 | { |
4c53c743 VZ |
394 | x = |
395 | w = (int)CW_USEDEFAULT; | |
396 | } | |
f04a0744 | 397 | |
4c53c743 VZ |
398 | // we can't use CW_USEDEFAULT here as we're not calling CreateWindow() |
399 | // and passing CW_USEDEFAULT to MoveWindow() results in resizing the | |
400 | // window to (0, 0) size which breaks quite a lot of things, e.g. the | |
401 | // sizer calculation in wxSizer::Fit() | |
402 | if ( w == (int)CW_USEDEFAULT ) | |
403 | { | |
404 | // the exact number doesn't matter, the dialog will be resized | |
405 | // again soon anyhow but it should be big enough to allow | |
406 | // calculation relying on "totalSize - clientSize > 0" work, i.e. | |
407 | // at least greater than the title bar height | |
408 | w = | |
409 | h = 100; | |
410 | } | |
f0adbe0f | 411 | |
4c53c743 VZ |
412 | if ( x == (int)CW_USEDEFAULT ) |
413 | { | |
414 | // centre it on the screen - what else can we do? | |
415 | wxSize sizeDpy = wxGetDisplaySize(); | |
416 | ||
417 | x = (sizeDpy.x - w) / 2; | |
418 | y = (sizeDpy.y - h) / 2; | |
419 | } | |
420 | ||
421 | if ( !::MoveWindow(GetHwnd(), x, y, w, h, FALSE) ) | |
422 | { | |
423 | wxLogLastError(wxT("MoveWindow")); | |
b225f659 | 424 | } |
b225f659 VZ |
425 | |
426 | if ( !title.empty() ) | |
427 | { | |
428 | ::SetWindowText(GetHwnd(), title); | |
429 | } | |
430 | ||
431 | SubclassWin(m_hWnd); | |
432 | ||
433 | return TRUE; | |
434 | #endif // __WXMICROWIN__/!__WXMICROWIN__ | |
435 | } | |
436 | ||
437 | bool wxTopLevelWindowMSW::CreateFrame(const wxString& title, | |
438 | const wxPoint& pos, | |
439 | const wxSize& size) | |
440 | { | |
b2d5a7ee VZ |
441 | WXDWORD exflags; |
442 | WXDWORD flags = MSWGetCreateWindowFlags(&exflags); | |
b225f659 VZ |
443 | |
444 | return MSWCreate(wxCanvasClassName, title, pos, size, flags, exflags); | |
82c9f85c VZ |
445 | } |
446 | ||
447 | bool wxTopLevelWindowMSW::Create(wxWindow *parent, | |
448 | wxWindowID id, | |
449 | const wxString& title, | |
450 | const wxPoint& pos, | |
451 | const wxSize& size, | |
452 | long style, | |
453 | const wxString& name) | |
454 | { | |
999836aa | 455 | bool ret wxDUMMY_INITIALIZE(false); |
9ca4dd06 | 456 | |
82c9f85c VZ |
457 | // init our fields |
458 | Init(); | |
459 | ||
460 | m_windowStyle = style; | |
461 | ||
462 | SetName(name); | |
463 | ||
464 | m_windowId = id == -1 ? NewControlId() : id; | |
465 | ||
466 | wxTopLevelWindows.Append(this); | |
467 | ||
468 | if ( parent ) | |
469 | parent->AddChild(this); | |
470 | ||
b225f659 VZ |
471 | if ( GetExtraStyle() & wxTOPLEVEL_EX_DIALOG ) |
472 | { | |
b225f659 VZ |
473 | // we have different dialog templates to allows creation of dialogs |
474 | // with & without captions under MSWindows, resizeable or not (but a | |
475 | // resizeable dialog always has caption - otherwise it would look too | |
476 | // strange) | |
434005ca VZ |
477 | |
478 | // we need 3 additional WORDs for dialog menu, class and title (as we | |
479 | // don't use DS_SETFONT we don't need the fourth WORD for the font) | |
480 | static const int dlgsize = sizeof(DLGTEMPLATE) + (sizeof(WORD) * 3); | |
481 | DLGTEMPLATE *dlgTemplate = (DLGTEMPLATE *)malloc(dlgsize); | |
482 | memset(dlgTemplate, 0, dlgsize); | |
483 | ||
484 | // these values are arbitrary, they won't be used normally anyhow | |
6e8515a3 JS |
485 | dlgTemplate->x = 34; |
486 | dlgTemplate->y = 22; | |
487 | dlgTemplate->cx = 144; | |
488 | dlgTemplate->cy = 75; | |
489 | ||
434005ca VZ |
490 | // reuse the code in MSWGetStyle() but correct the results slightly for |
491 | // the dialog | |
492 | dlgTemplate->style = MSWGetStyle(style, NULL); | |
493 | ||
494 | // all dialogs are popups | |
495 | dlgTemplate->style |= WS_POPUP; | |
496 | ||
497 | // force 3D-look if necessary, it looks impossibly ugly otherwise | |
498 | if ( style & (wxRESIZE_BORDER | wxCAPTION) ) | |
499 | dlgTemplate->style |= DS_MODALFRAME; | |
b225f659 | 500 | |
9ca4dd06 | 501 | ret = CreateDialog(dlgTemplate, title, pos, size); |
6e8515a3 | 502 | free(dlgTemplate); |
b225f659 VZ |
503 | } |
504 | else // !dialog | |
505 | { | |
9ca4dd06 VS |
506 | ret = CreateFrame(title, pos, size); |
507 | } | |
508 | ||
509 | if ( ret && !(GetWindowStyleFlag() & wxCLOSE_BOX) ) | |
510 | { | |
511 | EnableCloseButton(false); | |
b225f659 | 512 | } |
9ca4dd06 VS |
513 | |
514 | return ret; | |
82c9f85c VZ |
515 | } |
516 | ||
517 | wxTopLevelWindowMSW::~wxTopLevelWindowMSW() | |
518 | { | |
82c9f85c VZ |
519 | if ( wxModelessWindows.Find(this) ) |
520 | wxModelessWindows.DeleteObject(this); | |
521 | ||
d6fb86a8 VZ |
522 | // after destroying an owned window, Windows activates the next top level |
523 | // window in Z order but it may be different from our owner (to reproduce | |
524 | // this simply Alt-TAB to another application and back before closing the | |
525 | // owned frame) whereas we always want to yield activation to our parent | |
526 | if ( HasFlag(wxFRAME_FLOAT_ON_PARENT) ) | |
527 | { | |
528 | wxWindow *parent = GetParent(); | |
529 | if ( parent ) | |
530 | { | |
531 | ::BringWindowToTop(GetHwndOf(parent)); | |
532 | } | |
533 | } | |
82c9f85c VZ |
534 | } |
535 | ||
82c9f85c VZ |
536 | // ---------------------------------------------------------------------------- |
537 | // wxTopLevelWindowMSW showing | |
538 | // ---------------------------------------------------------------------------- | |
539 | ||
540 | void wxTopLevelWindowMSW::DoShowWindow(int nShowCmd) | |
541 | { | |
542 | ::ShowWindow(GetHwnd(), nShowCmd); | |
543 | ||
544 | m_iconized = nShowCmd == SW_MINIMIZE; | |
545 | } | |
546 | ||
547 | bool wxTopLevelWindowMSW::Show(bool show) | |
548 | { | |
549 | // don't use wxWindow version as we want to call DoShowWindow() ourselves | |
550 | if ( !wxWindowBase::Show(show) ) | |
551 | return FALSE; | |
552 | ||
553 | int nShowCmd; | |
554 | if ( show ) | |
555 | { | |
556 | if ( m_maximizeOnShow ) | |
557 | { | |
558 | // show and maximize | |
559 | nShowCmd = SW_MAXIMIZE; | |
560 | ||
561 | m_maximizeOnShow = FALSE; | |
562 | } | |
563 | else // just show | |
564 | { | |
84cff965 JS |
565 | if ( GetWindowStyle() & wxFRAME_TOOL_WINDOW ) |
566 | nShowCmd = SW_SHOWNA; | |
567 | else | |
568 | nShowCmd = SW_SHOW; | |
82c9f85c VZ |
569 | } |
570 | } | |
571 | else // hide | |
572 | { | |
573 | nShowCmd = SW_HIDE; | |
574 | } | |
575 | ||
576 | DoShowWindow(nShowCmd); | |
577 | ||
578 | if ( show ) | |
579 | { | |
580 | ::BringWindowToTop(GetHwnd()); | |
581 | ||
582 | wxActivateEvent event(wxEVT_ACTIVATE, TRUE, m_windowId); | |
583 | event.SetEventObject( this ); | |
584 | GetEventHandler()->ProcessEvent(event); | |
585 | } | |
586 | else // hide | |
587 | { | |
588 | // Try to highlight the correct window (the parent) | |
589 | if ( GetParent() ) | |
590 | { | |
591 | HWND hWndParent = GetHwndOf(GetParent()); | |
592 | if (hWndParent) | |
593 | ::BringWindowToTop(hWndParent); | |
594 | } | |
595 | } | |
596 | ||
597 | return TRUE; | |
598 | } | |
599 | ||
600 | // ---------------------------------------------------------------------------- | |
601 | // wxTopLevelWindowMSW maximize/minimize | |
602 | // ---------------------------------------------------------------------------- | |
603 | ||
604 | void wxTopLevelWindowMSW::Maximize(bool maximize) | |
605 | { | |
606 | if ( IsShown() ) | |
607 | { | |
608 | // just maximize it directly | |
609 | DoShowWindow(maximize ? SW_MAXIMIZE : SW_RESTORE); | |
610 | } | |
611 | else // hidden | |
612 | { | |
613 | // we can't maximize the hidden frame because it shows it as well, so | |
614 | // just remember that we should do it later in this case | |
a0be434e | 615 | m_maximizeOnShow = maximize; |
82c9f85c VZ |
616 | } |
617 | } | |
618 | ||
619 | bool wxTopLevelWindowMSW::IsMaximized() const | |
620 | { | |
4676948b JS |
621 | #ifdef __WXWINCE__ |
622 | return FALSE; | |
623 | #else | |
82c9f85c | 624 | return ::IsZoomed(GetHwnd()) != 0; |
4676948b | 625 | #endif |
82c9f85c VZ |
626 | } |
627 | ||
628 | void wxTopLevelWindowMSW::Iconize(bool iconize) | |
629 | { | |
630 | DoShowWindow(iconize ? SW_MINIMIZE : SW_RESTORE); | |
631 | } | |
632 | ||
633 | bool wxTopLevelWindowMSW::IsIconized() const | |
634 | { | |
4676948b JS |
635 | #ifdef __WXWINCE__ |
636 | return FALSE; | |
637 | #else | |
82c9f85c VZ |
638 | // also update the current state |
639 | ((wxTopLevelWindowMSW *)this)->m_iconized = ::IsIconic(GetHwnd()) != 0; | |
640 | ||
641 | return m_iconized; | |
4676948b | 642 | #endif |
82c9f85c VZ |
643 | } |
644 | ||
645 | void wxTopLevelWindowMSW::Restore() | |
646 | { | |
647 | DoShowWindow(SW_RESTORE); | |
648 | } | |
649 | ||
c641b1d2 VS |
650 | // ---------------------------------------------------------------------------- |
651 | // wxTopLevelWindowMSW fullscreen | |
652 | // ---------------------------------------------------------------------------- | |
653 | ||
654 | bool wxTopLevelWindowMSW::ShowFullScreen(bool show, long style) | |
655 | { | |
716645d3 | 656 | if ( show == IsFullScreen() ) |
c641b1d2 | 657 | { |
716645d3 VZ |
658 | // nothing to do |
659 | return TRUE; | |
660 | } | |
661 | ||
662 | m_fsIsShowing = show; | |
c641b1d2 | 663 | |
716645d3 VZ |
664 | if ( show ) |
665 | { | |
c641b1d2 VS |
666 | m_fsStyle = style; |
667 | ||
668 | // zap the frame borders | |
669 | ||
670 | // save the 'normal' window style | |
716645d3 | 671 | m_fsOldWindowStyle = GetWindowLong(GetHwnd(), GWL_STYLE); |
c641b1d2 VS |
672 | |
673 | // save the old position, width & height, maximize state | |
674 | m_fsOldSize = GetRect(); | |
675 | m_fsIsMaximized = IsMaximized(); | |
676 | ||
677 | // decide which window style flags to turn off | |
678 | LONG newStyle = m_fsOldWindowStyle; | |
679 | LONG offFlags = 0; | |
680 | ||
681 | if (style & wxFULLSCREEN_NOBORDER) | |
4676948b JS |
682 | { |
683 | offFlags |= WS_BORDER; | |
684 | #ifndef __WXWINCE__ | |
685 | offFlags |= WS_THICKFRAME; | |
686 | #endif | |
687 | } | |
c641b1d2 | 688 | if (style & wxFULLSCREEN_NOCAPTION) |
716645d3 | 689 | offFlags |= WS_CAPTION | WS_SYSMENU; |
c641b1d2 | 690 | |
716645d3 | 691 | newStyle &= ~offFlags; |
c641b1d2 VS |
692 | |
693 | // change our window style to be compatible with full-screen mode | |
716645d3 | 694 | ::SetWindowLong(GetHwnd(), GWL_STYLE, newStyle); |
c641b1d2 | 695 | |
716645d3 VZ |
696 | wxRect rect; |
697 | #if wxUSE_DISPLAY | |
698 | // resize to the size of the display containing us | |
699 | int dpy = wxDisplay::GetFromWindow(this); | |
700 | if ( dpy != wxNOT_FOUND ) | |
701 | { | |
702 | rect = wxDisplay(dpy).GetGeometry(); | |
703 | } | |
704 | else // fall back to the main desktop | |
705 | #else // wxUSE_DISPLAY | |
706 | { | |
707 | // resize to the size of the desktop | |
708 | wxCopyRECTToRect(wxGetWindowRect(::GetDesktopWindow()), rect); | |
80a81a12 JS |
709 | #ifdef __WXWINCE__ |
710 | // FIXME: size of the bottom menu (toolbar) | |
711 | // should be taken in account | |
712 | rect.height += rect.y; | |
713 | rect.y = 0; | |
4676948b | 714 | #endif |
716645d3 VZ |
715 | } |
716 | #endif // wxUSE_DISPLAY | |
c641b1d2 | 717 | |
716645d3 | 718 | SetSize(rect); |
c641b1d2 VS |
719 | |
720 | // now flush the window style cache and actually go full-screen | |
716645d3 | 721 | long flags = SWP_FRAMECHANGED; |
c641b1d2 | 722 | |
716645d3 VZ |
723 | // showing the frame full screen should also show it if it's still |
724 | // hidden | |
725 | if ( !IsShown() ) | |
726 | { | |
727 | // don't call wxWindow version to avoid flicker from calling | |
728 | // ::ShowWindow() -- we're going to show the window at the correct | |
729 | // location directly below -- but do call the wxWindowBase version | |
730 | // to sync the internal m_isShown flag | |
731 | wxWindowBase::Show(); | |
c641b1d2 | 732 | |
716645d3 VZ |
733 | flags |= SWP_SHOWWINDOW; |
734 | } | |
c641b1d2 | 735 | |
716645d3 VZ |
736 | SetWindowPos(GetHwnd(), HWND_TOP, |
737 | rect.x, rect.y, rect.width, rect.height, | |
738 | flags); | |
c641b1d2 | 739 | |
80a81a12 JS |
740 | #ifdef __WXWINCE__ |
741 | ::SHFullScreen(GetHwnd(), SHFS_HIDETASKBAR | SHFS_HIDESIPBUTTON); | |
742 | #endif | |
743 | ||
716645d3 VZ |
744 | // finally send an event allowing the window to relayout itself &c |
745 | wxSizeEvent event(rect.GetSize(), GetId()); | |
746 | GetEventHandler()->ProcessEvent(event); | |
747 | } | |
748 | else // stop showing full screen | |
749 | { | |
80a81a12 JS |
750 | #ifdef __WXWINCE__ |
751 | ::SHFullScreen(GetHwnd(), SHFS_SHOWTASKBAR | SHFS_SHOWSIPBUTTON); | |
752 | #endif | |
c641b1d2 | 753 | Maximize(m_fsIsMaximized); |
716645d3 VZ |
754 | SetWindowLong(GetHwnd(),GWL_STYLE, m_fsOldWindowStyle); |
755 | SetWindowPos(GetHwnd(),HWND_TOP,m_fsOldSize.x, m_fsOldSize.y, | |
c641b1d2 | 756 | m_fsOldSize.width, m_fsOldSize.height, SWP_FRAMECHANGED); |
c641b1d2 | 757 | } |
716645d3 VZ |
758 | |
759 | return TRUE; | |
c641b1d2 VS |
760 | } |
761 | ||
82c9f85c VZ |
762 | // ---------------------------------------------------------------------------- |
763 | // wxTopLevelWindowMSW misc | |
764 | // ---------------------------------------------------------------------------- | |
765 | ||
766 | void wxTopLevelWindowMSW::SetIcon(const wxIcon& icon) | |
767 | { | |
f618020a MB |
768 | SetIcons( wxIconBundle( icon ) ); |
769 | } | |
770 | ||
771 | void wxTopLevelWindowMSW::SetIcons(const wxIconBundle& icons) | |
772 | { | |
773 | wxTopLevelWindowBase::SetIcons(icons); | |
82c9f85c VZ |
774 | |
775 | #if defined(__WIN95__) && !defined(__WXMICROWIN__) | |
f618020a MB |
776 | const wxIcon& sml = icons.GetIcon( wxSize( 16, 16 ) ); |
777 | if( sml.Ok() && sml.GetWidth() == 16 && sml.GetHeight() == 16 ) | |
778 | { | |
779 | ::SendMessage( GetHwndOf( this ), WM_SETICON, ICON_SMALL, | |
780 | (LPARAM)GetHiconOf(sml) ); | |
781 | } | |
782 | ||
783 | const wxIcon& big = icons.GetIcon( wxSize( 32, 32 ) ); | |
784 | if( big.Ok() && big.GetWidth() == 32 && big.GetHeight() == 32 ) | |
82c9f85c | 785 | { |
f618020a MB |
786 | ::SendMessage( GetHwndOf( this ), WM_SETICON, ICON_BIG, |
787 | (LPARAM)GetHiconOf(big) ); | |
82c9f85c VZ |
788 | } |
789 | #endif // __WIN95__ | |
790 | } | |
a91cf80c VZ |
791 | |
792 | bool wxTopLevelWindowMSW::EnableCloseButton(bool enable) | |
793 | { | |
4676948b | 794 | #if !defined(__WXMICROWIN__) |
a91cf80c | 795 | // get system (a.k.a. window) menu |
4676948b | 796 | HMENU hmenu = GetSystemMenu(GetHwnd(), FALSE /* get it */); |
a91cf80c VZ |
797 | if ( !hmenu ) |
798 | { | |
660b1906 VZ |
799 | // no system menu at all -- ok if we want to remove the close button |
800 | // anyhow, but bad if we want to show it | |
801 | return !enable; | |
a91cf80c VZ |
802 | } |
803 | ||
804 | // enabling/disabling the close item from it also automatically | |
805 | // disables/enables the close title bar button | |
aaf765a5 VZ |
806 | if ( ::EnableMenuItem(hmenu, SC_CLOSE, |
807 | MF_BYCOMMAND | | |
808 | (enable ? MF_ENABLED : MF_GRAYED)) == -1 ) | |
a91cf80c VZ |
809 | { |
810 | wxLogLastError(_T("EnableMenuItem(SC_CLOSE)")); | |
811 | ||
812 | return FALSE; | |
813 | } | |
814 | ||
815 | // update appearance immediately | |
816 | if ( !::DrawMenuBar(GetHwnd()) ) | |
817 | { | |
818 | wxLogLastError(_T("DrawMenuBar")); | |
819 | } | |
820 | #endif // !__WXMICROWIN__ | |
821 | ||
822 | return TRUE; | |
823 | } | |
824 | ||
1542ea39 RD |
825 | bool wxTopLevelWindowMSW::SetShape(const wxRegion& region) |
826 | { | |
4676948b JS |
827 | #ifdef __WXWINCE__ |
828 | return FALSE; | |
829 | #else | |
6a7e6411 RD |
830 | wxCHECK_MSG( HasFlag(wxFRAME_SHAPED), FALSE, |
831 | _T("Shaped windows must be created with the wxFRAME_SHAPED style.")); | |
832 | ||
1542ea39 RD |
833 | // The empty region signifies that the shape should be removed from the |
834 | // window. | |
835 | if ( region.IsEmpty() ) | |
836 | { | |
837 | if (::SetWindowRgn(GetHwnd(), NULL, TRUE) == 0) | |
838 | { | |
839 | wxLogLastError(_T("SetWindowRgn")); | |
840 | return FALSE; | |
841 | } | |
842 | return TRUE; | |
843 | } | |
844 | ||
845 | // Windows takes ownership of the region, so | |
846 | // we'll have to make a copy of the region to give to it. | |
847 | DWORD noBytes = ::GetRegionData(GetHrgnOf(region), 0, NULL); | |
848 | RGNDATA *rgnData = (RGNDATA*) new char[noBytes]; | |
849 | ::GetRegionData(GetHrgnOf(region), noBytes, rgnData); | |
850 | HRGN hrgn = ::ExtCreateRegion(NULL, noBytes, rgnData); | |
851 | delete[] (char*) rgnData; | |
852 | ||
853 | // SetWindowRgn expects the region to be in coordinants | |
854 | // relative to the window, not the client area. Figure | |
855 | // out the offset, if any. | |
856 | RECT rect; | |
857 | DWORD dwStyle = ::GetWindowLong(GetHwnd(), GWL_STYLE); | |
858 | DWORD dwExStyle = ::GetWindowLong(GetHwnd(), GWL_EXSTYLE); | |
859 | ::GetClientRect(GetHwnd(), &rect); | |
860 | ::AdjustWindowRectEx(&rect, dwStyle, FALSE, dwExStyle); | |
861 | ::OffsetRgn(hrgn, -rect.left, -rect.top); | |
862 | ||
863 | // Now call the shape API with the new region. | |
864 | if (::SetWindowRgn(GetHwnd(), hrgn, TRUE) == 0) | |
865 | { | |
866 | wxLogLastError(_T("SetWindowRgn")); | |
867 | return FALSE; | |
868 | } | |
869 | return TRUE; | |
4676948b | 870 | #endif |
1542ea39 RD |
871 | } |
872 | ||
085ad686 VZ |
873 | // ---------------------------------------------------------------------------- |
874 | // wxTopLevelWindow event handling | |
875 | // ---------------------------------------------------------------------------- | |
876 | ||
877 | // Default activation behaviour - set the focus for the first child | |
878 | // subwindow found. | |
879 | void wxTopLevelWindowMSW::OnActivate(wxActivateEvent& event) | |
880 | { | |
881 | if ( event.GetActive() ) | |
882 | { | |
2736a5de VZ |
883 | // restore focus to the child which was last focused unless we already |
884 | // have it | |
885 | wxLogTrace(_T("focus"), _T("wxTLW %08x activated."), (int) m_hWnd); | |
085ad686 | 886 | |
2736a5de VZ |
887 | wxWindow *winFocus = FindFocus(); |
888 | if ( !winFocus || wxGetTopLevelParent(winFocus) != this ) | |
085ad686 | 889 | { |
2736a5de VZ |
890 | wxWindow *parent = m_winLastFocused ? m_winLastFocused->GetParent() |
891 | : NULL; | |
892 | if ( !parent ) | |
893 | { | |
894 | parent = this; | |
895 | } | |
085ad686 | 896 | |
2736a5de VZ |
897 | wxSetFocusToChild(parent, &m_winLastFocused); |
898 | } | |
085ad686 VZ |
899 | } |
900 | else // deactivating | |
901 | { | |
902 | // remember the last focused child if it is our child | |
903 | m_winLastFocused = FindFocus(); | |
904 | ||
13834828 VZ |
905 | if ( m_winLastFocused ) |
906 | { | |
907 | // let it know that it doesn't have focus any more | |
77e00fe9 | 908 | m_winLastFocused->HandleKillFocus((WXHWND)NULL); |
13834828 | 909 | |
2736a5de VZ |
910 | // and don't remember it if it's a child from some other frame |
911 | if ( wxGetTopLevelParent(m_winLastFocused) != this ) | |
085ad686 | 912 | { |
2736a5de | 913 | m_winLastFocused = NULL; |
085ad686 | 914 | } |
085ad686 VZ |
915 | } |
916 | ||
917 | wxLogTrace(_T("focus"), | |
918 | _T("wxTLW %08x deactivated, last focused: %08x."), | |
9b601c24 GRG |
919 | (int) m_hWnd, |
920 | (int) (m_winLastFocused ? GetHwndOf(m_winLastFocused) | |
921 | : NULL)); | |
085ad686 VZ |
922 | |
923 | event.Skip(); | |
924 | } | |
925 | } | |
926 | ||
12447831 VZ |
927 | // the DialogProc for all wxWindows dialogs |
928 | LONG APIENTRY _EXPORT | |
2eb10e2a VZ |
929 | wxDlgProc(HWND WXUNUSED(hDlg), |
930 | UINT message, | |
931 | WPARAM WXUNUSED(wParam), | |
932 | LPARAM WXUNUSED(lParam)) | |
12447831 VZ |
933 | { |
934 | switch ( message ) | |
935 | { | |
936 | case WM_INITDIALOG: | |
937 | // for this message, returning TRUE tells system to set focus to | |
938 | // the first control in the dialog box, but as we set the focus | |
939 | // ourselves, we return FALSE from here as well, so fall through | |
940 | ||
941 | default: | |
942 | // for all the other ones, FALSE means that we didn't process the | |
943 | // message | |
944 | return FALSE; | |
945 | } | |
946 | } | |
947 | ||
2b5f62a0 VZ |
948 | // ============================================================================ |
949 | // wxTLWHiddenParentModule implementation | |
950 | // ============================================================================ | |
951 | ||
952 | HWND wxTLWHiddenParentModule::ms_hwnd = NULL; | |
953 | ||
954 | const wxChar *wxTLWHiddenParentModule::ms_className = NULL; | |
955 | ||
956 | bool wxTLWHiddenParentModule::OnInit() | |
957 | { | |
958 | ms_hwnd = NULL; | |
959 | ms_className = NULL; | |
960 | ||
961 | return TRUE; | |
962 | } | |
963 | ||
964 | void wxTLWHiddenParentModule::OnExit() | |
965 | { | |
966 | if ( ms_hwnd ) | |
967 | { | |
968 | if ( !::DestroyWindow(ms_hwnd) ) | |
969 | { | |
970 | wxLogLastError(_T("DestroyWindow(hidden TLW parent)")); | |
971 | } | |
972 | ||
973 | ms_hwnd = NULL; | |
974 | } | |
975 | ||
976 | if ( ms_className ) | |
977 | { | |
978 | if ( !::UnregisterClass(ms_className, wxGetInstance()) ) | |
979 | { | |
980 | wxLogLastError(_T("UnregisterClass(\"wxTLWHiddenParent\")")); | |
981 | } | |
982 | ||
983 | ms_className = NULL; | |
984 | } | |
985 | } | |
986 | ||
987 | /* static */ | |
988 | HWND wxTLWHiddenParentModule::GetHWND() | |
989 | { | |
990 | if ( !ms_hwnd ) | |
991 | { | |
992 | if ( !ms_className ) | |
993 | { | |
994 | static const wxChar *HIDDEN_PARENT_CLASS = _T("wxTLWHiddenParent"); | |
995 | ||
996 | WNDCLASS wndclass; | |
997 | wxZeroMemory(wndclass); | |
998 | ||
999 | wndclass.lpfnWndProc = DefWindowProc; | |
1000 | wndclass.hInstance = wxGetInstance(); | |
1001 | wndclass.lpszClassName = HIDDEN_PARENT_CLASS; | |
1002 | ||
1003 | if ( !::RegisterClass(&wndclass) ) | |
1004 | { | |
1005 | wxLogLastError(_T("RegisterClass(\"wxTLWHiddenParent\")")); | |
1006 | } | |
1007 | else | |
1008 | { | |
1009 | ms_className = HIDDEN_PARENT_CLASS; | |
1010 | } | |
1011 | } | |
1012 | ||
fda7962d | 1013 | ms_hwnd = ::CreateWindow(ms_className, wxEmptyString, 0, 0, 0, 0, 0, NULL, |
2b5f62a0 VZ |
1014 | (HMENU)NULL, wxGetInstance(), NULL); |
1015 | if ( !ms_hwnd ) | |
1016 | { | |
1017 | wxLogLastError(_T("CreateWindow(hidden TLW parent)")); | |
1018 | } | |
1019 | } | |
1020 | ||
1021 | return ms_hwnd; | |
1022 | } | |
1023 | ||
1542ea39 | 1024 |