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