]> git.saurik.com Git - wxWidgets.git/blame - src/msw/toplevel.cpp
Fix display of empty wxStaticBoxSizers.
[wxWidgets.git] / src / msw / toplevel.cpp
CommitLineData
82c9f85c 1///////////////////////////////////////////////////////////////////////////////
faa49bfd 2// Name: src/msw/toplevel.cpp
82c9f85c
VZ
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)
526954c5 9// Licence: wxWindows licence
82c9f85c
VZ
10///////////////////////////////////////////////////////////////////////////////
11
12// ============================================================================
13// declarations
14// ============================================================================
15
16// ----------------------------------------------------------------------------
17// headers
18// ----------------------------------------------------------------------------
19
82c9f85c
VZ
20// For compilers that support precompilation, includes "wx.h".
21#include "wx/wxprec.h"
22
23#ifdef __BORLANDC__
24 #pragma hdrstop
25#endif
26
1832043f
WS
27#include "wx/toplevel.h"
28
82c9f85c 29#ifndef WX_PRECOMP
3a922bb4 30 #include "wx/app.h"
28b68852 31 #include "wx/dialog.h"
82c9f85c
VZ
32 #include "wx/string.h"
33 #include "wx/log.h"
34 #include "wx/intl.h"
14dd645e 35 #include "wx/frame.h"
04f1f9b7 36 #include "wx/menu.h"
706d74ab 37 #include "wx/containr.h" // wxSetFocusToChild()
02761f6c 38 #include "wx/module.h"
82c9f85c
VZ
39#endif //WX_PRECOMP
40
dc92adaf 41#include "wx/dynlib.h"
2b5f62a0 42
82c9f85c 43#include "wx/msw/private.h"
3d487566 44#if defined(__WXWINCE__) && !defined(__HANDHELDPC__)
02761f6c
WS
45 #include <ole2.h>
46 #include <shellapi.h>
47 // Standard SDK doesn't have aygshell.dll: see include/wx/msw/wince/libraries.h
48 #if _WIN32_WCE < 400 || !defined(__WINCE_STANDARDSDK__)
49 #include <aygshell.h>
50 #endif
80a81a12
JS
51#endif
52
4676948b 53#include "wx/msw/winundef.h"
a6c2e2c7 54#include "wx/msw/missing.h"
4676948b 55
716645d3 56#include "wx/display.h"
7e25f59e 57
e121a72a
MB
58#ifndef ICON_BIG
59 #define ICON_BIG 1
60#endif
61
62#ifndef ICON_SMALL
63 #define ICON_SMALL 0
64#endif
65
bceb01f7
VZ
66// FIXME-VC6: Only VC6 doesn't have this in its standard headers so this
67// could be removed once support for it is dropped.
68#ifndef WM_UNINITMENUPOPUP
69 #define WM_UNINITMENUPOPUP 0x0125
70#endif
71
95316a3f
VZ
72// ----------------------------------------------------------------------------
73// globals
74// ----------------------------------------------------------------------------
75
76#if wxUSE_MENUS || wxUSE_MENUS_NATIVE
77 extern wxMenu *wxCurrentPopupMenu;
78#endif // wxUSE_MENUS || wxUSE_MENUS_NATIVE
79
80
82c9f85c
VZ
81// ----------------------------------------------------------------------------
82// stubs for missing functions under MicroWindows
83// ----------------------------------------------------------------------------
84
85#ifdef __WXMICROWIN__
86
bfbb0b4c
WS
87// static inline bool IsIconic(HWND WXUNUSED(hwnd)) { return false; }
88static inline bool IsZoomed(HWND WXUNUSED(hwnd)) { return false; }
82c9f85c
VZ
89
90#endif // __WXMICROWIN__
91
12447831
VZ
92// NB: wxDlgProc must be defined here and not in dialog.cpp because the latter
93// is not included by wxUniv build which does need wxDlgProc
61179e28
VZ
94LONG APIENTRY _EXPORT
95wxDlgProc(HWND hDlg, UINT message, WPARAM wParam, LPARAM lParam);
96
2b5f62a0
VZ
97// ----------------------------------------------------------------------------
98// wxTLWHiddenParentModule: used to manage the hidden parent window (we need a
99// module to ensure that the window is always deleted)
100// ----------------------------------------------------------------------------
101
102class wxTLWHiddenParentModule : public wxModule
103{
104public:
105 // module init/finalize
106 virtual bool OnInit();
107 virtual void OnExit();
108
109 // get the hidden window (creates on demand)
110 static HWND GetHWND();
111
112private:
113 // the HWND of the hidden parent
114 static HWND ms_hwnd;
115
116 // the class used to create it
117 static const wxChar *ms_className;
118
119 DECLARE_DYNAMIC_CLASS(wxTLWHiddenParentModule)
120};
121
122IMPLEMENT_DYNAMIC_CLASS(wxTLWHiddenParentModule, wxModule)
9dfef5ac 123
82c9f85c
VZ
124// ============================================================================
125// wxTopLevelWindowMSW implementation
126// ============================================================================
127
085ad686
VZ
128BEGIN_EVENT_TABLE(wxTopLevelWindowMSW, wxTopLevelWindowBase)
129 EVT_ACTIVATE(wxTopLevelWindowMSW::OnActivate)
130END_EVENT_TABLE()
131
82c9f85c
VZ
132// ----------------------------------------------------------------------------
133// wxTopLevelWindowMSW creation
134// ----------------------------------------------------------------------------
135
136void wxTopLevelWindowMSW::Init()
137{
138 m_iconized =
bfbb0b4c 139 m_maximizeOnShow = false;
b225f659 140
c641b1d2
VS
141 // Data to save/restore when calling ShowFullScreen
142 m_fsStyle = 0;
143 m_fsOldWindowStyle = 0;
bfbb0b4c
WS
144 m_fsIsMaximized = false;
145 m_fsIsShowing = false;
085ad686 146
d3b9f782 147 m_winLastFocused = NULL;
fb8a56b7 148
3180bc0e 149#if defined(__SMARTPHONE__) && defined(__WXWINCE__)
fb8a56b7
WS
150 m_MenuBarHWND = 0;
151#endif
08b97268
WS
152
153#if defined(__SMARTPHONE__) || defined(__POCKETPC__)
154 SHACTIVATEINFO* info = new SHACTIVATEINFO;
155 wxZeroMemory(*info);
156 info->cbSize = sizeof(SHACTIVATEINFO);
157
158 m_activateInfo = (void*) info;
159#endif
ddae5262
VZ
160
161 m_menuSystem = NULL;
b225f659
VZ
162}
163
b2d5a7ee 164WXDWORD wxTopLevelWindowMSW::MSWGetStyle(long style, WXDWORD *exflags) const
b225f659 165{
b2d5a7ee
VZ
166 // let the base class deal with the common styles but fix the ones which
167 // don't make sense for us (we also deal with the borders ourselves)
168 WXDWORD msflags = wxWindow::MSWGetStyle
169 (
170 (style & ~wxBORDER_MASK) | wxBORDER_NONE, exflags
31e7e89f 171 ) & ~WS_CHILD & ~WS_VISIBLE;
b225f659 172
aa29eefa
JS
173 // For some reason, WS_VISIBLE needs to be defined on creation for
174 // SmartPhone 2003. The title can fail to be displayed otherwise.
175#if defined(__SMARTPHONE__) || (defined(__WXWINCE__) && _WIN32_WCE < 400)
c1855476 176 msflags |= WS_VISIBLE;
aa29eefa 177 ((wxTopLevelWindowMSW*)this)->wxWindowBase::Show(true);
c1855476
RR
178#endif
179
b225f659 180 // first select the kind of window being created
dfb06c62
VZ
181 //
182 // note that if we don't set WS_POPUP, Windows assumes WS_OVERLAPPED and
0fcd3b92
VZ
183 // creates a window with both caption and border, hence we need to use
184 // WS_POPUP in a few cases just to avoid having caption/border which we
185 // don't want
0e082993
VZ
186
187 // border and caption styles
6f26f98e 188 if ( ( style & wxRESIZE_BORDER ) && !IsAlwaysMaximized())
0e082993 189 msflags |= WS_THICKFRAME;
f8d56830
JS
190 else if ( exflags && ((style & wxBORDER_DOUBLE) || (style & wxBORDER_RAISED)) )
191 *exflags |= WS_EX_DLGMODALFRAME;
0e082993
VZ
192 else if ( !(style & wxBORDER_NONE) )
193 msflags |= WS_BORDER;
9cce2fe2 194#ifndef __POCKETPC__
dfb06c62
VZ
195 else
196 msflags |= WS_POPUP;
82eda5ec 197#endif
0e082993 198
9ceeecb9 199 // normally we consider that all windows without a caption must be popups,
f76858d8
VZ
200 // but CE is an exception: there windows normally do not have the caption
201 // but shouldn't be made popups as popups can't have menus and don't look
202 // like normal windows anyhow
9ceeecb9
JS
203
204 // TODO: Smartphone appears to like wxCAPTION, but we should check that
205 // we need it.
206#if defined(__SMARTPHONE__) || !defined(__WXWINCE__)
0e082993
VZ
207 if ( style & wxCAPTION )
208 msflags |= WS_CAPTION;
f76858d8 209#ifndef __WXWINCE__
dfb06c62 210 else
b225f659 211 msflags |= WS_POPUP;
f76858d8 212#endif // !__WXWINCE__
9ceeecb9 213#endif
e5aa8b81 214
b225f659 215 // next translate the individual flags
dc134969
VZ
216
217 // WS_EX_CONTEXTHELP is incompatible with WS_MINIMIZEBOX and WS_MAXIMIZEBOX
218 // and is ignored if we specify both of them, but chances are that if we
7ce6cc9b 219 // use wxWS_EX_CONTEXTHELP, we really do want to have the context help
dc134969
VZ
220 // button while wxMINIMIZE/wxMAXIMIZE are included by default, so the help
221 // takes precedence
7ce6cc9b 222 if ( !(GetExtraStyle() & wxWS_EX_CONTEXTHELP) )
dc134969
VZ
223 {
224 if ( style & wxMINIMIZE_BOX )
225 msflags |= WS_MINIMIZEBOX;
226 if ( style & wxMAXIMIZE_BOX )
227 msflags |= WS_MAXIMIZEBOX;
228 }
9ceeecb9 229
faa49bfd 230#ifndef __WXWINCE__
2ccc5f11
VZ
231 // notice that if wxCLOSE_BOX is specified we need to use WS_SYSMENU too as
232 // otherwise the close box doesn't appear
233 if ( style & (wxSYSTEM_MENU | wxCLOSE_BOX) )
b225f659 234 msflags |= WS_SYSMENU;
2ccc5f11 235#endif // !__WXWINCE__
2a47cb1b 236
f76858d8
VZ
237 // NB: under CE these 2 styles are not supported currently, we should
238 // call Minimize()/Maximize() "manually" if we want to support them
b225f659
VZ
239 if ( style & wxMINIMIZE )
240 msflags |= WS_MINIMIZE;
9ceeecb9 241
b225f659
VZ
242 if ( style & wxMAXIMIZE )
243 msflags |= WS_MAXIMIZE;
0e082993 244
b225f659 245 // Keep this here because it saves recoding this function in wxTinyFrame
7282b067 246 if ( style & wxTINY_CAPTION )
b225f659 247 msflags |= WS_CAPTION;
82eda5ec 248
b225f659
VZ
249 if ( exflags )
250 {
f76858d8 251 // there is no taskbar under CE, so omit all this
45f27284 252#if !defined(__WXWINCE__)
35bf863b
VZ
253 if ( !(GetExtraStyle() & wxTOPLEVEL_EX_DIALOG) )
254 {
9dfef5ac
VZ
255 if ( style & wxFRAME_TOOL_WINDOW )
256 {
257 // create the palette-like window
35bf863b 258 *exflags |= WS_EX_TOOLWINDOW;
404a4d93
VZ
259
260 // tool windows shouldn't appear on the taskbar (as documented)
261 style |= wxFRAME_NO_TASKBAR;
9dfef5ac
VZ
262 }
263
264 // We have to solve 2 different problems here:
265 //
266 // 1. frames with wxFRAME_NO_TASKBAR flag shouldn't appear in the
267 // taskbar even if they don't have a parent
268 //
269 // 2. frames without this style should appear in the taskbar even
270 // if they're owned (Windows only puts non owned windows into
271 // the taskbar normally)
272 //
273 // The second one is solved here by using WS_EX_APPWINDOW flag, the
274 // first one is dealt with in our MSWGetParent() method
275 // implementation
276 if ( !(style & wxFRAME_NO_TASKBAR) && GetParent() )
277 {
278 // need to force the frame to appear in the taskbar
35bf863b 279 *exflags |= WS_EX_APPWINDOW;
9dfef5ac
VZ
280 }
281 //else: nothing to do [here]
35bf863b 282 }
b554cf63 283
7ce6cc9b 284 if ( GetExtraStyle() & wxWS_EX_CONTEXTHELP )
b554cf63 285 *exflags |= WS_EX_CONTEXTHELP;
f76858d8 286#endif // !__WXWINCE__
b225f659
VZ
287
288 if ( style & wxSTAY_ON_TOP )
289 *exflags |= WS_EX_TOPMOST;
b225f659
VZ
290 }
291
292 return msflags;
293}
294
9dfef5ac
VZ
295WXHWND wxTopLevelWindowMSW::MSWGetParent() const
296{
297 // for the frames without wxFRAME_FLOAT_ON_PARENT style we should use NULL
298 // parent HWND or it would be always on top of its parent which is not what
299 // we usually want (in fact, we only want it for frames with the
300 // wxFRAME_FLOAT_ON_PARENT flag)
2b5f62a0 301 HWND hwndParent = NULL;
9dfef5ac
VZ
302 if ( HasFlag(wxFRAME_FLOAT_ON_PARENT) )
303 {
2b5f62a0 304 const wxWindow *parent = GetParent();
9dfef5ac 305
2b5f62a0
VZ
306 if ( !parent )
307 {
308 // this flag doesn't make sense then and will be ignored
9a83f860 309 wxFAIL_MSG( wxT("wxFRAME_FLOAT_ON_PARENT but no parent?") );
2b5f62a0
VZ
310 }
311 else
312 {
313 hwndParent = GetHwndOf(parent);
314 }
9dfef5ac 315 }
2b5f62a0 316 //else: don't float on parent, must not be owned
9dfef5ac
VZ
317
318 // now deal with the 2nd taskbar-related problem (see comments above in
319 // MSWGetStyle())
2b5f62a0 320 if ( HasFlag(wxFRAME_NO_TASKBAR) && !hwndParent )
9dfef5ac 321 {
2b5f62a0
VZ
322 // use hidden parent
323 hwndParent = wxTLWHiddenParentModule::GetHWND();
9dfef5ac
VZ
324 }
325
2b5f62a0 326 return (WXHWND)hwndParent;
9dfef5ac
VZ
327}
328
b7e5ba8f
JG
329#if defined(__SMARTPHONE__) || defined(__POCKETPC__)
330bool wxTopLevelWindowMSW::HandleSettingChange(WXWPARAM wParam, WXLPARAM lParam)
331{
332 SHACTIVATEINFO *info = (SHACTIVATEINFO*) m_activateInfo;
333 if ( info )
334 {
1272e71b 335 SHHandleWMSettingChange(GetHwnd(), wParam, lParam, info);
b7e5ba8f
JG
336 }
337
1272e71b 338 return wxWindowMSW::HandleSettingChange(wParam, lParam);
b7e5ba8f
JG
339}
340#endif
341
08b97268
WS
342WXLRESULT wxTopLevelWindowMSW::MSWWindowProc(WXUINT message, WXWPARAM wParam, WXLPARAM lParam)
343{
344 WXLRESULT rc = 0;
345 bool processed = false;
346
347 switch ( message )
348 {
ddae5262 349#if defined(__SMARTPHONE__) || defined(__POCKETPC__)
08b97268
WS
350 case WM_ACTIVATE:
351 {
352 SHACTIVATEINFO* info = (SHACTIVATEINFO*) m_activateInfo;
353 if (info)
354 {
355 DWORD flags = 0;
356 if (GetExtraStyle() & wxTOPLEVEL_EX_DIALOG) flags = SHA_INPUTDIALOG;
357 SHHandleWMActivate(GetHwnd(), wParam, lParam, info, flags);
358 }
359
360 // This implicitly sends a wxEVT_ACTIVATE_APP event
361 if (wxTheApp)
362 wxTheApp->SetActive(wParam != 0, FindFocus());
363
364 break;
365 }
08b97268
WS
366 case WM_HIBERNATE:
367 {
368 if (wxTheApp)
369 {
370 wxActivateEvent event(wxEVT_HIBERNATE, true, wxID_ANY);
371 event.SetEventObject(wxTheApp);
372 processed = wxTheApp->ProcessEvent(event);
373 }
374 break;
375 }
ddae5262
VZ
376#endif // __SMARTPHONE__ || __POCKETPC__
377
378 case WM_SYSCOMMAND:
ddae5262
VZ
379 {
380 // From MSDN:
381 //
382 // ... the four low-order bits of the wParam parameter are
383 // used internally by the system. To obtain the correct
384 // result when testing the value of wParam, an application
385 // must combine the value 0xFFF0 with the wParam value by
386 // using the bitwise AND operator.
387 unsigned id = wParam & 0xfff0;
388
0c6dff03
VZ
389 // Preserve the focus when minimizing/restoring the window: we
390 // need to do it manually as DefWindowProc() doesn't appear to
391 // do this for us for some reason (perhaps because we don't use
392 // WM_NEXTDLGCTL for setting focus?). Moreover, our code in
393 // OnActivate() doesn't work in this case as we receive the
394 // deactivation event too late when the window is being
395 // minimized and the focus is already NULL by then. Similarly,
396 // we receive the activation event too early and restoring
397 // focus in it fails because the window is still minimized. So
398 // we need to do it here.
399 if ( id == SC_MINIMIZE )
400 {
401 // For minimization, it's simple enough: just save the
402 // focus as usual. The important thing is that we're not
403 // minimized yet, so this works correctly.
404 DoSaveLastFocus();
405 }
406 else if ( id == SC_RESTORE )
407 {
408 // For restoring, it's trickier as DefWindowProc() sets
409 // focus to the window itself. So run it first and restore
410 // our saved focus only afterwards.
411 processed = true;
412 rc = wxTopLevelWindowBase::MSWWindowProc(message,
413 wParam, lParam);
414
415 DoRestoreLastFocus();
416 }
417
418#ifndef __WXUNIVERSAL__
419 // We need to generate events for the custom items added to the
420 // system menu if it had been created (and presumably modified).
421 // As SC_SIZE is the first of the system-defined commands, we
422 // only do this for the custom commands before it and leave
423 // SC_SIZE and everything after it to DefWindowProc().
424 if ( m_menuSystem && id < SC_SIZE )
ddae5262
VZ
425 {
426 if ( m_menuSystem->MSWCommand(0 /* unused anyhow */, id) )
427 processed = true;
428 }
fe62518e 429#endif // #ifndef __WXUNIVERSAL__
0c6dff03 430 }
ddae5262 431 break;
95316a3f
VZ
432
433#if !defined(__WXMICROWIN__) && !defined(__WXWINCE__)
434#if wxUSE_MENUS
435 case WM_INITMENUPOPUP:
436 processed = HandleMenuPopup(wxEVT_MENU_OPEN, (WXHMENU)wParam);
437 break;
438
439 case WM_MENUSELECT:
440 {
441 WXWORD item, flags;
442 WXHMENU hmenu;
443 UnpackMenuSelect(wParam, lParam, &item, &flags, &hmenu);
444
445 processed = HandleMenuSelect(item, flags, hmenu);
446 }
447 break;
448
449 case WM_EXITMENULOOP:
450 // Under Windows 98 and 2000 and later we're going to get
451 // WM_UNINITMENUPOPUP which will be used to generate this event
452 // with more information (notably the menu that was closed) so we
453 // only need this one under old Windows systems where the newer
454 // event is never sent.
455 if ( wxGetWinVersion() < wxWinVersion_98 )
456 processed = HandleExitMenuLoop(wParam);
457 break;
458
459 case WM_UNINITMENUPOPUP:
460 processed = HandleMenuPopup(wxEVT_MENU_CLOSE, (WXHMENU)wParam);
461 break;
462#endif // wxUSE_MENUS
463#endif // !__WXMICROWIN__
08b97268
WS
464 }
465
466 if ( !processed )
467 rc = wxTopLevelWindowBase::MSWWindowProc(message, wParam, lParam);
468
469 return rc;
470}
471
6e8515a3 472bool wxTopLevelWindowMSW::CreateDialog(const void *dlgTemplate,
b225f659
VZ
473 const wxString& title,
474 const wxPoint& pos,
475 const wxSize& size)
476{
477#ifdef __WXMICROWIN__
478 // no dialogs support under MicroWin yet
479 return CreateFrame(title, pos, size);
480#else // !__WXMICROWIN__
8bda0ec6 481 // static cast is valid as we're only ever called for dialogs
4f73f25c 482 wxWindow * const
cdc48273 483 parent = static_cast<wxDialog *>(this)->GetParentForModalDialog();
b225f659 484
434005ca
VZ
485 m_hWnd = (WXHWND)::CreateDialogIndirect
486 (
487 wxGetInstance(),
488 (DLGTEMPLATE*)dlgTemplate,
489 parent ? GetHwndOf(parent) : NULL,
490 (DLGPROC)wxDlgProc
491 );
b225f659
VZ
492
493 if ( !m_hWnd )
494 {
7e99eddf 495 wxFAIL_MSG(wxT("Failed to create dialog. Incorrect DLGTEMPLATE?"));
b225f659 496
7e99eddf 497 wxLogSysError(wxT("Can't create dialog using memory template"));
b225f659 498
bfbb0b4c 499 return false;
b225f659
VZ
500 }
501
b554cf63 502#if !defined(__WXWINCE__)
b225f659
VZ
503 // For some reason, the system menu is activated when we use the
504 // WS_EX_CONTEXTHELP style, so let's set a reasonable icon
8e5dbcdd 505 if ( HasExtraStyle(wxWS_EX_CONTEXTHELP) )
b225f659
VZ
506 {
507 wxFrame *winTop = wxDynamicCast(wxTheApp->GetTopWindow(), wxFrame);
508 if ( winTop )
509 {
510 wxIcon icon = winTop->GetIcon();
a1b806b9 511 if ( icon.IsOk() )
b225f659
VZ
512 {
513 ::SendMessage(GetHwnd(), WM_SETICON,
514 (WPARAM)TRUE,
515 (LPARAM)GetHiconOf(icon));
516 }
517 }
518 }
8e5dbcdd 519#endif // !__WXWINCE__
b225f659 520
8df14bed
VS
521 if ( !title.empty() )
522 {
017dc06b 523 ::SetWindowText(GetHwnd(), title.t_str());
8df14bed
VS
524 }
525
526 SubclassWin(m_hWnd);
527
5d8d4b66 528#if !defined(__WXWINCE__) || defined(__WINCE_STANDARDSDK__)
b225f659
VZ
529 // move the dialog to its initial position without forcing repainting
530 int x, y, w, h;
72a11184 531 (void)MSWGetCreateWindowCoords(pos, size, x, y, w, h);
4c53c743 532
26268100
RD
533 if ( x == (int)CW_USEDEFAULT )
534 {
5d8d4b66
VZ
535 // Let the system position the window, just set its size.
536 ::SetWindowPos(GetHwnd(), 0,
537 0, 0, w, h,
7cb83a8b 538 SWP_NOMOVE | SWP_NOZORDER | SWP_NOACTIVATE);
26268100 539 }
5d8d4b66 540 else // Move the window to the desired location and set its size too.
4c53c743 541 {
5d8d4b66
VZ
542 if ( !::MoveWindow(GetHwnd(), x, y, w, h, FALSE) )
543 {
544 wxLogLastError(wxT("MoveWindow"));
545 }
b225f659 546 }
5d8d4b66 547#endif // !__WXWINCE__
b225f659 548
aa29eefa
JS
549#ifdef __SMARTPHONE__
550 // Work around title non-display glitch
551 Show(false);
faa49bfd 552#endif
b225f659 553
bfbb0b4c 554 return true;
b225f659
VZ
555#endif // __WXMICROWIN__/!__WXMICROWIN__
556}
557
558bool wxTopLevelWindowMSW::CreateFrame(const wxString& title,
559 const wxPoint& pos,
560 const wxSize& size)
561{
b2d5a7ee
VZ
562 WXDWORD exflags;
563 WXDWORD flags = MSWGetCreateWindowFlags(&exflags);
b225f659 564
6fd54d58 565 const wxSize sz = IsAlwaysMaximized() ? wxDefaultSize : size;
6f26f98e 566
08a58133 567#ifndef __WXWINCE__
978af864
VZ
568 if ( wxTheApp->GetLayoutDirection() == wxLayout_RightToLeft )
569 exflags |= WS_EX_LAYOUTRTL;
08a58133 570#endif
978af864 571
d9698bd4 572 return MSWCreate(MSWGetRegisteredClassName(),
017dc06b 573 title.t_str(), pos, sz, flags, exflags);
82c9f85c
VZ
574}
575
576bool wxTopLevelWindowMSW::Create(wxWindow *parent,
577 wxWindowID id,
578 const wxString& title,
579 const wxPoint& pos,
580 const wxSize& size,
581 long style,
582 const wxString& name)
583{
2a47cb1b
VZ
584 wxSize sizeReal = size;
585 if ( !sizeReal.IsFullySpecified() )
586 {
587 sizeReal.SetDefaults(GetDefaultSize());
588 }
82c9f85c 589
49c26530
VZ
590 // notice that we should append this window to wxTopLevelWindows list
591 // before calling CreateBase() as it behaves differently for TLW and
592 // non-TLW windows
593 wxTopLevelWindows.Append(this);
594
2973301f
VZ
595 bool ret = CreateBase(parent, id, pos, sizeReal, style, name);
596 if ( !ret )
597 return false;
82c9f85c 598
82c9f85c
VZ
599 if ( parent )
600 parent->AddChild(this);
601
b225f659
VZ
602 if ( GetExtraStyle() & wxTOPLEVEL_EX_DIALOG )
603 {
b225f659 604 // we have different dialog templates to allows creation of dialogs
d13b34d3
DS
605 // with & without captions under MSWindows, resizable or not (but a
606 // resizable dialog always has caption - otherwise it would look too
b225f659 607 // strange)
434005ca
VZ
608
609 // we need 3 additional WORDs for dialog menu, class and title (as we
610 // don't use DS_SETFONT we don't need the fourth WORD for the font)
611 static const int dlgsize = sizeof(DLGTEMPLATE) + (sizeof(WORD) * 3);
612 DLGTEMPLATE *dlgTemplate = (DLGTEMPLATE *)malloc(dlgsize);
613 memset(dlgTemplate, 0, dlgsize);
614
615 // these values are arbitrary, they won't be used normally anyhow
6e8515a3
JS
616 dlgTemplate->x = 34;
617 dlgTemplate->y = 22;
618 dlgTemplate->cx = 144;
619 dlgTemplate->cy = 75;
620
434005ca
VZ
621 // reuse the code in MSWGetStyle() but correct the results slightly for
622 // the dialog
99ea81de
VZ
623 //
624 // NB: we need a temporary variable as we can't pass pointer to
625 // dwExtendedStyle directly, it's not aligned correctly for 64 bit
626 // architectures
627 WXDWORD dwExtendedStyle;
628 dlgTemplate->style = MSWGetStyle(style, &dwExtendedStyle);
629 dlgTemplate->dwExtendedStyle = dwExtendedStyle;
434005ca
VZ
630
631 // all dialogs are popups
632 dlgTemplate->style |= WS_POPUP;
08a58133
WS
633
634#ifndef __WXWINCE__
978af864
VZ
635 if ( wxTheApp->GetLayoutDirection() == wxLayout_RightToLeft )
636 {
637 dlgTemplate->dwExtendedStyle |= WS_EX_LAYOUTRTL;
638 }
434005ca
VZ
639
640 // force 3D-look if necessary, it looks impossibly ugly otherwise
641 if ( style & (wxRESIZE_BORDER | wxCAPTION) )
642 dlgTemplate->style |= DS_MODALFRAME;
9cce2fe2 643#endif
b225f659 644
2a47cb1b 645 ret = CreateDialog(dlgTemplate, title, pos, sizeReal);
6e8515a3 646 free(dlgTemplate);
b225f659
VZ
647 }
648 else // !dialog
649 {
2a47cb1b 650 ret = CreateFrame(title, pos, sizeReal);
9ca4dd06
VS
651 }
652
9ceeecb9 653#ifndef __WXWINCE__
9ca4dd06
VS
654 if ( ret && !(GetWindowStyleFlag() & wxCLOSE_BOX) )
655 {
656 EnableCloseButton(false);
b225f659 657 }
9ceeecb9 658#endif
9ca4dd06 659
d7e0024b
VZ
660 // for standard dialogs the dialog manager generates WM_CHANGEUISTATE
661 // itself but for custom windows we have to do it ourselves in order to
662 // make the keyboard indicators (such as underlines for accelerators and
663 // focus rectangles) work under Win2k+
bb655ead
VZ
664 if ( ret )
665 {
3ef092d6 666 MSWUpdateUIState(UIS_INITIALIZE);
bb655ead
VZ
667 }
668
f43255e8
WS
669 // Note: if we include PocketPC in this test, dialogs can fail to show up,
670 // for example the text entry dialog in the dialogs sample. Problem with Maximise()?
671#if defined(__WXWINCE__) && (defined(__SMARTPHONE__) || defined(__WINCE_STANDARDSDK__))
6f26f98e 672 if ( ( style & wxMAXIMIZE ) || IsAlwaysMaximized() )
991420e6
WS
673 {
674 this->Maximize();
675 }
f43255e8 676#endif
82eda5ec 677
3180bc0e 678#if defined(__SMARTPHONE__) && defined(__WXWINCE__)
fb8a56b7
WS
679 SetRightMenu(); // to nothing for initialization
680#endif
681
9ca4dd06 682 return ret;
82c9f85c
VZ
683}
684
685wxTopLevelWindowMSW::~wxTopLevelWindowMSW()
686{
ddae5262
VZ
687 delete m_menuSystem;
688
c6212a0c
VZ
689 SendDestroyEvent();
690
08b97268
WS
691#if defined(__SMARTPHONE__) || defined(__POCKETPC__)
692 SHACTIVATEINFO* info = (SHACTIVATEINFO*) m_activateInfo;
693 delete info;
694 m_activateInfo = NULL;
695#endif
696
d6fb86a8
VZ
697 // after destroying an owned window, Windows activates the next top level
698 // window in Z order but it may be different from our owner (to reproduce
699 // this simply Alt-TAB to another application and back before closing the
700 // owned frame) whereas we always want to yield activation to our parent
701 if ( HasFlag(wxFRAME_FLOAT_ON_PARENT) )
702 {
703 wxWindow *parent = GetParent();
704 if ( parent )
705 {
706 ::BringWindowToTop(GetHwndOf(parent));
707 }
708 }
82c9f85c
VZ
709}
710
82c9f85c
VZ
711// ----------------------------------------------------------------------------
712// wxTopLevelWindowMSW showing
713// ----------------------------------------------------------------------------
714
715void wxTopLevelWindowMSW::DoShowWindow(int nShowCmd)
716{
717 ::ShowWindow(GetHwnd(), nShowCmd);
718
af9c02ce
VZ
719 // Hiding the window doesn't change its iconized state.
720 if ( nShowCmd != SW_HIDE )
721 {
722 // Otherwise restoring, maximizing or showing the window normally also
723 // makes it not iconized and only minimizing it does make it iconized.
724 m_iconized = nShowCmd == SW_MINIMIZE;
725 }
82c9f85c
VZ
726}
727
dbc7ceb9
KO
728void wxTopLevelWindowMSW::ShowWithoutActivating()
729{
730 if ( !wxWindowBase::Show(true) )
335b5afa 731 return;
fa5f4858 732
dbc7ceb9
KO
733 DoShowWindow(SW_SHOWNA);
734}
735
82c9f85c
VZ
736bool wxTopLevelWindowMSW::Show(bool show)
737{
738 // don't use wxWindow version as we want to call DoShowWindow() ourselves
739 if ( !wxWindowBase::Show(show) )
bfbb0b4c 740 return false;
82c9f85c
VZ
741
742 int nShowCmd;
743 if ( show )
744 {
745 if ( m_maximizeOnShow )
746 {
747 // show and maximize
748 nShowCmd = SW_MAXIMIZE;
749
991420e6 750 // This is necessary, or no window appears
aa29eefa 751#if defined( __WINCE_STANDARDSDK__) || defined(__SMARTPHONE__)
991420e6 752 DoShowWindow(SW_SHOW);
a9928e9d
JS
753#endif
754
bfbb0b4c 755 m_maximizeOnShow = false;
82c9f85c 756 }
7505b72e
VZ
757 else if ( m_iconized )
758 {
ef40bc3d
VZ
759 // We were iconized while we were hidden, so now we need to show
760 // the window in iconized state.
7505b72e
VZ
761 nShowCmd = SW_MINIMIZE;
762 }
ef40bc3d
VZ
763 else if ( ::IsIconic(GetHwnd()) )
764 {
765 // We were restored while we were hidden, so now we need to show
766 // the window in its normal state.
767 //
768 // As below, don't activate some kinds of windows.
769 if ( HasFlag(wxFRAME_TOOL_WINDOW) || !IsEnabled() )
770 nShowCmd = SW_SHOWNOACTIVATE;
771 else
772 nShowCmd = SW_RESTORE;
773 }
82c9f85c
VZ
774 else // just show
775 {
00f7f5a7
VZ
776 // we shouldn't use SW_SHOW which also activates the window for
777 // tool frames (as they shouldn't steal focus from the main window)
778 // nor for the currently disabled windows as they would be enabled
779 // as a side effect
780 if ( HasFlag(wxFRAME_TOOL_WINDOW) || !IsEnabled() )
781 nShowCmd = SW_SHOWNA;
782 else
783 nShowCmd = SW_SHOW;
82c9f85c
VZ
784 }
785 }
786 else // hide
787 {
788 nShowCmd = SW_HIDE;
789 }
790
9741fd45 791#if wxUSE_DEFERRED_SIZING
e259ce57
VZ
792 // we only set pending size if we're maximized before being shown, now that
793 // we're shown we don't need it any more (it is reset in size event handler
794 // for child windows but we have to do it ourselves for this parent window)
795 //
796 // make sure to reset it before actually showing the window as this will
797 // generate WM_SIZE events and we want to use the correct client size from
798 // them, not the size returned by WM_NCCALCSIZE in DoGetClientSize() which
799 // turns out to be wrong for maximized windows (see #11762)
800 m_pendingSize = wxDefaultSize;
9741fd45 801#endif // wxUSE_DEFERRED_SIZING
e259ce57 802
82c9f85c
VZ
803 DoShowWindow(nShowCmd);
804
a9928e9d
JS
805#if defined(__WXWINCE__) && (_WIN32_WCE >= 400 && !defined(__POCKETPC__) && !defined(__SMARTPHONE__))
806 // Addornments have to be added when the frame is the correct size
807 wxFrame* frame = wxDynamicCast(this, wxFrame);
808 if (frame && frame->GetMenuBar())
809 frame->GetMenuBar()->AddAdornments(GetWindowStyleFlag());
810#endif
0567fdfc
KH
811
812 return true;
82c9f85c
VZ
813}
814
7cee4f76
VZ
815void wxTopLevelWindowMSW::Raise()
816{
817 ::SetForegroundWindow(GetHwnd());
818}
819
82c9f85c
VZ
820// ----------------------------------------------------------------------------
821// wxTopLevelWindowMSW maximize/minimize
822// ----------------------------------------------------------------------------
823
824void wxTopLevelWindowMSW::Maximize(bool maximize)
825{
826 if ( IsShown() )
827 {
828 // just maximize it directly
829 DoShowWindow(maximize ? SW_MAXIMIZE : SW_RESTORE);
830 }
831 else // hidden
832 {
73c902d6
DS
833 // we can't maximize the hidden frame because it shows it as well,
834 // so just remember that we should do it later in this case
a0be434e 835 m_maximizeOnShow = maximize;
ac2de323 836
9741fd45 837#if wxUSE_DEFERRED_SIZING
ac2de323
VZ
838 // after calling Maximize() the client code expects to get the frame
839 // "real" size and doesn't want to know that, because of implementation
840 // details, the frame isn't really maximized yet but will be only once
841 // it's shown, so return our size as it will be then in this case
7889b795
VZ
842 if ( maximize )
843 {
6fd54d58
VZ
844 // we must only change pending size here, and not call SetSize()
845 // because otherwise Windows would think that this (full screen)
846 // size is the natural size for the frame and so would use it when
847 // the user clicks on "restore" title bar button instead of the
848 // correct initial frame size
849 //
850 // NB: unfortunately we don't know which display we're on yet so we
851 // have to use the default one
852 m_pendingSize = wxGetClientDisplayRect().GetSize();
7889b795
VZ
853 }
854 //else: can't do anything in this case, we don't have the old size
9741fd45 855#endif // wxUSE_DEFERRED_SIZING
82c9f85c
VZ
856 }
857}
858
859bool wxTopLevelWindowMSW::IsMaximized() const
860{
979a0320 861 return IsAlwaysMaximized() ||
a8e89343
JS
862#if !defined(__SMARTPHONE__) && !defined(__POCKETPC__) && !defined(__WINCE_STANDARDSDK__)
863
979a0320 864 (::IsZoomed(GetHwnd()) != 0) ||
4676948b 865#endif
979a0320 866 m_maximizeOnShow;
82c9f85c
VZ
867}
868
869void wxTopLevelWindowMSW::Iconize(bool iconize)
870{
57429bfd
VZ
871 if ( iconize == m_iconized )
872 {
873 // Do nothing, in particular don't restore non-iconized windows when
874 // Iconize(false) is called as this would wrongly un-maximize them.
875 return;
876 }
877
7505b72e
VZ
878 if ( IsShown() )
879 {
880 // change the window state immediately
881 DoShowWindow(iconize ? SW_MINIMIZE : SW_RESTORE);
882 }
883 else // hidden
884 {
ef40bc3d
VZ
885 // iconizing the window shouldn't show it so just update the internal
886 // state (otherwise it's done by DoShowWindow() itself)
887 m_iconized = iconize;
7505b72e 888 }
82c9f85c
VZ
889}
890
891bool wxTopLevelWindowMSW::IsIconized() const
892{
4676948b 893#ifdef __WXWINCE__
bfbb0b4c 894 return false;
4676948b 895#else
7505b72e
VZ
896 if ( !IsShown() )
897 return m_iconized;
898
9f01395e
VZ
899 // don't use m_iconized, it may be briefly out of sync with the real state
900 // as it's only modified when we receive a WM_SIZE and we could be called
901 // from an event handler from one of the messages we receive before it,
902 // such as WM_MOVE
903 return ::IsIconic(GetHwnd()) != 0;
4676948b 904#endif
82c9f85c
VZ
905}
906
907void wxTopLevelWindowMSW::Restore()
908{
909 DoShowWindow(SW_RESTORE);
910}
911
978af864
VZ
912void wxTopLevelWindowMSW::SetLayoutDirection(wxLayoutDirection dir)
913{
914 if ( dir == wxLayout_Default )
915 dir = wxTheApp->GetLayoutDirection();
916
917 if ( dir != wxLayout_Default )
918 wxTopLevelWindowBase::SetLayoutDirection(dir);
919}
920
d43eb2a0
VZ
921// ----------------------------------------------------------------------------
922// wxTopLevelWindowMSW geometry
923// ----------------------------------------------------------------------------
924
b7036299
WS
925#ifndef __WXWINCE__
926
c5dc89a1
WS
927void wxTopLevelWindowMSW::DoGetPosition(int *x, int *y) const
928{
d43eb2a0
VZ
929 if ( IsIconized() )
930 {
931 WINDOWPLACEMENT wp;
932 wp.length = sizeof(WINDOWPLACEMENT);
933 if ( ::GetWindowPlacement(GetHwnd(), &wp) )
934 {
935 RECT& rc = wp.rcNormalPosition;
936
937 // the position returned by GetWindowPlacement() is in workspace
938 // coordinates except for windows with WS_EX_TOOLWINDOW style
939 if ( !HasFlag(wxFRAME_TOOL_WINDOW) )
940 {
941 // we must use the correct display for the translation as the
942 // task bar might be shown on one display but not the other one
943 int n = wxDisplay::GetFromWindow(this);
944 wxDisplay dpy(n == wxNOT_FOUND ? 0 : n);
945 const wxPoint ptOfs = dpy.GetClientArea().GetPosition() -
946 dpy.GetGeometry().GetPosition();
947
948 rc.left += ptOfs.x;
949 rc.top += ptOfs.y;
950 }
951
952 if ( x )
953 *x = rc.left;
954 if ( y )
955 *y = rc.top;
956
957 return;
958 }
959
9a83f860 960 wxLogLastError(wxT("GetWindowPlacement"));
d43eb2a0
VZ
961 }
962 //else: normal case
963
964 wxTopLevelWindowBase::DoGetPosition(x, y);
965}
966
967void wxTopLevelWindowMSW::DoGetSize(int *width, int *height) const
968{
969 if ( IsIconized() )
970 {
971 WINDOWPLACEMENT wp;
972 wp.length = sizeof(WINDOWPLACEMENT);
973 if ( ::GetWindowPlacement(GetHwnd(), &wp) )
974 {
975 const RECT& rc = wp.rcNormalPosition;
976
977 if ( width )
978 *width = rc.right - rc.left;
979 if ( height )
980 *height = rc.bottom - rc.top;
981
982 return;
983 }
984
9a83f860 985 wxLogLastError(wxT("GetWindowPlacement"));
d43eb2a0
VZ
986 }
987 //else: normal case
988
989 wxTopLevelWindowBase::DoGetSize(width, height);
990}
991
c5dc89a1
WS
992#endif // __WXWINCE__
993
fa5f4858
VZ
994void
995wxTopLevelWindowMSW::MSWGetCreateWindowCoords(const wxPoint& pos,
996 const wxSize& size,
997 int& x, int& y,
998 int& w, int& h) const
999{
1000 // let the system position the window if no explicit position was specified
1001 if ( pos.x == wxDefaultCoord )
1002 {
1003 // if x is set to CW_USEDEFAULT, y parameter is ignored anyhow so we
1004 // can just as well set it to CW_USEDEFAULT as well
1005 x =
1006 y = CW_USEDEFAULT;
1007 }
1008 else
1009 {
1010 // OTOH, if x is not set to CW_USEDEFAULT, y shouldn't be set to it
1011 // neither because it is not handled as a special value by Windows then
1012 // and so we have to choose some default value for it, even if a
1013 // completely arbitrary one
1014 static const int DEFAULT_Y = 200;
1015
1016 x = pos.x;
1017 y = pos.y == wxDefaultCoord ? DEFAULT_Y : pos.y;
1018 }
1019
1020 if ( size.x == wxDefaultCoord || size.y == wxDefaultCoord )
1021 {
1022 // We don't use CW_USEDEFAULT here for several reasons:
1023 //
1024 // 1. It results in huge frames on modern screens (1000*800 is not
1025 // uncommon on my 1280*1024 screen) which is way too big for a half
1026 // empty frame of most of wxWidgets samples for example)
1027 //
1028 // 2. It is buggy for frames with wxFRAME_TOOL_WINDOW style for which
1029 // the default is for whatever reason 8*8 which breaks client <->
1030 // window size calculations (it would be nice if it didn't, but it
1031 // does and the simplest way to fix it seemed to change the broken
1032 // default size anyhow)
1033 //
1034 // 3. There is just no advantage in doing it: with x and y it is
1035 // possible that [future versions of] Windows position the new top
1036 // level window in some smart way which we can't do, but we can
1037 // guess a reasonably good size for a new window just as well
1038 // ourselves
1039 //
1040 // The only exception is for the Windows CE platform where the system
1041 // does know better than we how should the windows be sized
1042#ifdef _WIN32_WCE
1043 w =
1044 h = CW_USEDEFAULT;
1045#else // !_WIN32_WCE
1046 wxSize sizeReal = size;
1047 sizeReal.SetDefaults(GetDefaultSize());
1048
1049 w = sizeReal.x;
1050 h = sizeReal.y;
1051#endif // _WIN32_WCE/!_WIN32_WCE
1052 }
1053 else
1054 {
1055 w = size.x;
1056 h = size.y;
1057 }
1058}
1059
c641b1d2
VS
1060// ----------------------------------------------------------------------------
1061// wxTopLevelWindowMSW fullscreen
1062// ----------------------------------------------------------------------------
1063
1064bool wxTopLevelWindowMSW::ShowFullScreen(bool show, long style)
1065{
716645d3 1066 if ( show == IsFullScreen() )
c641b1d2 1067 {
716645d3 1068 // nothing to do
bfbb0b4c 1069 return true;
716645d3
VZ
1070 }
1071
1072 m_fsIsShowing = show;
c641b1d2 1073
716645d3
VZ
1074 if ( show )
1075 {
c641b1d2
VS
1076 m_fsStyle = style;
1077
1078 // zap the frame borders
1079
1080 // save the 'normal' window style
716645d3 1081 m_fsOldWindowStyle = GetWindowLong(GetHwnd(), GWL_STYLE);
c641b1d2
VS
1082
1083 // save the old position, width & height, maximize state
1084 m_fsOldSize = GetRect();
1085 m_fsIsMaximized = IsMaximized();
1086
1087 // decide which window style flags to turn off
1088 LONG newStyle = m_fsOldWindowStyle;
1089 LONG offFlags = 0;
1090
1091 if (style & wxFULLSCREEN_NOBORDER)
4676948b
JS
1092 {
1093 offFlags |= WS_BORDER;
1094#ifndef __WXWINCE__
1095 offFlags |= WS_THICKFRAME;
1096#endif
1097 }
c641b1d2 1098 if (style & wxFULLSCREEN_NOCAPTION)
716645d3 1099 offFlags |= WS_CAPTION | WS_SYSMENU;
c641b1d2 1100
716645d3 1101 newStyle &= ~offFlags;
c641b1d2
VS
1102
1103 // change our window style to be compatible with full-screen mode
716645d3 1104 ::SetWindowLong(GetHwnd(), GWL_STYLE, newStyle);
c641b1d2 1105
716645d3
VZ
1106 wxRect rect;
1107#if wxUSE_DISPLAY
1108 // resize to the size of the display containing us
1109 int dpy = wxDisplay::GetFromWindow(this);
1110 if ( dpy != wxNOT_FOUND )
1111 {
1112 rect = wxDisplay(dpy).GetGeometry();
1113 }
1114 else // fall back to the main desktop
86828e0f 1115#endif // wxUSE_DISPLAY
716645d3
VZ
1116 {
1117 // resize to the size of the desktop
1118 wxCopyRECTToRect(wxGetWindowRect(::GetDesktopWindow()), rect);
80a81a12
JS
1119#ifdef __WXWINCE__
1120 // FIXME: size of the bottom menu (toolbar)
1121 // should be taken in account
1122 rect.height += rect.y;
1123 rect.y = 0;
4676948b 1124#endif
716645d3 1125 }
c641b1d2 1126
716645d3 1127 SetSize(rect);
c641b1d2
VS
1128
1129 // now flush the window style cache and actually go full-screen
716645d3 1130 long flags = SWP_FRAMECHANGED;
c641b1d2 1131
716645d3
VZ
1132 // showing the frame full screen should also show it if it's still
1133 // hidden
1134 if ( !IsShown() )
1135 {
1136 // don't call wxWindow version to avoid flicker from calling
1137 // ::ShowWindow() -- we're going to show the window at the correct
1138 // location directly below -- but do call the wxWindowBase version
1139 // to sync the internal m_isShown flag
1140 wxWindowBase::Show();
c641b1d2 1141
716645d3
VZ
1142 flags |= SWP_SHOWWINDOW;
1143 }
c641b1d2 1144
716645d3
VZ
1145 SetWindowPos(GetHwnd(), HWND_TOP,
1146 rect.x, rect.y, rect.width, rect.height,
1147 flags);
c641b1d2 1148
3d487566 1149#if !defined(__HANDHELDPC__) && (defined(__WXWINCE__) && (_WIN32_WCE < 400))
80a81a12
JS
1150 ::SHFullScreen(GetHwnd(), SHFS_HIDETASKBAR | SHFS_HIDESIPBUTTON);
1151#endif
1152
716645d3
VZ
1153 // finally send an event allowing the window to relayout itself &c
1154 wxSizeEvent event(rect.GetSize(), GetId());
df97a4ef 1155 event.SetEventObject(this);
937013e0 1156 HandleWindowEvent(event);
716645d3
VZ
1157 }
1158 else // stop showing full screen
1159 {
3d487566 1160#if !defined(__HANDHELDPC__) && (defined(__WXWINCE__) && (_WIN32_WCE < 400))
80a81a12
JS
1161 ::SHFullScreen(GetHwnd(), SHFS_SHOWTASKBAR | SHFS_SHOWSIPBUTTON);
1162#endif
c641b1d2 1163 Maximize(m_fsIsMaximized);
716645d3
VZ
1164 SetWindowLong(GetHwnd(),GWL_STYLE, m_fsOldWindowStyle);
1165 SetWindowPos(GetHwnd(),HWND_TOP,m_fsOldSize.x, m_fsOldSize.y,
c641b1d2 1166 m_fsOldSize.width, m_fsOldSize.height, SWP_FRAMECHANGED);
c641b1d2 1167 }
716645d3 1168
bfbb0b4c 1169 return true;
c641b1d2
VS
1170}
1171
82c9f85c
VZ
1172// ----------------------------------------------------------------------------
1173// wxTopLevelWindowMSW misc
1174// ----------------------------------------------------------------------------
1175
faa49bfd
WS
1176void wxTopLevelWindowMSW::SetTitle( const wxString& title)
1177{
1178 SetLabel(title);
1179}
1180
1181wxString wxTopLevelWindowMSW::GetTitle() const
1182{
1183 return GetLabel();
1184}
1185
0f278d77 1186bool wxTopLevelWindowMSW::DoSelectAndSetIcon(const wxIconBundle& icons,
b9e66233
VZ
1187 int smX,
1188 int smY,
1189 int i)
f618020a 1190{
b9e66233 1191 const wxSize size(::GetSystemMetrics(smX), ::GetSystemMetrics(smY));
82c9f85c 1192
d928f019 1193 wxIcon icon = icons.GetIcon(size, wxIconBundle::FALLBACK_NEAREST_LARGER);
0f278d77 1194
7fb5d9e4
VZ
1195 if ( !icon.IsOk() )
1196 return false;
1197
1198 ::SendMessage(GetHwnd(), WM_SETICON, i, (LPARAM)GetHiconOf(icon));
1199 return true;
b9e66233 1200}
f618020a 1201
b9e66233
VZ
1202void wxTopLevelWindowMSW::SetIcons(const wxIconBundle& icons)
1203{
1204 wxTopLevelWindowBase::SetIcons(icons);
1205
13e451ae
VS
1206 if ( icons.IsEmpty() )
1207 {
1208 // FIXME: SetIcons(wxNullIconBundle) should unset existing icons,
1209 // but we currently don't do that
1210 wxASSERT_MSG( m_icons.IsEmpty(), "unsetting icons doesn't work" );
1211 return;
1212 }
1213
7fb5d9e4
VZ
1214 DoSelectAndSetIcon(icons, SM_CXSMICON, SM_CYSMICON, ICON_SMALL);
1215 DoSelectAndSetIcon(icons, SM_CXICON, SM_CYICON, ICON_BIG);
82c9f85c 1216}
a91cf80c
VZ
1217
1218bool wxTopLevelWindowMSW::EnableCloseButton(bool enable)
1219{
4676948b 1220#if !defined(__WXMICROWIN__)
a91cf80c 1221 // get system (a.k.a. window) menu
068959b9 1222 HMENU hmenu = GetSystemMenu(GetHwnd(), FALSE /* get it */);
a91cf80c
VZ
1223 if ( !hmenu )
1224 {
660b1906
VZ
1225 // no system menu at all -- ok if we want to remove the close button
1226 // anyhow, but bad if we want to show it
1227 return !enable;
a91cf80c
VZ
1228 }
1229
1230 // enabling/disabling the close item from it also automatically
1231 // disables/enables the close title bar button
aaf765a5
VZ
1232 if ( ::EnableMenuItem(hmenu, SC_CLOSE,
1233 MF_BYCOMMAND |
1234 (enable ? MF_ENABLED : MF_GRAYED)) == -1 )
a91cf80c 1235 {
9a83f860 1236 wxLogLastError(wxT("EnableMenuItem(SC_CLOSE)"));
a91cf80c 1237
bfbb0b4c 1238 return false;
a91cf80c 1239 }
960b193e 1240#ifndef __WXWINCE__
a91cf80c
VZ
1241 // update appearance immediately
1242 if ( !::DrawMenuBar(GetHwnd()) )
1243 {
9a83f860 1244 wxLogLastError(wxT("DrawMenuBar"));
a91cf80c 1245 }
960b193e 1246#endif
a91cf80c
VZ
1247#endif // !__WXMICROWIN__
1248
bfbb0b4c 1249 return true;
a91cf80c
VZ
1250}
1251
dc92adaf
VZ
1252void wxTopLevelWindowMSW::RequestUserAttention(int flags)
1253{
3a6b0a3e
VZ
1254 // check if we can use FlashWindowEx(): unfortunately a simple test for
1255 // FLASHW_STOP doesn't work because MSVC6 headers do #define it but don't
1256 // provide FlashWindowEx() declaration, so try to detect whether we have
1257 // real headers for WINVER 0x0500 by checking for existence of a symbol not
1258 // declated in MSVC6 header
a8ff046b 1259#if defined(FLASHW_STOP) && defined(VK_XBUTTON1) && wxUSE_DYNLIB_CLASS
dc92adaf
VZ
1260 // available in the headers, check if it is supported by the system
1261 typedef BOOL (WINAPI *FlashWindowEx_t)(FLASHWINFO *pfwi);
3432c148 1262 static FlashWindowEx_t s_pfnFlashWindowEx = NULL;
dc92adaf
VZ
1263 if ( !s_pfnFlashWindowEx )
1264 {
9a83f860 1265 wxDynamicLibrary dllUser32(wxT("user32.dll"));
dc92adaf 1266 s_pfnFlashWindowEx = (FlashWindowEx_t)
9a83f860 1267 dllUser32.GetSymbol(wxT("FlashWindowEx"));
dc92adaf 1268
3103e8a9 1269 // we can safely unload user32.dll here, it's going to remain loaded as
dc92adaf
VZ
1270 // long as the program is running anyhow
1271 }
1272
1273 if ( s_pfnFlashWindowEx )
1274 {
1275 WinStruct<FLASHWINFO> fwi;
1276 fwi.hwnd = GetHwnd();
1277 fwi.dwFlags = FLASHW_ALL;
1278 if ( flags & wxUSER_ATTENTION_INFO )
1279 {
1280 // just flash a few times
1281 fwi.uCount = 3;
1282 }
1283 else // wxUSER_ATTENTION_ERROR
1284 {
1285 // flash until the user notices it
1286 fwi.dwFlags |= FLASHW_TIMERNOFG;
1287 }
1288
1289 s_pfnFlashWindowEx(&fwi);
1290 }
1291 else // FlashWindowEx() not available
4f79eb79 1292#endif // FlashWindowEx() defined
dc92adaf
VZ
1293 {
1294 wxUnusedVar(flags);
068959b9 1295#ifndef __WXWINCE__
dc92adaf 1296 ::FlashWindow(GetHwnd(), TRUE);
068959b9 1297#endif // __WXWINCE__
dc92adaf
VZ
1298 }
1299}
1300
ddae5262
VZ
1301wxMenu *wxTopLevelWindowMSW::MSWGetSystemMenu() const
1302{
fe62518e 1303#ifndef __WXUNIVERSAL__
ddae5262
VZ
1304 if ( !m_menuSystem )
1305 {
1306 HMENU hmenu = ::GetSystemMenu(GetHwnd(), FALSE);
1307 if ( !hmenu )
1308 {
1309 wxLogLastError(wxT("GetSystemMenu()"));
1310 return NULL;
1311 }
1312
1313 wxTopLevelWindowMSW * const
1314 self = const_cast<wxTopLevelWindowMSW *>(this);
1315
1316 self->m_menuSystem = wxMenu::MSWNewFromHMENU(hmenu);
1317
1318 // We need to somehow associate this menu with this window to ensure
1319 // that we get events from it. A natural idea would be to pretend that
1320 // it's attached to our menu bar but this wouldn't work if we don't
1321 // have any menu bar which is a common case for applications using
1322 // custom items in the system menu (they mostly do it exactly because
1323 // they don't have any other menus).
1324 //
1325 // So reuse the invoking window pointer instead, this is not exactly
1326 // correct but doesn't seem to have any serious drawbacks.
1327 m_menuSystem->SetInvokingWindow(self);
1328 }
fe62518e 1329#endif // #ifndef __WXUNIVERSAL__
ddae5262
VZ
1330
1331 return m_menuSystem;
1332}
1333
1334// ----------------------------------------------------------------------------
1335// Transparency support
50f3c41d
RD
1336// ---------------------------------------------------------------------------
1337
07880314 1338bool wxTopLevelWindowMSW::SetTransparent(wxByte alpha)
50f3c41d 1339{
a8ff046b 1340#if wxUSE_DYNLIB_CLASS
50f3c41d 1341 typedef DWORD (WINAPI *PSETLAYEREDWINDOWATTR)(HWND, DWORD, BYTE, DWORD);
caf587aa
VZ
1342 static PSETLAYEREDWINDOWATTR
1343 pSetLayeredWindowAttributes = (PSETLAYEREDWINDOWATTR)-1;
50f3c41d 1344
caf587aa 1345 if ( pSetLayeredWindowAttributes == (PSETLAYEREDWINDOWATTR)-1 )
50f3c41d 1346 {
9a83f860 1347 wxDynamicLibrary dllUser32(wxT("user32.dll"));
caf587aa
VZ
1348
1349 // use RawGetSymbol() and not GetSymbol() to avoid error messages under
1350 // Windows 95: there is nothing the user can do about this anyhow
50f3c41d 1351 pSetLayeredWindowAttributes = (PSETLAYEREDWINDOWATTR)
caf587aa
VZ
1352 dllUser32.RawGetSymbol(wxT("SetLayeredWindowAttributes"));
1353
1354 // it's ok to destroy dllUser32 here, we link statically to user32.dll
1355 // anyhow so it won't be unloaded
50f3c41d 1356 }
caf587aa
VZ
1357
1358 if ( !pSetLayeredWindowAttributes )
50f3c41d 1359 return false;
a8ff046b 1360#endif // wxUSE_DYNLIB_CLASS
50f3c41d
RD
1361
1362 LONG exstyle = GetWindowLong(GetHwnd(), GWL_EXSTYLE);
1363
1364 // if setting alpha to fully opaque then turn off the layered style
1365 if (alpha == 255)
1366 {
1367 SetWindowLong(GetHwnd(), GWL_EXSTYLE, exstyle & ~WS_EX_LAYERED);
1368 Refresh();
1369 return true;
1370 }
1371
a8ff046b 1372#if wxUSE_DYNLIB_CLASS
50f3c41d
RD
1373 // Otherwise, set the layered style if needed and set the alpha value
1374 if ((exstyle & WS_EX_LAYERED) == 0 )
1375 SetWindowLong(GetHwnd(), GWL_EXSTYLE, exstyle | WS_EX_LAYERED);
1376
a8ff046b
VZ
1377 if ( pSetLayeredWindowAttributes(GetHwnd(), 0, (BYTE)alpha, LWA_ALPHA) )
1378 return true;
1379#endif // wxUSE_DYNLIB_CLASS
1380
1381 return false;
50f3c41d
RD
1382}
1383
07880314 1384bool wxTopLevelWindowMSW::CanSetTransparent()
50f3c41d
RD
1385{
1386 // The API is available on win2k and above
02761f6c 1387
50f3c41d
RD
1388 static int os_type = -1;
1389 static int ver_major = -1;
1390
1391 if (os_type == -1)
1392 os_type = ::wxGetOsVersion(&ver_major);
1393
406d283a 1394 return (os_type == wxOS_WINDOWS_NT && ver_major >= 5);
50f3c41d
RD
1395}
1396
17808a75 1397void wxTopLevelWindowMSW::DoFreeze()
0dd9b9e2 1398{
1c8e5c51
VS
1399 // do nothing: freezing toplevel window causes paint and mouse events
1400 // to go through it any TLWs under it, so the best we can do is to freeze
1401 // all children -- and wxWindowBase::Freeze() does that
0dd9b9e2
RD
1402}
1403
17808a75 1404void wxTopLevelWindowMSW::DoThaw()
0dd9b9e2 1405{
1c8e5c51 1406 // intentionally empty -- see DoFreeze()
0dd9b9e2
RD
1407}
1408
1409
085ad686
VZ
1410// ----------------------------------------------------------------------------
1411// wxTopLevelWindow event handling
1412// ----------------------------------------------------------------------------
1413
0c6dff03
VZ
1414void wxTopLevelWindowMSW::DoSaveLastFocus()
1415{
1416 if ( m_iconized )
1417 return;
1418
1419 // remember the last focused child if it is our child
1420 m_winLastFocused = FindFocus();
1421
1422 if ( m_winLastFocused )
1423 {
1424 // and don't remember it if it's a child from some other frame
1425 if ( wxGetTopLevelParent(m_winLastFocused) != this )
1426 {
1427 m_winLastFocused = NULL;
1428 }
1429 }
1430}
1431
1432void wxTopLevelWindowMSW::DoRestoreLastFocus()
1433{
1434 wxWindow *parent = m_winLastFocused ? m_winLastFocused->GetParent()
1435 : NULL;
1436 if ( !parent )
1437 {
1438 parent = this;
1439 }
1440
1441 wxSetFocusToChild(parent, &m_winLastFocused);
1442}
1443
085ad686
VZ
1444void wxTopLevelWindowMSW::OnActivate(wxActivateEvent& event)
1445{
1446 if ( event.GetActive() )
1447 {
0c6dff03
VZ
1448 // We get WM_ACTIVATE before being restored from iconized state, so we
1449 // can be still iconized here. In this case, avoid restoring the focus
1450 // as it doesn't work anyhow and we will do when we're really restored.
1451 if ( m_iconized )
1452 {
1453 event.Skip();
1454 return;
1455 }
1456
2736a5de
VZ
1457 // restore focus to the child which was last focused unless we already
1458 // have it
9a83f860 1459 wxLogTrace(wxT("focus"), wxT("wxTLW %p activated."), m_hWnd);
085ad686 1460
2736a5de
VZ
1461 wxWindow *winFocus = FindFocus();
1462 if ( !winFocus || wxGetTopLevelParent(winFocus) != this )
0c6dff03 1463 DoRestoreLastFocus();
085ad686
VZ
1464 }
1465 else // deactivating
1466 {
0c6dff03 1467 DoSaveLastFocus();
085ad686 1468
9a83f860
VZ
1469 wxLogTrace(wxT("focus"),
1470 wxT("wxTLW %p deactivated, last focused: %p."),
dca0f651
VZ
1471 m_hWnd,
1472 m_winLastFocused ? GetHwndOf(m_winLastFocused) : NULL);
085ad686
VZ
1473
1474 event.Skip();
1475 }
1476}
1477
95316a3f
VZ
1478#if wxUSE_MENUS
1479
1480bool
1481wxTopLevelWindowMSW::HandleMenuSelect(WXWORD nItem, WXWORD flags, WXHMENU WXUNUSED(hMenu))
1482{
1483 // sign extend to int from unsigned short we get from Windows
1484 int item = (signed short)nItem;
1485
1486 // WM_MENUSELECT is generated for both normal items and menus, including
1487 // the top level menus of the menu bar, which can't be represented using
1488 // any valid identifier in wxMenuEvent so use an otherwise unused value for
1489 // them
1490 if ( flags & (MF_POPUP | MF_SEPARATOR) )
1491 item = wxID_NONE;
1492
1493 wxMenuEvent event(wxEVT_MENU_HIGHLIGHT, item);
1494 event.SetEventObject(this);
1495
1496 if ( HandleWindowEvent(event) )
1497 return true;
1498
1499 // by default, i.e. if the event wasn't handled above, clear the status bar
1500 // text when an item which can't have any associated help string in wx API
1501 // is selected
1502 if ( item == wxID_NONE )
1503 DoGiveHelp(wxEmptyString, true);
1504
1505 return false;
1506}
1507
1508bool
1509wxTopLevelWindowMSW::DoSendMenuOpenCloseEvent(wxEventType evtType, wxMenu* menu, bool popup)
1510{
1511 wxMenuEvent event(evtType, popup ? wxID_ANY : 0, menu);
1512 event.SetEventObject(menu);
1513
1514 return HandleWindowEvent(event);
1515}
1516
1517bool wxTopLevelWindowMSW::HandleExitMenuLoop(WXWORD isPopup)
1518{
1519 return DoSendMenuOpenCloseEvent(wxEVT_MENU_CLOSE,
1520 isPopup ? wxCurrentPopupMenu : NULL,
1521 isPopup != 0);
1522}
1523
1524bool wxTopLevelWindowMSW::HandleMenuPopup(wxEventType evtType, WXHMENU hMenu)
1525{
1526 bool isPopup = false;
1527 wxMenu* menu = NULL;
1528 if ( wxCurrentPopupMenu && wxCurrentPopupMenu->GetHMenu() == hMenu )
1529 {
1530 menu = wxCurrentPopupMenu;
1531 isPopup = true;
1532 }
1533 else
1534 {
1535 menu = MSWFindMenuFromHMENU(hMenu);
1536 }
1537
1538
1539 return DoSendMenuOpenCloseEvent(evtType, menu, isPopup);
1540}
1541
1542wxMenu* wxTopLevelWindowMSW::MSWFindMenuFromHMENU(WXHMENU WXUNUSED(hMenu))
1543{
1544 // We don't have any menus at this level.
1545 return NULL;
1546}
1547
1548#endif // wxUSE_MENUS
1549
1550
1551
77ffb593 1552// the DialogProc for all wxWidgets dialogs
12447831 1553LONG APIENTRY _EXPORT
0fc58b86 1554wxDlgProc(HWND hDlg,
2eb10e2a 1555 UINT message,
3c96418b
JG
1556 WPARAM WXUNUSED(wParam),
1557 LPARAM WXUNUSED(lParam))
12447831 1558{
08b97268 1559 switch ( message )
12447831 1560 {
08b97268
WS
1561 case WM_INITDIALOG:
1562 {
1563 // under CE, add a "Ok" button in the dialog title bar and make it full
1564 // screen
1565 //
1566 // TODO: find the window for this HWND, and take into account
1567 // wxMAXIMIZE and wxCLOSE_BOX. For now, assume both are present.
1568 //
1569 // Standard SDK doesn't have aygshell.dll: see
1570 // include/wx/msw/wince/libraries.h
3d487566 1571#if defined(__WXWINCE__) && !defined(__WINCE_STANDARDSDK__) && !defined(__HANDHELDPC__)
08b97268
WS
1572 SHINITDLGINFO shidi;
1573 shidi.dwMask = SHIDIM_FLAGS;
1574 shidi.dwFlags = SHIDIF_SIZEDLG // take account of the SIP or menubar
ef6d716b 1575#ifndef __SMARTPHONE__
08b97268 1576 | SHIDIF_DONEBUTTON
ef6d716b
WS
1577#endif
1578 ;
08b97268
WS
1579 shidi.hDlg = hDlg;
1580 SHInitDialog( &shidi );
a48e51ce 1581#else // no SHInitDialog()
08b97268
WS
1582 wxUnusedVar(hDlg);
1583#endif
1584 // for WM_INITDIALOG, returning TRUE tells system to set focus to
1585 // the first control in the dialog box, but as we set the focus
1586 // ourselves, we return FALSE for it as well
1587 return FALSE;
1588 }
12447831 1589 }
a48e51ce
VZ
1590
1591 // for almost all messages, returning FALSE means that we didn't process
1592 // the message
a48e51ce 1593 return FALSE;
12447831
VZ
1594}
1595
2b5f62a0
VZ
1596// ============================================================================
1597// wxTLWHiddenParentModule implementation
1598// ============================================================================
1599
1600HWND wxTLWHiddenParentModule::ms_hwnd = NULL;
1601
1602const wxChar *wxTLWHiddenParentModule::ms_className = NULL;
1603
1604bool wxTLWHiddenParentModule::OnInit()
1605{
1606 ms_hwnd = NULL;
1607 ms_className = NULL;
1608
bfbb0b4c 1609 return true;
2b5f62a0
VZ
1610}
1611
1612void wxTLWHiddenParentModule::OnExit()
1613{
1614 if ( ms_hwnd )
1615 {
1616 if ( !::DestroyWindow(ms_hwnd) )
1617 {
9a83f860 1618 wxLogLastError(wxT("DestroyWindow(hidden TLW parent)"));
2b5f62a0
VZ
1619 }
1620
1621 ms_hwnd = NULL;
1622 }
1623
1624 if ( ms_className )
1625 {
1626 if ( !::UnregisterClass(ms_className, wxGetInstance()) )
1627 {
9a83f860 1628 wxLogLastError(wxT("UnregisterClass(\"wxTLWHiddenParent\")"));
2b5f62a0
VZ
1629 }
1630
1631 ms_className = NULL;
1632 }
1633}
1634
1635/* static */
1636HWND wxTLWHiddenParentModule::GetHWND()
1637{
1638 if ( !ms_hwnd )
1639 {
1640 if ( !ms_className )
1641 {
9a83f860 1642 static const wxChar *HIDDEN_PARENT_CLASS = wxT("wxTLWHiddenParent");
2b5f62a0
VZ
1643
1644 WNDCLASS wndclass;
1645 wxZeroMemory(wndclass);
1646
1647 wndclass.lpfnWndProc = DefWindowProc;
1648 wndclass.hInstance = wxGetInstance();
1649 wndclass.lpszClassName = HIDDEN_PARENT_CLASS;
1650
1651 if ( !::RegisterClass(&wndclass) )
1652 {
9a83f860 1653 wxLogLastError(wxT("RegisterClass(\"wxTLWHiddenParent\")"));
2b5f62a0
VZ
1654 }
1655 else
1656 {
1657 ms_className = HIDDEN_PARENT_CLASS;
1658 }
1659 }
1660
fda7962d 1661 ms_hwnd = ::CreateWindow(ms_className, wxEmptyString, 0, 0, 0, 0, 0, NULL,
2b5f62a0
VZ
1662 (HMENU)NULL, wxGetInstance(), NULL);
1663 if ( !ms_hwnd )
1664 {
9a83f860 1665 wxLogLastError(wxT("CreateWindow(hidden TLW parent)"));
2b5f62a0
VZ
1666 }
1667 }
1668
1669 return ms_hwnd;
1670}