]>
Commit | Line | Data |
---|---|---|
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) | |
65571936 | 9 | // License: 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 | ||
27 | #ifndef WX_PRECOMP | |
3a922bb4 RL |
28 | #include "wx/app.h" |
29 | #include "wx/toplevel.h" | |
28b68852 | 30 | #include "wx/dialog.h" |
82c9f85c VZ |
31 | #include "wx/string.h" |
32 | #include "wx/log.h" | |
33 | #include "wx/intl.h" | |
14dd645e | 34 | #include "wx/frame.h" |
706d74ab | 35 | #include "wx/containr.h" // wxSetFocusToChild() |
82c9f85c VZ |
36 | #endif //WX_PRECOMP |
37 | ||
2b5f62a0 | 38 | #include "wx/module.h" |
dc92adaf | 39 | #include "wx/dynlib.h" |
2b5f62a0 | 40 | |
82c9f85c | 41 | #include "wx/msw/private.h" |
3d487566 | 42 | #if defined(__WXWINCE__) && !defined(__HANDHELDPC__) |
80a81a12 JS |
43 | #include <ole2.h> |
44 | #include <shellapi.h> | |
3874e500 | 45 | // Standard SDK doesn't have aygshell.dll: see include/wx/msw/wince/libraries.h |
a9928e9d | 46 | #if _WIN32_WCE < 400 || !defined(__WINCE_STANDARDSDK__) |
2d36b3d8 JS |
47 | #include <aygshell.h> |
48 | #endif | |
49 | #include "wx/msw/wince/missing.h" | |
80a81a12 JS |
50 | #endif |
51 | ||
d61c1a6f | 52 | #include "wx/msw/missing.h" |
4676948b JS |
53 | #include "wx/msw/winundef.h" |
54 | ||
716645d3 | 55 | #include "wx/display.h" |
7e25f59e | 56 | |
e121a72a MB |
57 | #ifndef ICON_BIG |
58 | #define ICON_BIG 1 | |
59 | #endif | |
60 | ||
61 | #ifndef ICON_SMALL | |
62 | #define ICON_SMALL 0 | |
63 | #endif | |
64 | ||
82c9f85c VZ |
65 | // ---------------------------------------------------------------------------- |
66 | // stubs for missing functions under MicroWindows | |
67 | // ---------------------------------------------------------------------------- | |
68 | ||
69 | #ifdef __WXMICROWIN__ | |
70 | ||
bfbb0b4c WS |
71 | // static inline bool IsIconic(HWND WXUNUSED(hwnd)) { return false; } |
72 | static inline bool IsZoomed(HWND WXUNUSED(hwnd)) { return false; } | |
82c9f85c VZ |
73 | |
74 | #endif // __WXMICROWIN__ | |
75 | ||
12447831 VZ |
76 | // NB: wxDlgProc must be defined here and not in dialog.cpp because the latter |
77 | // is not included by wxUniv build which does need wxDlgProc | |
61179e28 VZ |
78 | LONG APIENTRY _EXPORT |
79 | wxDlgProc(HWND hDlg, UINT message, WPARAM wParam, LPARAM lParam); | |
80 | ||
82c9f85c VZ |
81 | // ---------------------------------------------------------------------------- |
82 | // globals | |
83 | // ---------------------------------------------------------------------------- | |
84 | ||
77ffb593 | 85 | // the name of the default wxWidgets class |
46fa338b RR |
86 | #ifdef __WXWINCE__ |
87 | extern wxChar *wxCanvasClassName; | |
88 | #else | |
b225f659 | 89 | extern const wxChar *wxCanvasClassName; |
46fa338b | 90 | #endif |
b225f659 | 91 | |
2b5f62a0 VZ |
92 | // ---------------------------------------------------------------------------- |
93 | // wxTLWHiddenParentModule: used to manage the hidden parent window (we need a | |
94 | // module to ensure that the window is always deleted) | |
95 | // ---------------------------------------------------------------------------- | |
96 | ||
97 | class wxTLWHiddenParentModule : public wxModule | |
98 | { | |
99 | public: | |
100 | // module init/finalize | |
101 | virtual bool OnInit(); | |
102 | virtual void OnExit(); | |
103 | ||
104 | // get the hidden window (creates on demand) | |
105 | static HWND GetHWND(); | |
106 | ||
107 | private: | |
108 | // the HWND of the hidden parent | |
109 | static HWND ms_hwnd; | |
110 | ||
111 | // the class used to create it | |
112 | static const wxChar *ms_className; | |
113 | ||
114 | DECLARE_DYNAMIC_CLASS(wxTLWHiddenParentModule) | |
115 | }; | |
116 | ||
117 | IMPLEMENT_DYNAMIC_CLASS(wxTLWHiddenParentModule, wxModule) | |
9dfef5ac | 118 | |
82c9f85c VZ |
119 | // ============================================================================ |
120 | // wxTopLevelWindowMSW implementation | |
121 | // ============================================================================ | |
122 | ||
085ad686 VZ |
123 | BEGIN_EVENT_TABLE(wxTopLevelWindowMSW, wxTopLevelWindowBase) |
124 | EVT_ACTIVATE(wxTopLevelWindowMSW::OnActivate) | |
125 | END_EVENT_TABLE() | |
126 | ||
82c9f85c VZ |
127 | // ---------------------------------------------------------------------------- |
128 | // wxTopLevelWindowMSW creation | |
129 | // ---------------------------------------------------------------------------- | |
130 | ||
131 | void wxTopLevelWindowMSW::Init() | |
132 | { | |
133 | m_iconized = | |
bfbb0b4c | 134 | m_maximizeOnShow = false; |
b225f659 | 135 | |
c641b1d2 VS |
136 | // Data to save/restore when calling ShowFullScreen |
137 | m_fsStyle = 0; | |
138 | m_fsOldWindowStyle = 0; | |
bfbb0b4c WS |
139 | m_fsIsMaximized = false; |
140 | m_fsIsShowing = false; | |
085ad686 VZ |
141 | |
142 | m_winLastFocused = (wxWindow *)NULL; | |
fb8a56b7 | 143 | |
3180bc0e | 144 | #if defined(__SMARTPHONE__) && defined(__WXWINCE__) |
fb8a56b7 WS |
145 | m_MenuBarHWND = 0; |
146 | #endif | |
08b97268 WS |
147 | |
148 | #if defined(__SMARTPHONE__) || defined(__POCKETPC__) | |
149 | SHACTIVATEINFO* info = new SHACTIVATEINFO; | |
150 | wxZeroMemory(*info); | |
151 | info->cbSize = sizeof(SHACTIVATEINFO); | |
152 | ||
153 | m_activateInfo = (void*) info; | |
154 | #endif | |
b225f659 VZ |
155 | } |
156 | ||
b2d5a7ee | 157 | WXDWORD wxTopLevelWindowMSW::MSWGetStyle(long style, WXDWORD *exflags) const |
b225f659 | 158 | { |
b2d5a7ee VZ |
159 | // let the base class deal with the common styles but fix the ones which |
160 | // don't make sense for us (we also deal with the borders ourselves) | |
161 | WXDWORD msflags = wxWindow::MSWGetStyle | |
162 | ( | |
163 | (style & ~wxBORDER_MASK) | wxBORDER_NONE, exflags | |
31e7e89f | 164 | ) & ~WS_CHILD & ~WS_VISIBLE; |
b225f659 | 165 | |
aa29eefa JS |
166 | // For some reason, WS_VISIBLE needs to be defined on creation for |
167 | // SmartPhone 2003. The title can fail to be displayed otherwise. | |
168 | #if defined(__SMARTPHONE__) || (defined(__WXWINCE__) && _WIN32_WCE < 400) | |
c1855476 | 169 | msflags |= WS_VISIBLE; |
aa29eefa | 170 | ((wxTopLevelWindowMSW*)this)->wxWindowBase::Show(true); |
c1855476 RR |
171 | #endif |
172 | ||
b225f659 | 173 | // first select the kind of window being created |
dfb06c62 VZ |
174 | // |
175 | // note that if we don't set WS_POPUP, Windows assumes WS_OVERLAPPED and | |
0fcd3b92 VZ |
176 | // creates a window with both caption and border, hence we need to use |
177 | // WS_POPUP in a few cases just to avoid having caption/border which we | |
178 | // don't want | |
0e082993 VZ |
179 | |
180 | // border and caption styles | |
6f26f98e | 181 | if ( ( style & wxRESIZE_BORDER ) && !IsAlwaysMaximized()) |
0e082993 | 182 | msflags |= WS_THICKFRAME; |
f8d56830 JS |
183 | else if ( exflags && ((style & wxBORDER_DOUBLE) || (style & wxBORDER_RAISED)) ) |
184 | *exflags |= WS_EX_DLGMODALFRAME; | |
0e082993 VZ |
185 | else if ( !(style & wxBORDER_NONE) ) |
186 | msflags |= WS_BORDER; | |
9cce2fe2 | 187 | #ifndef __POCKETPC__ |
dfb06c62 VZ |
188 | else |
189 | msflags |= WS_POPUP; | |
82eda5ec | 190 | #endif |
0e082993 | 191 | |
9ceeecb9 | 192 | // normally we consider that all windows without a caption must be popups, |
f76858d8 VZ |
193 | // but CE is an exception: there windows normally do not have the caption |
194 | // but shouldn't be made popups as popups can't have menus and don't look | |
195 | // like normal windows anyhow | |
9ceeecb9 JS |
196 | |
197 | // TODO: Smartphone appears to like wxCAPTION, but we should check that | |
198 | // we need it. | |
199 | #if defined(__SMARTPHONE__) || !defined(__WXWINCE__) | |
0e082993 VZ |
200 | if ( style & wxCAPTION ) |
201 | msflags |= WS_CAPTION; | |
f76858d8 | 202 | #ifndef __WXWINCE__ |
dfb06c62 | 203 | else |
b225f659 | 204 | msflags |= WS_POPUP; |
f76858d8 | 205 | #endif // !__WXWINCE__ |
9ceeecb9 | 206 | #endif |
e5aa8b81 | 207 | |
b225f659 VZ |
208 | // next translate the individual flags |
209 | if ( style & wxMINIMIZE_BOX ) | |
210 | msflags |= WS_MINIMIZEBOX; | |
211 | if ( style & wxMAXIMIZE_BOX ) | |
212 | msflags |= WS_MAXIMIZEBOX; | |
9ceeecb9 | 213 | |
faa49bfd | 214 | #ifndef __WXWINCE__ |
b225f659 VZ |
215 | if ( style & wxSYSTEM_MENU ) |
216 | msflags |= WS_SYSMENU; | |
9ceeecb9 | 217 | #endif |
2a47cb1b | 218 | |
f76858d8 VZ |
219 | // NB: under CE these 2 styles are not supported currently, we should |
220 | // call Minimize()/Maximize() "manually" if we want to support them | |
b225f659 VZ |
221 | if ( style & wxMINIMIZE ) |
222 | msflags |= WS_MINIMIZE; | |
9ceeecb9 | 223 | |
b225f659 VZ |
224 | if ( style & wxMAXIMIZE ) |
225 | msflags |= WS_MAXIMIZE; | |
0e082993 | 226 | |
b225f659 | 227 | // Keep this here because it saves recoding this function in wxTinyFrame |
b225f659 VZ |
228 | if ( style & (wxTINY_CAPTION_VERT | wxTINY_CAPTION_HORIZ) ) |
229 | msflags |= WS_CAPTION; | |
82eda5ec | 230 | |
b225f659 VZ |
231 | if ( exflags ) |
232 | { | |
f76858d8 | 233 | // there is no taskbar under CE, so omit all this |
45f27284 | 234 | #if !defined(__WXWINCE__) |
35bf863b VZ |
235 | if ( !(GetExtraStyle() & wxTOPLEVEL_EX_DIALOG) ) |
236 | { | |
9dfef5ac VZ |
237 | if ( style & wxFRAME_TOOL_WINDOW ) |
238 | { | |
239 | // create the palette-like window | |
35bf863b | 240 | *exflags |= WS_EX_TOOLWINDOW; |
404a4d93 VZ |
241 | |
242 | // tool windows shouldn't appear on the taskbar (as documented) | |
243 | style |= wxFRAME_NO_TASKBAR; | |
9dfef5ac VZ |
244 | } |
245 | ||
246 | // We have to solve 2 different problems here: | |
247 | // | |
248 | // 1. frames with wxFRAME_NO_TASKBAR flag shouldn't appear in the | |
249 | // taskbar even if they don't have a parent | |
250 | // | |
251 | // 2. frames without this style should appear in the taskbar even | |
252 | // if they're owned (Windows only puts non owned windows into | |
253 | // the taskbar normally) | |
254 | // | |
255 | // The second one is solved here by using WS_EX_APPWINDOW flag, the | |
256 | // first one is dealt with in our MSWGetParent() method | |
257 | // implementation | |
258 | if ( !(style & wxFRAME_NO_TASKBAR) && GetParent() ) | |
259 | { | |
260 | // need to force the frame to appear in the taskbar | |
35bf863b | 261 | *exflags |= WS_EX_APPWINDOW; |
9dfef5ac VZ |
262 | } |
263 | //else: nothing to do [here] | |
35bf863b | 264 | } |
b554cf63 JS |
265 | |
266 | if ( GetExtraStyle() & wxFRAME_EX_CONTEXTHELP ) | |
267 | *exflags |= WS_EX_CONTEXTHELP; | |
f76858d8 | 268 | #endif // !__WXWINCE__ |
b225f659 VZ |
269 | |
270 | if ( style & wxSTAY_ON_TOP ) | |
271 | *exflags |= WS_EX_TOPMOST; | |
b225f659 VZ |
272 | } |
273 | ||
274 | return msflags; | |
275 | } | |
276 | ||
9dfef5ac VZ |
277 | WXHWND wxTopLevelWindowMSW::MSWGetParent() const |
278 | { | |
279 | // for the frames without wxFRAME_FLOAT_ON_PARENT style we should use NULL | |
280 | // parent HWND or it would be always on top of its parent which is not what | |
281 | // we usually want (in fact, we only want it for frames with the | |
282 | // wxFRAME_FLOAT_ON_PARENT flag) | |
2b5f62a0 | 283 | HWND hwndParent = NULL; |
9dfef5ac VZ |
284 | if ( HasFlag(wxFRAME_FLOAT_ON_PARENT) ) |
285 | { | |
2b5f62a0 | 286 | const wxWindow *parent = GetParent(); |
9dfef5ac | 287 | |
2b5f62a0 VZ |
288 | if ( !parent ) |
289 | { | |
290 | // this flag doesn't make sense then and will be ignored | |
291 | wxFAIL_MSG( _T("wxFRAME_FLOAT_ON_PARENT but no parent?") ); | |
292 | } | |
293 | else | |
294 | { | |
295 | hwndParent = GetHwndOf(parent); | |
296 | } | |
9dfef5ac | 297 | } |
2b5f62a0 | 298 | //else: don't float on parent, must not be owned |
9dfef5ac VZ |
299 | |
300 | // now deal with the 2nd taskbar-related problem (see comments above in | |
301 | // MSWGetStyle()) | |
2b5f62a0 | 302 | if ( HasFlag(wxFRAME_NO_TASKBAR) && !hwndParent ) |
9dfef5ac | 303 | { |
2b5f62a0 VZ |
304 | // use hidden parent |
305 | hwndParent = wxTLWHiddenParentModule::GetHWND(); | |
9dfef5ac VZ |
306 | } |
307 | ||
2b5f62a0 | 308 | return (WXHWND)hwndParent; |
9dfef5ac VZ |
309 | } |
310 | ||
b7e5ba8f JG |
311 | #if defined(__SMARTPHONE__) || defined(__POCKETPC__) |
312 | bool wxTopLevelWindowMSW::HandleSettingChange(WXWPARAM wParam, WXLPARAM lParam) | |
313 | { | |
314 | SHACTIVATEINFO *info = (SHACTIVATEINFO*) m_activateInfo; | |
315 | if ( info ) | |
316 | { | |
1272e71b | 317 | SHHandleWMSettingChange(GetHwnd(), wParam, lParam, info); |
b7e5ba8f JG |
318 | } |
319 | ||
1272e71b | 320 | return wxWindowMSW::HandleSettingChange(wParam, lParam); |
b7e5ba8f JG |
321 | } |
322 | #endif | |
323 | ||
08b97268 WS |
324 | WXLRESULT wxTopLevelWindowMSW::MSWWindowProc(WXUINT message, WXWPARAM wParam, WXLPARAM lParam) |
325 | { | |
326 | WXLRESULT rc = 0; | |
327 | bool processed = false; | |
328 | ||
8b0df0e1 | 329 | #if defined(__SMARTPHONE__) || defined(__POCKETPC__) |
08b97268 WS |
330 | switch ( message ) |
331 | { | |
08b97268 WS |
332 | case WM_ACTIVATE: |
333 | { | |
334 | SHACTIVATEINFO* info = (SHACTIVATEINFO*) m_activateInfo; | |
335 | if (info) | |
336 | { | |
337 | DWORD flags = 0; | |
338 | if (GetExtraStyle() & wxTOPLEVEL_EX_DIALOG) flags = SHA_INPUTDIALOG; | |
339 | SHHandleWMActivate(GetHwnd(), wParam, lParam, info, flags); | |
340 | } | |
341 | ||
342 | // This implicitly sends a wxEVT_ACTIVATE_APP event | |
343 | if (wxTheApp) | |
344 | wxTheApp->SetActive(wParam != 0, FindFocus()); | |
345 | ||
346 | break; | |
347 | } | |
08b97268 WS |
348 | case WM_HIBERNATE: |
349 | { | |
350 | if (wxTheApp) | |
351 | { | |
352 | wxActivateEvent event(wxEVT_HIBERNATE, true, wxID_ANY); | |
353 | event.SetEventObject(wxTheApp); | |
354 | processed = wxTheApp->ProcessEvent(event); | |
355 | } | |
356 | break; | |
357 | } | |
08b97268 | 358 | } |
8b0df0e1 | 359 | #endif |
08b97268 WS |
360 | |
361 | if ( !processed ) | |
362 | rc = wxTopLevelWindowBase::MSWWindowProc(message, wParam, lParam); | |
363 | ||
364 | return rc; | |
365 | } | |
366 | ||
6e8515a3 | 367 | bool wxTopLevelWindowMSW::CreateDialog(const void *dlgTemplate, |
b225f659 VZ |
368 | const wxString& title, |
369 | const wxPoint& pos, | |
370 | const wxSize& size) | |
371 | { | |
372 | #ifdef __WXMICROWIN__ | |
373 | // no dialogs support under MicroWin yet | |
374 | return CreateFrame(title, pos, size); | |
375 | #else // !__WXMICROWIN__ | |
376 | wxWindow *parent = GetParent(); | |
377 | ||
378 | // for the dialogs without wxDIALOG_NO_PARENT style, use the top level | |
379 | // app window as parent - this avoids creating modal dialogs without | |
380 | // parent | |
381 | if ( !parent && !(GetWindowStyleFlag() & wxDIALOG_NO_PARENT) ) | |
382 | { | |
383 | parent = wxTheApp->GetTopWindow(); | |
e058b98d | 384 | |
39cc7a0b | 385 | if ( parent ) |
e058b98d | 386 | { |
39cc7a0b VZ |
387 | // don't use transient windows as parents, this is dangerous as it |
388 | // can lead to a crash if the parent is destroyed before the child | |
389 | // | |
390 | // also don't use the window which is currently hidden as then the | |
391 | // dialog would be hidden as well | |
392 | if ( (parent->GetExtraStyle() & wxWS_EX_TRANSIENT) || | |
393 | !parent->IsShown() ) | |
394 | { | |
395 | parent = NULL; | |
396 | } | |
e058b98d | 397 | } |
b225f659 VZ |
398 | } |
399 | ||
434005ca VZ |
400 | m_hWnd = (WXHWND)::CreateDialogIndirect |
401 | ( | |
402 | wxGetInstance(), | |
403 | (DLGTEMPLATE*)dlgTemplate, | |
404 | parent ? GetHwndOf(parent) : NULL, | |
405 | (DLGPROC)wxDlgProc | |
406 | ); | |
b225f659 VZ |
407 | |
408 | if ( !m_hWnd ) | |
409 | { | |
7e99eddf | 410 | wxFAIL_MSG(wxT("Failed to create dialog. Incorrect DLGTEMPLATE?")); |
b225f659 | 411 | |
7e99eddf | 412 | wxLogSysError(wxT("Can't create dialog using memory template")); |
b225f659 | 413 | |
bfbb0b4c | 414 | return false; |
b225f659 VZ |
415 | } |
416 | ||
b2d5a7ee | 417 | WXDWORD exflags; |
b225f659 VZ |
418 | (void)MSWGetCreateWindowFlags(&exflags); |
419 | ||
420 | if ( exflags ) | |
421 | { | |
422 | ::SetWindowLong(GetHwnd(), GWL_EXSTYLE, exflags); | |
cef338d3 VZ |
423 | ::SetWindowPos(GetHwnd(), |
424 | exflags & WS_EX_TOPMOST ? HWND_TOPMOST : 0, | |
425 | 0, 0, 0, 0, | |
b225f659 VZ |
426 | SWP_NOSIZE | |
427 | SWP_NOMOVE | | |
cef338d3 | 428 | (exflags & WS_EX_TOPMOST ? 0 : SWP_NOZORDER) | |
b225f659 VZ |
429 | SWP_NOACTIVATE); |
430 | } | |
431 | ||
b554cf63 | 432 | #if !defined(__WXWINCE__) |
b225f659 VZ |
433 | // For some reason, the system menu is activated when we use the |
434 | // WS_EX_CONTEXTHELP style, so let's set a reasonable icon | |
435 | if ( exflags & WS_EX_CONTEXTHELP ) | |
436 | { | |
437 | wxFrame *winTop = wxDynamicCast(wxTheApp->GetTopWindow(), wxFrame); | |
438 | if ( winTop ) | |
439 | { | |
440 | wxIcon icon = winTop->GetIcon(); | |
441 | if ( icon.Ok() ) | |
442 | { | |
443 | ::SendMessage(GetHwnd(), WM_SETICON, | |
444 | (WPARAM)TRUE, | |
445 | (LPARAM)GetHiconOf(icon)); | |
446 | } | |
447 | } | |
448 | } | |
b554cf63 | 449 | #endif |
b225f659 VZ |
450 | |
451 | // move the dialog to its initial position without forcing repainting | |
452 | int x, y, w, h; | |
72a11184 | 453 | (void)MSWGetCreateWindowCoords(pos, size, x, y, w, h); |
4c53c743 | 454 | |
26268100 RD |
455 | if ( x == (int)CW_USEDEFAULT ) |
456 | { | |
457 | // centre it on the screen - what else can we do? | |
458 | wxSize sizeDpy = wxGetDisplaySize(); | |
459 | ||
460 | x = (sizeDpy.x - w) / 2; | |
461 | y = (sizeDpy.y - h) / 2; | |
462 | } | |
463 | ||
a9928e9d | 464 | #if !defined(__WXWINCE__) || defined(__WINCE_STANDARDSDK__) |
4c53c743 VZ |
465 | if ( !::MoveWindow(GetHwnd(), x, y, w, h, FALSE) ) |
466 | { | |
467 | wxLogLastError(wxT("MoveWindow")); | |
b225f659 | 468 | } |
28c191aa | 469 | #endif |
b225f659 VZ |
470 | |
471 | if ( !title.empty() ) | |
472 | { | |
473 | ::SetWindowText(GetHwnd(), title); | |
474 | } | |
475 | ||
476 | SubclassWin(m_hWnd); | |
faa49bfd | 477 | |
aa29eefa JS |
478 | #ifdef __SMARTPHONE__ |
479 | // Work around title non-display glitch | |
480 | Show(false); | |
faa49bfd | 481 | #endif |
b225f659 | 482 | |
bfbb0b4c | 483 | return true; |
b225f659 VZ |
484 | #endif // __WXMICROWIN__/!__WXMICROWIN__ |
485 | } | |
486 | ||
487 | bool wxTopLevelWindowMSW::CreateFrame(const wxString& title, | |
488 | const wxPoint& pos, | |
489 | const wxSize& size) | |
490 | { | |
b2d5a7ee VZ |
491 | WXDWORD exflags; |
492 | WXDWORD flags = MSWGetCreateWindowFlags(&exflags); | |
b225f659 | 493 | |
6f26f98e WS |
494 | wxSize sz; |
495 | ||
496 | if (IsAlwaysMaximized()) | |
497 | { | |
498 | sz = wxDefaultSize; | |
499 | } | |
500 | else | |
501 | { | |
502 | sz = size; | |
503 | } | |
960b193e | 504 | |
aa29eefa JS |
505 | bool result = MSWCreate(wxCanvasClassName, title, pos, sz, flags, exflags); |
506 | ||
aa29eefa | 507 | return result; |
82c9f85c VZ |
508 | } |
509 | ||
510 | bool wxTopLevelWindowMSW::Create(wxWindow *parent, | |
511 | wxWindowID id, | |
512 | const wxString& title, | |
513 | const wxPoint& pos, | |
514 | const wxSize& size, | |
515 | long style, | |
516 | const wxString& name) | |
517 | { | |
999836aa | 518 | bool ret wxDUMMY_INITIALIZE(false); |
2a47cb1b | 519 | |
82c9f85c VZ |
520 | // init our fields |
521 | Init(); | |
2a47cb1b VZ |
522 | |
523 | wxSize sizeReal = size; | |
524 | if ( !sizeReal.IsFullySpecified() ) | |
525 | { | |
526 | sizeReal.SetDefaults(GetDefaultSize()); | |
527 | } | |
82c9f85c VZ |
528 | |
529 | m_windowStyle = style; | |
530 | ||
531 | SetName(name); | |
532 | ||
bfbb0b4c | 533 | m_windowId = id == wxID_ANY ? NewControlId() : id; |
82c9f85c VZ |
534 | |
535 | wxTopLevelWindows.Append(this); | |
536 | ||
537 | if ( parent ) | |
538 | parent->AddChild(this); | |
539 | ||
b225f659 VZ |
540 | if ( GetExtraStyle() & wxTOPLEVEL_EX_DIALOG ) |
541 | { | |
b225f659 VZ |
542 | // we have different dialog templates to allows creation of dialogs |
543 | // with & without captions under MSWindows, resizeable or not (but a | |
544 | // resizeable dialog always has caption - otherwise it would look too | |
545 | // strange) | |
434005ca VZ |
546 | |
547 | // we need 3 additional WORDs for dialog menu, class and title (as we | |
548 | // don't use DS_SETFONT we don't need the fourth WORD for the font) | |
549 | static const int dlgsize = sizeof(DLGTEMPLATE) + (sizeof(WORD) * 3); | |
550 | DLGTEMPLATE *dlgTemplate = (DLGTEMPLATE *)malloc(dlgsize); | |
551 | memset(dlgTemplate, 0, dlgsize); | |
552 | ||
553 | // these values are arbitrary, they won't be used normally anyhow | |
6e8515a3 JS |
554 | dlgTemplate->x = 34; |
555 | dlgTemplate->y = 22; | |
556 | dlgTemplate->cx = 144; | |
557 | dlgTemplate->cy = 75; | |
558 | ||
434005ca VZ |
559 | // reuse the code in MSWGetStyle() but correct the results slightly for |
560 | // the dialog | |
561 | dlgTemplate->style = MSWGetStyle(style, NULL); | |
562 | ||
563 | // all dialogs are popups | |
564 | dlgTemplate->style |= WS_POPUP; | |
565 | ||
9cce2fe2 | 566 | #ifndef __WXWINCE__ |
434005ca VZ |
567 | // force 3D-look if necessary, it looks impossibly ugly otherwise |
568 | if ( style & (wxRESIZE_BORDER | wxCAPTION) ) | |
569 | dlgTemplate->style |= DS_MODALFRAME; | |
9cce2fe2 | 570 | #endif |
b225f659 | 571 | |
2a47cb1b | 572 | ret = CreateDialog(dlgTemplate, title, pos, sizeReal); |
6e8515a3 | 573 | free(dlgTemplate); |
b225f659 VZ |
574 | } |
575 | else // !dialog | |
576 | { | |
2a47cb1b | 577 | ret = CreateFrame(title, pos, sizeReal); |
9ca4dd06 VS |
578 | } |
579 | ||
9ceeecb9 | 580 | #ifndef __WXWINCE__ |
9ca4dd06 VS |
581 | if ( ret && !(GetWindowStyleFlag() & wxCLOSE_BOX) ) |
582 | { | |
583 | EnableCloseButton(false); | |
b225f659 | 584 | } |
9ceeecb9 | 585 | #endif |
9ca4dd06 | 586 | |
d7e0024b VZ |
587 | // for standard dialogs the dialog manager generates WM_CHANGEUISTATE |
588 | // itself but for custom windows we have to do it ourselves in order to | |
589 | // make the keyboard indicators (such as underlines for accelerators and | |
590 | // focus rectangles) work under Win2k+ | |
bb655ead VZ |
591 | if ( ret ) |
592 | { | |
3ef092d6 | 593 | MSWUpdateUIState(UIS_INITIALIZE); |
bb655ead VZ |
594 | } |
595 | ||
f43255e8 WS |
596 | // Note: if we include PocketPC in this test, dialogs can fail to show up, |
597 | // for example the text entry dialog in the dialogs sample. Problem with Maximise()? | |
598 | #if defined(__WXWINCE__) && (defined(__SMARTPHONE__) || defined(__WINCE_STANDARDSDK__)) | |
6f26f98e | 599 | if ( ( style & wxMAXIMIZE ) || IsAlwaysMaximized() ) |
991420e6 WS |
600 | { |
601 | this->Maximize(); | |
602 | } | |
f43255e8 | 603 | #endif |
82eda5ec | 604 | |
3180bc0e | 605 | #if defined(__SMARTPHONE__) && defined(__WXWINCE__) |
fb8a56b7 WS |
606 | SetRightMenu(); // to nothing for initialization |
607 | #endif | |
608 | ||
9ca4dd06 | 609 | return ret; |
82c9f85c VZ |
610 | } |
611 | ||
612 | wxTopLevelWindowMSW::~wxTopLevelWindowMSW() | |
613 | { | |
08b97268 WS |
614 | #if defined(__SMARTPHONE__) || defined(__POCKETPC__) |
615 | SHACTIVATEINFO* info = (SHACTIVATEINFO*) m_activateInfo; | |
616 | delete info; | |
617 | m_activateInfo = NULL; | |
618 | #endif | |
619 | ||
d6fb86a8 VZ |
620 | // after destroying an owned window, Windows activates the next top level |
621 | // window in Z order but it may be different from our owner (to reproduce | |
622 | // this simply Alt-TAB to another application and back before closing the | |
623 | // owned frame) whereas we always want to yield activation to our parent | |
624 | if ( HasFlag(wxFRAME_FLOAT_ON_PARENT) ) | |
625 | { | |
626 | wxWindow *parent = GetParent(); | |
627 | if ( parent ) | |
628 | { | |
629 | ::BringWindowToTop(GetHwndOf(parent)); | |
630 | } | |
631 | } | |
82c9f85c VZ |
632 | } |
633 | ||
82c9f85c VZ |
634 | // ---------------------------------------------------------------------------- |
635 | // wxTopLevelWindowMSW showing | |
636 | // ---------------------------------------------------------------------------- | |
637 | ||
638 | void wxTopLevelWindowMSW::DoShowWindow(int nShowCmd) | |
639 | { | |
640 | ::ShowWindow(GetHwnd(), nShowCmd); | |
641 | ||
642 | m_iconized = nShowCmd == SW_MINIMIZE; | |
643 | } | |
644 | ||
645 | bool wxTopLevelWindowMSW::Show(bool show) | |
646 | { | |
647 | // don't use wxWindow version as we want to call DoShowWindow() ourselves | |
648 | if ( !wxWindowBase::Show(show) ) | |
bfbb0b4c | 649 | return false; |
82c9f85c VZ |
650 | |
651 | int nShowCmd; | |
652 | if ( show ) | |
653 | { | |
654 | if ( m_maximizeOnShow ) | |
655 | { | |
656 | // show and maximize | |
657 | nShowCmd = SW_MAXIMIZE; | |
658 | ||
991420e6 | 659 | // This is necessary, or no window appears |
aa29eefa | 660 | #if defined( __WINCE_STANDARDSDK__) || defined(__SMARTPHONE__) |
991420e6 | 661 | DoShowWindow(SW_SHOW); |
a9928e9d JS |
662 | #endif |
663 | ||
bfbb0b4c | 664 | m_maximizeOnShow = false; |
82c9f85c VZ |
665 | } |
666 | else // just show | |
667 | { | |
84cff965 JS |
668 | if ( GetWindowStyle() & wxFRAME_TOOL_WINDOW ) |
669 | nShowCmd = SW_SHOWNA; | |
670 | else | |
671 | nShowCmd = SW_SHOW; | |
82c9f85c VZ |
672 | } |
673 | } | |
674 | else // hide | |
675 | { | |
676 | nShowCmd = SW_HIDE; | |
677 | } | |
678 | ||
679 | DoShowWindow(nShowCmd); | |
680 | ||
a9928e9d JS |
681 | #if defined(__WXWINCE__) && (_WIN32_WCE >= 400 && !defined(__POCKETPC__) && !defined(__SMARTPHONE__)) |
682 | // Addornments have to be added when the frame is the correct size | |
683 | wxFrame* frame = wxDynamicCast(this, wxFrame); | |
684 | if (frame && frame->GetMenuBar()) | |
685 | frame->GetMenuBar()->AddAdornments(GetWindowStyleFlag()); | |
686 | #endif | |
0567fdfc KH |
687 | |
688 | return true; | |
82c9f85c VZ |
689 | } |
690 | ||
691 | // ---------------------------------------------------------------------------- | |
692 | // wxTopLevelWindowMSW maximize/minimize | |
693 | // ---------------------------------------------------------------------------- | |
694 | ||
695 | void wxTopLevelWindowMSW::Maximize(bool maximize) | |
696 | { | |
697 | if ( IsShown() ) | |
698 | { | |
699 | // just maximize it directly | |
700 | DoShowWindow(maximize ? SW_MAXIMIZE : SW_RESTORE); | |
701 | } | |
702 | else // hidden | |
703 | { | |
73c902d6 DS |
704 | // we can't maximize the hidden frame because it shows it as well, |
705 | // so just remember that we should do it later in this case | |
a0be434e | 706 | m_maximizeOnShow = maximize; |
ac2de323 VZ |
707 | |
708 | // after calling Maximize() the client code expects to get the frame | |
709 | // "real" size and doesn't want to know that, because of implementation | |
710 | // details, the frame isn't really maximized yet but will be only once | |
711 | // it's shown, so return our size as it will be then in this case | |
7889b795 VZ |
712 | if ( maximize ) |
713 | { | |
73c902d6 | 714 | // unfortunately we don't know which display we're on yet so we |
7889b795 VZ |
715 | // have to use the default one |
716 | SetSize(wxGetClientDisplayRect().GetSize()); | |
717 | } | |
718 | //else: can't do anything in this case, we don't have the old size | |
82c9f85c VZ |
719 | } |
720 | } | |
721 | ||
722 | bool wxTopLevelWindowMSW::IsMaximized() const | |
723 | { | |
979a0320 WS |
724 | return IsAlwaysMaximized() || |
725 | #if !defined(__SMARTPHONE__) && !defined(__POCKETPC__) | |
726 | (::IsZoomed(GetHwnd()) != 0) || | |
4676948b | 727 | #endif |
979a0320 | 728 | m_maximizeOnShow; |
82c9f85c VZ |
729 | } |
730 | ||
731 | void wxTopLevelWindowMSW::Iconize(bool iconize) | |
732 | { | |
733 | DoShowWindow(iconize ? SW_MINIMIZE : SW_RESTORE); | |
734 | } | |
735 | ||
736 | bool wxTopLevelWindowMSW::IsIconized() const | |
737 | { | |
4676948b | 738 | #ifdef __WXWINCE__ |
bfbb0b4c | 739 | return false; |
4676948b | 740 | #else |
9f01395e VZ |
741 | // don't use m_iconized, it may be briefly out of sync with the real state |
742 | // as it's only modified when we receive a WM_SIZE and we could be called | |
743 | // from an event handler from one of the messages we receive before it, | |
744 | // such as WM_MOVE | |
745 | return ::IsIconic(GetHwnd()) != 0; | |
4676948b | 746 | #endif |
82c9f85c VZ |
747 | } |
748 | ||
749 | void wxTopLevelWindowMSW::Restore() | |
750 | { | |
751 | DoShowWindow(SW_RESTORE); | |
752 | } | |
753 | ||
c641b1d2 VS |
754 | // ---------------------------------------------------------------------------- |
755 | // wxTopLevelWindowMSW fullscreen | |
756 | // ---------------------------------------------------------------------------- | |
757 | ||
758 | bool wxTopLevelWindowMSW::ShowFullScreen(bool show, long style) | |
759 | { | |
716645d3 | 760 | if ( show == IsFullScreen() ) |
c641b1d2 | 761 | { |
716645d3 | 762 | // nothing to do |
bfbb0b4c | 763 | return true; |
716645d3 VZ |
764 | } |
765 | ||
766 | m_fsIsShowing = show; | |
c641b1d2 | 767 | |
716645d3 VZ |
768 | if ( show ) |
769 | { | |
c641b1d2 VS |
770 | m_fsStyle = style; |
771 | ||
772 | // zap the frame borders | |
773 | ||
774 | // save the 'normal' window style | |
716645d3 | 775 | m_fsOldWindowStyle = GetWindowLong(GetHwnd(), GWL_STYLE); |
c641b1d2 VS |
776 | |
777 | // save the old position, width & height, maximize state | |
778 | m_fsOldSize = GetRect(); | |
779 | m_fsIsMaximized = IsMaximized(); | |
780 | ||
781 | // decide which window style flags to turn off | |
782 | LONG newStyle = m_fsOldWindowStyle; | |
783 | LONG offFlags = 0; | |
784 | ||
785 | if (style & wxFULLSCREEN_NOBORDER) | |
4676948b JS |
786 | { |
787 | offFlags |= WS_BORDER; | |
788 | #ifndef __WXWINCE__ | |
789 | offFlags |= WS_THICKFRAME; | |
790 | #endif | |
791 | } | |
c641b1d2 | 792 | if (style & wxFULLSCREEN_NOCAPTION) |
716645d3 | 793 | offFlags |= WS_CAPTION | WS_SYSMENU; |
c641b1d2 | 794 | |
716645d3 | 795 | newStyle &= ~offFlags; |
c641b1d2 VS |
796 | |
797 | // change our window style to be compatible with full-screen mode | |
716645d3 | 798 | ::SetWindowLong(GetHwnd(), GWL_STYLE, newStyle); |
c641b1d2 | 799 | |
716645d3 VZ |
800 | wxRect rect; |
801 | #if wxUSE_DISPLAY | |
802 | // resize to the size of the display containing us | |
803 | int dpy = wxDisplay::GetFromWindow(this); | |
804 | if ( dpy != wxNOT_FOUND ) | |
805 | { | |
806 | rect = wxDisplay(dpy).GetGeometry(); | |
807 | } | |
808 | else // fall back to the main desktop | |
86828e0f | 809 | #endif // wxUSE_DISPLAY |
716645d3 VZ |
810 | { |
811 | // resize to the size of the desktop | |
812 | wxCopyRECTToRect(wxGetWindowRect(::GetDesktopWindow()), rect); | |
80a81a12 JS |
813 | #ifdef __WXWINCE__ |
814 | // FIXME: size of the bottom menu (toolbar) | |
815 | // should be taken in account | |
816 | rect.height += rect.y; | |
817 | rect.y = 0; | |
4676948b | 818 | #endif |
716645d3 | 819 | } |
c641b1d2 | 820 | |
716645d3 | 821 | SetSize(rect); |
c641b1d2 VS |
822 | |
823 | // now flush the window style cache and actually go full-screen | |
716645d3 | 824 | long flags = SWP_FRAMECHANGED; |
c641b1d2 | 825 | |
716645d3 VZ |
826 | // showing the frame full screen should also show it if it's still |
827 | // hidden | |
828 | if ( !IsShown() ) | |
829 | { | |
830 | // don't call wxWindow version to avoid flicker from calling | |
831 | // ::ShowWindow() -- we're going to show the window at the correct | |
832 | // location directly below -- but do call the wxWindowBase version | |
833 | // to sync the internal m_isShown flag | |
834 | wxWindowBase::Show(); | |
c641b1d2 | 835 | |
716645d3 VZ |
836 | flags |= SWP_SHOWWINDOW; |
837 | } | |
c641b1d2 | 838 | |
716645d3 VZ |
839 | SetWindowPos(GetHwnd(), HWND_TOP, |
840 | rect.x, rect.y, rect.width, rect.height, | |
841 | flags); | |
c641b1d2 | 842 | |
3d487566 | 843 | #if !defined(__HANDHELDPC__) && (defined(__WXWINCE__) && (_WIN32_WCE < 400)) |
80a81a12 JS |
844 | ::SHFullScreen(GetHwnd(), SHFS_HIDETASKBAR | SHFS_HIDESIPBUTTON); |
845 | #endif | |
846 | ||
716645d3 VZ |
847 | // finally send an event allowing the window to relayout itself &c |
848 | wxSizeEvent event(rect.GetSize(), GetId()); | |
849 | GetEventHandler()->ProcessEvent(event); | |
850 | } | |
851 | else // stop showing full screen | |
852 | { | |
3d487566 | 853 | #if !defined(__HANDHELDPC__) && (defined(__WXWINCE__) && (_WIN32_WCE < 400)) |
80a81a12 JS |
854 | ::SHFullScreen(GetHwnd(), SHFS_SHOWTASKBAR | SHFS_SHOWSIPBUTTON); |
855 | #endif | |
c641b1d2 | 856 | Maximize(m_fsIsMaximized); |
716645d3 VZ |
857 | SetWindowLong(GetHwnd(),GWL_STYLE, m_fsOldWindowStyle); |
858 | SetWindowPos(GetHwnd(),HWND_TOP,m_fsOldSize.x, m_fsOldSize.y, | |
c641b1d2 | 859 | m_fsOldSize.width, m_fsOldSize.height, SWP_FRAMECHANGED); |
c641b1d2 | 860 | } |
716645d3 | 861 | |
bfbb0b4c | 862 | return true; |
c641b1d2 VS |
863 | } |
864 | ||
82c9f85c VZ |
865 | // ---------------------------------------------------------------------------- |
866 | // wxTopLevelWindowMSW misc | |
867 | // ---------------------------------------------------------------------------- | |
868 | ||
faa49bfd WS |
869 | void wxTopLevelWindowMSW::SetTitle( const wxString& title) |
870 | { | |
871 | SetLabel(title); | |
872 | } | |
873 | ||
874 | wxString wxTopLevelWindowMSW::GetTitle() const | |
875 | { | |
876 | return GetLabel(); | |
877 | } | |
878 | ||
82c9f85c VZ |
879 | void wxTopLevelWindowMSW::SetIcon(const wxIcon& icon) |
880 | { | |
f618020a MB |
881 | SetIcons( wxIconBundle( icon ) ); |
882 | } | |
883 | ||
884 | void wxTopLevelWindowMSW::SetIcons(const wxIconBundle& icons) | |
885 | { | |
886 | wxTopLevelWindowBase::SetIcons(icons); | |
82c9f85c | 887 | |
a71d815b | 888 | #if !defined(__WXMICROWIN__) |
f618020a MB |
889 | const wxIcon& sml = icons.GetIcon( wxSize( 16, 16 ) ); |
890 | if( sml.Ok() && sml.GetWidth() == 16 && sml.GetHeight() == 16 ) | |
891 | { | |
892 | ::SendMessage( GetHwndOf( this ), WM_SETICON, ICON_SMALL, | |
893 | (LPARAM)GetHiconOf(sml) ); | |
894 | } | |
895 | ||
896 | const wxIcon& big = icons.GetIcon( wxSize( 32, 32 ) ); | |
897 | if( big.Ok() && big.GetWidth() == 32 && big.GetHeight() == 32 ) | |
82c9f85c | 898 | { |
f618020a MB |
899 | ::SendMessage( GetHwndOf( this ), WM_SETICON, ICON_BIG, |
900 | (LPARAM)GetHiconOf(big) ); | |
82c9f85c | 901 | } |
a71d815b | 902 | #endif // !__WXMICROWIN__ |
82c9f85c | 903 | } |
a91cf80c VZ |
904 | |
905 | bool wxTopLevelWindowMSW::EnableCloseButton(bool enable) | |
906 | { | |
4676948b | 907 | #if !defined(__WXMICROWIN__) |
a91cf80c | 908 | // get system (a.k.a. window) menu |
068959b9 | 909 | HMENU hmenu = GetSystemMenu(GetHwnd(), FALSE /* get it */); |
a91cf80c VZ |
910 | if ( !hmenu ) |
911 | { | |
660b1906 VZ |
912 | // no system menu at all -- ok if we want to remove the close button |
913 | // anyhow, but bad if we want to show it | |
914 | return !enable; | |
a91cf80c VZ |
915 | } |
916 | ||
917 | // enabling/disabling the close item from it also automatically | |
918 | // disables/enables the close title bar button | |
aaf765a5 VZ |
919 | if ( ::EnableMenuItem(hmenu, SC_CLOSE, |
920 | MF_BYCOMMAND | | |
921 | (enable ? MF_ENABLED : MF_GRAYED)) == -1 ) | |
a91cf80c VZ |
922 | { |
923 | wxLogLastError(_T("EnableMenuItem(SC_CLOSE)")); | |
924 | ||
bfbb0b4c | 925 | return false; |
a91cf80c | 926 | } |
960b193e | 927 | #ifndef __WXWINCE__ |
a91cf80c VZ |
928 | // update appearance immediately |
929 | if ( !::DrawMenuBar(GetHwnd()) ) | |
930 | { | |
931 | wxLogLastError(_T("DrawMenuBar")); | |
932 | } | |
960b193e | 933 | #endif |
a91cf80c VZ |
934 | #endif // !__WXMICROWIN__ |
935 | ||
bfbb0b4c | 936 | return true; |
a91cf80c VZ |
937 | } |
938 | ||
2a47cb1b VZ |
939 | #ifndef __WXWINCE__ |
940 | ||
1542ea39 RD |
941 | bool wxTopLevelWindowMSW::SetShape(const wxRegion& region) |
942 | { | |
bfbb0b4c | 943 | wxCHECK_MSG( HasFlag(wxFRAME_SHAPED), false, |
6a7e6411 RD |
944 | _T("Shaped windows must be created with the wxFRAME_SHAPED style.")); |
945 | ||
1542ea39 RD |
946 | // The empty region signifies that the shape should be removed from the |
947 | // window. | |
948 | if ( region.IsEmpty() ) | |
949 | { | |
950 | if (::SetWindowRgn(GetHwnd(), NULL, TRUE) == 0) | |
951 | { | |
952 | wxLogLastError(_T("SetWindowRgn")); | |
bfbb0b4c | 953 | return false; |
1542ea39 | 954 | } |
bfbb0b4c | 955 | return true; |
1542ea39 RD |
956 | } |
957 | ||
958 | // Windows takes ownership of the region, so | |
959 | // we'll have to make a copy of the region to give to it. | |
960 | DWORD noBytes = ::GetRegionData(GetHrgnOf(region), 0, NULL); | |
961 | RGNDATA *rgnData = (RGNDATA*) new char[noBytes]; | |
962 | ::GetRegionData(GetHrgnOf(region), noBytes, rgnData); | |
963 | HRGN hrgn = ::ExtCreateRegion(NULL, noBytes, rgnData); | |
964 | delete[] (char*) rgnData; | |
965 | ||
966 | // SetWindowRgn expects the region to be in coordinants | |
967 | // relative to the window, not the client area. Figure | |
968 | // out the offset, if any. | |
969 | RECT rect; | |
970 | DWORD dwStyle = ::GetWindowLong(GetHwnd(), GWL_STYLE); | |
971 | DWORD dwExStyle = ::GetWindowLong(GetHwnd(), GWL_EXSTYLE); | |
972 | ::GetClientRect(GetHwnd(), &rect); | |
973 | ::AdjustWindowRectEx(&rect, dwStyle, FALSE, dwExStyle); | |
974 | ::OffsetRgn(hrgn, -rect.left, -rect.top); | |
975 | ||
976 | // Now call the shape API with the new region. | |
977 | if (::SetWindowRgn(GetHwnd(), hrgn, TRUE) == 0) | |
978 | { | |
979 | wxLogLastError(_T("SetWindowRgn")); | |
bfbb0b4c | 980 | return false; |
1542ea39 | 981 | } |
bfbb0b4c | 982 | return true; |
1542ea39 RD |
983 | } |
984 | ||
2a47cb1b VZ |
985 | #endif // !__WXWINCE__ |
986 | ||
dc92adaf VZ |
987 | void wxTopLevelWindowMSW::RequestUserAttention(int flags) |
988 | { | |
3a6b0a3e VZ |
989 | // check if we can use FlashWindowEx(): unfortunately a simple test for |
990 | // FLASHW_STOP doesn't work because MSVC6 headers do #define it but don't | |
991 | // provide FlashWindowEx() declaration, so try to detect whether we have | |
992 | // real headers for WINVER 0x0500 by checking for existence of a symbol not | |
993 | // declated in MSVC6 header | |
994 | #if defined(FLASHW_STOP) && defined(VK_XBUTTON1) | |
dc92adaf VZ |
995 | // available in the headers, check if it is supported by the system |
996 | typedef BOOL (WINAPI *FlashWindowEx_t)(FLASHWINFO *pfwi); | |
997 | FlashWindowEx_t s_pfnFlashWindowEx = NULL; | |
998 | if ( !s_pfnFlashWindowEx ) | |
999 | { | |
1000 | wxDynamicLibrary dllUser32(_T("user32.dll")); | |
1001 | s_pfnFlashWindowEx = (FlashWindowEx_t) | |
1002 | dllUser32.GetSymbol(_T("FlashWindowEx")); | |
1003 | ||
3103e8a9 | 1004 | // we can safely unload user32.dll here, it's going to remain loaded as |
dc92adaf VZ |
1005 | // long as the program is running anyhow |
1006 | } | |
1007 | ||
1008 | if ( s_pfnFlashWindowEx ) | |
1009 | { | |
1010 | WinStruct<FLASHWINFO> fwi; | |
1011 | fwi.hwnd = GetHwnd(); | |
1012 | fwi.dwFlags = FLASHW_ALL; | |
1013 | if ( flags & wxUSER_ATTENTION_INFO ) | |
1014 | { | |
1015 | // just flash a few times | |
1016 | fwi.uCount = 3; | |
1017 | } | |
1018 | else // wxUSER_ATTENTION_ERROR | |
1019 | { | |
1020 | // flash until the user notices it | |
1021 | fwi.dwFlags |= FLASHW_TIMERNOFG; | |
1022 | } | |
1023 | ||
1024 | s_pfnFlashWindowEx(&fwi); | |
1025 | } | |
1026 | else // FlashWindowEx() not available | |
4f79eb79 | 1027 | #endif // FlashWindowEx() defined |
dc92adaf VZ |
1028 | { |
1029 | wxUnusedVar(flags); | |
068959b9 | 1030 | #ifndef __WXWINCE__ |
dc92adaf | 1031 | ::FlashWindow(GetHwnd(), TRUE); |
068959b9 | 1032 | #endif // __WXWINCE__ |
dc92adaf VZ |
1033 | } |
1034 | } | |
1035 | ||
085ad686 VZ |
1036 | // ---------------------------------------------------------------------------- |
1037 | // wxTopLevelWindow event handling | |
1038 | // ---------------------------------------------------------------------------- | |
1039 | ||
1040 | // Default activation behaviour - set the focus for the first child | |
1041 | // subwindow found. | |
1042 | void wxTopLevelWindowMSW::OnActivate(wxActivateEvent& event) | |
1043 | { | |
1044 | if ( event.GetActive() ) | |
1045 | { | |
2736a5de VZ |
1046 | // restore focus to the child which was last focused unless we already |
1047 | // have it | |
1048 | wxLogTrace(_T("focus"), _T("wxTLW %08x activated."), (int) m_hWnd); | |
085ad686 | 1049 | |
2736a5de VZ |
1050 | wxWindow *winFocus = FindFocus(); |
1051 | if ( !winFocus || wxGetTopLevelParent(winFocus) != this ) | |
085ad686 | 1052 | { |
2736a5de VZ |
1053 | wxWindow *parent = m_winLastFocused ? m_winLastFocused->GetParent() |
1054 | : NULL; | |
1055 | if ( !parent ) | |
1056 | { | |
1057 | parent = this; | |
1058 | } | |
085ad686 | 1059 | |
2736a5de VZ |
1060 | wxSetFocusToChild(parent, &m_winLastFocused); |
1061 | } | |
085ad686 VZ |
1062 | } |
1063 | else // deactivating | |
1064 | { | |
1065 | // remember the last focused child if it is our child | |
1066 | m_winLastFocused = FindFocus(); | |
1067 | ||
13834828 VZ |
1068 | if ( m_winLastFocused ) |
1069 | { | |
1070 | // let it know that it doesn't have focus any more | |
77e00fe9 | 1071 | m_winLastFocused->HandleKillFocus((WXHWND)NULL); |
13834828 | 1072 | |
2736a5de VZ |
1073 | // and don't remember it if it's a child from some other frame |
1074 | if ( wxGetTopLevelParent(m_winLastFocused) != this ) | |
085ad686 | 1075 | { |
2736a5de | 1076 | m_winLastFocused = NULL; |
085ad686 | 1077 | } |
085ad686 VZ |
1078 | } |
1079 | ||
1080 | wxLogTrace(_T("focus"), | |
1081 | _T("wxTLW %08x deactivated, last focused: %08x."), | |
9b601c24 GRG |
1082 | (int) m_hWnd, |
1083 | (int) (m_winLastFocused ? GetHwndOf(m_winLastFocused) | |
1084 | : NULL)); | |
085ad686 VZ |
1085 | |
1086 | event.Skip(); | |
1087 | } | |
1088 | } | |
1089 | ||
77ffb593 | 1090 | // the DialogProc for all wxWidgets dialogs |
12447831 | 1091 | LONG APIENTRY _EXPORT |
0fc58b86 | 1092 | wxDlgProc(HWND hDlg, |
2eb10e2a | 1093 | UINT message, |
3c96418b JG |
1094 | WPARAM WXUNUSED(wParam), |
1095 | LPARAM WXUNUSED(lParam)) | |
12447831 | 1096 | { |
08b97268 | 1097 | switch ( message ) |
12447831 | 1098 | { |
08b97268 WS |
1099 | case WM_INITDIALOG: |
1100 | { | |
1101 | // under CE, add a "Ok" button in the dialog title bar and make it full | |
1102 | // screen | |
1103 | // | |
1104 | // TODO: find the window for this HWND, and take into account | |
1105 | // wxMAXIMIZE and wxCLOSE_BOX. For now, assume both are present. | |
1106 | // | |
1107 | // Standard SDK doesn't have aygshell.dll: see | |
1108 | // include/wx/msw/wince/libraries.h | |
3d487566 | 1109 | #if defined(__WXWINCE__) && !defined(__WINCE_STANDARDSDK__) && !defined(__HANDHELDPC__) |
08b97268 WS |
1110 | SHINITDLGINFO shidi; |
1111 | shidi.dwMask = SHIDIM_FLAGS; | |
1112 | shidi.dwFlags = SHIDIF_SIZEDLG // take account of the SIP or menubar | |
ef6d716b | 1113 | #ifndef __SMARTPHONE__ |
08b97268 | 1114 | | SHIDIF_DONEBUTTON |
ef6d716b WS |
1115 | #endif |
1116 | ; | |
08b97268 WS |
1117 | shidi.hDlg = hDlg; |
1118 | SHInitDialog( &shidi ); | |
a48e51ce | 1119 | #else // no SHInitDialog() |
08b97268 WS |
1120 | wxUnusedVar(hDlg); |
1121 | #endif | |
1122 | // for WM_INITDIALOG, returning TRUE tells system to set focus to | |
1123 | // the first control in the dialog box, but as we set the focus | |
1124 | // ourselves, we return FALSE for it as well | |
1125 | return FALSE; | |
1126 | } | |
12447831 | 1127 | } |
a48e51ce VZ |
1128 | |
1129 | // for almost all messages, returning FALSE means that we didn't process | |
1130 | // the message | |
a48e51ce | 1131 | return FALSE; |
12447831 VZ |
1132 | } |
1133 | ||
2b5f62a0 VZ |
1134 | // ============================================================================ |
1135 | // wxTLWHiddenParentModule implementation | |
1136 | // ============================================================================ | |
1137 | ||
1138 | HWND wxTLWHiddenParentModule::ms_hwnd = NULL; | |
1139 | ||
1140 | const wxChar *wxTLWHiddenParentModule::ms_className = NULL; | |
1141 | ||
1142 | bool wxTLWHiddenParentModule::OnInit() | |
1143 | { | |
1144 | ms_hwnd = NULL; | |
1145 | ms_className = NULL; | |
1146 | ||
bfbb0b4c | 1147 | return true; |
2b5f62a0 VZ |
1148 | } |
1149 | ||
1150 | void wxTLWHiddenParentModule::OnExit() | |
1151 | { | |
1152 | if ( ms_hwnd ) | |
1153 | { | |
1154 | if ( !::DestroyWindow(ms_hwnd) ) | |
1155 | { | |
1156 | wxLogLastError(_T("DestroyWindow(hidden TLW parent)")); | |
1157 | } | |
1158 | ||
1159 | ms_hwnd = NULL; | |
1160 | } | |
1161 | ||
1162 | if ( ms_className ) | |
1163 | { | |
1164 | if ( !::UnregisterClass(ms_className, wxGetInstance()) ) | |
1165 | { | |
1166 | wxLogLastError(_T("UnregisterClass(\"wxTLWHiddenParent\")")); | |
1167 | } | |
1168 | ||
1169 | ms_className = NULL; | |
1170 | } | |
1171 | } | |
1172 | ||
1173 | /* static */ | |
1174 | HWND wxTLWHiddenParentModule::GetHWND() | |
1175 | { | |
1176 | if ( !ms_hwnd ) | |
1177 | { | |
1178 | if ( !ms_className ) | |
1179 | { | |
1180 | static const wxChar *HIDDEN_PARENT_CLASS = _T("wxTLWHiddenParent"); | |
1181 | ||
1182 | WNDCLASS wndclass; | |
1183 | wxZeroMemory(wndclass); | |
1184 | ||
1185 | wndclass.lpfnWndProc = DefWindowProc; | |
1186 | wndclass.hInstance = wxGetInstance(); | |
1187 | wndclass.lpszClassName = HIDDEN_PARENT_CLASS; | |
1188 | ||
1189 | if ( !::RegisterClass(&wndclass) ) | |
1190 | { | |
1191 | wxLogLastError(_T("RegisterClass(\"wxTLWHiddenParent\")")); | |
1192 | } | |
1193 | else | |
1194 | { | |
1195 | ms_className = HIDDEN_PARENT_CLASS; | |
1196 | } | |
1197 | } | |
1198 | ||
fda7962d | 1199 | ms_hwnd = ::CreateWindow(ms_className, wxEmptyString, 0, 0, 0, 0, 0, NULL, |
2b5f62a0 VZ |
1200 | (HMENU)NULL, wxGetInstance(), NULL); |
1201 | if ( !ms_hwnd ) | |
1202 | { | |
1203 | wxLogLastError(_T("CreateWindow(hidden TLW parent)")); | |
1204 | } | |
1205 | } | |
1206 | ||
1207 | return ms_hwnd; | |
1208 | } |