]>
Commit | Line | Data |
---|---|---|
2bda0e17 | 1 | ///////////////////////////////////////////////////////////////////////////// |
faa49bfd WS |
2 | // Name: src/msw/window.cpp |
3 | // Purpose: wxWindowMSW | |
2bda0e17 | 4 | // Author: Julian Smart |
a23fd0e1 | 5 | // Modified by: VZ on 13.05.99: no more Default(), MSWOnXXX() reorganisation |
2bda0e17 KB |
6 | // Created: 04/01/98 |
7 | // RCS-ID: $Id$ | |
6c9a19aa | 8 | // Copyright: (c) Julian Smart |
65571936 | 9 | // Licence: wxWindows licence |
2bda0e17 KB |
10 | ///////////////////////////////////////////////////////////////////////////// |
11 | ||
a23fd0e1 VZ |
12 | // =========================================================================== |
13 | // declarations | |
14 | // =========================================================================== | |
15 | ||
16 | // --------------------------------------------------------------------------- | |
17 | // headers | |
18 | // --------------------------------------------------------------------------- | |
19 | ||
2bda0e17 KB |
20 | // For compilers that support precompilation, includes "wx.h". |
21 | #include "wx/wxprec.h" | |
22 | ||
23 | #ifdef __BORLANDC__ | |
09914df7 | 24 | #pragma hdrstop |
2bda0e17 KB |
25 | #endif |
26 | ||
e4db172a WS |
27 | #include "wx/window.h" |
28 | ||
2bda0e17 | 29 | #ifndef WX_PRECOMP |
9ed0d735 | 30 | #include "wx/msw/wrapwin.h" |
57bd4c60 WS |
31 | #include "wx/msw/wrapcctl.h" // include <commctrl.h> "properly" |
32 | #include "wx/msw/missing.h" | |
0c589ad0 | 33 | #include "wx/accel.h" |
3a19e16d VZ |
34 | #include "wx/menu.h" |
35 | #include "wx/dc.h" | |
36 | #include "wx/dcclient.h" | |
8e92ccef | 37 | #include "wx/dcmemory.h" |
3a19e16d VZ |
38 | #include "wx/utils.h" |
39 | #include "wx/app.h" | |
3a19e16d VZ |
40 | #include "wx/layout.h" |
41 | #include "wx/dialog.h" | |
42 | #include "wx/frame.h" | |
43 | #include "wx/listbox.h" | |
44 | #include "wx/button.h" | |
3a19e16d | 45 | #include "wx/msgdlg.h" |
1f3943e0 | 46 | #include "wx/settings.h" |
8d753488 | 47 | #include "wx/statbox.h" |
1e2aa2f8 | 48 | #include "wx/sizer.h" |
88a7a4e1 | 49 | #include "wx/intl.h" |
e4db172a | 50 | #include "wx/log.h" |
fec9cc08 | 51 | #include "wx/textctrl.h" |
25466131 | 52 | #include "wx/menuitem.h" |
02761f6c | 53 | #include "wx/module.h" |
2bda0e17 KB |
54 | #endif |
55 | ||
61fef19b | 56 | #if wxUSE_OWNER_DRAWN && !defined(__WXUNIVERSAL__) |
09914df7 | 57 | #include "wx/ownerdrw.h" |
2bda0e17 KB |
58 | #endif |
59 | ||
5acec112 | 60 | #include "wx/hashmap.h" |
a3dc1da9 | 61 | #include "wx/evtloop.h" |
355debca | 62 | #include "wx/power.h" |
c6430ed0 | 63 | #include "wx/sysopt.h" |
d79df32c | 64 | |
9e2896e5 VZ |
65 | #if wxUSE_DRAG_AND_DROP |
66 | #include "wx/dnd.h" | |
2bda0e17 KB |
67 | #endif |
68 | ||
ed5317e5 JS |
69 | #if wxUSE_ACCESSIBILITY |
70 | #include "wx/access.h" | |
bef8d481 | 71 | #include <ole2.h> |
ed5317e5 JS |
72 | #include <oleacc.h> |
73 | #ifndef WM_GETOBJECT | |
74 | #define WM_GETOBJECT 0x003D | |
75 | #endif | |
76 | #ifndef OBJID_CLIENT | |
77 | #define OBJID_CLIENT 0xFFFFFFFC | |
78 | #endif | |
79 | #endif | |
80 | ||
0c589ad0 BM |
81 | #include "wx/msw/private.h" |
82 | ||
750b78ba | 83 | #if wxUSE_TOOLTIPS |
42e69d6b | 84 | #include "wx/tooltip.h" |
750b78ba JS |
85 | #endif |
86 | ||
789295bf VZ |
87 | #if wxUSE_CARET |
88 | #include "wx/caret.h" | |
89 | #endif // wxUSE_CARET | |
90 | ||
6fe19057 VZ |
91 | #if wxUSE_SPINCTRL |
92 | #include "wx/spinctrl.h" | |
93 | #endif // wxUSE_SPINCTRL | |
94 | ||
d9317fd4 | 95 | #include "wx/notebook.h" |
5c6c3176 | 96 | #include "wx/listctrl.h" |
aafb9978 | 97 | #include "wx/dynlib.h" |
2a47d3c1 | 98 | |
2bda0e17 KB |
99 | #include <string.h> |
100 | ||
d61c1a6f | 101 | #if (!defined(__GNUWIN32_OLD__) && !defined(__WXMICROWIN__) /* && !defined(__WXWINCE__) */ ) || defined(__CYGWIN10__) |
3a19e16d VZ |
102 | #include <shellapi.h> |
103 | #include <mmsystem.h> | |
2bda0e17 KB |
104 | #endif |
105 | ||
106 | #ifdef __WIN32__ | |
3a19e16d | 107 | #include <windowsx.h> |
2bda0e17 KB |
108 | #endif |
109 | ||
dcfd4ac4 | 110 | #if !defined __WXWINCE__ && !defined NEED_PBT_H |
dbc74bcc WS |
111 | #include <pbt.h> |
112 | #endif | |
2bda0e17 | 113 | |
7f0586ef | 114 | #if defined(__WXWINCE__) |
4e5c6c33 | 115 | #include "wx/msw/wince/missing.h" |
7d4f65e3 JS |
116 | #ifdef __POCKETPC__ |
117 | #include <windows.h> | |
118 | #include <shellapi.h> | |
119 | #include <ole2.h> | |
120 | #include <aygshell.h> | |
121 | #endif | |
7f0586ef JS |
122 | #endif |
123 | ||
aafb9978 | 124 | #if defined(TME_LEAVE) && defined(WM_MOUSELEAVE) && wxUSE_DYNLIB_CLASS |
4e5c6c33 VZ |
125 | #define HAVE_TRACKMOUSEEVENT |
126 | #endif // everything needed for TrackMouseEvent() | |
127 | ||
7d86a2d4 VZ |
128 | // if this is set to 1, we use deferred window sizing to reduce flicker when |
129 | // resizing complicated window hierarchies, but this can in theory result in | |
130 | // different behaviour than the old code so we keep the possibility to use it | |
131 | // by setting this to 0 (in the future this should be removed completely) | |
f2197644 JS |
132 | #ifdef __WXWINCE__ |
133 | #define USE_DEFERRED_SIZING 0 | |
134 | #else | |
8e44f3ca | 135 | #define USE_DEFERRED_SIZING 1 |
f2197644 | 136 | #endif |
8e44f3ca | 137 | |
c358ea41 VZ |
138 | // set this to 1 to filter out duplicate mouse events, e.g. mouse move events |
139 | // when mouse position didnd't change | |
140 | #ifdef __WXWINCE__ | |
141 | #define wxUSE_MOUSEEVENT_HACK 0 | |
142 | #else | |
143 | #define wxUSE_MOUSEEVENT_HACK 1 | |
144 | #endif | |
145 | ||
2f68482e VZ |
146 | // not all compilers/platforms have X button related declarations (notably |
147 | // Windows CE doesn't, and probably some old SDKs don't neither) | |
148 | #ifdef WM_XBUTTONDOWN | |
149 | #define wxHAS_XBUTTON | |
150 | #endif | |
151 | ||
a23fd0e1 | 152 | // --------------------------------------------------------------------------- |
42e69d6b | 153 | // global variables |
a23fd0e1 | 154 | // --------------------------------------------------------------------------- |
47cbd6da | 155 | |
1e6feb95 | 156 | #if wxUSE_MENUS_NATIVE |
2bda0e17 | 157 | wxMenu *wxCurrentPopupMenu = NULL; |
1e6feb95 VZ |
158 | #endif // wxUSE_MENUS_NATIVE |
159 | ||
46fa338b RR |
160 | #ifdef __WXWINCE__ |
161 | extern wxChar *wxCanvasClassName; | |
162 | #else | |
2ffa221c | 163 | extern const wxChar *wxCanvasClassName; |
46fa338b | 164 | #endif |
42e69d6b | 165 | |
90c1530a VZ |
166 | // true if we had already created the std colour map, used by |
167 | // wxGetStdColourMap() and wxWindow::OnSysColourChanged() (FIXME-MT) | |
08158721 | 168 | static bool gs_hasStdCmap = false; |
90c1530a | 169 | |
c358ea41 VZ |
170 | // last mouse event information we need to filter out the duplicates |
171 | #if wxUSE_MOUSEEVENT_HACK | |
2b053ae9 | 172 | static struct MouseEventInfoDummy |
c358ea41 VZ |
173 | { |
174 | // mouse position (in screen coordinates) | |
175 | wxPoint pos; | |
176 | ||
177 | // last mouse event type | |
178 | wxEventType type; | |
179 | } gs_lastMouseEvent; | |
180 | #endif // wxUSE_MOUSEEVENT_HACK | |
181 | ||
5acec112 VZ |
182 | // hash containing the registered handlers for the custom messages |
183 | WX_DECLARE_HASH_MAP(int, wxWindow::MSWMessageHandler, | |
184 | wxIntegerHash, wxIntegerEqual, | |
185 | MSWMessageHandlers); | |
186 | ||
187 | static MSWMessageHandlers gs_messageHandlers; | |
188 | ||
42e69d6b VZ |
189 | // --------------------------------------------------------------------------- |
190 | // private functions | |
191 | // --------------------------------------------------------------------------- | |
192 | ||
193 | // the window proc for all our windows | |
3135f4a7 | 194 | LRESULT WXDLLEXPORT APIENTRY _EXPORT wxWndProc(HWND hWnd, UINT message, |
42e69d6b | 195 | WPARAM wParam, LPARAM lParam); |
577baeef | 196 | |
42e69d6b VZ |
197 | |
198 | #ifdef __WXDEBUG__ | |
4a712ba3 | 199 | const wxChar *wxGetMessageName(int message); |
42e69d6b | 200 | #endif //__WXDEBUG__ |
2bda0e17 | 201 | |
1e6feb95 | 202 | void wxRemoveHandleAssociation(wxWindowMSW *win); |
cc972ac6 | 203 | extern void wxAssociateWinWithHandle(HWND hWnd, wxWindowMSW *win); |
2bda0e17 KB |
204 | wxWindow *wxFindWinFromHandle(WXHWND hWnd); |
205 | ||
f6bcfd97 | 206 | // get the text metrics for the current font |
1e6feb95 VZ |
207 | static TEXTMETRIC wxGetTextMetrics(const wxWindowMSW *win); |
208 | ||
42b1fb63 | 209 | #ifdef __WXWINCE__ |
dfafa702 | 210 | // find the window for the mouse event at the specified position |
42b1fb63 VZ |
211 | static wxWindowMSW *FindWindowForMouseEvent(wxWindowMSW *win, int *x, int *y); |
212 | #endif // __WXWINCE__ | |
dfafa702 | 213 | |
c48926e1 | 214 | // wrapper around BringWindowToTop() API |
44d5b352 | 215 | static inline void wxBringWindowToTop(HWND hwnd) |
c48926e1 VZ |
216 | { |
217 | #ifdef __WXMICROWIN__ | |
218 | // It seems that MicroWindows brings the _parent_ of the window to the top, | |
219 | // which can be the wrong one. | |
220 | ||
221 | // activate (set focus to) specified window | |
222 | ::SetFocus(hwnd); | |
313901f3 | 223 | #endif |
c48926e1 VZ |
224 | |
225 | // raise top level parent to top of z order | |
313901f3 | 226 | if (!::SetWindowPos(hwnd, HWND_TOP, 0, 0, 0, 0, SWP_NOMOVE | SWP_NOSIZE)) |
c48926e1 | 227 | { |
313901f3 | 228 | wxLogLastError(_T("SetWindowPos")); |
c48926e1 | 229 | } |
c48926e1 | 230 | } |
f6bcfd97 | 231 | |
e0c5c96f VZ |
232 | #ifndef __WXWINCE__ |
233 | ||
ee471817 VZ |
234 | // ensure that all our parent windows have WS_EX_CONTROLPARENT style |
235 | static void EnsureParentHasControlParentStyle(wxWindow *parent) | |
236 | { | |
237 | /* | |
238 | If we have WS_EX_CONTROLPARENT flag we absolutely *must* set it for our | |
239 | parent as well as otherwise several Win32 functions using | |
240 | GetNextDlgTabItem() to iterate over all controls such as | |
241 | IsDialogMessage() or DefDlgProc() would enter an infinite loop: indeed, | |
242 | all of them iterate over all the controls starting from the currently | |
243 | focused one and stop iterating when they get back to the focus but | |
244 | unless all parents have WS_EX_CONTROLPARENT bit set, they would never | |
245 | get back to the initial (focused) window: as we do have this style, | |
246 | GetNextDlgTabItem() will leave this window and continue in its parent, | |
247 | but if the parent doesn't have it, it wouldn't recurse inside it later | |
90e572f1 | 248 | on and so wouldn't have a chance of getting back to this window either. |
ee471817 | 249 | */ |
ee471817 VZ |
250 | while ( parent && !parent->IsTopLevel() ) |
251 | { | |
252 | LONG exStyle = ::GetWindowLong(GetHwndOf(parent), GWL_EXSTYLE); | |
253 | if ( !(exStyle & WS_EX_CONTROLPARENT) ) | |
254 | { | |
255 | // force the parent to have this style | |
256 | ::SetWindowLong(GetHwndOf(parent), GWL_EXSTYLE, | |
257 | exStyle | WS_EX_CONTROLPARENT); | |
258 | } | |
259 | ||
260 | parent = parent->GetParent(); | |
261 | } | |
ee471817 VZ |
262 | } |
263 | ||
e0c5c96f VZ |
264 | #endif // !__WXWINCE__ |
265 | ||
f2325516 JS |
266 | #ifdef __WXWINCE__ |
267 | // On Windows CE, GetCursorPos can return an error, so use this function | |
268 | // instead | |
269 | bool GetCursorPosWinCE(POINT* pt) | |
270 | { | |
7d30268c JS |
271 | if (!GetCursorPos(pt)) |
272 | { | |
273 | DWORD pos = GetMessagePos(); | |
274 | pt->x = LOWORD(pos); | |
275 | pt->y = HIWORD(pos); | |
276 | } | |
f2325516 JS |
277 | return true; |
278 | } | |
279 | #endif | |
280 | ||
a23fd0e1 VZ |
281 | // --------------------------------------------------------------------------- |
282 | // event tables | |
283 | // --------------------------------------------------------------------------- | |
284 | ||
1e6feb95 VZ |
285 | // in wxUniv/MSW this class is abstract because it doesn't have DoPopupMenu() |
286 | // method | |
287 | #ifdef __WXUNIVERSAL__ | |
288 | IMPLEMENT_ABSTRACT_CLASS(wxWindowMSW, wxWindowBase) | |
289 | #else // __WXMSW__ | |
51596bcb | 290 | #if wxUSE_EXTENDED_RTTI |
6a89f9ee | 291 | |
f3291a82 SC |
292 | // windows that are created from a parent window during its Create method, eg. spin controls in a calendar controls |
293 | // must never been streamed out separately otherwise chaos occurs. Right now easiest is to test for negative ids, as | |
294 | // windows with negative ids never can be recreated anyway | |
295 | ||
296 | bool wxWindowStreamingCallback( const wxObject *object, wxWriter * , wxPersister * , wxxVariantArray & ) | |
297 | { | |
298 | const wxWindow * win = dynamic_cast<const wxWindow*>(object) ; | |
299 | if ( win && win->GetId() < 0 ) | |
300 | return false ; | |
301 | return true ; | |
302 | } | |
303 | ||
304 | IMPLEMENT_DYNAMIC_CLASS_XTI_CALLBACK(wxWindow, wxWindowBase,"wx/window.h", wxWindowStreamingCallback) | |
51596bcb | 305 | |
6a89f9ee SC |
306 | // make wxWindowList known before the property is used |
307 | ||
321239b6 | 308 | wxCOLLECTION_TYPE_INFO( wxWindow* , wxWindowList ) ; |
6a89f9ee SC |
309 | |
310 | template<> void wxCollectionToVariantArray( wxWindowList const &theList, wxxVariantArray &value) | |
311 | { | |
0c6b0084 | 312 | wxListCollectionToVariantArray<wxWindowList::compatibility_iterator>( theList , value ) ; |
6a89f9ee SC |
313 | } |
314 | ||
bc9fb572 JS |
315 | WX_DEFINE_FLAGS( wxWindowStyle ) |
316 | ||
321239b6 | 317 | wxBEGIN_FLAGS( wxWindowStyle ) |
bc9fb572 JS |
318 | // new style border flags, we put them first to |
319 | // use them for streaming out | |
5c6c3176 | 320 | |
321239b6 SC |
321 | wxFLAGS_MEMBER(wxBORDER_SIMPLE) |
322 | wxFLAGS_MEMBER(wxBORDER_SUNKEN) | |
323 | wxFLAGS_MEMBER(wxBORDER_DOUBLE) | |
324 | wxFLAGS_MEMBER(wxBORDER_RAISED) | |
325 | wxFLAGS_MEMBER(wxBORDER_STATIC) | |
326 | wxFLAGS_MEMBER(wxBORDER_NONE) | |
35bbb0c6 | 327 | |
bc9fb572 | 328 | // old style border flags |
321239b6 SC |
329 | wxFLAGS_MEMBER(wxSIMPLE_BORDER) |
330 | wxFLAGS_MEMBER(wxSUNKEN_BORDER) | |
331 | wxFLAGS_MEMBER(wxDOUBLE_BORDER) | |
332 | wxFLAGS_MEMBER(wxRAISED_BORDER) | |
333 | wxFLAGS_MEMBER(wxSTATIC_BORDER) | |
cb0afb26 | 334 | wxFLAGS_MEMBER(wxBORDER) |
bc9fb572 JS |
335 | |
336 | // standard window styles | |
321239b6 SC |
337 | wxFLAGS_MEMBER(wxTAB_TRAVERSAL) |
338 | wxFLAGS_MEMBER(wxCLIP_CHILDREN) | |
339 | wxFLAGS_MEMBER(wxTRANSPARENT_WINDOW) | |
340 | wxFLAGS_MEMBER(wxWANTS_CHARS) | |
cb0afb26 | 341 | wxFLAGS_MEMBER(wxFULL_REPAINT_ON_RESIZE) |
321239b6 SC |
342 | wxFLAGS_MEMBER(wxALWAYS_SHOW_SB ) |
343 | wxFLAGS_MEMBER(wxVSCROLL) | |
344 | wxFLAGS_MEMBER(wxHSCROLL) | |
345 | ||
346 | wxEND_FLAGS( wxWindowStyle ) | |
347 | ||
348 | wxBEGIN_PROPERTIES_TABLE(wxWindow) | |
3a3c8603 DS |
349 | wxEVENT_PROPERTY( Close , wxEVT_CLOSE_WINDOW , wxCloseEvent) |
350 | wxEVENT_PROPERTY( Create , wxEVT_CREATE , wxWindowCreateEvent ) | |
351 | wxEVENT_PROPERTY( Destroy , wxEVT_DESTROY , wxWindowDestroyEvent ) | |
51741307 SC |
352 | // Always constructor Properties first |
353 | ||
af498247 | 354 | wxREADONLY_PROPERTY( Parent,wxWindow*, GetParent, EMPTY_MACROVALUE , 0 /*flags*/ , wxT("Helpstring") , wxT("group")) |
fb7e28db | 355 | wxPROPERTY( Id,wxWindowID, SetId, GetId, -1 /*wxID_ANY*/ , 0 /*flags*/ , wxT("Helpstring") , wxT("group") ) |
abb74e0f WS |
356 | wxPROPERTY( Position,wxPoint, SetPosition , GetPosition, wxDefaultPosition , 0 /*flags*/ , wxT("Helpstring") , wxT("group")) // pos |
357 | wxPROPERTY( Size,wxSize, SetSize, GetSize, wxDefaultSize , 0 /*flags*/ , wxT("Helpstring") , wxT("group")) // size | |
af498247 | 358 | wxPROPERTY( WindowStyle , long , SetWindowStyleFlag , GetWindowStyleFlag , EMPTY_MACROVALUE , 0 /*flags*/ , wxT("Helpstring") , wxT("group")) // style |
51741307 SC |
359 | |
360 | // Then all relations of the object graph | |
361 | ||
321239b6 | 362 | wxREADONLY_PROPERTY_COLLECTION( Children , wxWindowList , wxWindowBase* , GetWindowChildren , wxPROP_OBJECT_GRAPH /*flags*/ , wxT("Helpstring") , wxT("group")) |
51741307 SC |
363 | |
364 | // and finally all other properties | |
365 | ||
3a3c8603 DS |
366 | wxPROPERTY( ExtraStyle , long , SetExtraStyle , GetExtraStyle , EMPTY_MACROVALUE , 0 /*flags*/ , wxT("Helpstring") , wxT("group")) // extstyle |
367 | wxPROPERTY( BackgroundColour , wxColour , SetBackgroundColour , GetBackgroundColour , EMPTY_MACROVALUE , 0 /*flags*/ , wxT("Helpstring") , wxT("group")) // bg | |
368 | wxPROPERTY( ForegroundColour , wxColour , SetForegroundColour , GetForegroundColour , EMPTY_MACROVALUE , 0 /*flags*/ , wxT("Helpstring") , wxT("group")) // fg | |
369 | wxPROPERTY( Enabled , bool , Enable , IsEnabled , wxxVariant((bool)true) , 0 /*flags*/ , wxT("Helpstring") , wxT("group")) | |
370 | wxPROPERTY( Shown , bool , Show , IsShown , wxxVariant((bool)true) , 0 /*flags*/ , wxT("Helpstring") , wxT("group")) | |
51741307 SC |
371 | #if 0 |
372 | // possible property candidates (not in xrc) or not valid in all subclasses | |
8b5d5223 | 373 | wxPROPERTY( Title,wxString, SetTitle, GetTitle, wxEmptyString ) |
3a3c8603 | 374 | wxPROPERTY( Font , wxFont , SetFont , GetWindowFont , ) |
8b5d5223 | 375 | wxPROPERTY( Label,wxString, SetLabel, GetLabel, wxEmptyString ) |
3a3c8603 DS |
376 | // MaxHeight, Width , MinHeight , Width |
377 | // TODO switch label to control and title to toplevels | |
6a89f9ee | 378 | |
3a3c8603 DS |
379 | wxPROPERTY( ThemeEnabled , bool , SetThemeEnabled , GetThemeEnabled , ) |
380 | //wxPROPERTY( Cursor , wxCursor , SetCursor , GetCursor , ) | |
381 | // wxPROPERTY( ToolTip , wxString , SetToolTip , GetToolTipText , ) | |
382 | wxPROPERTY( AutoLayout , bool , SetAutoLayout , GetAutoLayout , ) | |
6a89f9ee SC |
383 | |
384 | ||
385 | ||
51741307 | 386 | #endif |
321239b6 | 387 | wxEND_PROPERTIES_TABLE() |
51596bcb | 388 | |
321239b6 SC |
389 | wxBEGIN_HANDLERS_TABLE(wxWindow) |
390 | wxEND_HANDLERS_TABLE() | |
51596bcb | 391 | |
321239b6 | 392 | wxCONSTRUCTOR_DUMMY(wxWindow) |
6a89f9ee | 393 | |
51596bcb | 394 | #else |
1e6feb95 | 395 | IMPLEMENT_DYNAMIC_CLASS(wxWindow, wxWindowBase) |
51596bcb | 396 | #endif |
1e6feb95 VZ |
397 | #endif // __WXUNIVERSAL__/__WXMSW__ |
398 | ||
399 | BEGIN_EVENT_TABLE(wxWindowMSW, wxWindowBase) | |
1e6feb95 | 400 | EVT_SYS_COLOUR_CHANGED(wxWindowMSW::OnSysColourChanged) |
8681b094 | 401 | EVT_ERASE_BACKGROUND(wxWindowMSW::OnEraseBackground) |
79099b80 | 402 | #ifdef __WXWINCE__ |
1e6feb95 | 403 | EVT_INIT_DIALOG(wxWindowMSW::OnInitDialog) |
79099b80 | 404 | #endif |
2bda0e17 KB |
405 | END_EVENT_TABLE() |
406 | ||
a23fd0e1 VZ |
407 | // =========================================================================== |
408 | // implementation | |
409 | // =========================================================================== | |
410 | ||
42e69d6b VZ |
411 | // --------------------------------------------------------------------------- |
412 | // wxWindow utility functions | |
413 | // --------------------------------------------------------------------------- | |
414 | ||
2bda0e17 | 415 | // Find an item given the MS Windows id |
1e6feb95 | 416 | wxWindow *wxWindowMSW::FindItem(long id) const |
2bda0e17 | 417 | { |
1e6feb95 | 418 | #if wxUSE_CONTROLS |
f7637829 | 419 | wxControl *item = wxDynamicCastThis(wxControl); |
f048e32f VZ |
420 | if ( item ) |
421 | { | |
90e572f1 | 422 | // is it us or one of our "internal" children? |
1e6feb95 VZ |
423 | if ( item->GetId() == id |
424 | #ifndef __WXUNIVERSAL__ | |
425 | || (item->GetSubcontrols().Index(id) != wxNOT_FOUND) | |
426 | #endif // __WXUNIVERSAL__ | |
427 | ) | |
f048e32f VZ |
428 | { |
429 | return item; | |
430 | } | |
431 | } | |
1e6feb95 | 432 | #endif // wxUSE_CONTROLS |
f048e32f | 433 | |
222ed1d6 | 434 | wxWindowList::compatibility_iterator current = GetChildren().GetFirst(); |
2d0a075d JS |
435 | while (current) |
436 | { | |
42e69d6b | 437 | wxWindow *childWin = current->GetData(); |
2bda0e17 | 438 | |
42e69d6b | 439 | wxWindow *wnd = childWin->FindItem(id); |
cc2b7472 | 440 | if ( wnd ) |
42e69d6b | 441 | return wnd; |
2bda0e17 | 442 | |
42e69d6b | 443 | current = current->GetNext(); |
2bda0e17 | 444 | } |
42e69d6b | 445 | |
2d0a075d | 446 | return NULL; |
2bda0e17 KB |
447 | } |
448 | ||
449 | // Find an item given the MS Windows handle | |
1e6feb95 | 450 | wxWindow *wxWindowMSW::FindItemByHWND(WXHWND hWnd, bool controlOnly) const |
2bda0e17 | 451 | { |
222ed1d6 | 452 | wxWindowList::compatibility_iterator current = GetChildren().GetFirst(); |
2d0a075d | 453 | while (current) |
2bda0e17 | 454 | { |
42e69d6b VZ |
455 | wxWindow *parent = current->GetData(); |
456 | ||
2d0a075d | 457 | // Do a recursive search. |
42e69d6b | 458 | wxWindow *wnd = parent->FindItemByHWND(hWnd); |
cc2b7472 | 459 | if ( wnd ) |
42e69d6b | 460 | return wnd; |
2d0a075d | 461 | |
1e6feb95 VZ |
462 | if ( !controlOnly |
463 | #if wxUSE_CONTROLS | |
464 | || parent->IsKindOf(CLASSINFO(wxControl)) | |
465 | #endif // wxUSE_CONTROLS | |
466 | ) | |
2d0a075d | 467 | { |
42e69d6b VZ |
468 | wxWindow *item = current->GetData(); |
469 | if ( item->GetHWND() == hWnd ) | |
2d0a075d JS |
470 | return item; |
471 | else | |
472 | { | |
473 | if ( item->ContainsHWND(hWnd) ) | |
474 | return item; | |
475 | } | |
476 | } | |
42e69d6b VZ |
477 | |
478 | current = current->GetNext(); | |
2bda0e17 | 479 | } |
2d0a075d | 480 | return NULL; |
2bda0e17 KB |
481 | } |
482 | ||
483 | // Default command handler | |
1e6feb95 | 484 | bool wxWindowMSW::MSWCommand(WXUINT WXUNUSED(param), WXWORD WXUNUSED(id)) |
2bda0e17 | 485 | { |
08158721 | 486 | return false; |
2bda0e17 KB |
487 | } |
488 | ||
fd3f686c VZ |
489 | // ---------------------------------------------------------------------------- |
490 | // constructors and such | |
491 | // ---------------------------------------------------------------------------- | |
492 | ||
1e6feb95 | 493 | void wxWindowMSW::Init() |
2bda0e17 | 494 | { |
cc2b7472 | 495 | // MSW specific |
08158721 | 496 | m_isBeingDeleted = false; |
5a403e3f | 497 | m_oldWndProc = NULL; |
08158721 DS |
498 | m_mouseInWindow = false; |
499 | m_lastKeydownProcessed = false; | |
2bda0e17 | 500 | |
a1037371 | 501 | m_frozenness = 0; |
d7cbabe0 | 502 | |
319fefa9 | 503 | m_hWnd = 0; |
220f77b0 | 504 | m_hDWP = 0; |
319fefa9 | 505 | |
2d0a075d JS |
506 | m_xThumbSize = 0; |
507 | m_yThumbSize = 0; | |
2bda0e17 | 508 | |
67644c1d RD |
509 | m_pendingPosition = wxDefaultPosition; |
510 | m_pendingSize = wxDefaultSize; | |
7d4f65e3 JS |
511 | |
512 | #ifdef __POCKETPC__ | |
513 | m_contextMenuEnabled = false; | |
514 | #endif | |
fd3f686c VZ |
515 | } |
516 | ||
2bda0e17 | 517 | // Destructor |
1e6feb95 | 518 | wxWindowMSW::~wxWindowMSW() |
2bda0e17 | 519 | { |
08158721 | 520 | m_isBeingDeleted = true; |
2bda0e17 | 521 | |
2e9f62da | 522 | #ifndef __WXUNIVERSAL__ |
4a41c655 | 523 | // VS: make sure there's no wxFrame with last focus set to us: |
2e9f62da | 524 | for ( wxWindow *win = GetParent(); win; win = win->GetParent() ) |
4a41c655 | 525 | { |
085ad686 | 526 | wxTopLevelWindow *frame = wxDynamicCast(win, wxTopLevelWindow); |
4a41c655 VS |
527 | if ( frame ) |
528 | { | |
c5053639 | 529 | if ( frame->GetLastFocus() == this ) |
2e9f62da | 530 | { |
085ad686 | 531 | frame->SetLastFocus(NULL); |
2e9f62da | 532 | } |
4552892f VZ |
533 | |
534 | // apparently sometimes we can end up with our grand parent | |
535 | // pointing to us as well: this is surely a bug in focus handling | |
536 | // code but it's not clear where it happens so for now just try to | |
537 | // fix it here by not breaking out of the loop | |
538 | //break; | |
4a41c655 VS |
539 | } |
540 | } | |
2e9f62da | 541 | #endif // __WXUNIVERSAL__ |
2bda0e17 | 542 | |
cc0c7cd8 | 543 | // VS: destroy children first and _then_ detach *this from its parent. |
90e572f1 | 544 | // If we did it the other way around, children wouldn't be able |
cc0c7cd8 VS |
545 | // find their parent frame (see above). |
546 | DestroyChildren(); | |
547 | ||
cc2b7472 | 548 | if ( m_hWnd ) |
42e69d6b | 549 | { |
98440bc3 VZ |
550 | // VZ: test temp removed to understand what really happens here |
551 | //if (::IsWindow(GetHwnd())) | |
df61c009 JS |
552 | { |
553 | if ( !::DestroyWindow(GetHwnd()) ) | |
f6bcfd97 | 554 | wxLogLastError(wxT("DestroyWindow")); |
df61c009 | 555 | } |
2bda0e17 | 556 | |
c50f1fb9 VZ |
557 | // remove hWnd <-> wxWindow association |
558 | wxRemoveHandleAssociation(this); | |
559 | } | |
d7cbabe0 | 560 | |
2bda0e17 KB |
561 | } |
562 | ||
fd3f686c | 563 | // real construction (Init() must have been called before!) |
1e6feb95 VZ |
564 | bool wxWindowMSW::Create(wxWindow *parent, |
565 | wxWindowID id, | |
566 | const wxPoint& pos, | |
567 | const wxSize& size, | |
568 | long style, | |
569 | const wxString& name) | |
2d0a075d | 570 | { |
08158721 | 571 | wxCHECK_MSG( parent, false, wxT("can't create wxWindow without parent") ); |
2bda0e17 | 572 | |
8d99be5f | 573 | if ( !CreateBase(parent, id, pos, size, style, wxDefaultValidator, name) ) |
08158721 | 574 | return false; |
42e69d6b | 575 | |
fd3f686c | 576 | parent->AddChild(this); |
2bda0e17 | 577 | |
b2d5a7ee | 578 | WXDWORD exstyle; |
e49d97e6 | 579 | DWORD msflags = MSWGetCreateWindowFlags(&exstyle); |
1e6feb95 VZ |
580 | |
581 | #ifdef __WXUNIVERSAL__ | |
d1fe917b | 582 | // no borders, we draw them ourselves |
76c79ff4 VZ |
583 | exstyle &= ~(WS_EX_DLGMODALFRAME | |
584 | WS_EX_STATICEDGE | | |
585 | WS_EX_CLIENTEDGE | | |
586 | WS_EX_WINDOWEDGE); | |
d1fe917b | 587 | msflags &= ~WS_BORDER; |
b2d5a7ee | 588 | #endif // wxUniversal |
1e6feb95 | 589 | |
ff792344 | 590 | if ( IsShown() ) |
e49d97e6 VZ |
591 | { |
592 | msflags |= WS_VISIBLE; | |
593 | } | |
1e6feb95 | 594 | |
45956e37 VZ |
595 | if ( !MSWCreate(wxCanvasClassName, NULL, pos, size, msflags, exstyle) ) |
596 | return false; | |
597 | ||
598 | InheritAttributes(); | |
599 | ||
600 | return true; | |
2bda0e17 KB |
601 | } |
602 | ||
42e69d6b VZ |
603 | // --------------------------------------------------------------------------- |
604 | // basic operations | |
605 | // --------------------------------------------------------------------------- | |
606 | ||
1e6feb95 | 607 | void wxWindowMSW::SetFocus() |
2bda0e17 | 608 | { |
a23fd0e1 | 609 | HWND hWnd = GetHwnd(); |
1e6feb95 VZ |
610 | wxCHECK_RET( hWnd, _T("can't set focus to invalid window") ); |
611 | ||
7f0586ef | 612 | #if !defined(__WXMICROWIN__) && !defined(__WXWINCE__) |
1e6feb95 | 613 | ::SetLastError(0); |
8cb172b4 | 614 | #endif |
d0a3d109 | 615 | |
1e6feb95 VZ |
616 | if ( !::SetFocus(hWnd) ) |
617 | { | |
5262eb0a | 618 | #if defined(__WXDEBUG__) && !defined(__WXMICROWIN__) |
1e6feb95 VZ |
619 | // was there really an error? |
620 | DWORD dwRes = ::GetLastError(); | |
621 | if ( dwRes ) | |
622 | { | |
5262eb0a VZ |
623 | HWND hwndFocus = ::GetFocus(); |
624 | if ( hwndFocus != hWnd ) | |
625 | { | |
626 | wxLogApiError(_T("SetFocus"), dwRes); | |
627 | } | |
1e6feb95 | 628 | } |
5262eb0a | 629 | #endif // Debug |
1e6feb95 | 630 | } |
2bda0e17 KB |
631 | } |
632 | ||
ddf9d04f VZ |
633 | void wxWindowMSW::SetFocusFromKbd() |
634 | { | |
ddf9d04f VZ |
635 | // when the focus is given to the control with DLGC_HASSETSEL style from |
636 | // keyboard its contents should be entirely selected: this is what | |
637 | // ::IsDialogMessage() does and so we should do it as well to provide the | |
638 | // same LNF as the native programs | |
639 | if ( ::SendMessage(GetHwnd(), WM_GETDLGCODE, 0, 0) & DLGC_HASSETSEL ) | |
640 | { | |
641 | ::SendMessage(GetHwnd(), EM_SETSEL, 0, -1); | |
642 | } | |
1b1ca07a VZ |
643 | |
644 | // do this after (maybe) setting the selection as like this when | |
645 | // wxEVT_SET_FOCUS handler is called, the selection would have been already | |
646 | // set correctly -- this may be important | |
647 | wxWindowBase::SetFocusFromKbd(); | |
ddf9d04f VZ |
648 | } |
649 | ||
42e69d6b | 650 | // Get the window with the focus |
0fe02759 | 651 | wxWindow *wxWindowBase::DoFindFocus() |
42e69d6b VZ |
652 | { |
653 | HWND hWnd = ::GetFocus(); | |
654 | if ( hWnd ) | |
655 | { | |
a2242341 | 656 | return wxGetWindowFromHWND((WXHWND)hWnd); |
42e69d6b VZ |
657 | } |
658 | ||
659 | return NULL; | |
660 | } | |
661 | ||
47a8a4d5 | 662 | void wxWindowMSW::DoEnable( bool enable ) |
2bda0e17 | 663 | { |
a23fd0e1 | 664 | HWND hWnd = GetHwnd(); |
cc2b7472 | 665 | if ( hWnd ) |
2d0a075d | 666 | ::EnableWindow(hWnd, (BOOL)enable); |
2bda0e17 KB |
667 | } |
668 | ||
1e6feb95 | 669 | bool wxWindowMSW::Show(bool show) |
42e69d6b VZ |
670 | { |
671 | if ( !wxWindowBase::Show(show) ) | |
08158721 | 672 | return false; |
42e69d6b VZ |
673 | |
674 | HWND hWnd = GetHwnd(); | |
42e69d6b | 675 | |
a068160f VZ |
676 | // we could be called before the underlying window is created (this is |
677 | // actually useful to prevent it from being initially shown), e.g. | |
678 | // | |
679 | // wxFoo *foo = new wxFoo; | |
680 | // foo->Hide(); | |
681 | // foo->Create(parent, ...); | |
682 | // | |
683 | // should work without errors | |
684 | if ( hWnd ) | |
42e69d6b | 685 | { |
a068160f | 686 | ::ShowWindow(hWnd, show ? SW_SHOW : SW_HIDE); |
42e69d6b VZ |
687 | } |
688 | ||
08158721 | 689 | return true; |
42e69d6b VZ |
690 | } |
691 | ||
692 | // Raise the window to the top of the Z order | |
1e6feb95 | 693 | void wxWindowMSW::Raise() |
42e69d6b | 694 | { |
c48926e1 | 695 | wxBringWindowToTop(GetHwnd()); |
42e69d6b VZ |
696 | } |
697 | ||
698 | // Lower the window to the bottom of the Z order | |
1e6feb95 | 699 | void wxWindowMSW::Lower() |
42e69d6b VZ |
700 | { |
701 | ::SetWindowPos(GetHwnd(), HWND_BOTTOM, 0, 0, 0, 0, | |
702 | SWP_NOMOVE | SWP_NOSIZE | SWP_NOACTIVATE); | |
703 | } | |
704 | ||
94633ad9 | 705 | void wxWindowMSW::DoCaptureMouse() |
2bda0e17 | 706 | { |
a23fd0e1 | 707 | HWND hWnd = GetHwnd(); |
1e6feb95 | 708 | if ( hWnd ) |
2d0a075d | 709 | { |
1e6feb95 | 710 | ::SetCapture(hWnd); |
2d0a075d | 711 | } |
2bda0e17 KB |
712 | } |
713 | ||
94633ad9 | 714 | void wxWindowMSW::DoReleaseMouse() |
2bda0e17 | 715 | { |
1e6feb95 | 716 | if ( !::ReleaseCapture() ) |
2d0a075d | 717 | { |
1e6feb95 | 718 | wxLogLastError(_T("ReleaseCapture")); |
2d0a075d | 719 | } |
2bda0e17 KB |
720 | } |
721 | ||
1e6feb95 VZ |
722 | /* static */ wxWindow *wxWindowBase::GetCapture() |
723 | { | |
724 | HWND hwnd = ::GetCapture(); | |
725 | return hwnd ? wxFindWinFromHandle((WXHWND)hwnd) : (wxWindow *)NULL; | |
726 | } | |
727 | ||
728 | bool wxWindowMSW::SetFont(const wxFont& font) | |
2bda0e17 | 729 | { |
42e69d6b VZ |
730 | if ( !wxWindowBase::SetFont(font) ) |
731 | { | |
732 | // nothing to do | |
08158721 | 733 | return false; |
2d0a075d | 734 | } |
195896c7 | 735 | |
42e69d6b VZ |
736 | HWND hWnd = GetHwnd(); |
737 | if ( hWnd != 0 ) | |
738 | { | |
739 | WXHANDLE hFont = m_font.GetResourceHandle(); | |
2bda0e17 | 740 | |
223d09f6 | 741 | wxASSERT_MSG( hFont, wxT("should have valid font") ); |
3a19e16d | 742 | |
c50f1fb9 | 743 | ::SendMessage(hWnd, WM_SETFONT, (WPARAM)hFont, MAKELPARAM(TRUE, 0)); |
42e69d6b | 744 | } |
2bda0e17 | 745 | |
08158721 | 746 | return true; |
42e69d6b | 747 | } |
1e6feb95 | 748 | bool wxWindowMSW::SetCursor(const wxCursor& cursor) |
2bda0e17 | 749 | { |
42e69d6b VZ |
750 | if ( !wxWindowBase::SetCursor(cursor) ) |
751 | { | |
752 | // no change | |
08158721 | 753 | return false; |
42e69d6b VZ |
754 | } |
755 | ||
8e75dca8 VZ |
756 | // don't "overwrite" busy cursor |
757 | if ( m_cursor.Ok() && !wxIsBusy() ) | |
8a9c2246 | 758 | { |
a8b2285e VZ |
759 | // normally we should change the cursor only if it's over this window |
760 | // but we should do it always if we capture the mouse currently | |
761 | bool set = HasCapture(); | |
762 | if ( !set ) | |
763 | { | |
764 | HWND hWnd = GetHwnd(); | |
765 | ||
766 | POINT point; | |
767 | #ifdef __WXWINCE__ | |
768 | ::GetCursorPosWinCE(&point); | |
769 | #else | |
770 | ::GetCursorPos(&point); | |
771 | #endif | |
772 | ||
773 | RECT rect = wxGetWindowRect(hWnd); | |
774 | ||
775 | set = ::PtInRect(&rect, point) != 0; | |
776 | } | |
777 | ||
778 | if ( set ) | |
779 | { | |
780 | ::SetCursor(GetHcursorOf(m_cursor)); | |
781 | } | |
782 | //else: will be set later when the mouse enters this window | |
8a9c2246 | 783 | } |
3a19e16d | 784 | |
08158721 | 785 | return true; |
3a19e16d VZ |
786 | } |
787 | ||
d7e0024b | 788 | void wxWindowMSW::WarpPointer(int x, int y) |
2bda0e17 | 789 | { |
1e6feb95 | 790 | ClientToScreen(&x, &y); |
42e69d6b | 791 | |
1e6feb95 VZ |
792 | if ( !::SetCursorPos(x, y) ) |
793 | { | |
794 | wxLogLastError(_T("SetCursorPos")); | |
795 | } | |
2bda0e17 KB |
796 | } |
797 | ||
1ca78aa1 | 798 | void wxWindowMSW::MSWUpdateUIState(int action, int state) |
d7e0024b | 799 | { |
1ca78aa1 | 800 | // WM_CHANGEUISTATE only appeared in Windows 2000 so it can do us no good |
d7e0024b VZ |
801 | // to use it on older systems -- and could possibly do some harm |
802 | static int s_needToUpdate = -1; | |
803 | if ( s_needToUpdate == -1 ) | |
804 | { | |
805 | int verMaj, verMin; | |
406d283a | 806 | s_needToUpdate = wxGetOsVersion(&verMaj, &verMin) == wxOS_WINDOWS_NT && |
d7e0024b VZ |
807 | verMaj >= 5; |
808 | } | |
809 | ||
810 | if ( s_needToUpdate ) | |
811 | { | |
1ca78aa1 JS |
812 | // we send WM_CHANGEUISTATE so if nothing needs changing then the system |
813 | // won't send WM_UPDATEUISTATE | |
814 | ::SendMessage(GetHwnd(), WM_CHANGEUISTATE, MAKEWPARAM(action, state), 0); | |
d7e0024b VZ |
815 | } |
816 | } | |
817 | ||
42e69d6b VZ |
818 | // --------------------------------------------------------------------------- |
819 | // scrolling stuff | |
820 | // --------------------------------------------------------------------------- | |
2d0a075d | 821 | |
9cd6d737 VZ |
822 | inline int GetScrollPosition(HWND hWnd, int wOrient) |
823 | { | |
824 | #ifdef __WXMICROWIN__ | |
825 | return ::GetScrollPosWX(hWnd, wOrient); | |
826 | #else | |
f676b387 | 827 | WinStruct<SCROLLINFO> scrollInfo; |
4676948b | 828 | scrollInfo.cbSize = sizeof(SCROLLINFO); |
7f0586ef | 829 | scrollInfo.fMask = SIF_POS; |
e795e8b5 | 830 | ::GetScrollInfo(hWnd, wOrient, &scrollInfo ); |
a71d815b | 831 | |
7f0586ef | 832 | return scrollInfo.nPos; |
e795e8b5 | 833 | |
9cd6d737 VZ |
834 | #endif |
835 | } | |
836 | ||
1e6feb95 | 837 | int wxWindowMSW::GetScrollPos(int orient) const |
2bda0e17 | 838 | { |
42e69d6b | 839 | HWND hWnd = GetHwnd(); |
9cd6d737 VZ |
840 | wxCHECK_MSG( hWnd, 0, _T("no HWND in GetScrollPos") ); |
841 | ||
0cf5de11 | 842 | return GetScrollPosition(hWnd, orient == wxHORIZONTAL ? SB_HORZ : SB_VERT); |
42e69d6b | 843 | } |
2bda0e17 | 844 | |
42e69d6b VZ |
845 | // This now returns the whole range, not just the number |
846 | // of positions that we can scroll. | |
1e6feb95 | 847 | int wxWindowMSW::GetScrollRange(int orient) const |
42e69d6b | 848 | { |
7f0586ef | 849 | int maxPos; |
a23fd0e1 | 850 | HWND hWnd = GetHwnd(); |
0cf5de11 | 851 | if ( !hWnd ) |
42e69d6b | 852 | return 0; |
7f0586ef | 853 | #if 0 |
0cf5de11 VZ |
854 | ::GetScrollRange(hWnd, orient == wxHORIZONTAL ? SB_HORZ : SB_VERT, |
855 | &minPos, &maxPos); | |
7f0586ef | 856 | #endif |
f676b387 | 857 | WinStruct<SCROLLINFO> scrollInfo; |
7f0586ef JS |
858 | scrollInfo.fMask = SIF_RANGE; |
859 | if ( !::GetScrollInfo(hWnd, | |
f676b387 RD |
860 | orient == wxHORIZONTAL ? SB_HORZ : SB_VERT, |
861 | &scrollInfo) ) | |
7f0586ef | 862 | { |
f676b387 RD |
863 | // Most of the time this is not really an error, since the return |
864 | // value can also be zero when there is no scrollbar yet. | |
865 | // wxLogLastError(_T("GetScrollInfo")); | |
7f0586ef JS |
866 | } |
867 | maxPos = scrollInfo.nMax; | |
0cf5de11 VZ |
868 | |
869 | // undo "range - 1" done in SetScrollbar() | |
870 | return maxPos + 1; | |
cc2b7472 | 871 | } |
2bda0e17 | 872 | |
1e6feb95 | 873 | int wxWindowMSW::GetScrollThumb(int orient) const |
2bda0e17 | 874 | { |
0cf5de11 | 875 | return orient == wxHORIZONTAL ? m_xThumbSize : m_yThumbSize; |
2bda0e17 KB |
876 | } |
877 | ||
1e6feb95 | 878 | void wxWindowMSW::SetScrollPos(int orient, int pos, bool refresh) |
2bda0e17 | 879 | { |
5f3286d1 VZ |
880 | HWND hWnd = GetHwnd(); |
881 | wxCHECK_RET( hWnd, _T("SetScrollPos: no HWND") ); | |
72fd19a1 | 882 | |
0cf5de11 | 883 | WinStruct<SCROLLINFO> info; |
42e69d6b VZ |
884 | info.nPage = 0; |
885 | info.nMin = 0; | |
886 | info.nPos = pos; | |
887 | info.fMask = SIF_POS; | |
a647d42a VZ |
888 | if ( HasFlag(wxALWAYS_SHOW_SB) ) |
889 | { | |
890 | // disable scrollbar instead of removing it then | |
891 | info.fMask |= SIF_DISABLENOSCROLL; | |
892 | } | |
2d0a075d | 893 | |
0cf5de11 VZ |
894 | ::SetScrollInfo(hWnd, orient == wxHORIZONTAL ? SB_HORZ : SB_VERT, |
895 | &info, refresh); | |
2bda0e17 KB |
896 | } |
897 | ||
42e69d6b | 898 | // New function that will replace some of the above. |
0cf5de11 VZ |
899 | void wxWindowMSW::SetScrollbar(int orient, |
900 | int pos, | |
901 | int pageSize, | |
902 | int range, | |
903 | bool refresh) | |
904 | { | |
905 | WinStruct<SCROLLINFO> info; | |
906 | info.nPage = pageSize; | |
907 | info.nMin = 0; // range is nMax - nMin + 1 | |
908 | info.nMax = range - 1; // as both nMax and nMax are inclusive | |
42e69d6b VZ |
909 | info.nPos = pos; |
910 | info.fMask = SIF_RANGE | SIF_PAGE | SIF_POS; | |
a647d42a VZ |
911 | if ( HasFlag(wxALWAYS_SHOW_SB) ) |
912 | { | |
913 | // disable scrollbar instead of removing it then | |
914 | info.fMask |= SIF_DISABLENOSCROLL; | |
915 | } | |
2bda0e17 | 916 | |
42e69d6b VZ |
917 | HWND hWnd = GetHwnd(); |
918 | if ( hWnd ) | |
81d66cf3 | 919 | { |
55a667b6 JS |
920 | // We have to set the variables here to make them valid in events |
921 | // triggered by ::SetScrollInfo() | |
922 | *(orient == wxHORIZONTAL ? &m_xThumbSize : &m_yThumbSize) = pageSize; | |
521bf4ff | 923 | |
0cf5de11 VZ |
924 | ::SetScrollInfo(hWnd, orient == wxHORIZONTAL ? SB_HORZ : SB_VERT, |
925 | &info, refresh); | |
81d66cf3 JS |
926 | } |
927 | } | |
928 | ||
1e6feb95 | 929 | void wxWindowMSW::ScrollWindow(int dx, int dy, const wxRect *prect) |
2bda0e17 | 930 | { |
574c939e KB |
931 | RECT rect; |
932 | RECT *pr; | |
1e6feb95 | 933 | if ( prect ) |
2d0a075d | 934 | { |
f9c980f6 | 935 | wxCopyRectToRECT(*prect, rect); |
f797e53d VZ |
936 | pr = ▭ |
937 | } | |
938 | else | |
939 | { | |
940 | pr = NULL; | |
304b8bc1 | 941 | |
2d0a075d | 942 | } |
2bda0e17 | 943 | |
7f0586ef JS |
944 | #ifdef __WXWINCE__ |
945 | // FIXME: is this the exact equivalent of the line below? | |
304b8bc1 | 946 | ::ScrollWindowEx(GetHwnd(), dx, dy, pr, pr, 0, 0, SW_SCROLLCHILDREN|SW_ERASE|SW_INVALIDATE); |
7f0586ef | 947 | #else |
f797e53d | 948 | ::ScrollWindow(GetHwnd(), dx, dy, pr, pr); |
7f0586ef | 949 | #endif |
2bda0e17 KB |
950 | } |
951 | ||
9cd6d737 | 952 | static bool ScrollVertically(HWND hwnd, int kind, int count) |
b9b3393e | 953 | { |
9cd6d737 VZ |
954 | int posStart = GetScrollPosition(hwnd, SB_VERT); |
955 | ||
956 | int pos = posStart; | |
c0cdd6cc VZ |
957 | for ( int n = 0; n < count; n++ ) |
958 | { | |
959 | ::SendMessage(hwnd, WM_VSCROLL, kind, 0); | |
9cd6d737 VZ |
960 | |
961 | int posNew = GetScrollPosition(hwnd, SB_VERT); | |
962 | if ( posNew == pos ) | |
963 | { | |
964 | // don't bother to continue, we're already at top/bottom | |
965 | break; | |
966 | } | |
967 | ||
968 | pos = posNew; | |
c0cdd6cc | 969 | } |
9cd6d737 VZ |
970 | |
971 | return pos != posStart; | |
b9b3393e VZ |
972 | } |
973 | ||
9cd6d737 | 974 | bool wxWindowMSW::ScrollLines(int lines) |
b9b3393e VZ |
975 | { |
976 | bool down = lines > 0; | |
977 | ||
9cd6d737 VZ |
978 | return ScrollVertically(GetHwnd(), |
979 | down ? SB_LINEDOWN : SB_LINEUP, | |
980 | down ? lines : -lines); | |
b9b3393e VZ |
981 | } |
982 | ||
9cd6d737 | 983 | bool wxWindowMSW::ScrollPages(int pages) |
b9b3393e VZ |
984 | { |
985 | bool down = pages > 0; | |
986 | ||
9cd6d737 VZ |
987 | return ScrollVertically(GetHwnd(), |
988 | down ? SB_PAGEDOWN : SB_PAGEUP, | |
989 | down ? pages : -pages); | |
b9b3393e VZ |
990 | } |
991 | ||
978af864 VZ |
992 | // ---------------------------------------------------------------------------- |
993 | // RTL support | |
994 | // ---------------------------------------------------------------------------- | |
995 | ||
996 | void wxWindowMSW::SetLayoutDirection(wxLayoutDirection dir) | |
997 | { | |
08a58133 WS |
998 | #ifdef __WXWINCE__ |
999 | wxUnusedVar(dir); | |
1000 | #else | |
978af864 VZ |
1001 | const HWND hwnd = GetHwnd(); |
1002 | wxCHECK_RET( hwnd, _T("layout direction must be set after window creation") ); | |
1003 | ||
1004 | LONG styleOld = ::GetWindowLong(hwnd, GWL_EXSTYLE); | |
1005 | ||
1006 | LONG styleNew = styleOld; | |
1007 | switch ( dir ) | |
1008 | { | |
1009 | case wxLayout_LeftToRight: | |
1010 | styleNew &= ~WS_EX_LAYOUTRTL; | |
1011 | break; | |
1012 | ||
1013 | case wxLayout_RightToLeft: | |
1014 | styleNew |= WS_EX_LAYOUTRTL; | |
1015 | break; | |
1016 | ||
1017 | default: | |
1018 | wxFAIL_MSG(_T("unsupported layout direction")); | |
1019 | break; | |
1020 | } | |
1021 | ||
1022 | if ( styleNew != styleOld ) | |
1023 | { | |
1024 | ::SetWindowLong(hwnd, GWL_EXSTYLE, styleNew); | |
1025 | } | |
08a58133 | 1026 | #endif |
978af864 VZ |
1027 | } |
1028 | ||
1029 | wxLayoutDirection wxWindowMSW::GetLayoutDirection() const | |
1030 | { | |
08a58133 WS |
1031 | #ifdef __WXWINCE__ |
1032 | return wxLayout_Default; | |
1033 | #else | |
978af864 VZ |
1034 | const HWND hwnd = GetHwnd(); |
1035 | wxCHECK_MSG( hwnd, wxLayout_Default, _T("invalid window") ); | |
1036 | ||
1037 | return ::GetWindowLong(hwnd, GWL_EXSTYLE) & WS_EX_LAYOUTRTL | |
1038 | ? wxLayout_RightToLeft | |
1039 | : wxLayout_LeftToRight; | |
08a58133 | 1040 | #endif |
978af864 VZ |
1041 | } |
1042 | ||
1043 | wxCoord | |
1044 | wxWindowMSW::AdjustForLayoutDirection(wxCoord x, | |
1045 | wxCoord WXUNUSED(width), | |
1046 | wxCoord WXUNUSED(widthTotal)) const | |
1047 | { | |
1048 | // Win32 mirrors the coordinates of RTL windows automatically, so don't | |
1049 | // redo it ourselves | |
1050 | return x; | |
1051 | } | |
1052 | ||
42e69d6b VZ |
1053 | // --------------------------------------------------------------------------- |
1054 | // subclassing | |
1055 | // --------------------------------------------------------------------------- | |
1056 | ||
1e6feb95 | 1057 | void wxWindowMSW::SubclassWin(WXHWND hWnd) |
2bda0e17 | 1058 | { |
223d09f6 | 1059 | wxASSERT_MSG( !m_oldWndProc, wxT("subclassing window twice?") ); |
2bda0e17 | 1060 | |
c50f1fb9 | 1061 | HWND hwnd = (HWND)hWnd; |
223d09f6 | 1062 | wxCHECK_RET( ::IsWindow(hwnd), wxT("invalid HWND in SubclassWin") ); |
c50f1fb9 VZ |
1063 | |
1064 | wxAssociateWinWithHandle(hwnd, this); | |
2bda0e17 | 1065 | |
975b6bcf | 1066 | m_oldWndProc = (WXFARPROC)wxGetWindowProc((HWND)hWnd); |
b2d5a7ee | 1067 | |
b225f659 VZ |
1068 | // we don't need to subclass the window of our own class (in the Windows |
1069 | // sense of the word) | |
3a3c8603 | 1070 | if ( !wxCheckWindowWndProc(hWnd, (WXFARPROC)wxWndProc) ) |
b225f659 | 1071 | { |
975b6bcf | 1072 | wxSetWindowProc(hwnd, wxWndProc); |
b225f659 VZ |
1073 | } |
1074 | else | |
1075 | { | |
90e572f1 | 1076 | // don't bother restoring it either: this also makes it easy to |
08158721 | 1077 | // implement IsOfStandardClass() method which returns true for the |
77ffb593 | 1078 | // standard controls and false for the wxWidgets own windows as it can |
5a403e3f | 1079 | // simply check m_oldWndProc |
b225f659 VZ |
1080 | m_oldWndProc = NULL; |
1081 | } | |
e7c652bc VZ |
1082 | |
1083 | // we're officially created now, send the event | |
1084 | wxWindowCreateEvent event((wxWindow *)this); | |
1085 | (void)GetEventHandler()->ProcessEvent(event); | |
2bda0e17 KB |
1086 | } |
1087 | ||
1e6feb95 | 1088 | void wxWindowMSW::UnsubclassWin() |
2bda0e17 | 1089 | { |
42e69d6b | 1090 | wxRemoveHandleAssociation(this); |
2bda0e17 | 1091 | |
42e69d6b | 1092 | // Restore old Window proc |
c50f1fb9 VZ |
1093 | HWND hwnd = GetHwnd(); |
1094 | if ( hwnd ) | |
42e69d6b | 1095 | { |
ed4780ea | 1096 | SetHWND(0); |
c50f1fb9 | 1097 | |
223d09f6 | 1098 | wxCHECK_RET( ::IsWindow(hwnd), wxT("invalid HWND in UnsubclassWin") ); |
c50f1fb9 | 1099 | |
b225f659 | 1100 | if ( m_oldWndProc ) |
42e69d6b | 1101 | { |
eb5e4d9a | 1102 | if ( !wxCheckWindowWndProc((WXHWND)hwnd, m_oldWndProc) ) |
b225f659 | 1103 | { |
975b6bcf | 1104 | wxSetWindowProc(hwnd, (WNDPROC)m_oldWndProc); |
b225f659 VZ |
1105 | } |
1106 | ||
1107 | m_oldWndProc = NULL; | |
42e69d6b | 1108 | } |
42e69d6b | 1109 | } |
2bda0e17 KB |
1110 | } |
1111 | ||
a4d1972d | 1112 | void wxWindowMSW::AssociateHandle(WXWidget handle) |
ed4780ea VZ |
1113 | { |
1114 | if ( m_hWnd ) | |
1115 | { | |
1116 | if ( !::DestroyWindow(GetHwnd()) ) | |
1117 | wxLogLastError(wxT("DestroyWindow")); | |
1118 | } | |
a4d1972d | 1119 | |
ed4780ea VZ |
1120 | WXHWND wxhwnd = (WXHWND)handle; |
1121 | ||
1122 | SetHWND(wxhwnd); | |
1123 | SubclassWin(wxhwnd); | |
1124 | } | |
1125 | ||
1126 | void wxWindowMSW::DissociateHandle() | |
a4d1972d | 1127 | { |
ed4780ea | 1128 | // this also calls SetHWND(0) for us |
a4d1972d | 1129 | UnsubclassWin(); |
ed4780ea VZ |
1130 | } |
1131 | ||
1132 | ||
0c0d1521 | 1133 | bool wxCheckWindowWndProc(WXHWND hWnd, |
11f104e5 | 1134 | WXFARPROC WXUNUSED(wndProc)) |
eb5e4d9a | 1135 | { |
f57f984c RD |
1136 | // TODO: This list of window class names should be factored out so they can be |
1137 | // managed in one place and then accessed from here and other places, such as | |
1138 | // wxApp::RegisterWindowClasses() and wxApp::UnregisterWindowClasses() | |
521bf4ff WS |
1139 | |
1140 | #ifdef __WXWINCE__ | |
3a3c8603 DS |
1141 | extern wxChar *wxCanvasClassName; |
1142 | extern wxChar *wxCanvasClassNameNR; | |
f57f984c RD |
1143 | #else |
1144 | extern const wxChar *wxCanvasClassName; | |
1145 | extern const wxChar *wxCanvasClassNameNR; | |
1146 | #endif | |
3a3c8603 DS |
1147 | extern const wxChar *wxMDIFrameClassName; |
1148 | extern const wxChar *wxMDIFrameClassNameNoRedraw; | |
1149 | extern const wxChar *wxMDIChildFrameClassName; | |
1150 | extern const wxChar *wxMDIChildFrameClassNameNoRedraw; | |
1151 | wxString str(wxGetWindowClass(hWnd)); | |
1152 | if (str == wxCanvasClassName || | |
1153 | str == wxCanvasClassNameNR || | |
26c2a266 JG |
1154 | #if wxUSE_GLCANVAS |
1155 | str == _T("wxGLCanvasClass") || | |
1156 | str == _T("wxGLCanvasClassNR") || | |
1157 | #endif // wxUSE_GLCANVAS | |
3a3c8603 DS |
1158 | str == wxMDIFrameClassName || |
1159 | str == wxMDIFrameClassNameNoRedraw || | |
1160 | str == wxMDIChildFrameClassName || | |
1161 | str == wxMDIChildFrameClassNameNoRedraw || | |
1162 | str == _T("wxTLWHiddenParent")) | |
1163 | return true; // Effectively means don't subclass | |
f57f984c | 1164 | else |
08158721 | 1165 | return false; |
eb5e4d9a VS |
1166 | } |
1167 | ||
b2d5a7ee VZ |
1168 | // ---------------------------------------------------------------------------- |
1169 | // Style handling | |
1170 | // ---------------------------------------------------------------------------- | |
1171 | ||
1172 | void wxWindowMSW::SetWindowStyleFlag(long flags) | |
1173 | { | |
1174 | long flagsOld = GetWindowStyleFlag(); | |
1175 | if ( flags == flagsOld ) | |
1176 | return; | |
1177 | ||
1178 | // update the internal variable | |
1179 | wxWindowBase::SetWindowStyleFlag(flags); | |
1180 | ||
7bd6bf45 VZ |
1181 | // and the real window flags |
1182 | MSWUpdateStyle(flagsOld, GetExtraStyle()); | |
1183 | } | |
1184 | ||
1185 | void wxWindowMSW::SetExtraStyle(long exflags) | |
1186 | { | |
1187 | long exflagsOld = GetExtraStyle(); | |
1188 | if ( exflags == exflagsOld ) | |
1189 | return; | |
1190 | ||
1191 | // update the internal variable | |
1192 | wxWindowBase::SetExtraStyle(exflags); | |
1193 | ||
1194 | // and the real window flags | |
1195 | MSWUpdateStyle(GetWindowStyleFlag(), exflagsOld); | |
1196 | } | |
1197 | ||
1198 | void wxWindowMSW::MSWUpdateStyle(long flagsOld, long exflagsOld) | |
1199 | { | |
5b2f31eb VZ |
1200 | // now update the Windows style as well if needed - and if the window had |
1201 | // been already created | |
1202 | if ( !GetHwnd() ) | |
1203 | return; | |
1204 | ||
9ce75461 VZ |
1205 | // we may need to call SetWindowPos() when we change some styles |
1206 | bool callSWP = false; | |
1207 | ||
7bd6bf45 VZ |
1208 | WXDWORD exstyle; |
1209 | long style = MSWGetStyle(GetWindowStyleFlag(), &exstyle); | |
1210 | ||
1211 | // this is quite a horrible hack but we need it because MSWGetStyle() | |
1212 | // doesn't take exflags as parameter but uses GetExtraStyle() internally | |
1213 | // and so we have to modify the window exflags temporarily to get the | |
1214 | // correct exstyleOld | |
1215 | long exflagsNew = GetExtraStyle(); | |
1216 | wxWindowBase::SetExtraStyle(exflagsOld); | |
1217 | ||
1218 | WXDWORD exstyleOld; | |
1219 | long styleOld = MSWGetStyle(flagsOld, &exstyleOld); | |
1220 | ||
1221 | wxWindowBase::SetExtraStyle(exflagsNew); | |
1222 | ||
b2d5a7ee VZ |
1223 | |
1224 | if ( style != styleOld ) | |
1225 | { | |
1226 | // some flags (e.g. WS_VISIBLE or WS_DISABLED) should not be changed by | |
1227 | // this function so instead of simply setting the style to the new | |
1228 | // value we clear the bits which were set in styleOld but are set in | |
1229 | // the new one and set the ones which were not set before | |
1230 | long styleReal = ::GetWindowLong(GetHwnd(), GWL_STYLE); | |
1231 | styleReal &= ~styleOld; | |
1232 | styleReal |= style; | |
1233 | ||
1234 | ::SetWindowLong(GetHwnd(), GWL_STYLE, styleReal); | |
9ce75461 | 1235 | |
7bd6bf45 VZ |
1236 | // we need to call SetWindowPos() if any of the styles affecting the |
1237 | // frame appearance have changed | |
9ce75461 VZ |
1238 | callSWP = ((styleOld ^ style ) & (WS_BORDER | |
1239 | WS_THICKFRAME | | |
1240 | WS_CAPTION | | |
1241 | WS_DLGFRAME | | |
1242 | WS_MAXIMIZEBOX | | |
1243 | WS_MINIMIZEBOX | | |
1244 | WS_SYSMENU) ) != 0; | |
b2d5a7ee VZ |
1245 | } |
1246 | ||
1247 | // and the extended style | |
9ce75461 VZ |
1248 | long exstyleReal = ::GetWindowLong(GetHwnd(), GWL_EXSTYLE); |
1249 | ||
b2d5a7ee VZ |
1250 | if ( exstyle != exstyleOld ) |
1251 | { | |
b2d5a7ee VZ |
1252 | exstyleReal &= ~exstyleOld; |
1253 | exstyleReal |= exstyle; | |
1254 | ||
1255 | ::SetWindowLong(GetHwnd(), GWL_EXSTYLE, exstyleReal); | |
1256 | ||
9ce75461 VZ |
1257 | // ex style changes don't take effect without calling SetWindowPos |
1258 | callSWP = true; | |
1259 | } | |
1260 | ||
1261 | if ( callSWP ) | |
1262 | { | |
85d8df29 | 1263 | // we must call SetWindowPos() to flush the cached extended style and |
b2d5a7ee VZ |
1264 | // also to make the change to wxSTAY_ON_TOP style take effect: just |
1265 | // setting the style simply doesn't work | |
1266 | if ( !::SetWindowPos(GetHwnd(), | |
1267 | exstyleReal & WS_EX_TOPMOST ? HWND_TOPMOST | |
1268 | : HWND_NOTOPMOST, | |
1269 | 0, 0, 0, 0, | |
9ce75461 | 1270 | SWP_NOMOVE | SWP_NOSIZE | SWP_FRAMECHANGED) ) |
b2d5a7ee VZ |
1271 | { |
1272 | wxLogLastError(_T("SetWindowPos")); | |
1273 | } | |
1274 | } | |
1275 | } | |
1276 | ||
1277 | WXDWORD wxWindowMSW::MSWGetStyle(long flags, WXDWORD *exstyle) const | |
1278 | { | |
77ffb593 | 1279 | // translate common wxWidgets styles to Windows ones |
af495479 VZ |
1280 | |
1281 | // most of windows are child ones, those which are not (such as | |
1282 | // wxTopLevelWindow) should remove WS_CHILD in their MSWGetStyle() | |
1283 | WXDWORD style = WS_CHILD; | |
b2d5a7ee | 1284 | |
9b6ae450 VZ |
1285 | // using this flag results in very significant reduction in flicker, |
1286 | // especially with controls inside the static boxes (as the interior of the | |
90e572f1 | 1287 | // box is not redrawn twice), but sometimes results in redraw problems, so |
c7e1d004 VZ |
1288 | // optionally allow the old code to continue to use it provided a special |
1289 | // system option is turned on | |
1290 | if ( !wxSystemOptions::GetOptionInt(wxT("msw.window.no-clip-children")) | |
1291 | || (flags & wxCLIP_CHILDREN) ) | |
c6430ed0 | 1292 | style |= WS_CLIPCHILDREN; |
9b6ae450 VZ |
1293 | |
1294 | // it doesn't seem useful to use WS_CLIPSIBLINGS here as we officially | |
1295 | // don't support overlapping windows and it only makes sense for them and, | |
1296 | // presumably, gives the system some extra work (to manage more clipping | |
1297 | // regions), so avoid it alltogether | |
b2d5a7ee | 1298 | |
b2d5a7ee | 1299 | |
f9007c32 JS |
1300 | if ( flags & wxVSCROLL ) |
1301 | style |= WS_VSCROLL; | |
1302 | ||
1303 | if ( flags & wxHSCROLL ) | |
1304 | style |= WS_HSCROLL; | |
1305 | ||
65bc172c | 1306 | const wxBorder border = GetBorder(flags); |
577baeef | 1307 | |
65bc172c VZ |
1308 | // WS_BORDER is only required for wxBORDER_SIMPLE |
1309 | if ( border == wxBORDER_SIMPLE ) | |
b2d5a7ee | 1310 | style |= WS_BORDER; |
577baeef | 1311 | |
b2d5a7ee VZ |
1312 | // now deal with ext style if the caller wants it |
1313 | if ( exstyle ) | |
1314 | { | |
1315 | *exstyle = 0; | |
1316 | ||
7f0586ef | 1317 | #ifndef __WXWINCE__ |
b2d5a7ee VZ |
1318 | if ( flags & wxTRANSPARENT_WINDOW ) |
1319 | *exstyle |= WS_EX_TRANSPARENT; | |
7f0586ef | 1320 | #endif |
b2d5a7ee | 1321 | |
fe3d9123 | 1322 | switch ( border ) |
b2d5a7ee VZ |
1323 | { |
1324 | default: | |
65bc172c | 1325 | case wxBORDER_DEFAULT: |
b2d5a7ee VZ |
1326 | wxFAIL_MSG( _T("unknown border style") ); |
1327 | // fall through | |
1328 | ||
1329 | case wxBORDER_NONE: | |
1330 | case wxBORDER_SIMPLE: | |
1331 | break; | |
1332 | ||
1333 | case wxBORDER_STATIC: | |
1334 | *exstyle |= WS_EX_STATICEDGE; | |
1335 | break; | |
1336 | ||
1337 | case wxBORDER_RAISED: | |
7699361c | 1338 | *exstyle |= WS_EX_DLGMODALFRAME; |
b2d5a7ee VZ |
1339 | break; |
1340 | ||
b2d5a7ee VZ |
1341 | case wxBORDER_SUNKEN: |
1342 | *exstyle |= WS_EX_CLIENTEDGE; | |
fe3d9123 | 1343 | style &= ~WS_BORDER; |
b2d5a7ee VZ |
1344 | break; |
1345 | ||
1346 | case wxBORDER_DOUBLE: | |
1347 | *exstyle |= WS_EX_DLGMODALFRAME; | |
1348 | break; | |
1349 | } | |
d515c32d | 1350 | |
09168de7 | 1351 | // wxUniv doesn't use Windows dialog navigation functions at all |
7f0586ef | 1352 | #if !defined(__WXUNIVERSAL__) && !defined(__WXWINCE__) |
5b9c12e1 | 1353 | // to make the dialog navigation work with the nested panels we must |
09168de7 VZ |
1354 | // use this style (top level windows such as dialogs don't need it) |
1355 | if ( (flags & wxTAB_TRAVERSAL) && !IsTopLevel() ) | |
d515c32d VZ |
1356 | { |
1357 | *exstyle |= WS_EX_CONTROLPARENT; | |
1358 | } | |
09168de7 | 1359 | #endif // __WXUNIVERSAL__ |
b2d5a7ee VZ |
1360 | } |
1361 | ||
1362 | return style; | |
1363 | } | |
eb5e4d9a | 1364 | |
42e69d6b | 1365 | // Setup background and foreground colours correctly |
1e6feb95 | 1366 | void wxWindowMSW::SetupColours() |
42e69d6b VZ |
1367 | { |
1368 | if ( GetParent() ) | |
1369 | SetBackgroundColour(GetParent()->GetBackgroundColour()); | |
1370 | } | |
a23fd0e1 | 1371 | |
1e6feb95 VZ |
1372 | bool wxWindowMSW::IsMouseInWindow() const |
1373 | { | |
1374 | // get the mouse position | |
1375 | POINT pt; | |
f2325516 JS |
1376 | #ifdef __WXWINCE__ |
1377 | ::GetCursorPosWinCE(&pt); | |
1378 | #else | |
1e6feb95 | 1379 | ::GetCursorPos(&pt); |
f2325516 | 1380 | #endif |
1e6feb95 VZ |
1381 | |
1382 | // find the window which currently has the cursor and go up the window | |
1383 | // chain until we find this window - or exhaust it | |
1384 | HWND hwnd = ::WindowFromPoint(pt); | |
1385 | while ( hwnd && (hwnd != GetHwnd()) ) | |
1386 | hwnd = ::GetParent(hwnd); | |
1387 | ||
1388 | return hwnd != NULL; | |
1389 | } | |
1390 | ||
e39af974 | 1391 | void wxWindowMSW::OnInternalIdle() |
42e69d6b | 1392 | { |
4e5c6c33 | 1393 | #ifndef HAVE_TRACKMOUSEEVENT |
42e69d6b VZ |
1394 | // Check if we need to send a LEAVE event |
1395 | if ( m_mouseInWindow ) | |
2d0a075d | 1396 | { |
ee74faf9 VZ |
1397 | // note that we should generate the leave event whether the window has |
1398 | // or doesn't have mouse capture | |
1399 | if ( !IsMouseInWindow() ) | |
42e69d6b | 1400 | { |
51e4e266 | 1401 | GenerateMouseLeave(); |
42e69d6b VZ |
1402 | } |
1403 | } | |
4e5c6c33 | 1404 | #endif // !HAVE_TRACKMOUSEEVENT |
c085e333 | 1405 | |
e39af974 JS |
1406 | if (wxUpdateUIEvent::CanUpdate(this)) |
1407 | UpdateWindowUI(wxUPDATE_UI_FROMIDLE); | |
42e69d6b | 1408 | } |
568cb543 | 1409 | |
42e69d6b | 1410 | // Set this window to be the child of 'parent'. |
1e6feb95 | 1411 | bool wxWindowMSW::Reparent(wxWindowBase *parent) |
42e69d6b VZ |
1412 | { |
1413 | if ( !wxWindowBase::Reparent(parent) ) | |
08158721 | 1414 | return false; |
c085e333 | 1415 | |
42e69d6b VZ |
1416 | HWND hWndChild = GetHwnd(); |
1417 | HWND hWndParent = GetParent() ? GetWinHwnd(GetParent()) : (HWND)0; | |
a23fd0e1 | 1418 | |
42e69d6b | 1419 | ::SetParent(hWndChild, hWndParent); |
a23fd0e1 | 1420 | |
ee471817 VZ |
1421 | #ifndef __WXWINCE__ |
1422 | if ( ::GetWindowLong(hWndChild, GWL_EXSTYLE) & WS_EX_CONTROLPARENT ) | |
1423 | { | |
1424 | EnsureParentHasControlParentStyle(GetParent()); | |
1425 | } | |
1426 | #endif // !__WXWINCE__ | |
1427 | ||
08158721 | 1428 | return true; |
42e69d6b | 1429 | } |
a23fd0e1 | 1430 | |
a0e449ff VZ |
1431 | static inline void SendSetRedraw(HWND hwnd, bool on) |
1432 | { | |
c67d6888 | 1433 | #ifndef __WXMICROWIN__ |
a0e449ff | 1434 | ::SendMessage(hwnd, WM_SETREDRAW, (WPARAM)on, 0); |
c67d6888 | 1435 | #endif |
a0e449ff VZ |
1436 | } |
1437 | ||
1438 | void wxWindowMSW::Freeze() | |
1439 | { | |
a1037371 VZ |
1440 | if ( !m_frozenness++ ) |
1441 | { | |
dc993cbf VZ |
1442 | if ( IsShown() ) |
1443 | SendSetRedraw(GetHwnd(), false); | |
a1037371 | 1444 | } |
a0e449ff VZ |
1445 | } |
1446 | ||
1447 | void wxWindowMSW::Thaw() | |
1448 | { | |
a1037371 | 1449 | wxASSERT_MSG( m_frozenness > 0, _T("Thaw() without matching Freeze()") ); |
c0cdd6cc | 1450 | |
8d7eaf91 | 1451 | if ( --m_frozenness == 0 ) |
a1037371 | 1452 | { |
dc993cbf VZ |
1453 | if ( IsShown() ) |
1454 | { | |
1455 | SendSetRedraw(GetHwnd(), true); | |
a1037371 | 1456 | |
dc993cbf VZ |
1457 | // we need to refresh everything or otherwise the invalidated area |
1458 | // is not going to be repainted | |
1459 | Refresh(); | |
1460 | } | |
a1037371 | 1461 | } |
a0e449ff VZ |
1462 | } |
1463 | ||
1e6feb95 | 1464 | void wxWindowMSW::Refresh(bool eraseBack, const wxRect *rect) |
42e69d6b VZ |
1465 | { |
1466 | HWND hWnd = GetHwnd(); | |
1467 | if ( hWnd ) | |
1468 | { | |
d181e053 VZ |
1469 | RECT mswRect; |
1470 | const RECT *pRect; | |
42e69d6b VZ |
1471 | if ( rect ) |
1472 | { | |
f9c980f6 | 1473 | wxCopyRectToRECT(*rect, mswRect); |
d181e053 | 1474 | pRect = &mswRect; |
42e69d6b VZ |
1475 | } |
1476 | else | |
d181e053 VZ |
1477 | { |
1478 | pRect = NULL; | |
1479 | } | |
1480 | ||
82e3664e | 1481 | // RedrawWindow not available on SmartPhone or eVC++ 3 |
41527143 | 1482 | #if !defined(__SMARTPHONE__) && !(defined(_WIN32_WCE) && _WIN32_WCE < 400) |
d181e053 VZ |
1483 | UINT flags = RDW_INVALIDATE | RDW_ALLCHILDREN; |
1484 | if ( eraseBack ) | |
1485 | flags |= RDW_ERASE; | |
1486 | ||
1487 | ::RedrawWindow(hWnd, pRect, NULL, flags); | |
480e9098 | 1488 | #else |
16d652a5 | 1489 | ::InvalidateRect(hWnd, pRect, eraseBack); |
480e9098 | 1490 | #endif |
42e69d6b VZ |
1491 | } |
1492 | } | |
a23fd0e1 | 1493 | |
1e6feb95 VZ |
1494 | void wxWindowMSW::Update() |
1495 | { | |
1496 | if ( !::UpdateWindow(GetHwnd()) ) | |
1497 | { | |
1498 | wxLogLastError(_T("UpdateWindow")); | |
1499 | } | |
2b5f62a0 | 1500 | |
7f0586ef | 1501 | #if !defined(__WXMICROWIN__) && !defined(__WXWINCE__) |
1e6feb95 VZ |
1502 | // just calling UpdateWindow() is not enough, what we did in our WM_PAINT |
1503 | // handler needs to be really drawn right now | |
1504 | (void)::GdiFlush(); | |
1505 | #endif // __WIN32__ | |
1506 | } | |
1507 | ||
42e69d6b VZ |
1508 | // --------------------------------------------------------------------------- |
1509 | // drag and drop | |
1510 | // --------------------------------------------------------------------------- | |
a23fd0e1 | 1511 | |
3febc967 VZ |
1512 | #if wxUSE_DRAG_AND_DROP || !defined(__WXWINCE__) |
1513 | ||
1514 | #if wxUSE_STATBOX | |
1515 | ||
006b8dff JG |
1516 | // we need to lower the sibling static boxes so controls contained within can be |
1517 | // a drop target | |
3febc967 | 1518 | static void AdjustStaticBoxZOrder(wxWindow *parent) |
006b8dff | 1519 | { |
deb0d191 JG |
1520 | // no sibling static boxes if we have no parent (ie TLW) |
1521 | if ( !parent ) | |
1522 | return; | |
1523 | ||
006b8dff JG |
1524 | for ( wxWindowList::compatibility_iterator node = parent->GetChildren().GetFirst(); |
1525 | node; | |
1526 | node = node->GetNext() ) | |
1527 | { | |
1528 | wxStaticBox *statbox = wxDynamicCast(node->GetData(), wxStaticBox); | |
1529 | if ( statbox ) | |
1530 | { | |
1531 | ::SetWindowPos(GetHwndOf(statbox), HWND_BOTTOM, 0, 0, 0, 0, | |
1532 | SWP_NOMOVE | SWP_NOSIZE | SWP_NOACTIVATE); | |
1533 | } | |
1534 | } | |
1535 | } | |
a23fd0e1 | 1536 | |
3febc967 VZ |
1537 | #else // !wxUSE_STATBOX |
1538 | ||
1539 | static inline void AdjustStaticBoxZOrder(wxWindow * WXUNUSED(parent)) | |
1540 | { | |
1541 | } | |
1542 | ||
1543 | #endif // wxUSE_STATBOX/!wxUSE_STATBOX | |
1544 | ||
1545 | #endif // drag and drop is used | |
1546 | ||
4ce1efe1 | 1547 | #if wxUSE_DRAG_AND_DROP |
1e6feb95 | 1548 | void wxWindowMSW::SetDropTarget(wxDropTarget *pDropTarget) |
42e69d6b VZ |
1549 | { |
1550 | if ( m_dropTarget != 0 ) { | |
1551 | m_dropTarget->Revoke(m_hWnd); | |
1552 | delete m_dropTarget; | |
1553 | } | |
a23fd0e1 | 1554 | |
42e69d6b VZ |
1555 | m_dropTarget = pDropTarget; |
1556 | if ( m_dropTarget != 0 ) | |
006b8dff JG |
1557 | { |
1558 | AdjustStaticBoxZOrder(GetParent()); | |
42e69d6b | 1559 | m_dropTarget->Register(m_hWnd); |
006b8dff | 1560 | } |
42e69d6b | 1561 | } |
42e69d6b | 1562 | #endif // wxUSE_DRAG_AND_DROP |
2a47d3c1 | 1563 | |
90e572f1 | 1564 | // old-style file manager drag&drop support: we retain the old-style |
42e69d6b | 1565 | // DragAcceptFiles in parallel with SetDropTarget. |
0c0d1521 | 1566 | void wxWindowMSW::DragAcceptFiles(bool WXUNUSED_IN_WINCE(accept)) |
42e69d6b | 1567 | { |
0c0d1521 | 1568 | #ifndef __WXWINCE__ |
42e69d6b VZ |
1569 | HWND hWnd = GetHwnd(); |
1570 | if ( hWnd ) | |
006b8dff JG |
1571 | { |
1572 | AdjustStaticBoxZOrder(GetParent()); | |
42e69d6b | 1573 | ::DragAcceptFiles(hWnd, (BOOL)accept); |
006b8dff | 1574 | } |
7f0586ef | 1575 | #endif |
42e69d6b | 1576 | } |
a23fd0e1 | 1577 | |
42e69d6b VZ |
1578 | // ---------------------------------------------------------------------------- |
1579 | // tooltips | |
1580 | // ---------------------------------------------------------------------------- | |
dbda9e86 | 1581 | |
42e69d6b | 1582 | #if wxUSE_TOOLTIPS |
2d0a075d | 1583 | |
1e6feb95 | 1584 | void wxWindowMSW::DoSetToolTip(wxToolTip *tooltip) |
42e69d6b VZ |
1585 | { |
1586 | wxWindowBase::DoSetToolTip(tooltip); | |
839b865d | 1587 | |
42e69d6b | 1588 | if ( m_tooltip ) |
d4e5272b | 1589 | m_tooltip->SetWindow((wxWindow *)this); |
42e69d6b | 1590 | } |
9a05fd8d | 1591 | |
42e69d6b | 1592 | #endif // wxUSE_TOOLTIPS |
9a05fd8d | 1593 | |
42e69d6b VZ |
1594 | // --------------------------------------------------------------------------- |
1595 | // moving and resizing | |
1596 | // --------------------------------------------------------------------------- | |
839b865d | 1597 | |
f7040b5f VZ |
1598 | bool wxWindowMSW::IsSizeDeferred() const |
1599 | { | |
1600 | #if USE_DEFERRED_SIZING | |
1601 | if ( m_pendingPosition != wxDefaultPosition || | |
1602 | m_pendingSize != wxDefaultSize ) | |
1603 | return true; | |
1604 | #endif // USE_DEFERRED_SIZING | |
1605 | ||
1606 | return false; | |
1607 | } | |
1608 | ||
42e69d6b | 1609 | // Get total size |
1e6feb95 | 1610 | void wxWindowMSW::DoGetSize(int *x, int *y) const |
42e69d6b | 1611 | { |
0d6fdb3c | 1612 | #if USE_DEFERRED_SIZING |
11cfa8ef VZ |
1613 | // if SetSize() had been called at wx level but not realized at Windows |
1614 | // level yet (i.e. EndDeferWindowPos() not called), we still should return | |
1615 | // the new and not the old position to the other wx code | |
1616 | if ( m_pendingSize != wxDefaultSize ) | |
1617 | { | |
1618 | if ( x ) | |
1619 | *x = m_pendingSize.x; | |
1620 | if ( y ) | |
1621 | *y = m_pendingSize.y; | |
1622 | } | |
1623 | else // use current size | |
0d6fdb3c | 1624 | #endif // USE_DEFERRED_SIZING |
11cfa8ef VZ |
1625 | { |
1626 | RECT rect = wxGetWindowRect(GetHwnd()); | |
82c9f85c | 1627 | |
11cfa8ef VZ |
1628 | if ( x ) |
1629 | *x = rect.right - rect.left; | |
1630 | if ( y ) | |
1631 | *y = rect.bottom - rect.top; | |
1632 | } | |
42e69d6b VZ |
1633 | } |
1634 | ||
82c9f85c VZ |
1635 | // Get size *available for subwindows* i.e. excluding menu bar etc. |
1636 | void wxWindowMSW::DoGetClientSize(int *x, int *y) const | |
42e69d6b | 1637 | { |
f2197644 | 1638 | #if USE_DEFERRED_SIZING |
0d6fdb3c | 1639 | if ( m_pendingSize != wxDefaultSize ) |
0d7f75df | 1640 | { |
0d6fdb3c | 1641 | // we need to calculate the client size corresponding to pending size |
dc497201 JG |
1642 | RECT rect; |
1643 | rect.left = m_pendingPosition.x; | |
1644 | rect.top = m_pendingPosition.y; | |
1645 | rect.right = rect.left + m_pendingSize.x; | |
1646 | rect.bottom = rect.top + m_pendingSize.y; | |
1647 | ||
1648 | ::SendMessage(GetHwnd(), WM_NCCALCSIZE, FALSE, (LPARAM)&rect); | |
1649 | ||
1650 | if ( x ) | |
1651 | *x = rect.right - rect.left; | |
1652 | if ( y ) | |
1653 | *y = rect.bottom - rect.top; | |
0d7f75df | 1654 | } |
0d6fdb3c VZ |
1655 | else |
1656 | #endif // USE_DEFERRED_SIZING | |
1657 | { | |
1658 | RECT rect = wxGetClientRect(GetHwnd()); | |
1659 | ||
1660 | if ( x ) | |
1661 | *x = rect.right; | |
1662 | if ( y ) | |
1663 | *y = rect.bottom; | |
1664 | } | |
82c9f85c VZ |
1665 | } |
1666 | ||
1667 | void wxWindowMSW::DoGetPosition(int *x, int *y) const | |
1668 | { | |
a7e0e432 VZ |
1669 | wxWindow * const parent = GetParent(); |
1670 | ||
1671 | wxPoint pos; | |
11cfa8ef VZ |
1672 | if ( m_pendingPosition != wxDefaultPosition ) |
1673 | { | |
a7e0e432 | 1674 | pos = m_pendingPosition; |
11cfa8ef VZ |
1675 | } |
1676 | else // use current position | |
1677 | { | |
1678 | RECT rect = wxGetWindowRect(GetHwnd()); | |
42e69d6b | 1679 | |
11cfa8ef VZ |
1680 | POINT point; |
1681 | point.x = rect.left; | |
1682 | point.y = rect.top; | |
42e69d6b | 1683 | |
11cfa8ef VZ |
1684 | // we do the adjustments with respect to the parent only for the "real" |
1685 | // children, not for the dialogs/frames | |
1686 | if ( !IsTopLevel() ) | |
92049cd4 | 1687 | { |
e5b5af91 VZ |
1688 | if ( wxTheApp->GetLayoutDirection() == wxLayout_RightToLeft ) |
1689 | { | |
967acfb5 | 1690 | // In RTL mode, we want the logical left x-coordinate, |
e5b5af91 VZ |
1691 | // which would be the physical right x-coordinate. |
1692 | point.x = rect.right; | |
1693 | } | |
1694 | ||
11cfa8ef VZ |
1695 | // Since we now have the absolute screen coords, if there's a |
1696 | // parent we must subtract its top left corner | |
11cfa8ef VZ |
1697 | if ( parent ) |
1698 | { | |
a7e0e432 | 1699 | ::ScreenToClient(GetHwndOf(parent), &point); |
11cfa8ef | 1700 | } |
89e3037c | 1701 | } |
42e69d6b | 1702 | |
a7e0e432 VZ |
1703 | pos.x = point.x; |
1704 | pos.y = point.y; | |
1705 | } | |
1706 | ||
1707 | // we also must adjust by the client area offset: a control which is just | |
1708 | // under a toolbar could be at (0, 30) in Windows but at (0, 0) in wx | |
1709 | if ( parent && !IsTopLevel() ) | |
1710 | { | |
1711 | const wxPoint pt(parent->GetClientAreaOrigin()); | |
1712 | pos.x -= pt.x; | |
1713 | pos.y -= pt.y; | |
11cfa8ef | 1714 | } |
a7e0e432 VZ |
1715 | |
1716 | if ( x ) | |
1717 | *x = pos.x; | |
1718 | if ( y ) | |
1719 | *y = pos.y; | |
42e69d6b | 1720 | } |
54bdd8b0 | 1721 | |
1e6feb95 | 1722 | void wxWindowMSW::DoScreenToClient(int *x, int *y) const |
42e69d6b VZ |
1723 | { |
1724 | POINT pt; | |
1725 | if ( x ) | |
1726 | pt.x = *x; | |
1727 | if ( y ) | |
1728 | pt.y = *y; | |
54bdd8b0 | 1729 | |
82c9f85c | 1730 | ::ScreenToClient(GetHwnd(), &pt); |
a23fd0e1 | 1731 | |
42e69d6b VZ |
1732 | if ( x ) |
1733 | *x = pt.x; | |
1734 | if ( y ) | |
1735 | *y = pt.y; | |
1736 | } | |
a23fd0e1 | 1737 | |
1e6feb95 | 1738 | void wxWindowMSW::DoClientToScreen(int *x, int *y) const |
42e69d6b VZ |
1739 | { |
1740 | POINT pt; | |
1741 | if ( x ) | |
1742 | pt.x = *x; | |
1743 | if ( y ) | |
1744 | pt.y = *y; | |
54bdd8b0 | 1745 | |
82c9f85c | 1746 | ::ClientToScreen(GetHwnd(), &pt); |
a23fd0e1 | 1747 | |
42e69d6b VZ |
1748 | if ( x ) |
1749 | *x = pt.x; | |
1750 | if ( y ) | |
1751 | *y = pt.y; | |
1752 | } | |
a23fd0e1 | 1753 | |
86e30911 | 1754 | bool |
7d86a2d4 VZ |
1755 | wxWindowMSW::DoMoveSibling(WXHWND hwnd, int x, int y, int width, int height) |
1756 | { | |
1757 | #if USE_DEFERRED_SIZING | |
1758 | // if our parent had prepared a defer window handle for us, use it (unless | |
1759 | // we are a top level window) | |
1760 | wxWindowMSW * const parent = IsTopLevel() ? NULL : GetParent(); | |
1761 | ||
1762 | HDWP hdwp = parent ? (HDWP)parent->m_hDWP : NULL; | |
1763 | if ( hdwp ) | |
1764 | { | |
1765 | hdwp = ::DeferWindowPos(hdwp, (HWND)hwnd, NULL, x, y, width, height, | |
dd28827a | 1766 | SWP_NOZORDER | SWP_NOOWNERZORDER | SWP_NOACTIVATE); |
7d86a2d4 VZ |
1767 | if ( !hdwp ) |
1768 | { | |
1769 | wxLogLastError(_T("DeferWindowPos")); | |
1770 | } | |
1771 | } | |
1772 | ||
1773 | if ( parent ) | |
1774 | { | |
1775 | // hdwp must be updated as it may have been changed | |
1776 | parent->m_hDWP = (WXHANDLE)hdwp; | |
1777 | } | |
1778 | ||
86e30911 VZ |
1779 | if ( hdwp ) |
1780 | { | |
1781 | // did deferred move, remember new coordinates of the window as they're | |
1782 | // different from what Windows would return for it | |
1783 | return true; | |
1784 | } | |
1785 | ||
7d86a2d4 | 1786 | // otherwise (or if deferring failed) move the window in place immediately |
7d86a2d4 | 1787 | #endif // USE_DEFERRED_SIZING |
86e30911 | 1788 | if ( !::MoveWindow((HWND)hwnd, x, y, width, height, IsShown()) ) |
7d86a2d4 | 1789 | { |
86e30911 | 1790 | wxLogLastError(wxT("MoveWindow")); |
7d86a2d4 | 1791 | } |
86e30911 VZ |
1792 | |
1793 | // if USE_DEFERRED_SIZING, indicates that we didn't use deferred move, | |
1794 | // ignored otherwise | |
1795 | return false; | |
7d86a2d4 VZ |
1796 | } |
1797 | ||
1e6feb95 | 1798 | void wxWindowMSW::DoMoveWindow(int x, int y, int width, int height) |
b782f2e0 | 1799 | { |
62e1ba75 JS |
1800 | // TODO: is this consistent with other platforms? |
1801 | // Still, negative width or height shouldn't be allowed | |
1802 | if (width < 0) | |
1803 | width = 0; | |
1804 | if (height < 0) | |
1805 | height = 0; | |
9b6ae450 | 1806 | |
86e30911 VZ |
1807 | if ( DoMoveSibling(m_hWnd, x, y, width, height) ) |
1808 | { | |
1809 | #if USE_DEFERRED_SIZING | |
1810 | m_pendingPosition = wxPoint(x, y); | |
1811 | m_pendingSize = wxSize(width, height); | |
1812 | #endif // USE_DEFERRED_SIZING | |
1813 | } | |
b782f2e0 VZ |
1814 | } |
1815 | ||
4438caf4 VZ |
1816 | // set the size of the window: if the dimensions are positive, just use them, |
1817 | // but if any of them is equal to -1, it means that we must find the value for | |
1818 | // it ourselves (unless sizeFlags contains wxSIZE_ALLOW_MINUS_ONE flag, in | |
1819 | // which case -1 is a valid value for x and y) | |
1820 | // | |
1821 | // If sizeFlags contains wxSIZE_AUTO_WIDTH/HEIGHT flags (default), we calculate | |
1822 | // the width/height to best suit our contents, otherwise we reuse the current | |
1823 | // width/height | |
1e6feb95 | 1824 | void wxWindowMSW::DoSetSize(int x, int y, int width, int height, int sizeFlags) |
42e69d6b | 1825 | { |
4438caf4 | 1826 | // get the current size and position... |
42e69d6b | 1827 | int currentX, currentY; |
da78f3b1 RD |
1828 | int currentW, currentH; |
1829 | ||
42e69d6b | 1830 | GetPosition(¤tX, ¤tY); |
42e69d6b | 1831 | GetSize(¤tW, ¤tH); |
a23fd0e1 | 1832 | |
952f2aaa VZ |
1833 | // ... and don't do anything (avoiding flicker) if it's already ok unless |
1834 | // we're forced to resize the window | |
4438caf4 | 1835 | if ( x == currentX && y == currentY && |
952f2aaa VZ |
1836 | width == currentW && height == currentH && |
1837 | !(sizeFlags & wxSIZE_FORCE) ) | |
4438caf4 | 1838 | { |
42e69d6b | 1839 | return; |
4438caf4 | 1840 | } |
a23fd0e1 | 1841 | |
422d0ff0 | 1842 | if ( x == wxDefaultCoord && !(sizeFlags & wxSIZE_ALLOW_MINUS_ONE) ) |
4438caf4 | 1843 | x = currentX; |
422d0ff0 | 1844 | if ( y == wxDefaultCoord && !(sizeFlags & wxSIZE_ALLOW_MINUS_ONE) ) |
4438caf4 | 1845 | y = currentY; |
a23fd0e1 | 1846 | |
4438caf4 | 1847 | AdjustForParentClientOrigin(x, y, sizeFlags); |
a23fd0e1 | 1848 | |
abb74e0f | 1849 | wxSize size = wxDefaultSize; |
422d0ff0 | 1850 | if ( width == wxDefaultCoord ) |
4438caf4 | 1851 | { |
9e2896e5 | 1852 | if ( sizeFlags & wxSIZE_AUTO_WIDTH ) |
4438caf4 VZ |
1853 | { |
1854 | size = DoGetBestSize(); | |
1855 | width = size.x; | |
1856 | } | |
1857 | else | |
1858 | { | |
1859 | // just take the current one | |
1860 | width = currentW; | |
1861 | } | |
1862 | } | |
1863 | ||
422d0ff0 | 1864 | if ( height == wxDefaultCoord ) |
4438caf4 | 1865 | { |
9e2896e5 | 1866 | if ( sizeFlags & wxSIZE_AUTO_HEIGHT ) |
4438caf4 | 1867 | { |
422d0ff0 | 1868 | if ( size.x == wxDefaultCoord ) |
4438caf4 | 1869 | { |
b782f2e0 | 1870 | size = DoGetBestSize(); |
4438caf4 VZ |
1871 | } |
1872 | //else: already called DoGetBestSize() above | |
a23fd0e1 | 1873 | |
4438caf4 VZ |
1874 | height = size.y; |
1875 | } | |
1876 | else | |
1877 | { | |
1878 | // just take the current one | |
1879 | height = currentH; | |
1880 | } | |
1881 | } | |
1882 | ||
b782f2e0 | 1883 | DoMoveWindow(x, y, width, height); |
4438caf4 VZ |
1884 | } |
1885 | ||
1e6feb95 | 1886 | void wxWindowMSW::DoSetClientSize(int width, int height) |
42e69d6b | 1887 | { |
90e572f1 | 1888 | // setting the client size is less obvious than it could have been |
d4597e13 | 1889 | // because in the result of changing the total size the window scrollbar |
c72b1ad7 VZ |
1890 | // may [dis]appear and/or its menubar may [un]wrap (and AdjustWindowRect() |
1891 | // doesn't take neither into account) and so the client size will not be | |
1892 | // correct as the difference between the total and client size changes -- | |
1893 | // so we keep changing it until we get it right | |
d4597e13 | 1894 | // |
d6a97306 VZ |
1895 | // normally this loop shouldn't take more than 3 iterations (usually 1 but |
1896 | // if scrollbars [dis]appear as the result of the first call, then 2 and it | |
1897 | // may become 3 if the window had 0 size originally and so we didn't | |
1898 | // calculate the scrollbar correction correctly during the first iteration) | |
1899 | // but just to be on the safe side we check for it instead of making it an | |
d4597e13 | 1900 | // "infinite" loop (i.e. leaving break inside as the only way to get out) |
d6a97306 | 1901 | for ( int i = 0; i < 4; i++ ) |
d4597e13 VZ |
1902 | { |
1903 | RECT rectClient; | |
1904 | ::GetClientRect(GetHwnd(), &rectClient); | |
2bda0e17 | 1905 | |
b0268daf | 1906 | // if the size is already ok, stop here (NB: rectClient.left = top = 0) |
422d0ff0 WS |
1907 | if ( (rectClient.right == width || width == wxDefaultCoord) && |
1908 | (rectClient.bottom == height || height == wxDefaultCoord) ) | |
d4597e13 VZ |
1909 | { |
1910 | break; | |
1911 | } | |
a23fd0e1 | 1912 | |
d4597e13 VZ |
1913 | // Find the difference between the entire window (title bar and all) |
1914 | // and the client area; add this to the new client size to move the | |
1915 | // window | |
1916 | RECT rectWin; | |
1917 | ::GetWindowRect(GetHwnd(), &rectWin); | |
1918 | ||
b0268daf VZ |
1919 | const int widthWin = rectWin.right - rectWin.left, |
1920 | heightWin = rectWin.bottom - rectWin.top; | |
387a3b02 | 1921 | |
d4597e13 VZ |
1922 | // MoveWindow positions the child windows relative to the parent, so |
1923 | // adjust if necessary | |
1924 | if ( !IsTopLevel() ) | |
1925 | { | |
1926 | wxWindow *parent = GetParent(); | |
1927 | if ( parent ) | |
1928 | { | |
b0268daf | 1929 | ::ScreenToClient(GetHwndOf(parent), (POINT *)&rectWin); |
d4597e13 VZ |
1930 | } |
1931 | } | |
a23fd0e1 | 1932 | |
b0268daf | 1933 | // don't call DoMoveWindow() because we want to move window immediately |
c72b1ad7 VZ |
1934 | // and not defer it here as otherwise the value returned by |
1935 | // GetClient/WindowRect() wouldn't change as the window wouldn't be | |
1936 | // really resized | |
b0268daf VZ |
1937 | if ( !::MoveWindow(GetHwnd(), |
1938 | rectWin.left, | |
1939 | rectWin.top, | |
1940 | width + widthWin - rectClient.right, | |
1941 | height + heightWin - rectClient.bottom, | |
1942 | TRUE) ) | |
1943 | { | |
1944 | wxLogLastError(_T("MoveWindow")); | |
1945 | } | |
d4597e13 | 1946 | } |
42e69d6b | 1947 | } |
a23fd0e1 | 1948 | |
42e69d6b VZ |
1949 | // --------------------------------------------------------------------------- |
1950 | // text metrics | |
1951 | // --------------------------------------------------------------------------- | |
a23fd0e1 | 1952 | |
1e6feb95 | 1953 | int wxWindowMSW::GetCharHeight() const |
42e69d6b | 1954 | { |
f6bcfd97 | 1955 | return wxGetTextMetrics(this).tmHeight; |
42e69d6b | 1956 | } |
3eddf563 | 1957 | |
1e6feb95 | 1958 | int wxWindowMSW::GetCharWidth() const |
42e69d6b | 1959 | { |
f6bcfd97 BP |
1960 | // +1 is needed because Windows apparently adds it when calculating the |
1961 | // dialog units size in pixels | |
1962 | #if wxDIALOG_UNIT_COMPATIBILITY | |
1e6feb95 | 1963 | return wxGetTextMetrics(this).tmAveCharWidth; |
f6bcfd97 BP |
1964 | #else |
1965 | return wxGetTextMetrics(this).tmAveCharWidth + 1; | |
1966 | #endif | |
42e69d6b | 1967 | } |
f4621a09 | 1968 | |
1e6feb95 | 1969 | void wxWindowMSW::GetTextExtent(const wxString& string, |
34636400 | 1970 | int *x, int *y, |
42e69d6b VZ |
1971 | int *descent, int *externalLeading, |
1972 | const wxFont *theFont) const | |
1973 | { | |
64869ab7 VZ |
1974 | wxASSERT_MSG( !theFont || theFont->Ok(), |
1975 | _T("invalid font in GetTextExtent()") ); | |
634903fd | 1976 | |
2d17baae VS |
1977 | wxFont fontToUse; |
1978 | if (theFont) | |
1979 | fontToUse = *theFont; | |
1980 | else | |
1981 | fontToUse = GetFont(); | |
634903fd | 1982 | |
64869ab7 VZ |
1983 | WindowHDC hdc(GetHwnd()); |
1984 | SelectInHDC selectFont(hdc, GetHfontOf(fontToUse)); | |
341c92a8 | 1985 | |
42e69d6b VZ |
1986 | SIZE sizeRect; |
1987 | TEXTMETRIC tm; | |
e0a050e3 | 1988 | ::GetTextExtentPoint32(hdc, string.wx_str(), string.length(), &sizeRect); |
64869ab7 | 1989 | GetTextMetrics(hdc, &tm); |
42e69d6b | 1990 | |
0655ad29 VZ |
1991 | if ( x ) |
1992 | *x = sizeRect.cx; | |
1993 | if ( y ) | |
1994 | *y = sizeRect.cy; | |
1995 | if ( descent ) | |
1996 | *descent = tm.tmDescent; | |
1997 | if ( externalLeading ) | |
1998 | *externalLeading = tm.tmExternalLeading; | |
2bda0e17 KB |
1999 | } |
2000 | ||
c50f1fb9 VZ |
2001 | // --------------------------------------------------------------------------- |
2002 | // popup menu | |
2003 | // --------------------------------------------------------------------------- | |
2004 | ||
2e9f62da VZ |
2005 | #if wxUSE_MENUS_NATIVE |
2006 | ||
ed45e263 VZ |
2007 | // yield for WM_COMMAND events only, i.e. process all WM_COMMANDs in the queue |
2008 | // immediately, without waiting for the next event loop iteration | |
2009 | // | |
2010 | // NB: this function should probably be made public later as it can almost | |
2011 | // surely replace wxYield() elsewhere as well | |
2012 | static void wxYieldForCommandsOnly() | |
2013 | { | |
2014 | // peek all WM_COMMANDs (it will always return WM_QUIT too but we don't | |
2015 | // want to process it here) | |
2016 | MSG msg; | |
1bf77ee5 | 2017 | while ( ::PeekMessage(&msg, (HWND)0, WM_COMMAND, WM_COMMAND, PM_REMOVE) ) |
ed45e263 | 2018 | { |
dd7ebf8b | 2019 | if ( msg.message == WM_QUIT ) |
1bf77ee5 VZ |
2020 | { |
2021 | // if we retrieved a WM_QUIT, insert back into the message queue. | |
2022 | ::PostQuitMessage(0); | |
2023 | break; | |
2024 | } | |
7de59551 | 2025 | |
1bf77ee5 VZ |
2026 | // luckily (as we don't have access to wxEventLoopImpl method from here |
2027 | // anyhow...) we don't need to pre process WM_COMMANDs so dispatch it | |
2028 | // immediately | |
2029 | ::TranslateMessage(&msg); | |
2030 | ::DispatchMessage(&msg); | |
2031 | } | |
ed45e263 VZ |
2032 | } |
2033 | ||
1e6feb95 | 2034 | bool wxWindowMSW::DoPopupMenu(wxMenu *menu, int x, int y) |
c50f1fb9 VZ |
2035 | { |
2036 | menu->SetInvokingWindow(this); | |
2037 | menu->UpdateUI(); | |
2038 | ||
27d2dbbc | 2039 | if ( x == wxDefaultCoord && y == wxDefaultCoord ) |
971562cb VS |
2040 | { |
2041 | wxPoint mouse = ScreenToClient(wxGetMousePosition()); | |
2042 | x = mouse.x; y = mouse.y; | |
2043 | } | |
2044 | ||
c50f1fb9 VZ |
2045 | HWND hWnd = GetHwnd(); |
2046 | HMENU hMenu = GetHmenuOf(menu); | |
2047 | POINT point; | |
2048 | point.x = x; | |
2049 | point.y = y; | |
2050 | ::ClientToScreen(hWnd, &point); | |
2051 | wxCurrentPopupMenu = menu; | |
5cb598ae | 2052 | #if defined(__WXWINCE__) |
b40bf35c VZ |
2053 | static const UINT flags = 0; |
2054 | #else // !__WXWINCE__ | |
2055 | UINT flags = TPM_RIGHTBUTTON; | |
2056 | // NT4 doesn't support TPM_RECURSE and simply doesn't show the menu at all | |
2057 | // when it's use, I'm not sure about Win95/98 but prefer to err on the safe | |
2058 | // side and not to use it there neither -- modify the test if it does work | |
2059 | // on these systems | |
2060 | if ( wxGetWinVersion() >= wxWinVersion_5 ) | |
2061 | { | |
2062 | // using TPM_RECURSE allows us to show a popup menu while another menu | |
2063 | // is opened which can be useful and is supported by the other | |
2064 | // platforms, so allow it under Windows too | |
2065 | flags |= TPM_RECURSE; | |
2066 | } | |
2067 | #endif // __WXWINCE__/!__WXWINCE__ | |
2068 | ||
7f0586ef | 2069 | ::TrackPopupMenu(hMenu, flags, point.x, point.y, 0, hWnd, NULL); |
ed45e263 | 2070 | |
90e572f1 | 2071 | // we need to do it right now as otherwise the events are never going to be |
ed45e263 VZ |
2072 | // sent to wxCurrentPopupMenu from HandleCommand() |
2073 | // | |
2074 | // note that even eliminating (ugly) wxCurrentPopupMenu global wouldn't | |
2075 | // help and we'd still need wxYieldForCommandsOnly() as the menu may be | |
2076 | // destroyed as soon as we return (it can be a local variable in the caller | |
2077 | // for example) and so we do need to process the event immediately | |
2078 | wxYieldForCommandsOnly(); | |
2079 | ||
c50f1fb9 VZ |
2080 | wxCurrentPopupMenu = NULL; |
2081 | ||
2082 | menu->SetInvokingWindow(NULL); | |
2083 | ||
08158721 | 2084 | return true; |
c50f1fb9 VZ |
2085 | } |
2086 | ||
1e6feb95 VZ |
2087 | #endif // wxUSE_MENUS_NATIVE |
2088 | ||
42e69d6b VZ |
2089 | // =========================================================================== |
2090 | // pre/post message processing | |
2091 | // =========================================================================== | |
2bda0e17 | 2092 | |
c140b7e7 | 2093 | WXLRESULT wxWindowMSW::MSWDefWindowProc(WXUINT nMsg, WXWPARAM wParam, WXLPARAM lParam) |
42e69d6b VZ |
2094 | { |
2095 | if ( m_oldWndProc ) | |
2096 | return ::CallWindowProc(CASTWNDPROC m_oldWndProc, GetHwnd(), (UINT) nMsg, (WPARAM) wParam, (LPARAM) lParam); | |
2097 | else | |
2098 | return ::DefWindowProc(GetHwnd(), nMsg, wParam, lParam); | |
2099 | } | |
2bda0e17 | 2100 | |
1e6feb95 | 2101 | bool wxWindowMSW::MSWProcessMessage(WXMSG* pMsg) |
42e69d6b | 2102 | { |
1e6feb95 VZ |
2103 | // wxUniversal implements tab traversal itself |
2104 | #ifndef __WXUNIVERSAL__ | |
42e69d6b | 2105 | if ( m_hWnd != 0 && (GetWindowStyleFlag() & wxTAB_TRAVERSAL) ) |
2d0a075d | 2106 | { |
42e69d6b VZ |
2107 | // intercept dialog navigation keys |
2108 | MSG *msg = (MSG *)pMsg; | |
d9317fd4 VZ |
2109 | |
2110 | // here we try to do all the job which ::IsDialogMessage() usually does | |
2111 | // internally | |
573a1586 | 2112 | if ( msg->message == WM_KEYDOWN ) |
42e69d6b | 2113 | { |
3f7bc32b VZ |
2114 | bool bCtrlDown = wxIsCtrlDown(); |
2115 | bool bShiftDown = wxIsShiftDown(); | |
a23fd0e1 | 2116 | |
42e69d6b VZ |
2117 | // WM_GETDLGCODE: ask the control if it wants the key for itself, |
2118 | // don't process it if it's the case (except for Ctrl-Tab/Enter | |
2119 | // combinations which are always processed) | |
977f50f3 VZ |
2120 | LONG lDlgCode = ::SendMessage(msg->hwnd, WM_GETDLGCODE, 0, 0); |
2121 | ||
2122 | // surprizingly, DLGC_WANTALLKEYS bit mask doesn't contain the | |
2123 | // DLGC_WANTTAB nor DLGC_WANTARROWS bits although, logically, | |
2124 | // it, of course, implies them | |
2125 | if ( lDlgCode & DLGC_WANTALLKEYS ) | |
42e69d6b | 2126 | { |
977f50f3 | 2127 | lDlgCode |= DLGC_WANTTAB | DLGC_WANTARROWS; |
42e69d6b | 2128 | } |
a23fd0e1 | 2129 | |
08158721 | 2130 | bool bForward = true, |
298ca00c VZ |
2131 | bWindowChange = false, |
2132 | bFromTab = false; | |
a23fd0e1 | 2133 | |
573a1586 | 2134 | // should we process this message specially? |
08158721 | 2135 | bool bProcess = true; |
9145664b | 2136 | switch ( msg->wParam ) |
42e69d6b VZ |
2137 | { |
2138 | case VK_TAB: | |
7cc44669 VZ |
2139 | if ( (lDlgCode & DLGC_WANTTAB) && !bCtrlDown ) |
2140 | { | |
2141 | // let the control have the TAB | |
08158721 | 2142 | bProcess = false; |
42e69d6b | 2143 | } |
7cc44669 VZ |
2144 | else // use it for navigation |
2145 | { | |
42e69d6b VZ |
2146 | // Ctrl-Tab cycles thru notebook pages |
2147 | bWindowChange = bCtrlDown; | |
319fefa9 | 2148 | bForward = !bShiftDown; |
298ca00c | 2149 | bFromTab = true; |
42e69d6b VZ |
2150 | } |
2151 | break; | |
a23fd0e1 | 2152 | |
42e69d6b VZ |
2153 | case VK_UP: |
2154 | case VK_LEFT: | |
2155 | if ( (lDlgCode & DLGC_WANTARROWS) || bCtrlDown ) | |
08158721 | 2156 | bProcess = false; |
42e69d6b | 2157 | else |
08158721 | 2158 | bForward = false; |
42e69d6b | 2159 | break; |
a02eb1d2 | 2160 | |
42e69d6b VZ |
2161 | case VK_DOWN: |
2162 | case VK_RIGHT: | |
2163 | if ( (lDlgCode & DLGC_WANTARROWS) || bCtrlDown ) | |
08158721 | 2164 | bProcess = false; |
42e69d6b | 2165 | break; |
2bda0e17 | 2166 | |
efe5e221 VZ |
2167 | case VK_PRIOR: |
2168 | bForward = false; | |
2169 | // fall through | |
2170 | ||
2171 | case VK_NEXT: | |
2172 | // we treat PageUp/Dn as arrows because chances are that | |
2173 | // a control which needs arrows also needs them for | |
2174 | // navigation (e.g. wxTextCtrl, wxListCtrl, ...) | |
ada5f90d | 2175 | if ( (lDlgCode & DLGC_WANTARROWS) && !bCtrlDown ) |
efe5e221 | 2176 | bProcess = false; |
ada5f90d | 2177 | else // OTOH Ctrl-PageUp/Dn works as [Shift-]Ctrl-Tab |
efe5e221 VZ |
2178 | bWindowChange = true; |
2179 | break; | |
2180 | ||
42e69d6b VZ |
2181 | case VK_RETURN: |
2182 | { | |
edccf428 | 2183 | if ( (lDlgCode & DLGC_WANTMESSAGE) && !bCtrlDown ) |
42e69d6b VZ |
2184 | { |
2185 | // control wants to process Enter itself, don't | |
90c6edd7 | 2186 | // call IsDialogMessage() which would consume it |
08158721 | 2187 | return false; |
42e69d6b | 2188 | } |
3147bb58 | 2189 | |
90c6edd7 | 2190 | #if wxUSE_BUTTON |
3147bb58 | 2191 | // currently active button should get enter press even |
90c6edd7 VZ |
2192 | // if there is a default button elsewhere so check if |
2193 | // this window is a button first | |
2194 | wxWindow *btn = NULL; | |
3147bb58 | 2195 | if ( lDlgCode & DLGC_DEFPUSHBUTTON ) |
319fefa9 | 2196 | { |
3e79ed96 VZ |
2197 | // let IsDialogMessage() handle this for all |
2198 | // buttons except the owner-drawn ones which it | |
2199 | // just seems to ignore | |
2200 | long style = ::GetWindowLong(msg->hwnd, GWL_STYLE); | |
2201 | if ( (style & BS_OWNERDRAW) == BS_OWNERDRAW ) | |
2202 | { | |
2203 | // emulate the button click | |
90c6edd7 | 2204 | btn = wxFindWinFromHandle((WXHWND)msg->hwnd); |
3e79ed96 VZ |
2205 | } |
2206 | ||
08158721 | 2207 | bProcess = false; |
319fefa9 | 2208 | } |
90c6edd7 | 2209 | else // not a button itself, do we have default button? |
c50f1fb9 | 2210 | { |
90c6edd7 VZ |
2211 | wxTopLevelWindow * |
2212 | tlw = wxDynamicCast(wxGetTopLevelParent(this), | |
2213 | wxTopLevelWindow); | |
6c20e8f8 | 2214 | if ( tlw ) |
c50f1fb9 | 2215 | { |
90c6edd7 VZ |
2216 | btn = wxDynamicCast(tlw->GetDefaultItem(), |
2217 | wxButton); | |
c50f1fb9 | 2218 | } |
90c6edd7 VZ |
2219 | } |
2220 | ||
2221 | if ( btn && btn->IsEnabled() ) | |
2222 | { | |
2223 | btn->MSWCommand(BN_CLICKED, 0 /* unused */); | |
2224 | return true; | |
2225 | } | |
2226 | ||
1e6feb95 | 2227 | #endif // wxUSE_BUTTON |
90c6edd7 | 2228 | |
7b504551 | 2229 | #ifdef __WXWINCE__ |
90c6edd7 VZ |
2230 | // map Enter presses into button presses on PDAs |
2231 | wxJoystickEvent event(wxEVT_JOY_BUTTON_DOWN); | |
2232 | event.SetEventObject(this); | |
2233 | if ( GetEventHandler()->ProcessEvent(event) ) | |
2234 | return true; | |
2235 | #endif // __WXWINCE__ | |
42e69d6b VZ |
2236 | } |
2237 | break; | |
2bda0e17 | 2238 | |
42e69d6b | 2239 | default: |
08158721 | 2240 | bProcess = false; |
42e69d6b | 2241 | } |
2bda0e17 | 2242 | |
42e69d6b VZ |
2243 | if ( bProcess ) |
2244 | { | |
2245 | wxNavigationKeyEvent event; | |
2246 | event.SetDirection(bForward); | |
2247 | event.SetWindowChange(bWindowChange); | |
298ca00c | 2248 | event.SetFromTab(bFromTab); |
42e69d6b | 2249 | event.SetEventObject(this); |
3572173c | 2250 | |
42e69d6b | 2251 | if ( GetEventHandler()->ProcessEvent(event) ) |
57c0af52 | 2252 | { |
d7e0024b VZ |
2253 | // as we don't call IsDialogMessage(), which would take of |
2254 | // this by default, we need to manually send this message | |
1ca78aa1 JS |
2255 | // so that controls can change their UI state if needed |
2256 | MSWUpdateUIState(UIS_CLEAR, UISF_HIDEFOCUS); | |
d7e0024b | 2257 | |
08158721 | 2258 | return true; |
57c0af52 | 2259 | } |
42e69d6b VZ |
2260 | } |
2261 | } | |
a23fd0e1 | 2262 | |
98ebf919 | 2263 | if ( ::IsDialogMessage(GetHwnd(), msg) ) |
f6bcfd97 | 2264 | { |
98ebf919 VZ |
2265 | // IsDialogMessage() did something... |
2266 | return true; | |
f6bcfd97 | 2267 | } |
42e69d6b | 2268 | } |
1e6feb95 | 2269 | #endif // __WXUNIVERSAL__ |
a23fd0e1 | 2270 | |
42e69d6b VZ |
2271 | #if wxUSE_TOOLTIPS |
2272 | if ( m_tooltip ) | |
387a3b02 | 2273 | { |
42e69d6b VZ |
2274 | // relay mouse move events to the tooltip control |
2275 | MSG *msg = (MSG *)pMsg; | |
2276 | if ( msg->message == WM_MOUSEMOVE ) | |
259a4264 | 2277 | wxToolTip::RelayEvent(pMsg); |
387a3b02 | 2278 | } |
42e69d6b | 2279 | #endif // wxUSE_TOOLTIPS |
a23fd0e1 | 2280 | |
08158721 | 2281 | return false; |
387a3b02 JS |
2282 | } |
2283 | ||
1e6feb95 | 2284 | bool wxWindowMSW::MSWTranslateMessage(WXMSG* pMsg) |
387a3b02 | 2285 | { |
1e6feb95 | 2286 | #if wxUSE_ACCEL && !defined(__WXUNIVERSAL__) |
c50f1fb9 | 2287 | return m_acceleratorTable.Translate(this, pMsg); |
1e6feb95 | 2288 | #else |
574c939e | 2289 | (void) pMsg; |
08158721 | 2290 | return false; |
1e6feb95 | 2291 | #endif // wxUSE_ACCEL |
387a3b02 JS |
2292 | } |
2293 | ||
98ebf919 | 2294 | bool wxWindowMSW::MSWShouldPreProcessMessage(WXMSG* msg) |
a37d422a | 2295 | { |
98ebf919 VZ |
2296 | // all tests below have to deal with various bugs/misfeatures of |
2297 | // IsDialogMessage(): we have to prevent it from being called from our | |
2298 | // MSWProcessMessage() in some situations | |
2299 | ||
2300 | // don't let IsDialogMessage() get VK_ESCAPE as it _always_ eats the | |
2301 | // message even when there is no cancel button and when the message is | |
2302 | // needed by the control itself: in particular, it prevents the tree in | |
2303 | // place edit control from being closed with Escape in a dialog | |
2304 | if ( msg->message == WM_KEYDOWN && msg->wParam == VK_ESCAPE ) | |
2305 | { | |
2306 | return false; | |
2307 | } | |
2308 | ||
2309 | // ::IsDialogMessage() is broken and may sometimes hang the application by | |
2310 | // going into an infinite loop when it tries to find the control to give | |
2311 | // focus to when Alt-<key> is pressed, so we try to detect [some of] the | |
2312 | // situations when this may happen and not call it then | |
2313 | if ( msg->message != WM_SYSCHAR ) | |
2314 | return true; | |
2315 | ||
2316 | // assume we can call it by default | |
2317 | bool canSafelyCallIsDlgMsg = true; | |
2318 | ||
2319 | HWND hwndFocus = ::GetFocus(); | |
2320 | ||
2321 | // if the currently focused window itself has WS_EX_CONTROLPARENT style, | |
2322 | // ::IsDialogMessage() will also enter an infinite loop, because it will | |
2323 | // recursively check the child windows but not the window itself and so if | |
2324 | // none of the children accepts focus it loops forever (as it only stops | |
2325 | // when it gets back to the window it started from) | |
2326 | // | |
2327 | // while it is very unusual that a window with WS_EX_CONTROLPARENT | |
2328 | // style has the focus, it can happen. One such possibility is if | |
2329 | // all windows are either toplevel, wxDialog, wxPanel or static | |
2330 | // controls and no window can actually accept keyboard input. | |
2331 | #if !defined(__WXWINCE__) | |
2332 | if ( ::GetWindowLong(hwndFocus, GWL_EXSTYLE) & WS_EX_CONTROLPARENT ) | |
2333 | { | |
2334 | // pessimistic by default | |
2335 | canSafelyCallIsDlgMsg = false; | |
2336 | for ( wxWindowList::compatibility_iterator node = GetChildren().GetFirst(); | |
2337 | node; | |
2338 | node = node->GetNext() ) | |
2339 | { | |
2340 | wxWindow * const win = node->GetData(); | |
ad02525d | 2341 | if ( win->CanAcceptFocus() && |
98ebf919 VZ |
2342 | !(::GetWindowLong(GetHwndOf(win), GWL_EXSTYLE) & |
2343 | WS_EX_CONTROLPARENT) ) | |
2344 | { | |
2345 | // it shouldn't hang... | |
2346 | canSafelyCallIsDlgMsg = true; | |
2347 | ||
2348 | break; | |
2349 | } | |
2350 | } | |
2351 | } | |
2352 | #endif // !__WXWINCE__ | |
2353 | ||
2354 | if ( canSafelyCallIsDlgMsg ) | |
2355 | { | |
2356 | // ::IsDialogMessage() can enter in an infinite loop when the | |
2357 | // currently focused window is disabled or hidden and its | |
2358 | // parent has WS_EX_CONTROLPARENT style, so don't call it in | |
2359 | // this case | |
2360 | while ( hwndFocus ) | |
2361 | { | |
2362 | if ( !::IsWindowEnabled(hwndFocus) || | |
2363 | !::IsWindowVisible(hwndFocus) ) | |
2364 | { | |
2365 | // it would enter an infinite loop if we do this! | |
2366 | canSafelyCallIsDlgMsg = false; | |
2367 | ||
2368 | break; | |
2369 | } | |
2370 | ||
2371 | if ( !(::GetWindowLong(hwndFocus, GWL_STYLE) & WS_CHILD) ) | |
2372 | { | |
2373 | // it's a top level window, don't go further -- e.g. even | |
2374 | // if the parent of a dialog is disabled, this doesn't | |
2375 | // break navigation inside the dialog | |
2376 | break; | |
2377 | } | |
2378 | ||
2379 | hwndFocus = ::GetParent(hwndFocus); | |
2380 | } | |
2381 | } | |
2382 | ||
2383 | return canSafelyCallIsDlgMsg; | |
a37d422a VZ |
2384 | } |
2385 | ||
42e69d6b | 2386 | // --------------------------------------------------------------------------- |
e39af974 | 2387 | // message params unpackers |
42e69d6b | 2388 | // --------------------------------------------------------------------------- |
2bda0e17 | 2389 | |
1e6feb95 | 2390 | void wxWindowMSW::UnpackCommand(WXWPARAM wParam, WXLPARAM lParam, |
42e69d6b VZ |
2391 | WORD *id, WXHWND *hwnd, WORD *cmd) |
2392 | { | |
2393 | *id = LOWORD(wParam); | |
2394 | *hwnd = (WXHWND)lParam; | |
2395 | *cmd = HIWORD(wParam); | |
2bda0e17 KB |
2396 | } |
2397 | ||
1e6feb95 | 2398 | void wxWindowMSW::UnpackActivate(WXWPARAM wParam, WXLPARAM lParam, |
42e69d6b | 2399 | WXWORD *state, WXWORD *minimized, WXHWND *hwnd) |
2bda0e17 | 2400 | { |
42e69d6b VZ |
2401 | *state = LOWORD(wParam); |
2402 | *minimized = HIWORD(wParam); | |
2403 | *hwnd = (WXHWND)lParam; | |
2bda0e17 KB |
2404 | } |
2405 | ||
1e6feb95 | 2406 | void wxWindowMSW::UnpackScroll(WXWPARAM wParam, WXLPARAM lParam, |
42e69d6b | 2407 | WXWORD *code, WXWORD *pos, WXHWND *hwnd) |
2bda0e17 | 2408 | { |
42e69d6b VZ |
2409 | *code = LOWORD(wParam); |
2410 | *pos = HIWORD(wParam); | |
2411 | *hwnd = (WXHWND)lParam; | |
2412 | } | |
a23fd0e1 | 2413 | |
1e6feb95 | 2414 | void wxWindowMSW::UnpackCtlColor(WXWPARAM wParam, WXLPARAM lParam, |
01c500af | 2415 | WXHDC *hdc, WXHWND *hwnd) |
42e69d6b | 2416 | { |
42e69d6b VZ |
2417 | *hwnd = (WXHWND)lParam; |
2418 | *hdc = (WXHDC)wParam; | |
2bda0e17 KB |
2419 | } |
2420 | ||
1e6feb95 | 2421 | void wxWindowMSW::UnpackMenuSelect(WXWPARAM wParam, WXLPARAM lParam, |
42e69d6b | 2422 | WXWORD *item, WXWORD *flags, WXHMENU *hmenu) |
2bda0e17 | 2423 | { |
42e69d6b VZ |
2424 | *item = (WXWORD)wParam; |
2425 | *flags = HIWORD(wParam); | |
2426 | *hmenu = (WXHMENU)lParam; | |
2427 | } | |
c085e333 | 2428 | |
42e69d6b | 2429 | // --------------------------------------------------------------------------- |
77ffb593 | 2430 | // Main wxWidgets window proc and the window proc for wxWindow |
42e69d6b | 2431 | // --------------------------------------------------------------------------- |
2bda0e17 | 2432 | |
42e69d6b VZ |
2433 | // Hook for new window just as it's being created, when the window isn't yet |
2434 | // associated with the handle | |
b225f659 VZ |
2435 | static wxWindowMSW *gs_winBeingCreated = NULL; |
2436 | ||
2437 | // implementation of wxWindowCreationHook class: it just sets gs_winBeingCreated to the | |
2438 | // window being created and insures that it's always unset back later | |
2439 | wxWindowCreationHook::wxWindowCreationHook(wxWindowMSW *winBeingCreated) | |
2440 | { | |
2441 | gs_winBeingCreated = winBeingCreated; | |
2442 | } | |
2443 | ||
2444 | wxWindowCreationHook::~wxWindowCreationHook() | |
2445 | { | |
2446 | gs_winBeingCreated = NULL; | |
2447 | } | |
42e69d6b VZ |
2448 | |
2449 | // Main window proc | |
3135f4a7 | 2450 | LRESULT WXDLLEXPORT APIENTRY _EXPORT wxWndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam) |
2bda0e17 | 2451 | { |
42e69d6b VZ |
2452 | // trace all messages - useful for the debugging |
2453 | #ifdef __WXDEBUG__ | |
13e4c4d9 VZ |
2454 | wxLogTrace(wxTraceMessages, |
2455 | wxT("Processing %s(hWnd=%08lx, wParam=%8lx, lParam=%8lx)"), | |
2456 | wxGetMessageName(message), (long)hWnd, (long)wParam, lParam); | |
42e69d6b | 2457 | #endif // __WXDEBUG__ |
2bda0e17 | 2458 | |
1e6feb95 | 2459 | wxWindowMSW *wnd = wxFindWinFromHandle((WXHWND) hWnd); |
c085e333 | 2460 | |
42e69d6b | 2461 | // when we get the first message for the HWND we just created, we associate |
b225f659 VZ |
2462 | // it with wxWindow stored in gs_winBeingCreated |
2463 | if ( !wnd && gs_winBeingCreated ) | |
2d0a075d | 2464 | { |
b225f659 VZ |
2465 | wxAssociateWinWithHandle(hWnd, gs_winBeingCreated); |
2466 | wnd = gs_winBeingCreated; | |
2467 | gs_winBeingCreated = NULL; | |
42e69d6b | 2468 | wnd->SetHWND((WXHWND)hWnd); |
2d0a075d | 2469 | } |
2bda0e17 | 2470 | |
42e69d6b | 2471 | LRESULT rc; |
a23fd0e1 | 2472 | |
b46b1d59 | 2473 | if ( wnd && wxGUIEventLoop::AllowProcessing(wnd) ) |
b225f659 | 2474 | rc = wnd->MSWWindowProc(message, wParam, lParam); |
a23fd0e1 | 2475 | else |
b225f659 | 2476 | rc = ::DefWindowProc(hWnd, message, wParam, lParam); |
2bda0e17 | 2477 | |
42e69d6b | 2478 | return rc; |
f7bd2698 JS |
2479 | } |
2480 | ||
c140b7e7 | 2481 | WXLRESULT wxWindowMSW::MSWWindowProc(WXUINT message, WXWPARAM wParam, WXLPARAM lParam) |
f7bd2698 | 2482 | { |
42e69d6b | 2483 | // did we process the message? |
08158721 | 2484 | bool processed = false; |
f7bd2698 | 2485 | |
42e69d6b VZ |
2486 | // the return value |
2487 | union | |
2bda0e17 | 2488 | { |
42e69d6b | 2489 | bool allow; |
c140b7e7 | 2490 | WXLRESULT result; |
42e69d6b VZ |
2491 | WXHBRUSH hBrush; |
2492 | } rc; | |
2bda0e17 | 2493 | |
42e69d6b VZ |
2494 | // for most messages we should return 0 when we do process the message |
2495 | rc.result = 0; | |
2bda0e17 | 2496 | |
42e69d6b | 2497 | switch ( message ) |
39136494 | 2498 | { |
42e69d6b VZ |
2499 | case WM_CREATE: |
2500 | { | |
2501 | bool mayCreate; | |
2502 | processed = HandleCreate((WXLPCREATESTRUCT)lParam, &mayCreate); | |
2503 | if ( processed ) | |
2504 | { | |
2505 | // return 0 to allow window creation | |
2506 | rc.result = mayCreate ? 0 : -1; | |
2507 | } | |
2508 | } | |
2509 | break; | |
47cbd6da | 2510 | |
42e69d6b | 2511 | case WM_DESTROY: |
08158721 | 2512 | // never set processed to true and *always* pass WM_DESTROY to |
ad4297f3 VZ |
2513 | // DefWindowProc() as Windows may do some internal cleanup when |
2514 | // processing it and failing to pass the message along may cause | |
2515 | // memory and resource leaks! | |
2516 | (void)HandleDestroy(); | |
42e69d6b VZ |
2517 | break; |
2518 | ||
9b6ae450 VZ |
2519 | case WM_SIZE: |
2520 | processed = HandleSize(LOWORD(lParam), HIWORD(lParam), wParam); | |
9b6ae450 VZ |
2521 | break; |
2522 | ||
42e69d6b | 2523 | case WM_MOVE: |
132cb640 | 2524 | processed = HandleMove(GET_X_LPARAM(lParam), GET_Y_LPARAM(lParam)); |
42e69d6b | 2525 | break; |
47cbd6da | 2526 | |
7f0586ef | 2527 | #if !defined(__WXWINCE__) |
5706de1c | 2528 | case WM_MOVING: |
540b6b09 VZ |
2529 | { |
2530 | LPRECT pRect = (LPRECT)lParam; | |
2531 | wxRect rc; | |
2532 | rc.SetLeft(pRect->left); | |
2533 | rc.SetTop(pRect->top); | |
2534 | rc.SetRight(pRect->right); | |
2535 | rc.SetBottom(pRect->bottom); | |
2536 | processed = HandleMoving(rc); | |
2537 | if (processed) { | |
2538 | pRect->left = rc.GetLeft(); | |
2539 | pRect->top = rc.GetTop(); | |
2540 | pRect->right = rc.GetRight(); | |
2541 | pRect->bottom = rc.GetBottom(); | |
2542 | } | |
2543 | } | |
5706de1c JS |
2544 | break; |
2545 | ||
aa767a45 JS |
2546 | case WM_ENTERSIZEMOVE: |
2547 | { | |
2548 | processed = HandleEnterSizeMove(); | |
2549 | } | |
2550 | break; | |
2551 | ||
2552 | case WM_EXITSIZEMOVE: | |
2553 | { | |
2554 | processed = HandleExitSizeMove(); | |
2555 | } | |
2556 | break; | |
2557 | ||
5706de1c JS |
2558 | case WM_SIZING: |
2559 | { | |
2560 | LPRECT pRect = (LPRECT)lParam; | |
2561 | wxRect rc; | |
2562 | rc.SetLeft(pRect->left); | |
2563 | rc.SetTop(pRect->top); | |
2564 | rc.SetRight(pRect->right); | |
2565 | rc.SetBottom(pRect->bottom); | |
2566 | processed = HandleSizing(rc); | |
2567 | if (processed) { | |
2568 | pRect->left = rc.GetLeft(); | |
2569 | pRect->top = rc.GetTop(); | |
2570 | pRect->right = rc.GetRight(); | |
2571 | pRect->bottom = rc.GetBottom(); | |
2572 | } | |
2573 | } | |
2574 | break; | |
9b6ae450 | 2575 | #endif // !__WXWINCE__ |
5706de1c | 2576 | |
7f0586ef | 2577 | #if !defined(__WXMICROWIN__) && !defined(__WXWINCE__) |
1e6feb95 | 2578 | case WM_ACTIVATEAPP: |
afafd942 | 2579 | // This implicitly sends a wxEVT_ACTIVATE_APP event |
1e6feb95 | 2580 | wxTheApp->SetActive(wParam != 0, FindFocus()); |
42e69d6b | 2581 | break; |
8a46f9b1 | 2582 | #endif |
47cbd6da | 2583 | |
42e69d6b | 2584 | case WM_ACTIVATE: |
341c92a8 | 2585 | { |
42e69d6b VZ |
2586 | WXWORD state, minimized; |
2587 | WXHWND hwnd; | |
2588 | UnpackActivate(wParam, lParam, &state, &minimized, &hwnd); | |
2589 | ||
2590 | processed = HandleActivate(state, minimized != 0, (WXHWND)hwnd); | |
341c92a8 | 2591 | } |
42e69d6b | 2592 | break; |
341c92a8 | 2593 | |
42e69d6b VZ |
2594 | case WM_SETFOCUS: |
2595 | processed = HandleSetFocus((WXHWND)(HWND)wParam); | |
2596 | break; | |
47cbd6da | 2597 | |
42e69d6b VZ |
2598 | case WM_KILLFOCUS: |
2599 | processed = HandleKillFocus((WXHWND)(HWND)wParam); | |
2600 | break; | |
47cbd6da | 2601 | |
c3732409 | 2602 | case WM_PRINTCLIENT: |
1a784dfc | 2603 | processed = HandlePrintClient((WXHDC)wParam); |
07c19327 VZ |
2604 | break; |
2605 | ||
c3732409 VZ |
2606 | case WM_PAINT: |
2607 | if ( wParam ) | |
5c6c3176 | 2608 | { |
5c6c3176 | 2609 | wxPaintDCEx dc((wxWindow *)this, (WXHDC)wParam); |
07c19327 | 2610 | |
5c6c3176 RD |
2611 | processed = HandlePaint(); |
2612 | } | |
c3732409 VZ |
2613 | else // no DC given |
2614 | { | |
2615 | processed = HandlePaint(); | |
2616 | } | |
5c6c3176 RD |
2617 | break; |
2618 | ||
42e69d6b | 2619 | case WM_CLOSE: |
9fd9e47a JS |
2620 | #ifdef __WXUNIVERSAL__ |
2621 | // Universal uses its own wxFrame/wxDialog, so we don't receive | |
2622 | // close events unless we have this. | |
2623 | Close(); | |
c3732409 VZ |
2624 | #endif // __WXUNIVERSAL__ |
2625 | ||
42e69d6b VZ |
2626 | // don't let the DefWindowProc() destroy our window - we'll do it |
2627 | // ourselves in ~wxWindow | |
08158721 | 2628 | processed = true; |
42e69d6b VZ |
2629 | rc.result = TRUE; |
2630 | break; | |
47cbd6da | 2631 | |
42e69d6b VZ |
2632 | case WM_SHOWWINDOW: |
2633 | processed = HandleShow(wParam != 0, (int)lParam); | |
2634 | break; | |
3a19e16d | 2635 | |
42e69d6b | 2636 | case WM_MOUSEMOVE: |
132cb640 VZ |
2637 | processed = HandleMouseMove(GET_X_LPARAM(lParam), |
2638 | GET_Y_LPARAM(lParam), | |
2639 | wParam); | |
2640 | break; | |
0d0512bd | 2641 | |
4e5c6c33 | 2642 | #ifdef HAVE_TRACKMOUSEEVENT |
e5297b7f | 2643 | case WM_MOUSELEAVE: |
aafb9978 VZ |
2644 | // filter out excess WM_MOUSELEAVE events sent after PopupMenu() |
2645 | // (on XP at least) | |
4e5c6c33 | 2646 | if ( m_mouseInWindow ) |
e5297b7f | 2647 | { |
4e5c6c33 | 2648 | GenerateMouseLeave(); |
e5297b7f | 2649 | } |
4e5c6c33 VZ |
2650 | |
2651 | // always pass processed back as false, this allows the window | |
2652 | // manager to process the message too. This is needed to | |
2653 | // ensure windows XP themes work properly as the mouse moves | |
2654 | // over widgets like buttons. So don't set processed to true here. | |
51e4e266 | 2655 | break; |
4e5c6c33 | 2656 | #endif // HAVE_TRACKMOUSEEVENT |
35bbb0c6 | 2657 | |
d2c52078 RD |
2658 | #if wxUSE_MOUSEWHEEL |
2659 | case WM_MOUSEWHEEL: | |
2660 | processed = HandleMouseWheel(wParam, lParam); | |
2661 | break; | |
2662 | #endif | |
2663 | ||
42e69d6b VZ |
2664 | case WM_LBUTTONDOWN: |
2665 | case WM_LBUTTONUP: | |
2666 | case WM_LBUTTONDBLCLK: | |
2667 | case WM_RBUTTONDOWN: | |
2668 | case WM_RBUTTONUP: | |
2669 | case WM_RBUTTONDBLCLK: | |
2670 | case WM_MBUTTONDOWN: | |
2671 | case WM_MBUTTONUP: | |
2672 | case WM_MBUTTONDBLCLK: | |
2f68482e | 2673 | #ifdef wxHAS_XBUTTON |
01101e2d VZ |
2674 | case WM_XBUTTONDOWN: |
2675 | case WM_XBUTTONUP: | |
2676 | case WM_XBUTTONDBLCLK: | |
2f68482e | 2677 | #endif // wxHAS_XBUTTON |
dfafa702 | 2678 | { |
98363307 | 2679 | #ifdef __WXMICROWIN__ |
cd4453e5 VZ |
2680 | // MicroWindows seems to ignore the fact that a window is |
2681 | // disabled. So catch mouse events and throw them away if | |
2682 | // necessary. | |
d0a3d109 | 2683 | wxWindowMSW* win = this; |
dfafa702 | 2684 | for ( ;; ) |
d0a3d109 VZ |
2685 | { |
2686 | if (!win->IsEnabled()) | |
2687 | { | |
08158721 | 2688 | processed = true; |
d0a3d109 VZ |
2689 | break; |
2690 | } | |
dfafa702 | 2691 | |
d0a3d109 | 2692 | win = win->GetParent(); |
dfafa702 | 2693 | if ( !win || win->IsTopLevel() ) |
d0a3d109 VZ |
2694 | break; |
2695 | } | |
dfafa702 | 2696 | |
03e0b2b1 VZ |
2697 | if ( processed ) |
2698 | break; | |
2699 | ||
dfafa702 | 2700 | #endif // __WXMICROWIN__ |
03e0b2b1 VZ |
2701 | int x = GET_X_LPARAM(lParam), |
2702 | y = GET_Y_LPARAM(lParam); | |
dfafa702 | 2703 | |
42b1fb63 | 2704 | #ifdef __WXWINCE__ |
03e0b2b1 | 2705 | // redirect the event to a static control if necessary by |
42b1fb63 VZ |
2706 | // finding one under mouse because under CE the static controls |
2707 | // don't generate mouse events (even with SS_NOTIFY) | |
03e0b2b1 VZ |
2708 | wxWindowMSW *win; |
2709 | if ( GetCapture() == this ) | |
2710 | { | |
2711 | // but don't do it if the mouse is captured by this window | |
2712 | // because then it should really get this event itself | |
2713 | win = this; | |
d0a3d109 | 2714 | } |
03e0b2b1 VZ |
2715 | else |
2716 | { | |
2717 | win = FindWindowForMouseEvent(this, &x, &y); | |
2b5f62a0 VZ |
2718 | |
2719 | // this should never happen | |
2720 | wxCHECK_MSG( win, 0, | |
2721 | _T("FindWindowForMouseEvent() returned NULL") ); | |
9f011847 | 2722 | } |
7d4f65e3 JS |
2723 | #ifdef __POCKETPC__ |
2724 | if (IsContextMenuEnabled() && message == WM_LBUTTONDOWN) | |
2725 | { | |
2726 | SHRGINFO shrgi = {0}; | |
faa94f3e | 2727 | |
7d4f65e3 JS |
2728 | shrgi.cbSize = sizeof(SHRGINFO); |
2729 | shrgi.hwndClient = (HWND) GetHWND(); | |
2730 | shrgi.ptDown.x = x; | |
2731 | shrgi.ptDown.y = y; | |
faa94f3e | 2732 | |
7d4f65e3 JS |
2733 | shrgi.dwFlags = SHRG_RETURNCMD; |
2734 | // shrgi.dwFlags = SHRG_NOTIFYPARENT; | |
faa94f3e | 2735 | |
7d4f65e3 JS |
2736 | if (GN_CONTEXTMENU == ::SHRecognizeGesture(&shrgi)) |
2737 | { | |
2738 | wxPoint pt(x, y); | |
2739 | pt = ClientToScreen(pt); | |
faa94f3e | 2740 | |
7d4f65e3 | 2741 | wxContextMenuEvent evtCtx(wxEVT_CONTEXT_MENU, GetId(), pt); |
faa94f3e | 2742 | |
7d4f65e3 JS |
2743 | evtCtx.SetEventObject(this); |
2744 | if (GetEventHandler()->ProcessEvent(evtCtx)) | |
f350d4b2 | 2745 | { |
7d4f65e3 | 2746 | processed = true; |
f350d4b2 JS |
2747 | return true; |
2748 | } | |
7d4f65e3 JS |
2749 | } |
2750 | } | |
2751 | #endif | |
2752 | ||
42b1fb63 VZ |
2753 | #else // !__WXWINCE__ |
2754 | wxWindowMSW *win = this; | |
2755 | #endif // __WXWINCE__/!__WXWINCE__ | |
9f011847 VZ |
2756 | |
2757 | processed = win->HandleMouseEvent(message, x, y, wParam); | |
2b5f62a0 | 2758 | |
9f011847 VZ |
2759 | // if the app didn't eat the event, handle it in the default |
2760 | // way, that is by giving this window the focus | |
2761 | if ( !processed ) | |
2762 | { | |
2b5f62a0 VZ |
2763 | // for the standard classes their WndProc sets the focus to |
2764 | // them anyhow and doing it from here results in some weird | |
9f011847 | 2765 | // problems, so don't do it for them (unnecessary anyhow) |
2b5f62a0 VZ |
2766 | if ( !win->IsOfStandardClass() ) |
2767 | { | |
edc09871 | 2768 | if ( message == WM_LBUTTONDOWN && win->IsFocusable() ) |
2b5f62a0 VZ |
2769 | win->SetFocus(); |
2770 | } | |
03e0b2b1 | 2771 | } |
98363307 | 2772 | } |
dfafa702 | 2773 | break; |
d0a3d109 | 2774 | |
cd4453e5 | 2775 | #ifdef MM_JOY1MOVE |
42e69d6b VZ |
2776 | case MM_JOY1MOVE: |
2777 | case MM_JOY2MOVE: | |
2778 | case MM_JOY1ZMOVE: | |
2779 | case MM_JOY2ZMOVE: | |
2780 | case MM_JOY1BUTTONDOWN: | |
2781 | case MM_JOY2BUTTONDOWN: | |
2782 | case MM_JOY1BUTTONUP: | |
2783 | case MM_JOY2BUTTONUP: | |
132cb640 VZ |
2784 | processed = HandleJoystickEvent(message, |
2785 | GET_X_LPARAM(lParam), | |
2786 | GET_Y_LPARAM(lParam), | |
2787 | wParam); | |
42e69d6b | 2788 | break; |
cd4453e5 | 2789 | #endif // __WXMICROWIN__ |
47cbd6da | 2790 | |
42e69d6b VZ |
2791 | case WM_COMMAND: |
2792 | { | |
2793 | WORD id, cmd; | |
2794 | WXHWND hwnd; | |
2795 | UnpackCommand(wParam, lParam, &id, &hwnd, &cmd); | |
47cbd6da | 2796 | |
42e69d6b VZ |
2797 | processed = HandleCommand(id, cmd, hwnd); |
2798 | } | |
2799 | break; | |
7d532b0c | 2800 | |
42e69d6b VZ |
2801 | case WM_NOTIFY: |
2802 | processed = HandleNotify((int)wParam, lParam, &rc.result); | |
2803 | break; | |
2bda0e17 | 2804 | |
27005f3a VZ |
2805 | // we only need to reply to WM_NOTIFYFORMAT manually when using MSLU, |
2806 | // otherwise DefWindowProc() does it perfectly fine for us, but MSLU | |
2807 | // apparently doesn't always behave properly and needs some help | |
2808 | #if wxUSE_UNICODE_MSLU && defined(NF_QUERY) | |
2809 | case WM_NOTIFYFORMAT: | |
2810 | if ( lParam == NF_QUERY ) | |
2811 | { | |
2812 | processed = true; | |
2813 | rc.result = NFR_UNICODE; | |
2814 | } | |
2815 | break; | |
2816 | #endif // wxUSE_UNICODE_MSLU | |
2817 | ||
08158721 | 2818 | // for these messages we must return true if process the message |
cd4453e5 | 2819 | #ifdef WM_DRAWITEM |
42e69d6b VZ |
2820 | case WM_DRAWITEM: |
2821 | case WM_MEASUREITEM: | |
2822 | { | |
2823 | int idCtrl = (UINT)wParam; | |
2824 | if ( message == WM_DRAWITEM ) | |
2825 | { | |
2826 | processed = MSWOnDrawItem(idCtrl, | |
2827 | (WXDRAWITEMSTRUCT *)lParam); | |
2828 | } | |
2829 | else | |
2830 | { | |
2831 | processed = MSWOnMeasureItem(idCtrl, | |
2832 | (WXMEASUREITEMSTRUCT *)lParam); | |
2833 | } | |
57a7b7c1 | 2834 | |
42e69d6b VZ |
2835 | if ( processed ) |
2836 | rc.result = TRUE; | |
2837 | } | |
2838 | break; | |
cd4453e5 VZ |
2839 | #endif // defined(WM_DRAWITEM) |
2840 | ||
9bf84618 | 2841 | case WM_GETDLGCODE: |
ff7282e1 | 2842 | if ( !IsOfStandardClass() || HasFlag(wxWANTS_CHARS) ) |
9bf84618 | 2843 | { |
5a403e3f VZ |
2844 | // we always want to get the char events |
2845 | rc.result = DLGC_WANTCHARS; | |
2846 | ||
ff7282e1 | 2847 | if ( HasFlag(wxWANTS_CHARS) ) |
5a403e3f VZ |
2848 | { |
2849 | // in fact, we want everything | |
2850 | rc.result |= DLGC_WANTARROWS | | |
2851 | DLGC_WANTTAB | | |
2852 | DLGC_WANTALLKEYS; | |
2853 | } | |
2854 | ||
08158721 | 2855 | processed = true; |
9bf84618 | 2856 | } |
101f488c | 2857 | //else: get the dlg code from the DefWindowProc() |
9bf84618 VZ |
2858 | break; |
2859 | ||
4004f41e | 2860 | case WM_SYSKEYDOWN: |
42e69d6b | 2861 | case WM_KEYDOWN: |
9c7df356 VZ |
2862 | // If this has been processed by an event handler, return 0 now |
2863 | // (we've handled it). | |
2864 | m_lastKeydownProcessed = HandleKeyDown((WORD) wParam, lParam); | |
2865 | if ( m_lastKeydownProcessed ) | |
2d0a075d | 2866 | { |
08158721 | 2867 | processed = true; |
2d0a075d | 2868 | } |
81d66cf3 | 2869 | |
2b5f62a0 | 2870 | if ( !processed ) |
42e69d6b | 2871 | { |
2b5f62a0 VZ |
2872 | switch ( wParam ) |
2873 | { | |
90e572f1 | 2874 | // we consider these messages "not interesting" to OnChar, so |
2b5f62a0 VZ |
2875 | // just don't do anything more with them |
2876 | case VK_SHIFT: | |
2877 | case VK_CONTROL: | |
2878 | case VK_MENU: | |
2879 | case VK_CAPITAL: | |
2880 | case VK_NUMLOCK: | |
2881 | case VK_SCROLL: | |
08158721 | 2882 | processed = true; |
2b5f62a0 | 2883 | break; |
2bda0e17 | 2884 | |
2b5f62a0 VZ |
2885 | // avoid duplicate messages to OnChar for these ASCII keys: |
2886 | // they will be translated by TranslateMessage() and received | |
2887 | // in WM_CHAR | |
2888 | case VK_ESCAPE: | |
2889 | case VK_SPACE: | |
2890 | case VK_RETURN: | |
2891 | case VK_BACK: | |
2892 | case VK_TAB: | |
2893 | case VK_ADD: | |
2894 | case VK_SUBTRACT: | |
2895 | case VK_MULTIPLY: | |
2896 | case VK_DIVIDE: | |
3f2174bb VZ |
2897 | case VK_NUMPAD0: |
2898 | case VK_NUMPAD1: | |
2899 | case VK_NUMPAD2: | |
2900 | case VK_NUMPAD3: | |
2901 | case VK_NUMPAD4: | |
2902 | case VK_NUMPAD5: | |
2903 | case VK_NUMPAD6: | |
2904 | case VK_NUMPAD7: | |
2905 | case VK_NUMPAD8: | |
2906 | case VK_NUMPAD9: | |
2b5f62a0 VZ |
2907 | case VK_OEM_1: |
2908 | case VK_OEM_2: | |
2909 | case VK_OEM_3: | |
2910 | case VK_OEM_4: | |
2911 | case VK_OEM_5: | |
2912 | case VK_OEM_6: | |
2913 | case VK_OEM_7: | |
2914 | case VK_OEM_PLUS: | |
2915 | case VK_OEM_COMMA: | |
2916 | case VK_OEM_MINUS: | |
2917 | case VK_OEM_PERIOD: | |
08158721 | 2918 | // but set processed to false, not true to still pass them |
2b5f62a0 VZ |
2919 | // to the control's default window proc - otherwise |
2920 | // built-in keyboard handling won't work | |
08158721 | 2921 | processed = false; |
2b5f62a0 | 2922 | break; |
2bda0e17 | 2923 | |
42e69d6b | 2924 | #ifdef VK_APPS |
2b5f62a0 VZ |
2925 | // special case of VK_APPS: treat it the same as right mouse |
2926 | // click because both usually pop up a context menu | |
2927 | case VK_APPS: | |
ae177b45 | 2928 | processed = HandleMouseEvent(WM_RBUTTONDOWN, -1, -1, 0); |
2b5f62a0 | 2929 | break; |
42e69d6b | 2930 | #endif // VK_APPS |
2bda0e17 | 2931 | |
2b5f62a0 VZ |
2932 | default: |
2933 | // do generate a CHAR event | |
2934 | processed = HandleChar((WORD)wParam, lParam); | |
2935 | } | |
42e69d6b | 2936 | } |
2b5f62a0 | 2937 | if (message == WM_SYSKEYDOWN) // Let Windows still handle the SYSKEYs |
08158721 | 2938 | processed = false; |
42e69d6b | 2939 | break; |
2bda0e17 | 2940 | |
4004f41e | 2941 | case WM_SYSKEYUP: |
42e69d6b | 2942 | case WM_KEYUP: |
4aff28fc VZ |
2943 | #ifdef VK_APPS |
2944 | // special case of VK_APPS: treat it the same as right mouse button | |
2945 | if ( wParam == VK_APPS ) | |
2946 | { | |
ae177b45 | 2947 | processed = HandleMouseEvent(WM_RBUTTONUP, -1, -1, 0); |
4aff28fc VZ |
2948 | } |
2949 | else | |
2950 | #endif // VK_APPS | |
2951 | { | |
2952 | processed = HandleKeyUp((WORD) wParam, lParam); | |
2953 | } | |
42e69d6b | 2954 | break; |
debe6624 | 2955 | |
170cbe33 | 2956 | case WM_SYSCHAR: |
42e69d6b | 2957 | case WM_CHAR: // Always an ASCII character |
d9f14e16 RD |
2958 | if ( m_lastKeydownProcessed ) |
2959 | { | |
2960 | // The key was handled in the EVT_KEY_DOWN and handling | |
2961 | // a key in an EVT_KEY_DOWN handler is meant, by | |
2962 | // design, to prevent EVT_CHARs from happening | |
08158721 DS |
2963 | m_lastKeydownProcessed = false; |
2964 | processed = true; | |
d9f14e16 RD |
2965 | } |
2966 | else | |
7de5bdf4 | 2967 | { |
08158721 | 2968 | processed = HandleChar((WORD)wParam, lParam, true); |
7de5bdf4 | 2969 | } |
42e69d6b | 2970 | break; |
2bda0e17 | 2971 | |
5048c832 JS |
2972 | #if wxUSE_HOTKEY |
2973 | case WM_HOTKEY: | |
2974 | processed = HandleHotKey((WORD)wParam, lParam); | |
2975 | break; | |
540b6b09 | 2976 | #endif // wxUSE_HOTKEY |
5048c832 | 2977 | |
42e69d6b VZ |
2978 | case WM_HSCROLL: |
2979 | case WM_VSCROLL: | |
a23fd0e1 | 2980 | { |
42e69d6b VZ |
2981 | WXWORD code, pos; |
2982 | WXHWND hwnd; | |
2983 | UnpackScroll(wParam, lParam, &code, &pos, &hwnd); | |
2bda0e17 | 2984 | |
42e69d6b VZ |
2985 | processed = MSWOnScroll(message == WM_HSCROLL ? wxHORIZONTAL |
2986 | : wxVERTICAL, | |
2987 | code, pos, hwnd); | |
a23fd0e1 | 2988 | } |
42e69d6b | 2989 | break; |
a23fd0e1 | 2990 | |
42e69d6b | 2991 | // CTLCOLOR messages are sent by children to query the parent for their |
01c500af | 2992 | // colors |
04ef50df | 2993 | #ifndef __WXMICROWIN__ |
42e69d6b VZ |
2994 | case WM_CTLCOLORMSGBOX: |
2995 | case WM_CTLCOLOREDIT: | |
2996 | case WM_CTLCOLORLISTBOX: | |
2997 | case WM_CTLCOLORBTN: | |
2998 | case WM_CTLCOLORDLG: | |
2999 | case WM_CTLCOLORSCROLLBAR: | |
3000 | case WM_CTLCOLORSTATIC: | |
a23fd0e1 | 3001 | { |
42e69d6b VZ |
3002 | WXHDC hdc; |
3003 | WXHWND hwnd; | |
01c500af | 3004 | UnpackCtlColor(wParam, lParam, &hdc, &hwnd); |
42e69d6b | 3005 | |
48fa6bd3 | 3006 | processed = HandleCtlColor(&rc.hBrush, (WXHDC)hdc, (WXHWND)hwnd); |
a23fd0e1 | 3007 | } |
42e69d6b | 3008 | break; |
cd4453e5 | 3009 | #endif // !__WXMICROWIN__ |
debe6624 | 3010 | |
42e69d6b | 3011 | case WM_SYSCOLORCHANGE: |
90c1530a | 3012 | // the return value for this message is ignored |
42e69d6b VZ |
3013 | processed = HandleSysColorChange(); |
3014 | break; | |
2bda0e17 | 3015 | |
7f0586ef | 3016 | #if !defined(__WXWINCE__) |
574c939e KB |
3017 | case WM_DISPLAYCHANGE: |
3018 | processed = HandleDisplayChange(); | |
3019 | break; | |
7f0586ef | 3020 | #endif |
574c939e | 3021 | |
42e69d6b VZ |
3022 | case WM_PALETTECHANGED: |
3023 | processed = HandlePaletteChanged((WXHWND) (HWND) wParam); | |
3024 | break; | |
2bda0e17 | 3025 | |
a5e84126 JS |
3026 | case WM_CAPTURECHANGED: |
3027 | processed = HandleCaptureChanged((WXHWND) (HWND) lParam); | |
3028 | break; | |
3029 | ||
3c96418b JG |
3030 | case WM_SETTINGCHANGE: |
3031 | processed = HandleSettingChange(wParam, lParam); | |
3032 | break; | |
3033 | ||
42e69d6b VZ |
3034 | case WM_QUERYNEWPALETTE: |
3035 | processed = HandleQueryNewPalette(); | |
3036 | break; | |
2bda0e17 | 3037 | |
42e69d6b VZ |
3038 | case WM_ERASEBKGND: |
3039 | processed = HandleEraseBkgnd((WXHDC)(HDC)wParam); | |
3040 | if ( processed ) | |
3041 | { | |
3042 | // we processed the message, i.e. erased the background | |
3043 | rc.result = TRUE; | |
3044 | } | |
3045 | break; | |
debe6624 | 3046 | |
7f0586ef | 3047 | #if !defined(__WXWINCE__) |
42e69d6b VZ |
3048 | case WM_DROPFILES: |
3049 | processed = HandleDropFiles(wParam); | |
3050 | break; | |
7f0586ef | 3051 | #endif |
2bda0e17 | 3052 | |
42e69d6b VZ |
3053 | case WM_INITDIALOG: |
3054 | processed = HandleInitDialog((WXHWND)(HWND)wParam); | |
a23fd0e1 | 3055 | |
42e69d6b VZ |
3056 | if ( processed ) |
3057 | { | |
3058 | // we never set focus from here | |
3059 | rc.result = FALSE; | |
3060 | } | |
3061 | break; | |
a23fd0e1 | 3062 | |
7f0586ef | 3063 | #if !defined(__WXWINCE__) |
42e69d6b VZ |
3064 | case WM_QUERYENDSESSION: |
3065 | processed = HandleQueryEndSession(lParam, &rc.allow); | |
3066 | break; | |
2bda0e17 | 3067 | |
42e69d6b VZ |
3068 | case WM_ENDSESSION: |
3069 | processed = HandleEndSession(wParam != 0, lParam); | |
3070 | break; | |
2bda0e17 | 3071 | |
42e69d6b | 3072 | case WM_GETMINMAXINFO: |
25889d3c | 3073 | processed = HandleGetMinMaxInfo((MINMAXINFO*)lParam); |
42e69d6b | 3074 | break; |
7f0586ef | 3075 | #endif |
debe6624 | 3076 | |
42e69d6b VZ |
3077 | case WM_SETCURSOR: |
3078 | processed = HandleSetCursor((WXHWND)(HWND)wParam, | |
3079 | LOWORD(lParam), // hit test | |
3080 | HIWORD(lParam)); // mouse msg | |
3081 | ||
3082 | if ( processed ) | |
3083 | { | |
3084 | // returning TRUE stops the DefWindowProc() from further | |
3085 | // processing this message - exactly what we need because we've | |
3086 | // just set the cursor. | |
3087 | rc.result = TRUE; | |
3088 | } | |
3089 | break; | |
4cdc2c13 | 3090 | |
ed5317e5 JS |
3091 | #if wxUSE_ACCESSIBILITY |
3092 | case WM_GETOBJECT: | |
3093 | { | |
3094 | //WPARAM dwFlags = (WPARAM) (DWORD) wParam; | |
3095 | LPARAM dwObjId = (LPARAM) (DWORD) lParam; | |
3096 | ||
66b9ec3d | 3097 | if (dwObjId == (LPARAM)OBJID_CLIENT && GetOrCreateAccessible()) |
ed5317e5 JS |
3098 | { |
3099 | return LresultFromObject(IID_IAccessible, wParam, (IUnknown*) GetAccessible()->GetIAccessible()); | |
3100 | } | |
3101 | break; | |
3102 | } | |
3103 | #endif | |
3104 | ||
e39af974 | 3105 | #if defined(WM_HELP) |
b96340e6 | 3106 | case WM_HELP: |
b96340e6 | 3107 | { |
a9c11b71 VZ |
3108 | // by default, WM_HELP is propagated by DefWindowProc() upwards |
3109 | // to the window parent but as we do it ourselves already | |
3110 | // (wxHelpEvent is derived from wxCommandEvent), we don't want | |
3111 | // to get the other events if we process this message at all | |
3112 | processed = true; | |
3113 | ||
3114 | // WM_HELP doesn't use lParam under CE | |
7f0586ef | 3115 | #ifndef __WXWINCE__ |
4cdc2c13 | 3116 | HELPINFO* info = (HELPINFO*) lParam; |
a9c11b71 | 3117 | if ( info->iContextType == HELPINFO_WINDOW ) |
b96340e6 | 3118 | { |
a9c11b71 VZ |
3119 | #endif // !__WXWINCE__ |
3120 | wxHelpEvent helpEvent | |
3121 | ( | |
3122 | wxEVT_HELP, | |
3123 | GetId(), | |
7f0586ef | 3124 | #ifdef __WXWINCE__ |
2d4ec362 | 3125 | wxGetMousePosition() // what else? |
7f0586ef | 3126 | #else |
a9c11b71 | 3127 | wxPoint(info->MousePos.x, info->MousePos.y) |
7f0586ef | 3128 | #endif |
a9c11b71 | 3129 | ); |
b96340e6 | 3130 | |
a9c11b71 VZ |
3131 | helpEvent.SetEventObject(this); |
3132 | GetEventHandler()->ProcessEvent(helpEvent); | |
7f0586ef | 3133 | #ifndef __WXWINCE__ |
b96340e6 | 3134 | } |
a9c11b71 | 3135 | else if ( info->iContextType == HELPINFO_MENUITEM ) |
4cdc2c13 VZ |
3136 | { |
3137 | wxHelpEvent helpEvent(wxEVT_HELP, info->iCtrlId); | |
3138 | helpEvent.SetEventObject(this); | |
a9c11b71 | 3139 | GetEventHandler()->ProcessEvent(helpEvent); |
69231000 | 3140 | |
4cdc2c13 | 3141 | } |
a9c11b71 VZ |
3142 | else // unknown help event? |
3143 | { | |
3144 | processed = false; | |
3145 | } | |
3146 | #endif // !__WXWINCE__ | |
b96340e6 | 3147 | } |
b96340e6 | 3148 | break; |
a9c11b71 | 3149 | #endif // WM_HELP |
4cdc2c13 | 3150 | |
7f0586ef | 3151 | #if !defined(__WXWINCE__) |
69231000 | 3152 | case WM_CONTEXTMENU: |
4cdc2c13 VZ |
3153 | { |
3154 | // we don't convert from screen to client coordinates as | |
3155 | // the event may be handled by a parent window | |
3156 | wxPoint pt(GET_X_LPARAM(lParam), GET_Y_LPARAM(lParam)); | |
3157 | ||
3158 | wxContextMenuEvent evtCtx(wxEVT_CONTEXT_MENU, GetId(), pt); | |
2d1715aa VZ |
3159 | |
3160 | // we could have got an event from our child, reflect it back | |
3161 | // to it if this is the case | |
d85c53a5 | 3162 | wxWindowMSW *win = NULL; |
c140b7e7 | 3163 | if ( (WXHWND)wParam != m_hWnd ) |
2d1715aa VZ |
3164 | { |
3165 | win = FindItemByHWND((WXHWND)wParam); | |
3166 | } | |
3167 | ||
3168 | if ( !win ) | |
3169 | win = this; | |
3170 | ||
3171 | evtCtx.SetEventObject(win); | |
3172 | processed = win->GetEventHandler()->ProcessEvent(evtCtx); | |
4cdc2c13 | 3173 | } |
69231000 | 3174 | break; |
7f0586ef | 3175 | #endif |
b74cce40 | 3176 | |
53a118d6 | 3177 | #if wxUSE_MENUS |
b74cce40 VZ |
3178 | case WM_MENUCHAR: |
3179 | // we're only interested in our own menus, not MF_SYSMENU | |
3180 | if ( HIWORD(wParam) == MF_POPUP ) | |
3181 | { | |
3182 | // handle menu chars for ownerdrawn menu items | |
3183 | int i = HandleMenuChar(toupper(LOWORD(wParam)), lParam); | |
3184 | if ( i != wxNOT_FOUND ) | |
3185 | { | |
3186 | rc.result = MAKELRESULT(i, MNC_EXECUTE); | |
08158721 | 3187 | processed = true; |
b74cce40 VZ |
3188 | } |
3189 | } | |
3190 | break; | |
53a118d6 | 3191 | #endif // wxUSE_MENUS |
355debca | 3192 | |
dbc74bcc | 3193 | #ifndef __WXWINCE__ |
355debca VZ |
3194 | case WM_POWERBROADCAST: |
3195 | { | |
3196 | bool vetoed; | |
3197 | processed = HandlePower(wParam, lParam, &vetoed); | |
3198 | rc.result = processed && vetoed ? BROADCAST_QUERY_DENY : TRUE; | |
3199 | } | |
3200 | break; | |
dbc74bcc | 3201 | #endif // __WXWINCE__ |
5acec112 VZ |
3202 | |
3203 | default: | |
3204 | // try a custom message handler | |
3205 | const MSWMessageHandlers::const_iterator | |
3206 | i = gs_messageHandlers.find(message); | |
3207 | if ( i != gs_messageHandlers.end() ) | |
3208 | { | |
3209 | processed = (*i->second)(this, message, wParam, lParam); | |
3210 | } | |
a23fd0e1 | 3211 | } |
2d0a075d | 3212 | |
42e69d6b | 3213 | if ( !processed ) |
2d0a075d | 3214 | { |
42e69d6b | 3215 | #ifdef __WXDEBUG__ |
223d09f6 | 3216 | wxLogTrace(wxTraceMessages, wxT("Forwarding %s to DefWindowProc."), |
42e69d6b VZ |
3217 | wxGetMessageName(message)); |
3218 | #endif // __WXDEBUG__ | |
3219 | rc.result = MSWDefWindowProc(message, wParam, lParam); | |
a23fd0e1 | 3220 | } |
2bda0e17 | 3221 | |
42e69d6b | 3222 | return rc.result; |
2bda0e17 KB |
3223 | } |
3224 | ||
b225f659 VZ |
3225 | // ---------------------------------------------------------------------------- |
3226 | // wxWindow <-> HWND map | |
3227 | // ---------------------------------------------------------------------------- | |
2bda0e17 | 3228 | |
1bffa913 | 3229 | wxWinHashTable *wxWinHandleHash = NULL; |
b225f659 | 3230 | |
42e69d6b | 3231 | wxWindow *wxFindWinFromHandle(WXHWND hWnd) |
4ce81a75 | 3232 | { |
40ad3426 | 3233 | return (wxWindow*)wxWinHandleHash->Get((long)hWnd); |
42e69d6b | 3234 | } |
4ce81a75 | 3235 | |
1e6feb95 | 3236 | void wxAssociateWinWithHandle(HWND hWnd, wxWindowMSW *win) |
42e69d6b VZ |
3237 | { |
3238 | // adding NULL hWnd is (first) surely a result of an error and | |
3239 | // (secondly) breaks menu command processing | |
3240 | wxCHECK_RET( hWnd != (HWND)NULL, | |
223d09f6 | 3241 | wxT("attempt to add a NULL hWnd to window list ignored") ); |
4ce81a75 | 3242 | |
c7527e3f | 3243 | wxWindow *oldWin = wxFindWinFromHandle((WXHWND) hWnd); |
b225f659 | 3244 | #ifdef __WXDEBUG__ |
c7527e3f JS |
3245 | if ( oldWin && (oldWin != win) ) |
3246 | { | |
b225f659 | 3247 | wxLogDebug(wxT("HWND %X already associated with another window (%s)"), |
9b601c24 | 3248 | (int) hWnd, win->GetClassInfo()->GetClassName()); |
c7527e3f | 3249 | } |
b225f659 VZ |
3250 | else |
3251 | #endif // __WXDEBUG__ | |
3252 | if (!oldWin) | |
c7527e3f | 3253 | { |
d2d14464 | 3254 | wxWinHandleHash->Put((long)hWnd, (wxWindow *)win); |
c7527e3f | 3255 | } |
42e69d6b | 3256 | } |
4ce81a75 | 3257 | |
1e6feb95 | 3258 | void wxRemoveHandleAssociation(wxWindowMSW *win) |
42e69d6b | 3259 | { |
1bffa913 | 3260 | wxWinHandleHash->Delete((long)win->GetHWND()); |
4ce81a75 JS |
3261 | } |
3262 | ||
b225f659 VZ |
3263 | // ---------------------------------------------------------------------------- |
3264 | // various MSW speciic class dependent functions | |
3265 | // ---------------------------------------------------------------------------- | |
3266 | ||
42e69d6b VZ |
3267 | // Default destroyer - override if you destroy it in some other way |
3268 | // (e.g. with MDI child windows) | |
1e6feb95 | 3269 | void wxWindowMSW::MSWDestroyWindow() |
4ce81a75 | 3270 | { |
42e69d6b | 3271 | } |
4ce81a75 | 3272 | |
b225f659 VZ |
3273 | bool wxWindowMSW::MSWGetCreateWindowCoords(const wxPoint& pos, |
3274 | const wxSize& size, | |
3275 | int& x, int& y, | |
3276 | int& w, int& h) const | |
2bda0e17 | 3277 | { |
9cb57df4 | 3278 | // yes, those are just some arbitrary hardcoded numbers |
2a77c8c4 | 3279 | static const int DEFAULT_Y = 200; |
2a77c8c4 | 3280 | |
08158721 | 3281 | bool nonDefault = false; |
c085e333 | 3282 | |
422d0ff0 | 3283 | if ( pos.x == wxDefaultCoord ) |
b225f659 | 3284 | { |
9cb57df4 VZ |
3285 | // if x is set to CW_USEDEFAULT, y parameter is ignored anyhow so we |
3286 | // can just as well set it to CW_USEDEFAULT as well | |
b225f659 VZ |
3287 | x = |
3288 | y = CW_USEDEFAULT; | |
3289 | } | |
3290 | else | |
a23fd0e1 | 3291 | { |
2a77c8c4 VZ |
3292 | // OTOH, if x is not set to CW_USEDEFAULT, y shouldn't be set to it |
3293 | // neither because it is not handled as a special value by Windows then | |
3294 | // and so we have to choose some default value for it | |
b225f659 | 3295 | x = pos.x; |
422d0ff0 | 3296 | y = pos.y == wxDefaultCoord ? DEFAULT_Y : pos.y; |
c085e333 | 3297 | |
08158721 | 3298 | nonDefault = true; |
42e69d6b | 3299 | } |
2bda0e17 | 3300 | |
b889a3a2 VZ |
3301 | /* |
3302 | NB: there used to be some code here which set the initial size of the | |
3303 | window to the client size of the parent if no explicit size was | |
77ffb593 | 3304 | specified. This was wrong because wxWidgets programs often assume |
b889a3a2 VZ |
3305 | that they get a WM_SIZE (EVT_SIZE) upon creation, however this broke |
3306 | it. To see why, you should understand that Windows sends WM_SIZE from | |
3307 | inside ::CreateWindow() anyhow. However, ::CreateWindow() is called | |
3308 | from some base class ctor and so this WM_SIZE is not processed in the | |
3309 | real class' OnSize() (because it's not fully constructed yet and the | |
3310 | event goes to some base class OnSize() instead). So the WM_SIZE we | |
3311 | rely on is the one sent when the parent frame resizes its children | |
3312 | but here is the problem: if the child already has just the right | |
77ffb593 | 3313 | size, nothing will happen as both wxWidgets and Windows check for |
b889a3a2 VZ |
3314 | this and ignore any attempts to change the window size to the size it |
3315 | already has - so no WM_SIZE would be sent. | |
3316 | */ | |
b225f659 | 3317 | |
35bbb0c6 | 3318 | |
426936d1 RD |
3319 | // we don't use CW_USEDEFAULT here for several reasons: |
3320 | // | |
3321 | // 1. it results in huge frames on modern screens (1000*800 is not | |
3322 | // uncommon on my 1280*1024 screen) which is way too big for a half | |
77ffb593 | 3323 | // empty frame of most of wxWidgets samples for example) |
426936d1 RD |
3324 | // |
3325 | // 2. it is buggy for frames with wxFRAME_TOOL_WINDOW style for which | |
3326 | // the default is for whatever reason 8*8 which breaks client <-> | |
3327 | // window size calculations (it would be nice if it didn't, but it | |
3328 | // does and the simplest way to fix it seemed to change the broken | |
3329 | // default size anyhow) | |
3330 | // | |
3331 | // 3. there is just no advantage in doing it: with x and y it is | |
3332 | // possible that [future versions of] Windows position the new top | |
3333 | // level window in some smart way which we can't do, but we can | |
3334 | // guess a reasonably good size for a new window just as well | |
3335 | // ourselves | |
960b193e | 3336 | |
3a3c8603 DS |
3337 | // However, on PocketPC devices, we must use the default |
3338 | // size if possible. | |
960b193e | 3339 | #ifdef _WIN32_WCE |
422d0ff0 | 3340 | if (size.x == wxDefaultCoord) |
3a3c8603 DS |
3341 | w = CW_USEDEFAULT; |
3342 | else | |
3343 | w = size.x; | |
422d0ff0 | 3344 | if (size.y == wxDefaultCoord) |
3a3c8603 DS |
3345 | h = CW_USEDEFAULT; |
3346 | else | |
3347 | h = size.y; | |
960b193e | 3348 | #else |
422d0ff0 | 3349 | if ( size.x == wxDefaultCoord || size.y == wxDefaultCoord) |
426936d1 | 3350 | { |
08158721 | 3351 | nonDefault = true; |
8614c467 | 3352 | } |
426936d1 RD |
3353 | w = WidthDefault(size.x); |
3354 | h = HeightDefault(size.y); | |
960b193e | 3355 | #endif |
8614c467 | 3356 | |
4e9d23cd VZ |
3357 | AdjustForParentClientOrigin(x, y); |
3358 | ||
b225f659 VZ |
3359 | return nonDefault; |
3360 | } | |
3361 | ||
9dfef5ac VZ |
3362 | WXHWND wxWindowMSW::MSWGetParent() const |
3363 | { | |
d285d708 | 3364 | return m_parent ? m_parent->GetHWND() : WXHWND(NULL); |
9dfef5ac VZ |
3365 | } |
3366 | ||
b225f659 VZ |
3367 | bool wxWindowMSW::MSWCreate(const wxChar *wclass, |
3368 | const wxChar *title, | |
3369 | const wxPoint& pos, | |
3370 | const wxSize& size, | |
3371 | WXDWORD style, | |
3372 | WXDWORD extendedStyle) | |
3373 | { | |
3374 | // choose the position/size for the new window | |
3375 | int x, y, w, h; | |
3376 | (void)MSWGetCreateWindowCoords(pos, size, x, y, w, h); | |
3377 | ||
b225f659 VZ |
3378 | // controlId is menu handle for the top level windows, so set it to 0 |
3379 | // unless we're creating a child window | |
f586fde3 | 3380 | int controlId = style & WS_CHILD ? GetId() : 0; |
2bda0e17 | 3381 | |
b225f659 VZ |
3382 | // for each class "Foo" we have we also have "FooNR" ("no repaint") class |
3383 | // which is the same but without CS_[HV]REDRAW class styles so using it | |
3384 | // ensures that the window is not fully repainted on each resize | |
3385 | wxString className(wclass); | |
e441e1f4 | 3386 | if ( !HasFlag(wxFULL_REPAINT_ON_RESIZE) ) |
b225f659 VZ |
3387 | { |
3388 | className += wxT("NR"); | |
a23fd0e1 | 3389 | } |
c085e333 | 3390 | |
b225f659 VZ |
3391 | // do create the window |
3392 | wxWindowCreationHook hook(this); | |
b3daa5a3 | 3393 | |
5e67eb97 VZ |
3394 | m_hWnd = (WXHWND)::CreateWindowEx |
3395 | ( | |
3396 | extendedStyle, | |
e0a050e3 VS |
3397 | className.wx_str(), |
3398 | title ? title : m_windowName.wx_str(), | |
5e67eb97 VZ |
3399 | style, |
3400 | x, y, w, h, | |
3401 | (HWND)MSWGetParent(), | |
3402 | (HMENU)controlId, | |
3403 | wxGetInstance(), | |
3404 | NULL // no extra data | |
3405 | ); | |
b225f659 VZ |
3406 | |
3407 | if ( !m_hWnd ) | |
c7527e3f | 3408 | { |
5e67eb97 | 3409 | wxLogSysError(_("Can't create window of class %s"), className.c_str()); |
b225f659 | 3410 | |
08158721 | 3411 | return false; |
c7527e3f | 3412 | } |
b3daa5a3 | 3413 | |
b225f659 | 3414 | SubclassWin(m_hWnd); |
c085e333 | 3415 | |
08158721 | 3416 | return true; |
2bda0e17 KB |
3417 | } |
3418 | ||
42e69d6b VZ |
3419 | // =========================================================================== |
3420 | // MSW message handlers | |
3421 | // =========================================================================== | |
3422 | ||
3423 | // --------------------------------------------------------------------------- | |
3424 | // WM_NOTIFY | |
3425 | // --------------------------------------------------------------------------- | |
3426 | ||
1e6feb95 | 3427 | bool wxWindowMSW::HandleNotify(int idCtrl, WXLPARAM lParam, WXLPARAM *result) |
2bda0e17 | 3428 | { |
04ef50df | 3429 | #ifndef __WXMICROWIN__ |
42e69d6b VZ |
3430 | LPNMHDR hdr = (LPNMHDR)lParam; |
3431 | HWND hWnd = hdr->hwndFrom; | |
3432 | wxWindow *win = wxFindWinFromHandle((WXHWND)hWnd); | |
3433 | ||
2b15b970 | 3434 | // if the control is one of our windows, let it handle the message itself |
42e69d6b | 3435 | if ( win ) |
564b2609 | 3436 | { |
42e69d6b | 3437 | return win->MSWOnNotify(idCtrl, lParam, result); |
564b2609 | 3438 | } |
2bda0e17 | 3439 | |
2b15b970 VZ |
3440 | // VZ: why did we do it? normally this is unnecessary and, besides, it |
3441 | // breaks the message processing for the toolbars because the tooltip | |
3442 | // notifications were being forwarded to the toolbar child controls | |
3443 | // (if it had any) before being passed to the toolbar itself, so in my | |
3444 | // example the tooltip for the combobox was always shown instead of the | |
3445 | // correct button tooltips | |
3446 | #if 0 | |
42e69d6b | 3447 | // try all our children |
222ed1d6 | 3448 | wxWindowList::compatibility_iterator node = GetChildren().GetFirst(); |
42e69d6b | 3449 | while ( node ) |
564b2609 | 3450 | { |
42e69d6b VZ |
3451 | wxWindow *child = node->GetData(); |
3452 | if ( child->MSWOnNotify(idCtrl, lParam, result) ) | |
3453 | { | |
08158721 | 3454 | return true; |
42e69d6b | 3455 | } |
2d0a075d | 3456 | |
42e69d6b VZ |
3457 | node = node->GetNext(); |
3458 | } | |
2b15b970 | 3459 | #endif // 0 |
2d0a075d | 3460 | |
2b15b970 | 3461 | // by default, handle it ourselves |
42e69d6b | 3462 | return MSWOnNotify(idCtrl, lParam, result); |
cd4453e5 | 3463 | #else // __WXMICROWIN__ |
08158721 | 3464 | return false; |
04ef50df | 3465 | #endif |
42e69d6b | 3466 | } |
2d0a075d | 3467 | |
bd9cd534 VZ |
3468 | #if wxUSE_TOOLTIPS |
3469 | ||
3470 | bool wxWindowMSW::HandleTooltipNotify(WXUINT code, | |
3471 | WXLPARAM lParam, | |
3472 | const wxString& ttip) | |
3473 | { | |
3474 | // I don't know why it happens, but the versions of comctl32.dll starting | |
3475 | // from 4.70 sometimes send TTN_NEEDTEXTW even to ANSI programs (normally, | |
3476 | // this message is supposed to be sent to Unicode programs only) -- hence | |
3477 | // we need to handle it as well, otherwise no tooltips will be shown in | |
3478 | // this case | |
7f0586ef | 3479 | #ifndef __WXWINCE__ |
118208ac VZ |
3480 | if ( !(code == (WXUINT) TTN_NEEDTEXTA || code == (WXUINT) TTN_NEEDTEXTW) |
3481 | || ttip.empty() ) | |
bd9cd534 VZ |
3482 | { |
3483 | // not a tooltip message or no tooltip to show anyhow | |
08158721 | 3484 | return false; |
bd9cd534 | 3485 | } |
7f0586ef | 3486 | #endif |
bd9cd534 VZ |
3487 | |
3488 | LPTOOLTIPTEXT ttText = (LPTOOLTIPTEXT)lParam; | |
3489 | ||
118208ac VZ |
3490 | // We don't want to use the szText buffer because it has a limit of 80 |
3491 | // bytes and this is not enough, especially for Unicode build where it | |
3492 | // limits the tooltip string length to only 40 characters | |
3493 | // | |
3494 | // The best would be, of course, to not impose any length limitations at | |
3495 | // all but then the buffer would have to be dynamic and someone would have | |
3496 | // to free it and we don't have the tooltip owner object here any more, so | |
3497 | // for now use our own static buffer with a higher fixed max length. | |
3498 | // | |
3499 | // Note that using a static buffer should not be a problem as only a single | |
3500 | // tooltip can be shown at the same time anyhow. | |
2b5f62a0 | 3501 | #if !wxUSE_UNICODE |
118208ac | 3502 | if ( code == (WXUINT) TTN_NEEDTEXTW ) |
bd9cd534 | 3503 | { |
118208ac VZ |
3504 | // We need to convert tooltip from multi byte to Unicode on the fly. |
3505 | static wchar_t buf[513]; | |
25c46fda | 3506 | |
118208ac VZ |
3507 | // Truncate tooltip length if needed as otherwise we might not have |
3508 | // enough space for it in the buffer and MultiByteToWideChar() would | |
3509 | // return an error | |
fec9cc08 | 3510 | size_t tipLength = wxMin(ttip.length(), WXSIZEOF(buf) - 1); |
7afebc8c JS |
3511 | |
3512 | // Convert to WideChar without adding the NULL character. The NULL | |
25c46fda | 3513 | // character is added afterwards (this is more efficient). |
118208ac VZ |
3514 | int len = ::MultiByteToWideChar |
3515 | ( | |
3516 | CP_ACP, | |
3517 | 0, // no flags | |
b05fde97 | 3518 | ttip.wx_str(), |
118208ac VZ |
3519 | tipLength, |
3520 | buf, | |
3521 | WXSIZEOF(buf) - 1 | |
3522 | ); | |
3523 | ||
3524 | if ( !len ) | |
3525 | { | |
3526 | wxLogLastError(_T("MultiByteToWideChar()")); | |
3527 | } | |
7afebc8c | 3528 | |
118208ac VZ |
3529 | buf[len] = L'\0'; |
3530 | ttText->lpszText = (LPSTR) buf; | |
3531 | } | |
3532 | else // TTN_NEEDTEXTA | |
3533 | #endif // !wxUSE_UNICODE | |
3534 | { | |
3535 | // we get here if we got TTN_NEEDTEXTA (only happens in ANSI build) or | |
3536 | // if we got TTN_NEEDTEXTW in Unicode build: in this case we just have | |
3537 | // to copy the string we have into the buffer | |
3538 | static wxChar buf[513]; | |
3539 | wxStrncpy(buf, ttip.c_str(), WXSIZEOF(buf) - 1); | |
3540 | buf[WXSIZEOF(buf) - 1] = _T('\0'); | |
3541 | ttText->lpszText = buf; | |
bd9cd534 VZ |
3542 | } |
3543 | ||
08158721 | 3544 | return true; |
bd9cd534 VZ |
3545 | } |
3546 | ||
3547 | #endif // wxUSE_TOOLTIPS | |
3548 | ||
1e6feb95 | 3549 | bool wxWindowMSW::MSWOnNotify(int WXUNUSED(idCtrl), |
bd9cd534 VZ |
3550 | WXLPARAM lParam, |
3551 | WXLPARAM* WXUNUSED(result)) | |
42e69d6b VZ |
3552 | { |
3553 | #if wxUSE_TOOLTIPS | |
bd9cd534 | 3554 | if ( m_tooltip ) |
42e69d6b | 3555 | { |
bd9cd534 VZ |
3556 | NMHDR* hdr = (NMHDR *)lParam; |
3557 | if ( HandleTooltipNotify(hdr->code, lParam, m_tooltip->GetTip())) | |
3558 | { | |
3559 | // processed | |
08158721 | 3560 | return true; |
bd9cd534 | 3561 | } |
42e69d6b | 3562 | } |
f5dd1cf1 WS |
3563 | #else |
3564 | wxUnusedVar(lParam); | |
42e69d6b VZ |
3565 | #endif // wxUSE_TOOLTIPS |
3566 | ||
08158721 | 3567 | return false; |
42e69d6b | 3568 | } |
2b15b970 | 3569 | |
42e69d6b VZ |
3570 | // --------------------------------------------------------------------------- |
3571 | // end session messages | |
3572 | // --------------------------------------------------------------------------- | |
2d0a075d | 3573 | |
1e6feb95 | 3574 | bool wxWindowMSW::HandleQueryEndSession(long logOff, bool *mayEnd) |
42e69d6b | 3575 | { |
040e5f77 | 3576 | #ifdef ENDSESSION_LOGOFF |
abb74e0f | 3577 | wxCloseEvent event(wxEVT_QUERY_END_SESSION, wxID_ANY); |
42e69d6b | 3578 | event.SetEventObject(wxTheApp); |
08158721 | 3579 | event.SetCanVeto(true); |
a17e237f | 3580 | event.SetLoggingOff(logOff == (long)ENDSESSION_LOGOFF); |
2d0a075d | 3581 | |
42e69d6b VZ |
3582 | bool rc = wxTheApp->ProcessEvent(event); |
3583 | ||
3584 | if ( rc ) | |
3585 | { | |
3586 | // we may end only if the app didn't veto session closing (double | |
3587 | // negation...) | |
3588 | *mayEnd = !event.GetVeto(); | |
2d0a075d JS |
3589 | } |
3590 | ||
42e69d6b | 3591 | return rc; |
7f0586ef | 3592 | #else |
040e5f77 VZ |
3593 | wxUnusedVar(logOff); |
3594 | wxUnusedVar(mayEnd); | |
08158721 | 3595 | return false; |
7f0586ef | 3596 | #endif |
2bda0e17 KB |
3597 | } |
3598 | ||
1e6feb95 | 3599 | bool wxWindowMSW::HandleEndSession(bool endSession, long logOff) |
2bda0e17 | 3600 | { |
040e5f77 | 3601 | #ifdef ENDSESSION_LOGOFF |
42e69d6b VZ |
3602 | // do nothing if the session isn't ending |
3603 | if ( !endSession ) | |
08158721 | 3604 | return false; |
a23fd0e1 | 3605 | |
519dc37f VZ |
3606 | // only send once |
3607 | if ( (this != wxTheApp->GetTopWindow()) ) | |
08158721 | 3608 | return false; |
519dc37f | 3609 | |
abb74e0f | 3610 | wxCloseEvent event(wxEVT_END_SESSION, wxID_ANY); |
42e69d6b | 3611 | event.SetEventObject(wxTheApp); |
08158721 | 3612 | event.SetCanVeto(false); |
a17e237f | 3613 | event.SetLoggingOff( (logOff == (long)ENDSESSION_LOGOFF) ); |
519dc37f VZ |
3614 | |
3615 | return wxTheApp->ProcessEvent(event); | |
7f0586ef | 3616 | #else |
040e5f77 VZ |
3617 | wxUnusedVar(endSession); |
3618 | wxUnusedVar(logOff); | |
08158721 | 3619 | return false; |
7f0586ef | 3620 | #endif |
2bda0e17 KB |
3621 | } |
3622 | ||
42e69d6b VZ |
3623 | // --------------------------------------------------------------------------- |
3624 | // window creation/destruction | |
3625 | // --------------------------------------------------------------------------- | |
3626 | ||
0c0d1521 WS |
3627 | bool wxWindowMSW::HandleCreate(WXLPCREATESTRUCT WXUNUSED_IN_WINCE(cs), |
3628 | bool *mayCreate) | |
61179e28 | 3629 | { |
ee471817 VZ |
3630 | // VZ: why is this commented out for WinCE? If it doesn't support |
3631 | // WS_EX_CONTROLPARENT at all it should be somehow handled globally, | |
3632 | // not with multiple #ifdef's! | |
7f0586ef | 3633 | #ifndef __WXWINCE__ |
61179e28 | 3634 | if ( ((CREATESTRUCT *)cs)->dwExStyle & WS_EX_CONTROLPARENT ) |
ee471817 VZ |
3635 | EnsureParentHasControlParentStyle(GetParent()); |
3636 | #endif // !__WXWINCE__ | |
61179e28 | 3637 | |
08158721 | 3638 | *mayCreate = true; |
42e69d6b | 3639 | |
08158721 | 3640 | return true; |
2bda0e17 KB |
3641 | } |
3642 | ||
1e6feb95 | 3643 | bool wxWindowMSW::HandleDestroy() |
2bda0e17 | 3644 | { |
7de59551 | 3645 | SendDestroyEvent(); |
42e69d6b VZ |
3646 | |
3647 | // delete our drop target if we've got one | |
3648 | #if wxUSE_DRAG_AND_DROP | |
3649 | if ( m_dropTarget != NULL ) | |
2d0a075d | 3650 | { |
42e69d6b VZ |
3651 | m_dropTarget->Revoke(m_hWnd); |
3652 | ||
3653 | delete m_dropTarget; | |
3654 | m_dropTarget = NULL; | |
2d0a075d | 3655 | } |
42e69d6b | 3656 | #endif // wxUSE_DRAG_AND_DROP |
2bda0e17 | 3657 | |
42e69d6b | 3658 | // WM_DESTROY handled |
08158721 | 3659 | return true; |
2bda0e17 KB |
3660 | } |
3661 | ||
42e69d6b VZ |
3662 | // --------------------------------------------------------------------------- |
3663 | // activation/focus | |
3664 | // --------------------------------------------------------------------------- | |
3665 | ||
1e6feb95 | 3666 | bool wxWindowMSW::HandleActivate(int state, |
42e69d6b VZ |
3667 | bool WXUNUSED(minimized), |
3668 | WXHWND WXUNUSED(activate)) | |
2bda0e17 | 3669 | { |
42e69d6b VZ |
3670 | wxActivateEvent event(wxEVT_ACTIVATE, |
3671 | (state == WA_ACTIVE) || (state == WA_CLICKACTIVE), | |
3672 | m_windowId); | |
3673 | event.SetEventObject(this); | |
3674 | ||
3675 | return GetEventHandler()->ProcessEvent(event); | |
3676 | } | |
3677 | ||
1e6feb95 | 3678 | bool wxWindowMSW::HandleSetFocus(WXHWND hwnd) |
42e69d6b | 3679 | { |
c7aee865 RD |
3680 | // Strangly enough, some controls get set focus events when they are being |
3681 | // deleted, even if they already had focus before. | |
3682 | if ( m_isBeingDeleted ) | |
3683 | { | |
3684 | return false; | |
3685 | } | |
35bbb0c6 | 3686 | |
456bc6d9 VZ |
3687 | // notify the parent keeping track of focus for the kbd navigation |
3688 | // purposes that we got it | |
e72aa7f5 | 3689 | wxChildFocusEvent eventFocus((wxWindow *)this); |
456bc6d9 VZ |
3690 | (void)GetEventHandler()->ProcessEvent(eventFocus); |
3691 | ||
789295bf | 3692 | #if wxUSE_CARET |
42e69d6b | 3693 | // Deal with caret |
789295bf | 3694 | if ( m_caret ) |
2d0a075d | 3695 | { |
789295bf | 3696 | m_caret->OnSetFocus(); |
2bda0e17 | 3697 | } |
789295bf | 3698 | #endif // wxUSE_CARET |
42e69d6b | 3699 | |
ab93a576 RD |
3700 | #if wxUSE_TEXTCTRL |
3701 | // If it's a wxTextCtrl don't send the event as it will be done | |
456bc6d9 VZ |
3702 | // after the control gets to process it from EN_FOCUS handler |
3703 | if ( wxDynamicCastThis(wxTextCtrl) ) | |
ab93a576 | 3704 | { |
08158721 | 3705 | return false; |
ab93a576 | 3706 | } |
456bc6d9 | 3707 | #endif // wxUSE_TEXTCTRL |
ab93a576 | 3708 | |
42e69d6b VZ |
3709 | wxFocusEvent event(wxEVT_SET_FOCUS, m_windowId); |
3710 | event.SetEventObject(this); | |
3711 | ||
1e6feb95 VZ |
3712 | // wxFindWinFromHandle() may return NULL, it is ok |
3713 | event.SetWindow(wxFindWinFromHandle(hwnd)); | |
3714 | ||
42e69d6b | 3715 | return GetEventHandler()->ProcessEvent(event); |
2bda0e17 KB |
3716 | } |
3717 | ||
1e6feb95 | 3718 | bool wxWindowMSW::HandleKillFocus(WXHWND hwnd) |
2bda0e17 | 3719 | { |
789295bf | 3720 | #if wxUSE_CARET |
42e69d6b | 3721 | // Deal with caret |
789295bf | 3722 | if ( m_caret ) |
2d0a075d | 3723 | { |
789295bf | 3724 | m_caret->OnKillFocus(); |
2bda0e17 | 3725 | } |
789295bf | 3726 | #endif // wxUSE_CARET |
42e69d6b | 3727 | |
ab93a576 RD |
3728 | #if wxUSE_TEXTCTRL |
3729 | // If it's a wxTextCtrl don't send the event as it will be done | |
3730 | // after the control gets to process it. | |
3731 | wxTextCtrl *ctrl = wxDynamicCastThis(wxTextCtrl); | |
3732 | if ( ctrl ) | |
3733 | { | |
08158721 | 3734 | return false; |
ab93a576 RD |
3735 | } |
3736 | #endif | |
3737 | ||
2913e597 RD |
3738 | // Don't send the event when in the process of being deleted. This can |
3739 | // only cause problems if the event handler tries to access the object. | |
3740 | if ( m_isBeingDeleted ) | |
3741 | { | |
08158721 | 3742 | return false; |
2913e597 RD |
3743 | } |
3744 | ||
42e69d6b VZ |
3745 | wxFocusEvent event(wxEVT_KILL_FOCUS, m_windowId); |
3746 | event.SetEventObject(this); | |
3747 | ||
1e6feb95 VZ |
3748 | // wxFindWinFromHandle() may return NULL, it is ok |
3749 | event.SetWindow(wxFindWinFromHandle(hwnd)); | |
3750 | ||
42e69d6b | 3751 | return GetEventHandler()->ProcessEvent(event); |
2bda0e17 KB |
3752 | } |
3753 | ||
faa49bfd WS |
3754 | // --------------------------------------------------------------------------- |
3755 | // labels | |
3756 | // --------------------------------------------------------------------------- | |
3757 | ||
3758 | void wxWindowMSW::SetLabel( const wxString& label) | |
3759 | { | |
3760 | SetWindowText(GetHwnd(), label.c_str()); | |
3761 | } | |
3762 | ||
3763 | wxString wxWindowMSW::GetLabel() const | |
3764 | { | |
3765 | return wxGetWindowText(GetHWND()); | |
3766 | } | |
3767 | ||
42e69d6b VZ |
3768 | // --------------------------------------------------------------------------- |
3769 | // miscellaneous | |
3770 | // --------------------------------------------------------------------------- | |
3771 | ||
1e6feb95 | 3772 | bool wxWindowMSW::HandleShow(bool show, int WXUNUSED(status)) |
2bda0e17 | 3773 | { |
42e69d6b | 3774 | wxShowEvent event(GetId(), show); |
687706f5 | 3775 | event.SetEventObject(this); |
42e69d6b VZ |
3776 | |
3777 | return GetEventHandler()->ProcessEvent(event); | |
2bda0e17 KB |
3778 | } |
3779 | ||
1e6feb95 | 3780 | bool wxWindowMSW::HandleInitDialog(WXHWND WXUNUSED(hWndFocus)) |
2bda0e17 | 3781 | { |
42e69d6b | 3782 | wxInitDialogEvent event(GetId()); |
687706f5 | 3783 | event.SetEventObject(this); |
42e69d6b VZ |
3784 | |
3785 | return GetEventHandler()->ProcessEvent(event); | |
2bda0e17 KB |
3786 | } |
3787 | ||
1e6feb95 | 3788 | bool wxWindowMSW::HandleDropFiles(WXWPARAM wParam) |
2bda0e17 | 3789 | { |
7f0586ef | 3790 | #if defined (__WXMICROWIN__) || defined(__WXWINCE__) |
35bbb0c6 | 3791 | wxUnusedVar(wParam); |
08158721 | 3792 | return false; |
4ce1efe1 | 3793 | #else // __WXMICROWIN__ |
42e69d6b | 3794 | HDROP hFilesInfo = (HDROP) wParam; |
42e69d6b VZ |
3795 | |
3796 | // Get the total number of files dropped | |
c3c39620 | 3797 | UINT gwFilesDropped = ::DragQueryFile |
f6bcfd97 BP |
3798 | ( |
3799 | (HDROP)hFilesInfo, | |
3800 | (UINT)-1, | |
3801 | (LPTSTR)0, | |
3802 | (UINT)0 | |
3803 | ); | |
42e69d6b VZ |
3804 | |
3805 | wxString *files = new wxString[gwFilesDropped]; | |
c3c39620 | 3806 | for ( UINT wIndex = 0; wIndex < gwFilesDropped; wIndex++ ) |
2d0a075d | 3807 | { |
c3c39620 VZ |
3808 | // first get the needed buffer length (+1 for terminating NUL) |
3809 | size_t len = ::DragQueryFile(hFilesInfo, wIndex, NULL, 0) + 1; | |
3810 | ||
3811 | // and now get the file name | |
3812 | ::DragQueryFile(hFilesInfo, wIndex, | |
de564874 | 3813 | wxStringBuffer(files[wIndex], len), len); |
2d0a075d | 3814 | } |
42e69d6b | 3815 | DragFinish (hFilesInfo); |
2bda0e17 | 3816 | |
42e69d6b | 3817 | wxDropFilesEvent event(wxEVT_DROP_FILES, gwFilesDropped, files); |
687706f5 | 3818 | event.SetEventObject(this); |
c3c39620 VZ |
3819 | |
3820 | POINT dropPoint; | |
3821 | DragQueryPoint(hFilesInfo, (LPPOINT) &dropPoint); | |
b3dc8a3e VZ |
3822 | event.m_pos.x = dropPoint.x; |
3823 | event.m_pos.y = dropPoint.y; | |
42e69d6b | 3824 | |
c3c39620 | 3825 | return GetEventHandler()->ProcessEvent(event); |
04ef50df | 3826 | #endif |
2bda0e17 KB |
3827 | } |
3828 | ||
cc972ac6 | 3829 | |
1e6feb95 VZ |
3830 | bool wxWindowMSW::HandleSetCursor(WXHWND WXUNUSED(hWnd), |
3831 | short nHitTest, | |
3832 | int WXUNUSED(mouseMsg)) | |
2bda0e17 | 3833 | { |
04ef50df | 3834 | #ifndef __WXMICROWIN__ |
bfbd6dc1 | 3835 | // the logic is as follows: |
46753a7c VZ |
3836 | // 0. if we're busy, set the busy cursor (even for non client elements) |
3837 | // 1. don't set custom cursor for non client area of enabled windows | |
3838 | // 2. ask user EVT_SET_CURSOR handler for the cursor | |
3839 | // 3. if still no cursor but we're in a TLW, set the global cursor | |
42e69d6b | 3840 | |
46753a7c VZ |
3841 | HCURSOR hcursor = 0; |
3842 | if ( wxIsBusy() ) | |
43b5058d | 3843 | { |
46753a7c | 3844 | hcursor = wxGetCurrentBusyCursor(); |
43b5058d | 3845 | } |
46753a7c VZ |
3846 | else // not busy |
3847 | { | |
3848 | if ( nHitTest != HTCLIENT ) | |
3849 | return false; | |
43b5058d | 3850 | |
46753a7c VZ |
3851 | // first ask the user code - it may wish to set the cursor in some very |
3852 | // specific way (for example, depending on the current position) | |
3853 | POINT pt; | |
f2325516 | 3854 | #ifdef __WXWINCE__ |
46753a7c | 3855 | if ( !::GetCursorPosWinCE(&pt)) |
f2325516 | 3856 | #else |
46753a7c | 3857 | if ( !::GetCursorPos(&pt) ) |
3fca879c | 3858 | #endif |
46753a7c VZ |
3859 | { |
3860 | wxLogLastError(wxT("GetCursorPos")); | |
3861 | } | |
43b5058d | 3862 | |
46753a7c VZ |
3863 | int x = pt.x, |
3864 | y = pt.y; | |
3865 | ScreenToClient(&x, &y); | |
3866 | wxSetCursorEvent event(x, y); | |
42e69d6b | 3867 | |
46753a7c VZ |
3868 | bool processedEvtSetCursor = GetEventHandler()->ProcessEvent(event); |
3869 | if ( processedEvtSetCursor && event.HasCursor() ) | |
bfbd6dc1 | 3870 | { |
46753a7c | 3871 | hcursor = GetHcursorOf(event.GetCursor()); |
bfbd6dc1 | 3872 | } |
43b5058d | 3873 | |
46753a7c | 3874 | if ( !hcursor ) |
bfbd6dc1 | 3875 | { |
46753a7c VZ |
3876 | // the test for processedEvtSetCursor is here to prevent using |
3877 | // m_cursor if the user code caught EVT_SET_CURSOR() and returned | |
3878 | // nothing from it - this is a way to say that our cursor shouldn't | |
3879 | // be used for this point | |
3880 | if ( !processedEvtSetCursor && m_cursor.Ok() ) | |
42e69d6b | 3881 | { |
46753a7c | 3882 | hcursor = GetHcursorOf(m_cursor); |
43b5058d | 3883 | } |
46753a7c VZ |
3884 | |
3885 | if ( !hcursor && !GetParent() ) | |
43b5058d VZ |
3886 | { |
3887 | const wxCursor *cursor = wxGetGlobalCursor(); | |
3888 | if ( cursor && cursor->Ok() ) | |
3889 | { | |
3890 | hcursor = GetHcursorOf(*cursor); | |
3891 | } | |
42e69d6b VZ |
3892 | } |
3893 | } | |
3894 | } | |
3895 | ||
46753a7c | 3896 | |
bfbd6dc1 VZ |
3897 | if ( hcursor ) |
3898 | { | |
3899 | ::SetCursor(hcursor); | |
3900 | ||
3901 | // cursor set, stop here | |
08158721 | 3902 | return true; |
bfbd6dc1 | 3903 | } |
cd4453e5 VZ |
3904 | #endif // __WXMICROWIN__ |
3905 | ||
3ca6a5f0 | 3906 | // pass up the window chain |
08158721 | 3907 | return false; |
2bda0e17 KB |
3908 | } |
3909 | ||
dbc74bcc | 3910 | bool wxWindowMSW::HandlePower(WXWPARAM WXUNUSED_IN_WINCE(wParam), |
355debca | 3911 | WXLPARAM WXUNUSED(lParam), |
dbc74bcc | 3912 | bool *WXUNUSED_IN_WINCE(vetoed)) |
355debca | 3913 | { |
dbc74bcc WS |
3914 | #ifdef __WXWINCE__ |
3915 | // FIXME | |
3916 | return false; | |
3917 | #else | |
355debca VZ |
3918 | wxEventType evtType; |
3919 | switch ( wParam ) | |
3920 | { | |
3921 | case PBT_APMQUERYSUSPEND: | |
3922 | evtType = wxEVT_POWER_SUSPENDING; | |
3923 | break; | |
3924 | ||
3925 | case PBT_APMQUERYSUSPENDFAILED: | |
3926 | evtType = wxEVT_POWER_SUSPEND_CANCEL; | |
3927 | break; | |
3928 | ||
3929 | case PBT_APMSUSPEND: | |
3930 | evtType = wxEVT_POWER_SUSPENDED; | |
3931 | break; | |
3932 | ||
3933 | case PBT_APMRESUMESUSPEND: | |
d4cd85a0 VZ |
3934 | #ifdef PBT_APMRESUMEAUTOMATIC |
3935 | case PBT_APMRESUMEAUTOMATIC: | |
3936 | #endif | |
355debca VZ |
3937 | evtType = wxEVT_POWER_RESUME; |
3938 | break; | |
3939 | ||
3940 | default: | |
3941 | wxLogDebug(_T("Unknown WM_POWERBROADCAST(%d) event"), wParam); | |
3942 | // fall through | |
3943 | ||
3944 | // these messages are currently not mapped to wx events | |
3945 | case PBT_APMQUERYSTANDBY: | |
3946 | case PBT_APMQUERYSTANDBYFAILED: | |
3947 | case PBT_APMSTANDBY: | |
3948 | case PBT_APMRESUMESTANDBY: | |
3949 | case PBT_APMBATTERYLOW: | |
3950 | case PBT_APMPOWERSTATUSCHANGE: | |
3951 | case PBT_APMOEMEVENT: | |
355debca VZ |
3952 | case PBT_APMRESUMECRITICAL: |
3953 | evtType = wxEVT_NULL; | |
3954 | break; | |
3955 | } | |
3956 | ||
3957 | // don't handle unknown messages | |
3958 | if ( evtType == wxEVT_NULL ) | |
3959 | return false; | |
3960 | ||
3961 | // TODO: notify about PBTF_APMRESUMEFROMFAILURE in case of resume events? | |
3962 | ||
3963 | wxPowerEvent event(evtType); | |
3964 | if ( !GetEventHandler()->ProcessEvent(event) ) | |
3965 | return false; | |
3966 | ||
3967 | *vetoed = event.IsVetoed(); | |
3968 | ||
3969 | return true; | |
dbc74bcc | 3970 | #endif |
355debca VZ |
3971 | } |
3972 | ||
2e992e06 VZ |
3973 | bool wxWindowMSW::IsDoubleBuffered() const |
3974 | { | |
967acfb5 | 3975 | for ( const wxWindowMSW *wnd = this; |
c719013f VZ |
3976 | wnd && !wnd->IsTopLevel(); wnd = |
3977 | wnd->GetParent() ) | |
2e992e06 | 3978 | { |
c719013f | 3979 | if ( ::GetWindowLong(GetHwndOf(wnd), GWL_EXSTYLE) & WS_EX_COMPOSITED ) |
2e992e06 | 3980 | return true; |
2e992e06 VZ |
3981 | } |
3982 | ||
3983 | return false; | |
3984 | } | |
3985 | ||
42e69d6b VZ |
3986 | // --------------------------------------------------------------------------- |
3987 | // owner drawn stuff | |
3988 | // --------------------------------------------------------------------------- | |
3989 | ||
61fef19b VZ |
3990 | #if (wxUSE_OWNER_DRAWN && wxUSE_MENUS_NATIVE) || \ |
3991 | (wxUSE_CONTROLS && !defined(__WXUNIVERSAL__)) | |
3992 | #define WXUNUSED_UNLESS_ODRAWN(param) param | |
3993 | #else | |
3994 | #define WXUNUSED_UNLESS_ODRAWN(param) | |
3995 | #endif | |
3996 | ||
3997 | bool | |
3998 | wxWindowMSW::MSWOnDrawItem(int WXUNUSED_UNLESS_ODRAWN(id), | |
3999 | WXDRAWITEMSTRUCT * WXUNUSED_UNLESS_ODRAWN(itemStruct)) | |
2bda0e17 | 4000 | { |
4286a5b5 | 4001 | #if wxUSE_OWNER_DRAWN |
1e6feb95 VZ |
4002 | |
4003 | #if wxUSE_MENUS_NATIVE | |
42e69d6b | 4004 | // is it a menu item? |
6f806543 VZ |
4005 | DRAWITEMSTRUCT *pDrawStruct = (DRAWITEMSTRUCT *)itemStruct; |
4006 | if ( id == 0 && pDrawStruct->CtlType == ODT_MENU ) | |
42e69d6b | 4007 | { |
42e69d6b | 4008 | wxMenuItem *pMenuItem = (wxMenuItem *)(pDrawStruct->itemData); |
03cef643 | 4009 | |
2d29bf54 JS |
4010 | // see comment before the same test in MSWOnMeasureItem() below |
4011 | if ( !pMenuItem ) | |
4012 | return false; | |
4013 | ||
4014 | wxCHECK_MSG( wxDynamicCast(pMenuItem, wxMenuItem), | |
42f25dcf | 4015 | false, _T("MSWOnDrawItem: bad wxMenuItem pointer") ); |
42e69d6b | 4016 | |
7561aacd VZ |
4017 | // prepare to call OnDrawItem(): notice using of wxDCTemp to prevent |
4018 | // the DC from being released | |
4019 | wxDCTemp dc((WXHDC)pDrawStruct->hDC); | |
42e69d6b VZ |
4020 | wxRect rect(pDrawStruct->rcItem.left, pDrawStruct->rcItem.top, |
4021 | pDrawStruct->rcItem.right - pDrawStruct->rcItem.left, | |
4022 | pDrawStruct->rcItem.bottom - pDrawStruct->rcItem.top); | |
4023 | ||
4024 | return pMenuItem->OnDrawItem | |
7561aacd VZ |
4025 | ( |
4026 | dc, | |
4027 | rect, | |
4028 | (wxOwnerDrawn::wxODAction)pDrawStruct->itemAction, | |
4029 | (wxOwnerDrawn::wxODStatus)pDrawStruct->itemState | |
4030 | ); | |
42e69d6b | 4031 | } |
1e6feb95 | 4032 | #endif // wxUSE_MENUS_NATIVE |
42e69d6b | 4033 | |
c8e4fa8b JS |
4034 | #endif // USE_OWNER_DRAWN |
4035 | ||
6a89f9ee | 4036 | #if wxUSE_CONTROLS && !defined(__WXUNIVERSAL__) |
c8e4fa8b | 4037 | |
c8e4fa8b | 4038 | #if wxUSE_OWNER_DRAWN |
1384636d | 4039 | wxControl *item = wxDynamicCast(FindItem(id), wxControl); |
567be187 | 4040 | #else // !wxUSE_OWNER_DRAWN |
1384636d VS |
4041 | // we may still have owner-drawn buttons internally because we have to make |
4042 | // them owner-drawn to support colour change | |
35bbb0c6 | 4043 | wxControl *item = |
095b80e2 WS |
4044 | # if wxUSE_BUTTON |
4045 | wxDynamicCast(FindItem(id), wxButton) | |
4046 | # else | |
4047 | NULL | |
4048 | # endif | |
4049 | ; | |
cd0b1709 | 4050 | #endif // USE_OWNER_DRAWN |
567be187 VZ |
4051 | |
4052 | if ( item ) | |
4053 | { | |
4054 | return item->MSWOnDraw(itemStruct); | |
4055 | } | |
4286a5b5 | 4056 | |
c8e4fa8b JS |
4057 | #endif // wxUSE_CONTROLS |
4058 | ||
08158721 | 4059 | return false; |
2bda0e17 KB |
4060 | } |
4061 | ||
61fef19b | 4062 | bool |
d1d276f2 | 4063 | wxWindowMSW::MSWOnMeasureItem(int id, WXMEASUREITEMSTRUCT *itemStruct) |
2bda0e17 | 4064 | { |
61fef19b | 4065 | #if wxUSE_OWNER_DRAWN && wxUSE_MENUS_NATIVE |
42e69d6b | 4066 | // is it a menu item? |
6f806543 VZ |
4067 | MEASUREITEMSTRUCT *pMeasureStruct = (MEASUREITEMSTRUCT *)itemStruct; |
4068 | if ( id == 0 && pMeasureStruct->CtlType == ODT_MENU ) | |
2d0a075d | 4069 | { |
42e69d6b VZ |
4070 | wxMenuItem *pMenuItem = (wxMenuItem *)(pMeasureStruct->itemData); |
4071 | ||
b6afa1a3 VZ |
4072 | // according to Carsten Fuchs the pointer may be NULL under XP if an |
4073 | // MDI child frame is initially maximized, see this for more info: | |
4074 | // http://article.gmane.org/gmane.comp.lib.wxwidgets.general/27745 | |
4075 | // | |
4076 | // so silently ignore it instead of asserting | |
4077 | if ( !pMenuItem ) | |
4078 | return false; | |
4079 | ||
4080 | wxCHECK_MSG( wxDynamicCast(pMenuItem, wxMenuItem), | |
42f25dcf | 4081 | false, _T("MSWOnMeasureItem: bad wxMenuItem pointer") ); |
42e69d6b | 4082 | |
975b6bcf VZ |
4083 | size_t w, h; |
4084 | bool rc = pMenuItem->OnMeasureItem(&w, &h); | |
4085 | ||
4086 | pMeasureStruct->itemWidth = w; | |
4087 | pMeasureStruct->itemHeight = h; | |
4088 | ||
4089 | return rc; | |
2d0a075d | 4090 | } |
42e69d6b | 4091 | |
567be187 VZ |
4092 | wxControl *item = wxDynamicCast(FindItem(id), wxControl); |
4093 | if ( item ) | |
42e69d6b | 4094 | { |
567be187 | 4095 | return item->MSWOnMeasure(itemStruct); |
42e69d6b | 4096 | } |
d1d276f2 WS |
4097 | #else |
4098 | wxUnusedVar(id); | |
4099 | wxUnusedVar(itemStruct); | |
4100 | #endif // wxUSE_OWNER_DRAWN && wxUSE_MENUS_NATIVE | |
567be187 | 4101 | |
08158721 | 4102 | return false; |
2bda0e17 KB |
4103 | } |
4104 | ||
42e69d6b VZ |
4105 | // --------------------------------------------------------------------------- |
4106 | // colours and palettes | |
4107 | // --------------------------------------------------------------------------- | |
2bda0e17 | 4108 | |
1e6feb95 | 4109 | bool wxWindowMSW::HandleSysColorChange() |
2bda0e17 | 4110 | { |
42e69d6b VZ |
4111 | wxSysColourChangedEvent event; |
4112 | event.SetEventObject(this); | |
4113 | ||
23895080 VZ |
4114 | (void)GetEventHandler()->ProcessEvent(event); |
4115 | ||
4116 | // always let the system carry on the default processing to allow the | |
4117 | // native controls to react to the colours update | |
08158721 | 4118 | return false; |
42e69d6b VZ |
4119 | } |
4120 | ||
574c939e KB |
4121 | bool wxWindowMSW::HandleDisplayChange() |
4122 | { | |
4123 | wxDisplayChangedEvent event; | |
4124 | event.SetEventObject(this); | |
4125 | ||
4126 | return GetEventHandler()->ProcessEvent(event); | |
4127 | } | |
4128 | ||
04ef50df | 4129 | #ifndef __WXMICROWIN__ |
42e69d6b | 4130 | |
1a784dfc | 4131 | bool wxWindowMSW::HandleCtlColor(WXHBRUSH *brush, WXHDC hDC, WXHWND hWnd) |
01c500af | 4132 | { |
3d74a760 | 4133 | #if !wxUSE_CONTROLS || defined(__WXUNIVERSAL__) |
43bfb798 | 4134 | wxUnusedVar(hDC); |
3d74a760 WS |
4135 | wxUnusedVar(hWnd); |
4136 | #else | |
2bae4332 | 4137 | wxControl *item = wxDynamicCast(FindItemByHWND(hWnd, true), wxControl); |
c3732409 | 4138 | |
01c500af | 4139 | if ( item ) |
1a784dfc | 4140 | *brush = item->MSWControlColor(hDC, hWnd); |
2d0a075d | 4141 | else |
1e6feb95 | 4142 | #endif // wxUSE_CONTROLS |
01c500af | 4143 | *brush = NULL; |
42e69d6b | 4144 | |
01c500af | 4145 | return *brush != NULL; |
2bda0e17 KB |
4146 | } |
4147 | ||
01c500af VZ |
4148 | #endif // __WXMICROWIN__ |
4149 | ||
1e6feb95 | 4150 | bool wxWindowMSW::HandlePaletteChanged(WXHWND hWndPalChange) |
42e69d6b | 4151 | { |
574c939e | 4152 | #if wxUSE_PALETTE |
b95edd47 VZ |
4153 | // same as below except we don't respond to our own messages |
4154 | if ( hWndPalChange != GetHWND() ) | |
4155 | { | |
574c939e | 4156 | // check to see if we our our parents have a custom palette |
fa21d338 | 4157 | wxWindowMSW *win = this; |
b95edd47 VZ |
4158 | while ( win && !win->HasCustomPalette() ) |
4159 | { | |
4160 | win = win->GetParent(); | |
4161 | } | |
4162 | ||
4163 | if ( win && win->HasCustomPalette() ) | |
4164 | { | |
4165 | // realize the palette to see whether redrawing is needed | |
4166 | HDC hdc = ::GetDC((HWND) hWndPalChange); | |
4167 | win->m_palette.SetHPALETTE((WXHPALETTE) | |
4168 | ::SelectPalette(hdc, GetHpaletteOf(win->m_palette), FALSE)); | |
574c939e KB |
4169 | |
4170 | int result = ::RealizePalette(hdc); | |
b95edd47 VZ |
4171 | |
4172 | // restore the palette (before releasing the DC) | |
4173 | win->m_palette.SetHPALETTE((WXHPALETTE) | |
4174 | ::SelectPalette(hdc, GetHpaletteOf(win->m_palette), FALSE)); | |
4175 | ::RealizePalette(hdc); | |
4176 | ::ReleaseDC((HWND) hWndPalChange, hdc); | |
4177 | ||
4178 | // now check for the need to redraw | |
574c939e | 4179 | if (result > 0) |
08158721 | 4180 | ::InvalidateRect((HWND) hWndPalChange, NULL, TRUE); |
574c939e | 4181 | } |
b95edd47 VZ |
4182 | |
4183 | } | |
4184 | #endif // wxUSE_PALETTE | |
574c939e | 4185 | |
42e69d6b VZ |
4186 | wxPaletteChangedEvent event(GetId()); |
4187 | event.SetEventObject(this); | |
4188 | event.SetChangedWindow(wxFindWinFromHandle(hWndPalChange)); | |
2d0a075d | 4189 | |
42e69d6b VZ |
4190 | return GetEventHandler()->ProcessEvent(event); |
4191 | } | |
4192 | ||
a5e84126 JS |
4193 | bool wxWindowMSW::HandleCaptureChanged(WXHWND hWndGainedCapture) |
4194 | { | |
63e819f2 VS |
4195 | // notify windows on the capture stack about lost capture |
4196 | // (see http://sourceforge.net/tracker/index.php?func=detail&aid=1153662&group_id=9863&atid=109863): | |
72f8c792 | 4197 | wxWindowBase::NotifyCaptureLost(); |
a5e84126 | 4198 | |
72f8c792 | 4199 | wxWindow *win = wxFindWinFromHandle(hWndGainedCapture); |
63e819f2 VS |
4200 | wxMouseCaptureChangedEvent event(GetId(), win); |
4201 | event.SetEventObject(this); | |
a5e84126 JS |
4202 | return GetEventHandler()->ProcessEvent(event); |
4203 | } | |
4204 | ||
3c96418b JG |
4205 | bool wxWindowMSW::HandleSettingChange(WXWPARAM wParam, WXLPARAM lParam) |
4206 | { | |
4207 | // despite MSDN saying "(This message cannot be sent directly to a window.)" | |
4208 | // we need to send this to child windows (it is only sent to top-level | |
4209 | // windows) so {list,tree}ctrls can adjust their font size if necessary | |
4210 | // this is exactly how explorer does it to enable the font size changes | |
4211 | ||
4212 | wxWindowList::compatibility_iterator node = GetChildren().GetFirst(); | |
4213 | while ( node ) | |
4214 | { | |
4215 | // top-level windows already get this message from the system | |
4216 | wxWindow *win = node->GetData(); | |
4217 | if ( !win->IsTopLevel() ) | |
4218 | { | |
4219 | ::SendMessage(GetHwndOf(win), WM_SETTINGCHANGE, wParam, lParam); | |
4220 | } | |
4221 | ||
4222 | node = node->GetNext(); | |
4223 | } | |
4224 | ||
3c96418b JG |
4225 | // let the system handle it |
4226 | return false; | |
4227 | } | |
4228 | ||
1e6feb95 | 4229 | bool wxWindowMSW::HandleQueryNewPalette() |
42e69d6b | 4230 | { |
574c939e KB |
4231 | |
4232 | #if wxUSE_PALETTE | |
4233 | // check to see if we our our parents have a custom palette | |
fa21d338 | 4234 | wxWindowMSW *win = this; |
574c939e KB |
4235 | while (!win->HasCustomPalette() && win->GetParent()) win = win->GetParent(); |
4236 | if (win->HasCustomPalette()) { | |
4237 | /* realize the palette to see whether redrawing is needed */ | |
3a3c8603 | 4238 | HDC hdc = ::GetDC((HWND) GetHWND()); |
574c939e | 4239 | win->m_palette.SetHPALETTE( (WXHPALETTE) |
b95edd47 | 4240 | ::SelectPalette(hdc, (HPALETTE) win->m_palette.GetHPALETTE(), FALSE) ); |
574c939e KB |
4241 | |
4242 | int result = ::RealizePalette(hdc); | |
4243 | /* restore the palette (before releasing the DC) */ | |
4244 | win->m_palette.SetHPALETTE( (WXHPALETTE) | |
b95edd47 | 4245 | ::SelectPalette(hdc, (HPALETTE) win->m_palette.GetHPALETTE(), TRUE) ); |
574c939e KB |
4246 | ::RealizePalette(hdc); |
4247 | ::ReleaseDC((HWND) GetHWND(), hdc); | |
4248 | /* now check for the need to redraw */ | |
4249 | if (result > 0) | |
4250 | ::InvalidateRect((HWND) GetHWND(), NULL, TRUE); | |
4251 | } | |
b95edd47 | 4252 | #endif // wxUSE_PALETTE |
574c939e | 4253 | |
42e69d6b VZ |
4254 | wxQueryNewPaletteEvent event(GetId()); |
4255 | event.SetEventObject(this); | |
4256 | ||
4257 | return GetEventHandler()->ProcessEvent(event) && event.GetPaletteRealized(); | |
4258 | } | |
4259 | ||
4260 | // Responds to colour changes: passes event on to children. | |
574c939e | 4261 | void wxWindowMSW::OnSysColourChanged(wxSysColourChangedEvent& WXUNUSED(event)) |
42e69d6b | 4262 | { |
90c1530a VZ |
4263 | // the top level window also reset the standard colour map as it might have |
4264 | // changed (there is no need to do it for the non top level windows as we | |
4265 | // only have to do it once) | |
4266 | if ( IsTopLevel() ) | |
4267 | { | |
4268 | // FIXME-MT | |
08158721 | 4269 | gs_hasStdCmap = false; |
90c1530a | 4270 | } |
222ed1d6 | 4271 | wxWindowList::compatibility_iterator node = GetChildren().GetFirst(); |
42e69d6b VZ |
4272 | while ( node ) |
4273 | { | |
23895080 VZ |
4274 | // Only propagate to non-top-level windows because Windows already |
4275 | // sends this event to all top-level ones | |
4276 | wxWindow *win = node->GetData(); | |
4277 | if ( !win->IsTopLevel() ) | |
42e69d6b | 4278 | { |
23895080 VZ |
4279 | // we need to send the real WM_SYSCOLORCHANGE and not just trigger |
4280 | // EVT_SYS_COLOUR_CHANGED call because the latter wouldn't work for | |
4281 | // the standard controls | |
4282 | ::SendMessage(GetHwndOf(win), WM_SYSCOLORCHANGE, 0, 0); | |
564b2609 | 4283 | } |
42e69d6b | 4284 | |
23895080 VZ |
4285 | node = node->GetNext(); |
4286 | } | |
2bda0e17 KB |
4287 | } |
4288 | ||
90c1530a VZ |
4289 | extern wxCOLORMAP *wxGetStdColourMap() |
4290 | { | |
4291 | static COLORREF s_stdColours[wxSTD_COL_MAX]; | |
4292 | static wxCOLORMAP s_cmap[wxSTD_COL_MAX]; | |
4293 | ||
4294 | if ( !gs_hasStdCmap ) | |
4295 | { | |
08158721 | 4296 | static bool s_coloursInit = false; |
90c1530a VZ |
4297 | |
4298 | if ( !s_coloursInit ) | |
4299 | { | |
4300 | // When a bitmap is loaded, the RGB values can change (apparently | |
4301 | // because Windows adjusts them to care for the old programs always | |
4302 | // using 0xc0c0c0 while the transparent colour for the new Windows | |
4303 | // versions is different). But we do this adjustment ourselves so | |
4304 | // we want to avoid Windows' "help" and for this we need to have a | |
4305 | // reference bitmap which can tell us what the RGB values change | |
4306 | // to. | |
e5dbcb50 | 4307 | wxLogNull logNo; // suppress error if we couldn't load the bitmap |
90c1530a VZ |
4308 | wxBitmap stdColourBitmap(_T("wxBITMAP_STD_COLOURS")); |
4309 | if ( stdColourBitmap.Ok() ) | |
4310 | { | |
4311 | // the pixels in the bitmap must correspond to wxSTD_COL_XXX! | |
4312 | wxASSERT_MSG( stdColourBitmap.GetWidth() == wxSTD_COL_MAX, | |
4313 | _T("forgot to update wxBITMAP_STD_COLOURS!") ); | |
4314 | ||
4315 | wxMemoryDC memDC; | |
4316 | memDC.SelectObject(stdColourBitmap); | |
4317 | ||
4318 | wxColour colour; | |
4319 | for ( size_t i = 0; i < WXSIZEOF(s_stdColours); i++ ) | |
4320 | { | |
4321 | memDC.GetPixel(i, 0, &colour); | |
4322 | s_stdColours[i] = wxColourToRGB(colour); | |
4323 | } | |
4324 | } | |
4325 | else // wxBITMAP_STD_COLOURS couldn't be loaded | |
4326 | { | |
4327 | s_stdColours[0] = RGB(000,000,000); // black | |
4328 | s_stdColours[1] = RGB(128,128,128); // dark grey | |
4329 | s_stdColours[2] = RGB(192,192,192); // light grey | |
4330 | s_stdColours[3] = RGB(255,255,255); // white | |
4331 | //s_stdColours[4] = RGB(000,000,255); // blue | |
4332 | //s_stdColours[5] = RGB(255,000,255); // magenta | |
4333 | } | |
4334 | ||
08158721 | 4335 | s_coloursInit = true; |
90c1530a VZ |
4336 | } |
4337 | ||
08158721 | 4338 | gs_hasStdCmap = true; |
90c1530a VZ |
4339 | |
4340 | // create the colour map | |
4341 | #define INIT_CMAP_ENTRY(col) \ | |
4342 | s_cmap[wxSTD_COL_##col].from = s_stdColours[wxSTD_COL_##col]; \ | |
4343 | s_cmap[wxSTD_COL_##col].to = ::GetSysColor(COLOR_##col) | |
4344 | ||
4345 | INIT_CMAP_ENTRY(BTNTEXT); | |
4346 | INIT_CMAP_ENTRY(BTNSHADOW); | |
4347 | INIT_CMAP_ENTRY(BTNFACE); | |
4348 | INIT_CMAP_ENTRY(BTNHIGHLIGHT); | |
4349 | ||
4350 | #undef INIT_CMAP_ENTRY | |
4351 | } | |
4352 | ||
4353 | return s_cmap; | |
4354 | } | |
4355 | ||
42e69d6b VZ |
4356 | // --------------------------------------------------------------------------- |
4357 | // painting | |
4358 | // --------------------------------------------------------------------------- | |
4359 | ||
1e6feb95 | 4360 | bool wxWindowMSW::HandlePaint() |
2bda0e17 | 4361 | { |
42e69d6b VZ |
4362 | HRGN hRegion = ::CreateRectRgn(0, 0, 0, 0); // Dummy call to get a handle |
4363 | if ( !hRegion ) | |
f6bcfd97 | 4364 | wxLogLastError(wxT("CreateRectRgn")); |
42e69d6b | 4365 | if ( ::GetUpdateRgn(GetHwnd(), hRegion, FALSE) == ERROR ) |
f6bcfd97 | 4366 | wxLogLastError(wxT("GetUpdateRgn")); |
c085e333 | 4367 | |
42e69d6b | 4368 | m_updateRegion = wxRegion((WXHRGN) hRegion); |
c085e333 | 4369 | |
42e69d6b VZ |
4370 | wxPaintEvent event(m_windowId); |
4371 | event.SetEventObject(this); | |
2bda0e17 | 4372 | |
1e6feb95 VZ |
4373 | bool processed = GetEventHandler()->ProcessEvent(event); |
4374 | ||
4375 | // note that we must generate NC event after the normal one as otherwise | |
4376 | // BeginPaint() will happily overwrite our decorations with the background | |
4377 | // colour | |
4378 | wxNcPaintEvent eventNc(m_windowId); | |
4379 | eventNc.SetEventObject(this); | |
4380 | GetEventHandler()->ProcessEvent(eventNc); | |
4381 | ||
4382 | return processed; | |
2bda0e17 KB |
4383 | } |
4384 | ||
63da7df7 | 4385 | // Can be called from an application's OnPaint handler |
1e6feb95 | 4386 | void wxWindowMSW::OnPaint(wxPaintEvent& event) |
63da7df7 | 4387 | { |
1e6feb95 VZ |
4388 | #ifdef __WXUNIVERSAL__ |
4389 | event.Skip(); | |
4390 | #else | |
63da7df7 JS |
4391 | HDC hDC = (HDC) wxPaintDC::FindDCInCache((wxWindow*) event.GetEventObject()); |
4392 | if (hDC != 0) | |
4393 | { | |
4394 | MSWDefWindowProc(WM_PAINT, (WPARAM) hDC, 0); | |
4395 | } | |
1e6feb95 | 4396 | #endif |
63da7df7 JS |
4397 | } |
4398 | ||
1e6feb95 | 4399 | bool wxWindowMSW::HandleEraseBkgnd(WXHDC hdc) |
a23fd0e1 | 4400 | { |
e0e6ac8a | 4401 | wxDCTemp dc(hdc, GetClientSize()); |
c085e333 | 4402 | |
1e6feb95 VZ |
4403 | dc.SetHDC(hdc); |
4404 | dc.SetWindow((wxWindow *)this); | |
c085e333 | 4405 | |
2bda0e17 | 4406 | wxEraseEvent event(m_windowId, &dc); |
42e69d6b | 4407 | event.SetEventObject(this); |
a23fd0e1 | 4408 | bool rc = GetEventHandler()->ProcessEvent(event); |
c085e333 | 4409 | |
7561aacd | 4410 | // must be called manually as ~wxDC doesn't do anything for wxDCTemp |
a23fd0e1 | 4411 | dc.SelectOldObjects(hdc); |
a23fd0e1 VZ |
4412 | |
4413 | return rc; | |
2bda0e17 KB |
4414 | } |
4415 | ||
8681b094 VZ |
4416 | void wxWindowMSW::OnEraseBackground(wxEraseEvent& event) |
4417 | { | |
52c3e064 VZ |
4418 | // standard non top level controls (i.e. except the dialogs) always erase |
4419 | // their background themselves in HandleCtlColor() or have some control- | |
4420 | // specific ways to set the colours (common controls) | |
4421 | if ( IsOfStandardClass() && !IsTopLevel() ) | |
b8335252 | 4422 | { |
c5bd3c62 VZ |
4423 | event.Skip(); |
4424 | return; | |
4425 | } | |
b8335252 | 4426 | |
c5bd3c62 VZ |
4427 | if ( GetBackgroundStyle() == wxBG_STYLE_CUSTOM ) |
4428 | { | |
4429 | // don't skip the event here, custom background means that the app | |
4430 | // is drawing it itself in its OnPaint(), so don't draw it at all | |
4431 | // now to avoid flicker | |
4432 | return; | |
4433 | } | |
8681b094 | 4434 | |
8681b094 | 4435 | |
c5bd3c62 | 4436 | // do default background painting |
c3732409 | 4437 | if ( !DoEraseBackground(GetHdcOf(*event.GetDC())) ) |
c5bd3c62 VZ |
4438 | { |
4439 | // let the system paint the background | |
4440 | event.Skip(); | |
4441 | } | |
4442 | } | |
4443 | ||
c3732409 | 4444 | bool wxWindowMSW::DoEraseBackground(WXHDC hDC) |
c581abbc | 4445 | { |
c3732409 VZ |
4446 | HBRUSH hbr = (HBRUSH)MSWGetBgBrush(hDC); |
4447 | if ( !hbr ) | |
c581abbc VZ |
4448 | return false; |
4449 | ||
c3732409 | 4450 | wxFillRect(GetHwnd(), (HDC)hDC, hbr); |
c581abbc VZ |
4451 | |
4452 | return true; | |
4453 | } | |
4454 | ||
c3732409 | 4455 | WXHBRUSH |
2bae4332 | 4456 | wxWindowMSW::MSWGetBgBrushForChild(WXHDC WXUNUSED(hDC), WXHWND hWnd) |
c5bd3c62 | 4457 | { |
accbb1e7 VZ |
4458 | if ( m_hasBgCol ) |
4459 | { | |
8d075f8d VZ |
4460 | // our background colour applies to: |
4461 | // 1. this window itself, always | |
4462 | // 2. all children unless the colour is "not inheritable" | |
c3732409 VZ |
4463 | // 3. even if it is not inheritable, our immediate transparent |
4464 | // children should still inherit it -- but not any transparent | |
4465 | // children because it would look wrong if a child of non | |
4466 | // transparent child would show our bg colour when the child itself | |
4467 | // does not | |
2bae4332 VZ |
4468 | wxWindow *win = wxFindWinFromHandle(hWnd); |
4469 | if ( win == this || | |
c3732409 | 4470 | m_inheritBgCol || |
2bae4332 VZ |
4471 | (win && win->HasTransparentBackground() && |
4472 | win->GetParent() == this) ) | |
accbb1e7 | 4473 | { |
c3732409 VZ |
4474 | // draw children with the same colour as the parent |
4475 | wxBrush * | |
4476 | brush = wxTheBrushList->FindOrCreateBrush(GetBackgroundColour()); | |
4477 | ||
4478 | return (WXHBRUSH)GetHbrushOf(*brush); | |
accbb1e7 VZ |
4479 | } |
4480 | } | |
4481 | ||
c3732409 | 4482 | return 0; |
c5bd3c62 | 4483 | } |
8681b094 | 4484 | |
2bae4332 | 4485 | WXHBRUSH wxWindowMSW::MSWGetBgBrush(WXHDC hDC, WXHWND hWndToPaint) |
bdd1a35d | 4486 | { |
2bae4332 VZ |
4487 | if ( !hWndToPaint ) |
4488 | hWndToPaint = GetHWND(); | |
bdd1a35d | 4489 | |
c3732409 | 4490 | for ( wxWindowMSW *win = this; win; win = win->GetParent() ) |
c5bd3c62 | 4491 | { |
2bae4332 | 4492 | WXHBRUSH hBrush = win->MSWGetBgBrushForChild(hDC, hWndToPaint); |
c5bd3c62 VZ |
4493 | if ( hBrush ) |
4494 | return hBrush; | |
24cb4019 | 4495 | |
c3732409 VZ |
4496 | // background is not inherited beyond top level windows |
4497 | if ( win->IsTopLevel() ) | |
24cb4019 | 4498 | break; |
01c500af | 4499 | } |
c5bd3c62 VZ |
4500 | |
4501 | return 0; | |
8681b094 VZ |
4502 | } |
4503 | ||
b728a212 | 4504 | bool wxWindowMSW::HandlePrintClient(WXHDC hDC) |
1a784dfc | 4505 | { |
b728a212 JG |
4506 | // we receive this message when DrawThemeParentBackground() is |
4507 | // called from def window proc of several controls under XP and we | |
4508 | // must draw properly themed background here | |
4509 | // | |
4510 | // note that naively I'd expect filling the client rect with the | |
4511 | // brush returned by MSWGetBgBrush() work -- but for some reason it | |
4512 | // doesn't and we have to call parents MSWPrintChild() which is | |
4513 | // supposed to call DrawThemeBackground() with appropriate params | |
4514 | // | |
4515 | // also note that in this case lParam == PRF_CLIENT but we're | |
4516 | // clearly expected to paint the background and nothing else! | |
4517 | ||
4518 | if ( IsTopLevel() || InheritsBackgroundColour() ) | |
4519 | return false; | |
4520 | ||
4521 | // sometimes we don't want the parent to handle it at all, instead | |
4522 | // return whatever value this window wants | |
4523 | if ( !MSWShouldPropagatePrintChild() ) | |
4524 | return MSWPrintChild(hDC, (wxWindow *)this); | |
4525 | ||
4526 | for ( wxWindow *win = GetParent(); win; win = win->GetParent() ) | |
4527 | { | |
4528 | if ( win->MSWPrintChild(hDC, (wxWindow *)this) ) | |
4529 | return true; | |
4530 | ||
4531 | if ( win->IsTopLevel() || win->InheritsBackgroundColour() ) | |
4532 | break; | |
4533 | } | |
4534 | ||
1a784dfc VZ |
4535 | return false; |
4536 | } | |
4537 | ||
42e69d6b VZ |
4538 | // --------------------------------------------------------------------------- |
4539 | // moving and resizing | |
4540 | // --------------------------------------------------------------------------- | |
4541 | ||
1e6feb95 | 4542 | bool wxWindowMSW::HandleMinimize() |
42e69d6b VZ |
4543 | { |
4544 | wxIconizeEvent event(m_windowId); | |
4545 | event.SetEventObject(this); | |
2d0a075d | 4546 | |
42e69d6b | 4547 | return GetEventHandler()->ProcessEvent(event); |
2bda0e17 KB |
4548 | } |
4549 | ||
1e6feb95 | 4550 | bool wxWindowMSW::HandleMaximize() |
2bda0e17 | 4551 | { |
42e69d6b VZ |
4552 | wxMaximizeEvent event(m_windowId); |
4553 | event.SetEventObject(this); | |
c085e333 | 4554 | |
42e69d6b VZ |
4555 | return GetEventHandler()->ProcessEvent(event); |
4556 | } | |
2bda0e17 | 4557 | |
1e6feb95 | 4558 | bool wxWindowMSW::HandleMove(int x, int y) |
42e69d6b | 4559 | { |
907173e5 WS |
4560 | wxPoint point(x,y); |
4561 | wxMoveEvent event(point, m_windowId); | |
42e69d6b VZ |
4562 | event.SetEventObject(this); |
4563 | ||
4564 | return GetEventHandler()->ProcessEvent(event); | |
4565 | } | |
4566 | ||
5706de1c JS |
4567 | bool wxWindowMSW::HandleMoving(wxRect& rect) |
4568 | { | |
4569 | wxMoveEvent event(rect, m_windowId); | |
4570 | event.SetEventObject(this); | |
577baeef | 4571 | |
5706de1c JS |
4572 | bool rc = GetEventHandler()->ProcessEvent(event); |
4573 | if (rc) | |
4574 | rect = event.GetRect(); | |
4575 | return rc; | |
4576 | } | |
4577 | ||
aa767a45 JS |
4578 | bool wxWindowMSW::HandleEnterSizeMove() |
4579 | { | |
4580 | wxMoveEvent event(wxPoint(), m_windowId); | |
4581 | event.SetEventType(wxEVT_MOVE_START); | |
4582 | event.SetEventObject(this); | |
4583 | ||
4584 | return GetEventHandler()->ProcessEvent(event); | |
4585 | } | |
4586 | ||
4587 | bool wxWindowMSW::HandleExitSizeMove() | |
4588 | { | |
4589 | wxMoveEvent event(wxPoint(), m_windowId); | |
4590 | event.SetEventType(wxEVT_MOVE_END); | |
4591 | event.SetEventObject(this); | |
4592 | ||
4593 | return GetEventHandler()->ProcessEvent(event); | |
4594 | } | |
4595 | ||
4bc0f25e | 4596 | bool wxWindowMSW::HandleSize(int WXUNUSED(w), int WXUNUSED(h), WXUINT wParam) |
42e69d6b | 4597 | { |
c3723477 JS |
4598 | #if USE_DEFERRED_SIZING |
4599 | // when we resize this window, its children are probably going to be | |
4600 | // repositioned as well, prepare to use DeferWindowPos() for them | |
4601 | int numChildren = 0; | |
4602 | for ( HWND child = ::GetWindow(GetHwndOf(this), GW_CHILD); | |
4603 | child; | |
4604 | child = ::GetWindow(child, GW_HWNDNEXT) ) | |
4605 | { | |
4606 | numChildren ++; | |
4607 | } | |
4608 | ||
3fca879c | 4609 | // Protect against valid m_hDWP being overwritten |
c3723477 JS |
4610 | bool useDefer = false; |
4611 | ||
3f48c8e2 VZ |
4612 | if ( numChildren > 1 ) |
4613 | { | |
c3723477 | 4614 | if (!m_hDWP) |
3fca879c | 4615 | { |
c3723477 JS |
4616 | m_hDWP = (WXHANDLE)::BeginDeferWindowPos(numChildren); |
4617 | if ( !m_hDWP ) | |
4618 | { | |
4619 | wxLogLastError(_T("BeginDeferWindowPos")); | |
4620 | } | |
4621 | if (m_hDWP) | |
4622 | useDefer = true; | |
3f48c8e2 VZ |
4623 | } |
4624 | } | |
f7040b5f | 4625 | #endif // USE_DEFERRED_SIZING |
42e69d6b | 4626 | |
3f48c8e2 VZ |
4627 | // update this window size |
4628 | bool processed = false; | |
4bc0f25e VZ |
4629 | switch ( wParam ) |
4630 | { | |
4631 | default: | |
4632 | wxFAIL_MSG( _T("unexpected WM_SIZE parameter") ); | |
4633 | // fall through nevertheless | |
4634 | ||
4635 | case SIZE_MAXHIDE: | |
4636 | case SIZE_MAXSHOW: | |
4637 | // we're not interested in these messages at all | |
4638 | break; | |
4639 | ||
4640 | case SIZE_MINIMIZED: | |
4641 | processed = HandleMinimize(); | |
4642 | break; | |
4643 | ||
4644 | case SIZE_MAXIMIZED: | |
a4d1972d | 4645 | /* processed = */ HandleMaximize(); |
4bc0f25e VZ |
4646 | // fall through to send a normal size event as well |
4647 | ||
4648 | case SIZE_RESTORED: | |
4649 | // don't use w and h parameters as they specify the client size | |
4650 | // while according to the docs EVT_SIZE handler is supposed to | |
4651 | // receive the total size | |
4652 | wxSizeEvent event(GetSize(), m_windowId); | |
4653 | event.SetEventObject(this); | |
4654 | ||
4655 | processed = GetEventHandler()->ProcessEvent(event); | |
4656 | } | |
4657 | ||
c3723477 | 4658 | #if USE_DEFERRED_SIZING |
3f48c8e2 | 4659 | // and finally change the positions of all child windows at once |
c3723477 | 4660 | if ( useDefer && m_hDWP ) |
3f48c8e2 VZ |
4661 | { |
4662 | // reset m_hDWP to NULL so that child windows don't try to use our | |
4663 | // m_hDWP after we call EndDeferWindowPos() on it (this shouldn't | |
4664 | // happen anyhow normally but who knows what weird flow of control we | |
4665 | // may have depending on what the users EVT_SIZE handler does...) | |
4666 | HDWP hDWP = (HDWP)m_hDWP; | |
4667 | m_hDWP = NULL; | |
3fca879c | 4668 | |
3f48c8e2 VZ |
4669 | // do put all child controls in place at once |
4670 | if ( !::EndDeferWindowPos(hDWP) ) | |
4671 | { | |
4672 | wxLogLastError(_T("EndDeferWindowPos")); | |
4673 | } | |
c3723477 | 4674 | |
da78f3b1 | 4675 | // Reset our children's pending pos/size values. |
c3723477 JS |
4676 | for ( wxWindowList::compatibility_iterator node = GetChildren().GetFirst(); |
4677 | node; | |
4678 | node = node->GetNext() ) | |
4679 | { | |
82e3664e | 4680 | wxWindowMSW *child = node->GetData(); |
67644c1d RD |
4681 | child->m_pendingPosition = wxDefaultPosition; |
4682 | child->m_pendingSize = wxDefaultSize; | |
c3723477 | 4683 | } |
3f48c8e2 | 4684 | } |
7d86a2d4 | 4685 | #endif // USE_DEFERRED_SIZING |
3f48c8e2 | 4686 | |
4bc0f25e | 4687 | return processed; |
42e69d6b VZ |
4688 | } |
4689 | ||
5706de1c JS |
4690 | bool wxWindowMSW::HandleSizing(wxRect& rect) |
4691 | { | |
4692 | wxSizeEvent event(rect, m_windowId); | |
4693 | event.SetEventObject(this); | |
577baeef | 4694 | |
5706de1c JS |
4695 | bool rc = GetEventHandler()->ProcessEvent(event); |
4696 | if (rc) | |
4697 | rect = event.GetRect(); | |
4698 | return rc; | |
4699 | } | |
4700 | ||
0c0d1521 | 4701 | bool wxWindowMSW::HandleGetMinMaxInfo(void *WXUNUSED_IN_WINCE(mmInfo)) |
42e69d6b | 4702 | { |
7f0586ef | 4703 | #ifdef __WXWINCE__ |
08158721 | 4704 | return false; |
7f0586ef | 4705 | #else |
42e69d6b VZ |
4706 | MINMAXINFO *info = (MINMAXINFO *)mmInfo; |
4707 | ||
08158721 | 4708 | bool rc = false; |
b2d5a7ee | 4709 | |
e7dda1ff VS |
4710 | int minWidth = GetMinWidth(), |
4711 | minHeight = GetMinHeight(), | |
4712 | maxWidth = GetMaxWidth(), | |
4713 | maxHeight = GetMaxHeight(); | |
42e69d6b | 4714 | |
422d0ff0 | 4715 | if ( minWidth != wxDefaultCoord ) |
2d0a075d | 4716 | { |
e7dda1ff | 4717 | info->ptMinTrackSize.x = minWidth; |
08158721 | 4718 | rc = true; |
2d0a075d | 4719 | } |
2bda0e17 | 4720 | |
422d0ff0 | 4721 | if ( minHeight != wxDefaultCoord ) |
42e69d6b | 4722 | { |
e7dda1ff | 4723 | info->ptMinTrackSize.y = minHeight; |
08158721 | 4724 | rc = true; |
42e69d6b | 4725 | } |
2bda0e17 | 4726 | |
422d0ff0 | 4727 | if ( maxWidth != wxDefaultCoord ) |
42e69d6b | 4728 | { |
e7dda1ff | 4729 | info->ptMaxTrackSize.x = maxWidth; |
08158721 | 4730 | rc = true; |
2d0a075d | 4731 | } |
2bda0e17 | 4732 | |
422d0ff0 | 4733 | if ( maxHeight != wxDefaultCoord ) |
42e69d6b | 4734 | { |
e7dda1ff | 4735 | info->ptMaxTrackSize.y = maxHeight; |
08158721 | 4736 | rc = true; |
42e69d6b | 4737 | } |
2bda0e17 | 4738 | |
42e69d6b | 4739 | return rc; |
7f0586ef | 4740 | #endif |
42e69d6b | 4741 | } |
2d0a075d | 4742 | |
42e69d6b VZ |
4743 | // --------------------------------------------------------------------------- |
4744 | // command messages | |
4745 | // --------------------------------------------------------------------------- | |
4746 | ||
1e6feb95 | 4747 | bool wxWindowMSW::HandleCommand(WXWORD id, WXWORD cmd, WXHWND control) |
42e69d6b | 4748 | { |
1e6feb95 | 4749 | #if wxUSE_MENUS_NATIVE |
8c290175 | 4750 | if ( !cmd && wxCurrentPopupMenu ) |
42e69d6b VZ |
4751 | { |
4752 | wxMenu *popupMenu = wxCurrentPopupMenu; | |
4753 | wxCurrentPopupMenu = NULL; | |
4754 | ||
4755 | return popupMenu->MSWCommand(cmd, id); | |
4756 | } | |
1e6feb95 | 4757 | #endif // wxUSE_MENUS_NATIVE |
42e69d6b | 4758 | |
8c290175 | 4759 | wxWindow *win = NULL; |
71292fab VZ |
4760 | |
4761 | // first try to find it from HWND - this works even with the broken | |
4762 | // programs using the same ids for different controls | |
4763 | if ( control ) | |
42e69d6b | 4764 | { |
71292fab | 4765 | win = wxFindWinFromHandle(control); |
b853f898 | 4766 | } |
2f4ef631 | 4767 | |
71292fab VZ |
4768 | // try the id |
4769 | if ( !win ) | |
b853f898 | 4770 | { |
71292fab VZ |
4771 | // must cast to a signed type before comparing with other ids! |
4772 | win = FindItem((signed short)id); | |
42e69d6b VZ |
4773 | } |
4774 | ||
4775 | if ( win ) | |
b94ae1ea | 4776 | { |
42e69d6b | 4777 | return win->MSWCommand(cmd, id); |
b94ae1ea VZ |
4778 | } |
4779 | ||
4780 | // the messages sent from the in-place edit control used by the treectrl | |
4781 | // for label editing have id == 0, but they should _not_ be treated as menu | |
4782 | // messages (they are EN_XXX ones, in fact) so don't translate anything | |
4783 | // coming from a control to wxEVT_COMMAND_MENU_SELECTED | |
4784 | if ( !control ) | |
a84fc80b | 4785 | { |
b94ae1ea VZ |
4786 | // If no child window, it may be an accelerator, e.g. for a popup menu |
4787 | // command | |
a84fc80b JS |
4788 | |
4789 | wxCommandEvent event(wxEVT_COMMAND_MENU_SELECTED); | |
4790 | event.SetEventObject(this); | |
4791 | event.SetId(id); | |
4792 | event.SetInt(id); | |
b94ae1ea VZ |
4793 | |
4794 | return GetEventHandler()->ProcessEvent(event); | |
a84fc80b | 4795 | } |
6fe19057 VZ |
4796 | else |
4797 | { | |
01d2bf4d | 4798 | #if wxUSE_SPINCTRL && !defined(__WXUNIVERSAL__) |
6fe19057 VZ |
4799 | // the text ctrl which is logically part of wxSpinCtrl sends WM_COMMAND |
4800 | // notifications to its parent which we want to reflect back to | |
4801 | // wxSpinCtrl | |
4802 | wxSpinCtrl *spin = wxSpinCtrl::GetSpinForTextCtrl(control); | |
4803 | if ( spin && spin->ProcessTextCommand(cmd, id) ) | |
08158721 | 4804 | return true; |
6fe19057 | 4805 | #endif // wxUSE_SPINCTRL |
42e69d6b | 4806 | |
01d2bf4d WS |
4807 | #if wxUSE_CHOICE && defined(__SMARTPHONE__) |
4808 | // the listbox ctrl which is logically part of wxChoice sends WM_COMMAND | |
4809 | // notifications to its parent which we want to reflect back to | |
4810 | // wxChoice | |
4811 | wxChoice *choice = wxChoice::GetChoiceForListBox(control); | |
4812 | if ( choice && choice->MSWCommand(cmd, id) ) | |
4813 | return true; | |
4814 | #endif | |
4815 | } | |
4816 | ||
08158721 | 4817 | return false; |
2bda0e17 KB |
4818 | } |
4819 | ||
42e69d6b VZ |
4820 | // --------------------------------------------------------------------------- |
4821 | // mouse events | |
4822 | // --------------------------------------------------------------------------- | |
4823 | ||
1e6feb95 VZ |
4824 | void wxWindowMSW::InitMouseEvent(wxMouseEvent& event, |
4825 | int x, int y, | |
4826 | WXUINT flags) | |
42e69d6b | 4827 | { |
1e6feb95 VZ |
4828 | // our client coords are not quite the same as Windows ones |
4829 | wxPoint pt = GetClientAreaOrigin(); | |
4830 | event.m_x = x - pt.x; | |
4831 | event.m_y = y - pt.y; | |
4832 | ||
4833 | event.m_shiftDown = (flags & MK_SHIFT) != 0; | |
4834 | event.m_controlDown = (flags & MK_CONTROL) != 0; | |
4835 | event.m_leftDown = (flags & MK_LBUTTON) != 0; | |
4836 | event.m_middleDown = (flags & MK_MBUTTON) != 0; | |
4837 | event.m_rightDown = (flags & MK_RBUTTON) != 0; | |
2f68482e | 4838 | #ifdef wxHAS_XBUTTON |
01101e2d VZ |
4839 | event.m_aux1Down = (flags & MK_XBUTTON1) != 0; |
4840 | event.m_aux2Down = (flags & MK_XBUTTON2) != 0; | |
2f68482e | 4841 | #endif // wxHAS_XBUTTON |
1fdf858b | 4842 | event.m_altDown = ::GetKeyState(VK_MENU) < 0; |
1e6feb95 | 4843 | |
f0b1ccde | 4844 | #ifndef __WXWINCE__ |
1bf77ee5 | 4845 | event.SetTimestamp(::GetMessageTime()); |
f0b1ccde JS |
4846 | #endif |
4847 | ||
687706f5 | 4848 | event.SetEventObject(this); |
fb35f0c7 | 4849 | event.SetId(GetId()); |
42e69d6b VZ |
4850 | |
4851 | #if wxUSE_MOUSEEVENT_HACK | |
c358ea41 VZ |
4852 | gs_lastMouseEvent.pos = ClientToScreen(wxPoint(x, y)); |
4853 | gs_lastMouseEvent.type = event.GetEventType(); | |
42e69d6b | 4854 | #endif // wxUSE_MOUSEEVENT_HACK |
2bda0e17 KB |
4855 | } |
4856 | ||
42b1fb63 | 4857 | #ifdef __WXWINCE__ |
dfafa702 VZ |
4858 | // Windows doesn't send the mouse events to the static controls (which are |
4859 | // transparent in the sense that their WM_NCHITTEST handler returns | |
4860 | // HTTRANSPARENT) at all but we want all controls to receive the mouse events | |
4861 | // and so we manually check if we don't have a child window under mouse and if | |
4862 | // we do, send the event to it instead of the window Windows had sent WM_XXX | |
4863 | // to. | |
4864 | // | |
4865 | // Notice that this is not done for the mouse move events because this could | |
4866 | // (would?) be too slow, but only for clicks which means that the static texts | |
4867 | // still don't get move, enter nor leave events. | |
42b1fb63 | 4868 | static wxWindowMSW *FindWindowForMouseEvent(wxWindowMSW *win, int *x, int *y) |
dfafa702 VZ |
4869 | { |
4870 | wxCHECK_MSG( x && y, win, _T("NULL pointer in FindWindowForMouseEvent") ); | |
4871 | ||
4872 | // first try to find a non transparent child: this allows us to send events | |
4873 | // to a static text which is inside a static box, for example | |
4874 | POINT pt = { *x, *y }; | |
4875 | HWND hwnd = GetHwndOf(win), | |
4876 | hwndUnderMouse; | |
4877 | ||
7f0586ef JS |
4878 | #ifdef __WXWINCE__ |
4879 | hwndUnderMouse = ::ChildWindowFromPoint | |
4880 | ( | |
4881 | hwnd, | |
4882 | pt | |
4883 | ); | |
4884 | #else | |
dfafa702 VZ |
4885 | hwndUnderMouse = ::ChildWindowFromPointEx |
4886 | ( | |
4887 | hwnd, | |
4888 | pt, | |
4889 | CWP_SKIPINVISIBLE | | |
4890 | CWP_SKIPDISABLED | | |
4891 | CWP_SKIPTRANSPARENT | |
4892 | ); | |
7f0586ef | 4893 | #endif |
dfafa702 VZ |
4894 | |
4895 | if ( !hwndUnderMouse || hwndUnderMouse == hwnd ) | |
dfafa702 VZ |
4896 | { |
4897 | // now try any child window at all | |
4898 | hwndUnderMouse = ::ChildWindowFromPoint(hwnd, pt); | |
4899 | } | |
4900 | ||
4901 | // check that we have a child window which is susceptible to receive mouse | |
4902 | // events: for this it must be shown and enabled | |
4903 | if ( hwndUnderMouse && | |
4904 | hwndUnderMouse != hwnd && | |
4905 | ::IsWindowVisible(hwndUnderMouse) && | |
4906 | ::IsWindowEnabled(hwndUnderMouse) ) | |
4907 | { | |
4908 | wxWindow *winUnderMouse = wxFindWinFromHandle((WXHWND)hwndUnderMouse); | |
4909 | if ( winUnderMouse ) | |
4910 | { | |
4911 | // translate the mouse coords to the other window coords | |
4912 | win->ClientToScreen(x, y); | |
4913 | winUnderMouse->ScreenToClient(x, y); | |
4914 | ||
4915 | win = winUnderMouse; | |
4916 | } | |
4917 | } | |
4918 | ||
4919 | return win; | |
4920 | } | |
42b1fb63 | 4921 | #endif // __WXWINCE__ |
dfafa702 | 4922 | |
1e6feb95 | 4923 | bool wxWindowMSW::HandleMouseEvent(WXUINT msg, int x, int y, WXUINT flags) |
2bda0e17 | 4924 | { |
42e69d6b | 4925 | // the mouse events take consecutive IDs from WM_MOUSEFIRST to |
34621cc5 | 4926 | // WM_MOUSELAST, so it's enough to subtract WM_MOUSEMOVE == WM_MOUSEFIRST |
42e69d6b VZ |
4927 | // from the message id and take the value in the table to get wxWin event |
4928 | // id | |
4929 | static const wxEventType eventsMouse[] = | |
4930 | { | |
4931 | wxEVT_MOTION, | |
4932 | wxEVT_LEFT_DOWN, | |
4933 | wxEVT_LEFT_UP, | |
4934 | wxEVT_LEFT_DCLICK, | |
4935 | wxEVT_RIGHT_DOWN, | |
4936 | wxEVT_RIGHT_UP, | |
4937 | wxEVT_RIGHT_DCLICK, | |
4938 | wxEVT_MIDDLE_DOWN, | |
4939 | wxEVT_MIDDLE_UP, | |
01101e2d VZ |
4940 | wxEVT_MIDDLE_DCLICK, |
4941 | 0, // this one is for wxEVT_MOTION which is not used here | |
4942 | wxEVT_AUX1_DOWN, | |
4943 | wxEVT_AUX1_UP, | |
4944 | wxEVT_AUX1_DCLICK, | |
4945 | wxEVT_AUX2_DOWN, | |
4946 | wxEVT_AUX2_UP, | |
4947 | wxEVT_AUX2_DCLICK | |
42e69d6b | 4948 | }; |
2bda0e17 | 4949 | |
2f68482e | 4950 | #ifdef wxHAS_XBUTTON |
01101e2d VZ |
4951 | // the same messages are used for both auxillary mouse buttons so we need |
4952 | // to adjust the index manually | |
4953 | switch ( msg ) | |
4954 | { | |
4955 | case WM_XBUTTONDOWN: | |
4956 | case WM_XBUTTONUP: | |
4957 | case WM_XBUTTONDBLCLK: | |
4958 | if ( flags & MK_XBUTTON2 ) | |
4959 | msg += wxEVT_AUX2_DOWN - wxEVT_AUX1_DOWN; | |
4960 | } | |
2f68482e | 4961 | #endif // wxHAS_XBUTTON |
01101e2d | 4962 | |
42e69d6b VZ |
4963 | wxMouseEvent event(eventsMouse[msg - WM_MOUSEMOVE]); |
4964 | InitMouseEvent(event, x, y, flags); | |
4965 | ||
4966 | return GetEventHandler()->ProcessEvent(event); | |
4967 | } | |
4968 | ||
1e6feb95 | 4969 | bool wxWindowMSW::HandleMouseMove(int x, int y, WXUINT flags) |
42e69d6b VZ |
4970 | { |
4971 | if ( !m_mouseInWindow ) | |
2bda0e17 | 4972 | { |
1e6feb95 VZ |
4973 | // it would be wrong to assume that just because we get a mouse move |
4974 | // event that the mouse is inside the window: although this is usually | |
4975 | // true, it is not if we had captured the mouse, so we need to check | |
4976 | // the mouse coordinates here | |
4977 | if ( !HasCapture() || IsMouseInWindow() ) | |
4978 | { | |
4979 | // Generate an ENTER event | |
08158721 | 4980 | m_mouseInWindow = true; |
e5297b7f | 4981 | |
4e5c6c33 | 4982 | #ifdef HAVE_TRACKMOUSEEVENT |
aafb9978 VZ |
4983 | typedef BOOL (WINAPI *_TrackMouseEvent_t)(LPTRACKMOUSEEVENT); |
4984 | #ifdef __WXWINCE__ | |
4985 | static const _TrackMouseEvent_t | |
4986 | s_pfn_TrackMouseEvent = _TrackMouseEvent; | |
4987 | #else // !__WXWINCE__ | |
4988 | static _TrackMouseEvent_t s_pfn_TrackMouseEvent; | |
4989 | static bool s_initDone = false; | |
4990 | if ( !s_initDone ) | |
4991 | { | |
4992 | wxLogNull noLog; | |
4993 | ||
4994 | wxDynamicLibrary dllComCtl32(_T("comctl32.dll"), wxDL_VERBATIM); | |
4995 | if ( dllComCtl32.IsLoaded() ) | |
4996 | { | |
4997 | s_pfn_TrackMouseEvent = (_TrackMouseEvent_t) | |
4998 | dllComCtl32.GetSymbol(_T("_TrackMouseEvent")); | |
4999 | } | |
5000 | ||
5001 | s_initDone = true; | |
4e5c6c33 | 5002 | |
aafb9978 VZ |
5003 | // notice that it's ok to unload comctl32.dll here as it won't |
5004 | // be really unloaded, being still in use because we link to it | |
5005 | // statically too | |
5006 | } | |
5007 | ||
5008 | if ( s_pfn_TrackMouseEvent ) | |
5009 | #endif // __WXWINCE__/!__WXWINCE__ | |
5010 | { | |
5011 | WinStruct<TRACKMOUSEEVENT> trackinfo; | |
4e5c6c33 | 5012 | |
aafb9978 VZ |
5013 | trackinfo.dwFlags = TME_LEAVE; |
5014 | trackinfo.hwndTrack = GetHwnd(); | |
5015 | ||
5016 | (*s_pfn_TrackMouseEvent)(&trackinfo); | |
5017 | } | |
4e5c6c33 VZ |
5018 | #endif // HAVE_TRACKMOUSEEVENT |
5019 | ||
1e6feb95 VZ |
5020 | wxMouseEvent event(wxEVT_ENTER_WINDOW); |
5021 | InitMouseEvent(event, x, y, flags); | |
42e69d6b | 5022 | |
1e6feb95 VZ |
5023 | (void)GetEventHandler()->ProcessEvent(event); |
5024 | } | |
42e69d6b | 5025 | } |
cff58b52 | 5026 | #ifdef HAVE_TRACKMOUSEEVENT |
aafb9978 | 5027 | else // mouse not in window |
cff58b52 KH |
5028 | { |
5029 | // Check if we need to send a LEAVE event | |
5030 | // Windows doesn't send WM_MOUSELEAVE if the mouse has been captured so | |
5031 | // send it here if we are using native mouse leave tracking | |
5032 | if ( HasCapture() && !IsMouseInWindow() ) | |
5033 | { | |
5034 | GenerateMouseLeave(); | |
5035 | } | |
5036 | } | |
1ca78aa1 | 5037 | #endif // HAVE_TRACKMOUSEEVENT |
42e69d6b VZ |
5038 | |
5039 | #if wxUSE_MOUSEEVENT_HACK | |
c358ea41 VZ |
5040 | // Windows often generates mouse events even if mouse position hasn't |
5041 | // changed (http://article.gmane.org/gmane.comp.lib.wxwidgets.devel/66576) | |
5042 | // | |
5043 | // Filter this out as it can result in unexpected behaviour compared to | |
5044 | // other platforms | |
5045 | if ( gs_lastMouseEvent.type == wxEVT_RIGHT_DOWN || | |
5046 | gs_lastMouseEvent.type == wxEVT_LEFT_DOWN || | |
5047 | gs_lastMouseEvent.type == wxEVT_MIDDLE_DOWN || | |
5048 | gs_lastMouseEvent.type == wxEVT_MOTION ) | |
5049 | { | |
5050 | if ( ClientToScreen(wxPoint(x, y)) == gs_lastMouseEvent.pos ) | |
5051 | { | |
5052 | gs_lastMouseEvent.type = wxEVT_MOTION; | |
42e69d6b | 5053 | |
c358ea41 VZ |
5054 | return false; |
5055 | } | |
42e69d6b VZ |
5056 | } |
5057 | #endif // wxUSE_MOUSEEVENT_HACK | |
5058 | ||
5059 | return HandleMouseEvent(WM_MOUSEMOVE, x, y, flags); | |
5060 | } | |
5061 | ||
d2c52078 | 5062 | |
24ce4c18 | 5063 | bool wxWindowMSW::HandleMouseWheel(WXWPARAM wParam, WXLPARAM lParam) |
d2c52078 RD |
5064 | { |
5065 | #if wxUSE_MOUSEWHEEL | |
3c297348 VZ |
5066 | // notice that WM_MOUSEWHEEL position is in screen coords (as it's |
5067 | // forwarded up to the parent by DefWindowProc()) and not in the client | |
5068 | // ones as all the other messages, translate them to the client coords for | |
5069 | // consistency | |
5070 | const wxPoint | |
5071 | pt = ScreenToClient(wxPoint(GET_X_LPARAM(lParam), GET_Y_LPARAM(lParam))); | |
d2c52078 | 5072 | wxMouseEvent event(wxEVT_MOUSEWHEEL); |
3c297348 | 5073 | InitMouseEvent(event, pt.x, pt.y, LOWORD(wParam)); |
d2c52078 RD |
5074 | event.m_wheelRotation = (short)HIWORD(wParam); |
5075 | event.m_wheelDelta = WHEEL_DELTA; | |
5076 | ||
0f7a546d RD |
5077 | static int s_linesPerRotation = -1; |
5078 | if ( s_linesPerRotation == -1 ) | |
5079 | { | |
5080 | if ( !::SystemParametersInfo(SPI_GETWHEELSCROLLLINES, 0, | |
5081 | &s_linesPerRotation, 0)) | |
5082 | { | |
5083 | // this is not supposed to happen | |
5084 | wxLogLastError(_T("SystemParametersInfo(GETWHEELSCROLLLINES)")); | |
5085 | ||
5086 | // the default is 3, so use it if SystemParametersInfo() failed | |
5087 | s_linesPerRotation = 3; | |
5088 | } | |
5089 | } | |
d2c52078 | 5090 | |
0f7a546d | 5091 | event.m_linesPerAction = s_linesPerRotation; |
d2c52078 | 5092 | return GetEventHandler()->ProcessEvent(event); |
0f7a546d | 5093 | |
51e4e266 VZ |
5094 | #else // !wxUSE_MOUSEWHEEL |
5095 | wxUnusedVar(wParam); | |
5096 | wxUnusedVar(lParam); | |
38caaa61 | 5097 | |
08158721 | 5098 | return false; |
51e4e266 | 5099 | #endif // wxUSE_MOUSEWHEEL/!wxUSE_MOUSEWHEEL |
d2c52078 RD |
5100 | } |
5101 | ||
51e4e266 VZ |
5102 | void wxWindowMSW::GenerateMouseLeave() |
5103 | { | |
5104 | m_mouseInWindow = false; | |
5105 | ||
5106 | int state = 0; | |
5107 | if ( wxIsShiftDown() ) | |
5108 | state |= MK_SHIFT; | |
5109 | if ( wxIsCtrlDown() ) | |
5110 | state |= MK_CONTROL; | |
5111 | ||
5112 | // Only the high-order bit should be tested | |
5113 | if ( GetKeyState( VK_LBUTTON ) & (1<<15) ) | |
5114 | state |= MK_LBUTTON; | |
5115 | if ( GetKeyState( VK_MBUTTON ) & (1<<15) ) | |
5116 | state |= MK_MBUTTON; | |
5117 | if ( GetKeyState( VK_RBUTTON ) & (1<<15) ) | |
5118 | state |= MK_RBUTTON; | |
5119 | ||
5120 | POINT pt; | |
f2325516 JS |
5121 | #ifdef __WXWINCE__ |
5122 | if ( !::GetCursorPosWinCE(&pt) ) | |
5123 | #else | |
51e4e266 | 5124 | if ( !::GetCursorPos(&pt) ) |
f2325516 | 5125 | #endif |
51e4e266 VZ |
5126 | { |
5127 | wxLogLastError(_T("GetCursorPos")); | |
5128 | } | |
5129 | ||
5130 | // we need to have client coordinates here for symmetry with | |
5131 | // wxEVT_ENTER_WINDOW | |
5132 | RECT rect = wxGetWindowRect(GetHwnd()); | |
5133 | pt.x -= rect.left; | |
5134 | pt.y -= rect.top; | |
5135 | ||
5136 | wxMouseEvent event(wxEVT_LEAVE_WINDOW); | |
5137 | InitMouseEvent(event, pt.x, pt.y, state); | |
5138 | ||
5139 | (void)GetEventHandler()->ProcessEvent(event); | |
5140 | } | |
d2c52078 | 5141 | |
42e69d6b VZ |
5142 | // --------------------------------------------------------------------------- |
5143 | // keyboard handling | |
5144 | // --------------------------------------------------------------------------- | |
5145 | ||
c42404a5 VZ |
5146 | // create the key event of the given type for the given key - used by |
5147 | // HandleChar and HandleKeyDown/Up | |
1e6feb95 | 5148 | wxKeyEvent wxWindowMSW::CreateKeyEvent(wxEventType evType, |
b09bda68 | 5149 | int id, |
9c7df356 VZ |
5150 | WXLPARAM lParam, |
5151 | WXWPARAM wParam) const | |
c42404a5 VZ |
5152 | { |
5153 | wxKeyEvent event(evType); | |
5154 | event.SetId(GetId()); | |
3f7bc32b VZ |
5155 | event.m_shiftDown = wxIsShiftDown(); |
5156 | event.m_controlDown = wxIsCtrlDown(); | |
c42404a5 VZ |
5157 | event.m_altDown = (HIWORD(lParam) & KF_ALTDOWN) == KF_ALTDOWN; |
5158 | ||
687706f5 | 5159 | event.SetEventObject((wxWindow *)this); // const_cast |
c42404a5 | 5160 | event.m_keyCode = id; |
0d9b2c16 | 5161 | #if wxUSE_UNICODE |
32b13913 | 5162 | event.m_uniChar = (wxChar) wParam; |
0d9b2c16 | 5163 | #endif |
9c7df356 VZ |
5164 | event.m_rawCode = (wxUint32) wParam; |
5165 | event.m_rawFlags = (wxUint32) lParam; | |
f0b1ccde | 5166 | #ifndef __WXWINCE__ |
1bf77ee5 | 5167 | event.SetTimestamp(::GetMessageTime()); |
f0b1ccde | 5168 | #endif |
c42404a5 VZ |
5169 | |
5170 | // translate the position to client coords | |
5171 | POINT pt; | |
f2325516 JS |
5172 | #ifdef __WXWINCE__ |
5173 | GetCursorPosWinCE(&pt); | |
5174 | #else | |
c42404a5 | 5175 | GetCursorPos(&pt); |
f2325516 | 5176 | #endif |
c42404a5 VZ |
5177 | RECT rect; |
5178 | GetWindowRect(GetHwnd(),&rect); | |
5179 | pt.x -= rect.left; | |
5180 | pt.y -= rect.top; | |
5181 | ||
5182 | event.m_x = pt.x; | |
5183 | event.m_y = pt.y; | |
5184 | ||
5185 | return event; | |
5186 | } | |
5187 | ||
08158721 | 5188 | // isASCII is true only when we're called from WM_CHAR handler and not from |
42e69d6b | 5189 | // WM_KEYDOWN one |
1e6feb95 | 5190 | bool wxWindowMSW::HandleChar(WXWPARAM wParam, WXLPARAM lParam, bool isASCII) |
42e69d6b VZ |
5191 | { |
5192 | int id; | |
42e69d6b VZ |
5193 | if ( isASCII ) |
5194 | { | |
42e69d6b | 5195 | id = wParam; |
2d0a075d | 5196 | } |
9c7df356 | 5197 | else // we're called from WM_KEYDOWN |
c42404a5 | 5198 | { |
6121a198 VZ |
5199 | // don't pass lParam to wxCharCodeMSWToWX() here because we don't want |
5200 | // to get numpad key codes: CHAR events should use the logical keys | |
5201 | // such as WXK_HOME instead of WXK_NUMPAD_HOME which is for KEY events | |
5202 | id = wxCharCodeMSWToWX(wParam); | |
9c7df356 | 5203 | if ( id == 0 ) |
c42404a5 | 5204 | { |
9c7df356 | 5205 | // it's ASCII and will be processed here only when called from |
08158721 DS |
5206 | // WM_CHAR (i.e. when isASCII = true), don't process it now |
5207 | return false; | |
c42404a5 | 5208 | } |
9c7df356 | 5209 | } |
42e69d6b | 5210 | |
9c7df356 | 5211 | wxKeyEvent event(CreateKeyEvent(wxEVT_CHAR, id, lParam, wParam)); |
2b5f62a0 VZ |
5212 | |
5213 | // the alphanumeric keys produced by pressing AltGr+something on European | |
5214 | // keyboards have both Ctrl and Alt modifiers which may confuse the user | |
5215 | // code as, normally, keys with Ctrl and/or Alt don't result in anything | |
5216 | // alphanumeric, so pretend that there are no modifiers at all (the | |
5217 | // KEY_DOWN event would still have the correct modifiers if they're really | |
5218 | // needed) | |
5219 | if ( event.m_controlDown && event.m_altDown && | |
5220 | (id >= 32 && id < 256) ) | |
9c7df356 | 5221 | { |
2b5f62a0 | 5222 | event.m_controlDown = |
08158721 | 5223 | event.m_altDown = false; |
2d0a075d | 5224 | } |
c42404a5 | 5225 | |
9c7df356 | 5226 | return GetEventHandler()->ProcessEvent(event); |
2bda0e17 KB |
5227 | } |
5228 | ||
1e6feb95 | 5229 | bool wxWindowMSW::HandleKeyDown(WXWPARAM wParam, WXLPARAM lParam) |
2bda0e17 | 5230 | { |
ff792344 | 5231 | int id = wxCharCodeMSWToWX(wParam, lParam); |
2bda0e17 | 5232 | |
c42404a5 VZ |
5233 | if ( !id ) |
5234 | { | |
5235 | // normal ASCII char | |
42e69d6b VZ |
5236 | id = wParam; |
5237 | } | |
5238 | ||
b60978b2 VZ |
5239 | wxKeyEvent event(CreateKeyEvent(wxEVT_KEY_DOWN, id, lParam, wParam)); |
5240 | return GetEventHandler()->ProcessEvent(event); | |
2bda0e17 KB |
5241 | } |
5242 | ||
1e6feb95 | 5243 | bool wxWindowMSW::HandleKeyUp(WXWPARAM wParam, WXLPARAM lParam) |
2bda0e17 | 5244 | { |
ff792344 | 5245 | int id = wxCharCodeMSWToWX(wParam, lParam); |
2bda0e17 | 5246 | |
c42404a5 VZ |
5247 | if ( !id ) |
5248 | { | |
5249 | // normal ASCII char | |
42e69d6b | 5250 | id = wParam; |
2d0a075d | 5251 | } |
2bda0e17 | 5252 | |
b60978b2 VZ |
5253 | wxKeyEvent event(CreateKeyEvent(wxEVT_KEY_UP, id, lParam, wParam)); |
5254 | return GetEventHandler()->ProcessEvent(event); | |
2bda0e17 KB |
5255 | } |
5256 | ||
53a118d6 | 5257 | #if wxUSE_MENUS |
0c0d1521 WS |
5258 | int wxWindowMSW::HandleMenuChar(int WXUNUSED_IN_WINCE(chAccel), |
5259 | WXLPARAM WXUNUSED_IN_WINCE(lParam)) | |
b74cce40 | 5260 | { |
7f0586ef JS |
5261 | // FIXME: implement GetMenuItemCount for WinCE, possibly |
5262 | // in terms of GetMenuItemInfo | |
5263 | #ifndef __WXWINCE__ | |
b74cce40 VZ |
5264 | const HMENU hmenu = (HMENU)lParam; |
5265 | ||
5266 | MENUITEMINFO mii; | |
5267 | wxZeroMemory(mii); | |
5268 | mii.cbSize = sizeof(MENUITEMINFO); | |
c70ffbdb VZ |
5269 | |
5270 | // we could use MIIM_FTYPE here as we only need to know if the item is | |
5271 | // ownerdrawn or not and not dwTypeData which MIIM_TYPE also returns, but | |
5272 | // MIIM_FTYPE is not supported under Win95 | |
b74cce40 VZ |
5273 | mii.fMask = MIIM_TYPE | MIIM_DATA; |
5274 | ||
5275 | // find if we have this letter in any owner drawn item | |
5276 | const int count = ::GetMenuItemCount(hmenu); | |
5277 | for ( int i = 0; i < count; i++ ) | |
5278 | { | |
c70ffbdb VZ |
5279 | // previous loop iteration could modify it, reset it back before |
5280 | // calling GetMenuItemInfo() to prevent it from overflowing dwTypeData | |
5281 | mii.cch = 0; | |
5282 | ||
b74cce40 VZ |
5283 | if ( ::GetMenuItemInfo(hmenu, i, TRUE, &mii) ) |
5284 | { | |
5285 | if ( mii.fType == MFT_OWNERDRAW ) | |
5286 | { | |
5287 | // dwItemData member of the MENUITEMINFO is a | |
5288 | // pointer to the associated wxMenuItem -- see the | |
5289 | // menu creation code | |
5290 | wxMenuItem *item = (wxMenuItem*)mii.dwItemData; | |
5291 | ||
52de37c7 | 5292 | const wxChar *p = wxStrchr(item->GetText().wx_str(), _T('&')); |
b74cce40 VZ |
5293 | while ( p++ ) |
5294 | { | |
5295 | if ( *p == _T('&') ) | |
5296 | { | |
5297 | // this is not the accel char, find the real one | |
5298 | p = wxStrchr(p + 1, _T('&')); | |
5299 | } | |
5300 | else // got the accel char | |
5301 | { | |
5302 | // FIXME-UNICODE: this comparison doesn't risk to work | |
5303 | // for non ASCII accelerator characters I'm afraid, but | |
5304 | // what can we do? | |
907173e5 | 5305 | if ( (wchar_t)wxToupper(*p) == (wchar_t)chAccel ) |
b74cce40 VZ |
5306 | { |
5307 | return i; | |
5308 | } | |
5309 | else | |
5310 | { | |
5311 | // this one doesn't match | |
5312 | break; | |
5313 | } | |
5314 | } | |
5315 | } | |
5316 | } | |
5317 | } | |
e39af974 | 5318 | else // failed to get the menu text? |
b74cce40 | 5319 | { |
c70ffbdb | 5320 | // it's not fatal, so don't show error, but still log it |
b74cce40 VZ |
5321 | wxLogLastError(_T("GetMenuItemInfo")); |
5322 | } | |
5323 | } | |
7f0586ef | 5324 | #endif |
b74cce40 VZ |
5325 | return wxNOT_FOUND; |
5326 | } | |
5327 | ||
78c91815 VZ |
5328 | bool wxWindowMSW::HandleClipboardEvent( WXUINT nMsg ) |
5329 | { | |
5330 | const wxEventType type = ( nMsg == WM_CUT ) ? wxEVT_COMMAND_TEXT_CUT : | |
5331 | ( nMsg == WM_COPY ) ? wxEVT_COMMAND_TEXT_COPY : | |
5332 | /*( nMsg == WM_PASTE ) ? */ wxEVT_COMMAND_TEXT_PASTE; | |
5333 | wxClipboardTextEvent evt(type, GetId()); | |
5334 | ||
5335 | evt.SetEventObject(this); | |
5336 | ||
5337 | return GetEventHandler()->ProcessEvent(evt); | |
5338 | } | |
53a118d6 | 5339 | #endif // wxUSE_MENUS |
78c91815 | 5340 | |
42e69d6b VZ |
5341 | // --------------------------------------------------------------------------- |
5342 | // joystick | |
5343 | // --------------------------------------------------------------------------- | |
5344 | ||
1e6feb95 | 5345 | bool wxWindowMSW::HandleJoystickEvent(WXUINT msg, int x, int y, WXUINT flags) |
2bda0e17 | 5346 | { |
8cb172b4 | 5347 | #ifdef JOY_BUTTON1 |
42e69d6b VZ |
5348 | int change = 0; |
5349 | if ( flags & JOY_BUTTON1CHG ) | |
5350 | change = wxJOY_BUTTON1; | |
5351 | if ( flags & JOY_BUTTON2CHG ) | |
5352 | change = wxJOY_BUTTON2; | |
5353 | if ( flags & JOY_BUTTON3CHG ) | |
5354 | change = wxJOY_BUTTON3; | |
5355 | if ( flags & JOY_BUTTON4CHG ) | |
5356 | change = wxJOY_BUTTON4; | |
2bda0e17 | 5357 | |
42e69d6b VZ |
5358 | int buttons = 0; |
5359 | if ( flags & JOY_BUTTON1 ) | |
5360 | buttons |= wxJOY_BUTTON1; | |
5361 | if ( flags & JOY_BUTTON2 ) | |
5362 | buttons |= wxJOY_BUTTON2; | |
5363 | if ( flags & JOY_BUTTON3 ) | |
5364 | buttons |= wxJOY_BUTTON3; | |
5365 | if ( flags & JOY_BUTTON4 ) | |
5366 | buttons |= wxJOY_BUTTON4; | |
c085e333 | 5367 | |
42e69d6b VZ |
5368 | // the event ids aren't consecutive so we can't use table based lookup |
5369 | int joystick; | |
5370 | wxEventType eventType; | |
5371 | switch ( msg ) | |
5372 | { | |
5373 | case MM_JOY1MOVE: | |
5374 | joystick = 1; | |
5375 | eventType = wxEVT_JOY_MOVE; | |
5376 | break; | |
2bda0e17 | 5377 | |
42e69d6b VZ |
5378 | case MM_JOY2MOVE: |
5379 | joystick = 2; | |
5380 | eventType = wxEVT_JOY_MOVE; | |
5381 | break; | |
2bda0e17 | 5382 | |
42e69d6b VZ |
5383 | case MM_JOY1ZMOVE: |
5384 | joystick = 1; | |
5385 | eventType = wxEVT_JOY_ZMOVE; | |
5386 | break; | |
2bda0e17 | 5387 | |
42e69d6b VZ |
5388 | case MM_JOY2ZMOVE: |
5389 | joystick = 2; | |
5390 | eventType = wxEVT_JOY_ZMOVE; | |
5391 | break; | |
2bda0e17 | 5392 | |
42e69d6b VZ |
5393 | case MM_JOY1BUTTONDOWN: |
5394 | joystick = 1; | |
5395 | eventType = wxEVT_JOY_BUTTON_DOWN; | |
5396 | break; | |
2bda0e17 | 5397 | |
42e69d6b VZ |
5398 | case MM_JOY2BUTTONDOWN: |
5399 | joystick = 2; | |
5400 | eventType = wxEVT_JOY_BUTTON_DOWN; | |
5401 | break; | |
2bda0e17 | 5402 | |
42e69d6b VZ |
5403 | case MM_JOY1BUTTONUP: |
5404 | joystick = 1; | |
5405 | eventType = wxEVT_JOY_BUTTON_UP; | |
5406 | break; | |
5407 | ||
5408 | case MM_JOY2BUTTONUP: | |
5409 | joystick = 2; | |
5410 | eventType = wxEVT_JOY_BUTTON_UP; | |
5411 | break; | |
5412 | ||
5413 | default: | |
223d09f6 | 5414 | wxFAIL_MSG(wxT("no such joystick event")); |
2d0a075d | 5415 | |
08158721 | 5416 | return false; |
2d0a075d | 5417 | } |
2bda0e17 | 5418 | |
42e69d6b VZ |
5419 | wxJoystickEvent event(eventType, buttons, joystick, change); |
5420 | event.SetPosition(wxPoint(x, y)); | |
5421 | event.SetEventObject(this); | |
c085e333 | 5422 | |
42e69d6b | 5423 | return GetEventHandler()->ProcessEvent(event); |
8cb172b4 | 5424 | #else |
991420e6 WS |
5425 | wxUnusedVar(msg); |
5426 | wxUnusedVar(x); | |
5427 | wxUnusedVar(y); | |
5428 | wxUnusedVar(flags); | |
08158721 | 5429 | return false; |
8cb172b4 | 5430 | #endif |
2bda0e17 KB |
5431 | } |
5432 | ||
42e69d6b VZ |
5433 | // --------------------------------------------------------------------------- |
5434 | // scrolling | |
5435 | // --------------------------------------------------------------------------- | |
5436 | ||
1e6feb95 | 5437 | bool wxWindowMSW::MSWOnScroll(int orientation, WXWORD wParam, |
f4f734c1 | 5438 | WXWORD pos, WXHWND control) |
35bbb0c6 | 5439 | { |
a0d924c6 | 5440 | if ( control && control != m_hWnd ) // Prevent infinite recursion |
cc2b7472 | 5441 | { |
42e69d6b VZ |
5442 | wxWindow *child = wxFindWinFromHandle(control); |
5443 | if ( child ) | |
5444 | return child->MSWOnScroll(orientation, wParam, pos, control); | |
cc2b7472 | 5445 | } |
2bda0e17 | 5446 | |
9145664b | 5447 | wxScrollWinEvent event; |
42e69d6b VZ |
5448 | event.SetPosition(pos); |
5449 | event.SetOrientation(orientation); | |
687706f5 | 5450 | event.SetEventObject(this); |
cc2b7472 | 5451 | |
42e69d6b VZ |
5452 | switch ( wParam ) |
5453 | { | |
5454 | case SB_TOP: | |
687706f5 | 5455 | event.SetEventType(wxEVT_SCROLLWIN_TOP); |
42e69d6b | 5456 | break; |
cc2b7472 | 5457 | |
42e69d6b | 5458 | case SB_BOTTOM: |
687706f5 | 5459 | event.SetEventType(wxEVT_SCROLLWIN_BOTTOM); |
42e69d6b | 5460 | break; |
cc2b7472 | 5461 | |
42e69d6b | 5462 | case SB_LINEUP: |
687706f5 | 5463 | event.SetEventType(wxEVT_SCROLLWIN_LINEUP); |
42e69d6b | 5464 | break; |
2bda0e17 | 5465 | |
42e69d6b | 5466 | case SB_LINEDOWN: |
687706f5 | 5467 | event.SetEventType(wxEVT_SCROLLWIN_LINEDOWN); |
42e69d6b | 5468 | break; |
a02eb1d2 | 5469 | |
42e69d6b | 5470 | case SB_PAGEUP: |
687706f5 | 5471 | event.SetEventType(wxEVT_SCROLLWIN_PAGEUP); |
42e69d6b | 5472 | break; |
2bda0e17 | 5473 | |
42e69d6b | 5474 | case SB_PAGEDOWN: |
687706f5 | 5475 | event.SetEventType(wxEVT_SCROLLWIN_PAGEDOWN); |
42e69d6b | 5476 | break; |
2bda0e17 | 5477 | |
42e69d6b | 5478 | case SB_THUMBPOSITION: |
feda3011 | 5479 | case SB_THUMBTRACK: |
f6bcfd97 BP |
5480 | // under Win32, the scrollbar range and position are 32 bit integers, |
5481 | // but WM_[HV]SCROLL only carry the low 16 bits of them, so we must | |
5482 | // explicitly query the scrollbar for the correct position (this must | |
5483 | // be done only for these two SB_ events as they are the only one | |
5484 | // carrying the scrollbar position) | |
5485 | { | |
0cf5de11 | 5486 | WinStruct<SCROLLINFO> scrollInfo; |
f6bcfd97 BP |
5487 | scrollInfo.fMask = SIF_TRACKPOS; |
5488 | ||
5489 | if ( !::GetScrollInfo(GetHwnd(), | |
5490 | orientation == wxHORIZONTAL ? SB_HORZ | |
5491 | : SB_VERT, | |
5492 | &scrollInfo) ) | |
5493 | { | |
3103e8a9 | 5494 | // Not necessarily an error, if there are no scrollbars yet. |
f676b387 | 5495 | // wxLogLastError(_T("GetScrollInfo")); |
f6bcfd97 BP |
5496 | } |
5497 | ||
5498 | event.SetPosition(scrollInfo.nTrackPos); | |
5499 | } | |
f6bcfd97 | 5500 | |
687706f5 | 5501 | event.SetEventType( wParam == SB_THUMBPOSITION |
f6bcfd97 | 5502 | ? wxEVT_SCROLLWIN_THUMBRELEASE |
687706f5 | 5503 | : wxEVT_SCROLLWIN_THUMBTRACK ); |
42e69d6b | 5504 | break; |
c085e333 | 5505 | |
42e69d6b | 5506 | default: |
08158721 | 5507 | return false; |
564b2609 | 5508 | } |
2bda0e17 | 5509 | |
42e69d6b | 5510 | return GetEventHandler()->ProcessEvent(event); |
2bda0e17 KB |
5511 | } |
5512 | ||
5acec112 VZ |
5513 | // ---------------------------------------------------------------------------- |
5514 | // custom message handlers | |
5515 | // ---------------------------------------------------------------------------- | |
5516 | ||
5517 | /* static */ bool | |
5518 | wxWindowMSW::MSWRegisterMessageHandler(int msg, MSWMessageHandler handler) | |
5519 | { | |
5520 | wxCHECK_MSG( gs_messageHandlers.find(msg) == gs_messageHandlers.end(), | |
5521 | false, _T("registering handler for the same message twice") ); | |
5522 | ||
5523 | gs_messageHandlers[msg] = handler; | |
5524 | return true; | |
5525 | } | |
5526 | ||
5527 | /* static */ void | |
5528 | wxWindowMSW::MSWUnregisterMessageHandler(int msg, MSWMessageHandler handler) | |
5529 | { | |
5530 | const MSWMessageHandlers::iterator i = gs_messageHandlers.find(msg); | |
5531 | wxCHECK_RET( i != gs_messageHandlers.end() && i->second == handler, | |
5532 | _T("unregistering non-registered handler?") ); | |
5533 | ||
5534 | gs_messageHandlers.erase(i); | |
5535 | } | |
5536 | ||
42e69d6b VZ |
5537 | // =========================================================================== |
5538 | // global functions | |
5539 | // =========================================================================== | |
5540 | ||
7a5e53ab | 5541 | void wxGetCharSize(WXHWND wnd, int *x, int *y, const wxFont& the_font) |
2bda0e17 | 5542 | { |
42e69d6b VZ |
5543 | TEXTMETRIC tm; |
5544 | HDC dc = ::GetDC((HWND) wnd); | |
42e69d6b | 5545 | HFONT was = 0; |
35bbb0c6 | 5546 | |
7a5e53ab VS |
5547 | // the_font.UseResource(); |
5548 | // the_font.RealizeResource(); | |
c57c2993 | 5549 | HFONT fnt = (HFONT)the_font.GetResourceHandle(); // const_cast |
7a5e53ab VS |
5550 | if ( fnt ) |
5551 | was = (HFONT) SelectObject(dc,fnt); | |
35bbb0c6 | 5552 | |
42e69d6b | 5553 | GetTextMetrics(dc, &tm); |
7a5e53ab | 5554 | if ( fnt && was ) |
2d0a075d | 5555 | { |
42e69d6b | 5556 | SelectObject(dc,was); |
2d0a075d | 5557 | } |
42e69d6b | 5558 | ReleaseDC((HWND)wnd, dc); |
0655ad29 VZ |
5559 | |
5560 | if ( x ) | |
5561 | *x = tm.tmAveCharWidth; | |
5562 | if ( y ) | |
5563 | *y = tm.tmHeight + tm.tmExternalLeading; | |
2bda0e17 | 5564 | |
7a5e53ab | 5565 | // the_font.ReleaseResource(); |
42e69d6b | 5566 | } |
c085e333 | 5567 | |
5004c3ad JG |
5568 | // use the "extended" bit (24) of lParam to distinguish extended keys |
5569 | // from normal keys as the same key is sent | |
ed5bc8f1 VZ |
5570 | static inline |
5571 | int ChooseNormalOrExtended(int lParam, int keyNormal, int keyExtended) | |
5004c3ad | 5572 | { |
ed5bc8f1 VZ |
5573 | // except that if lParam is 0, it means we don't have real lParam from |
5574 | // WM_KEYDOWN but are just translating just a VK constant (e.g. done from | |
5575 | // msw/treectrl.cpp when processing TVN_KEYDOWN) -- then assume this is a | |
5576 | // non-numpad (hence extended) key as this is a more common case | |
5577 | return !lParam || (lParam & (1 << 24)) ? keyExtended : keyNormal; | |
5004c3ad JG |
5578 | } |
5579 | ||
d5c21b02 VZ |
5580 | // this array contains the Windows virtual key codes which map one to one to |
5581 | // WXK_xxx constants and is used in wxCharCodeMSWToWX/WXToMSW() below | |
5582 | // | |
5583 | // note that keys having a normal and numpad version (e.g. WXK_HOME and | |
5584 | // WXK_NUMPAD_HOME) are not included in this table as the mapping is not 1-to-1 | |
5585 | static const struct wxKeyMapping | |
5586 | { | |
5587 | int vk; | |
5588 | wxKeyCode wxk; | |
5589 | } gs_specialKeys[] = | |
5590 | { | |
5591 | { VK_CANCEL, WXK_CANCEL }, | |
5592 | { VK_BACK, WXK_BACK }, | |
5593 | { VK_TAB, WXK_TAB }, | |
5594 | { VK_CLEAR, WXK_CLEAR }, | |
5595 | { VK_SHIFT, WXK_SHIFT }, | |
5596 | { VK_CONTROL, WXK_CONTROL }, | |
5597 | { VK_MENU , WXK_ALT }, | |
5598 | { VK_PAUSE, WXK_PAUSE }, | |
5599 | { VK_CAPITAL, WXK_CAPITAL }, | |
5600 | { VK_SPACE, WXK_SPACE }, | |
5601 | { VK_ESCAPE, WXK_ESCAPE }, | |
5602 | { VK_SELECT, WXK_SELECT }, | |
5603 | { VK_PRINT, WXK_PRINT }, | |
5604 | { VK_EXECUTE, WXK_EXECUTE }, | |
e59c2b2d VZ |
5605 | { VK_SNAPSHOT, WXK_SNAPSHOT }, |
5606 | { VK_HELP, WXK_HELP }, | |
d5c21b02 VZ |
5607 | |
5608 | { VK_NUMPAD0, WXK_NUMPAD0 }, | |
5609 | { VK_NUMPAD1, WXK_NUMPAD1 }, | |
5610 | { VK_NUMPAD2, WXK_NUMPAD2 }, | |
5611 | { VK_NUMPAD3, WXK_NUMPAD3 }, | |
5612 | { VK_NUMPAD4, WXK_NUMPAD4 }, | |
5613 | { VK_NUMPAD5, WXK_NUMPAD5 }, | |
5614 | { VK_NUMPAD6, WXK_NUMPAD6 }, | |
5615 | { VK_NUMPAD7, WXK_NUMPAD7 }, | |
5616 | { VK_NUMPAD8, WXK_NUMPAD8 }, | |
5617 | { VK_NUMPAD9, WXK_NUMPAD9 }, | |
5618 | { VK_MULTIPLY, WXK_NUMPAD_MULTIPLY }, | |
5619 | { VK_ADD, WXK_NUMPAD_ADD }, | |
5620 | { VK_SUBTRACT, WXK_NUMPAD_SUBTRACT }, | |
5621 | { VK_DECIMAL, WXK_NUMPAD_DECIMAL }, | |
5622 | { VK_DIVIDE, WXK_NUMPAD_DIVIDE }, | |
5623 | ||
5624 | { VK_F1, WXK_F1 }, | |
5625 | { VK_F2, WXK_F2 }, | |
5626 | { VK_F3, WXK_F3 }, | |
5627 | { VK_F4, WXK_F4 }, | |
5628 | { VK_F5, WXK_F5 }, | |
5629 | { VK_F6, WXK_F6 }, | |
5630 | { VK_F7, WXK_F7 }, | |
5631 | { VK_F8, WXK_F8 }, | |
5632 | { VK_F9, WXK_F9 }, | |
5633 | { VK_F10, WXK_F10 }, | |
5634 | { VK_F11, WXK_F11 }, | |
5635 | { VK_F12, WXK_F12 }, | |
5636 | { VK_F13, WXK_F13 }, | |
5637 | { VK_F14, WXK_F14 }, | |
5638 | { VK_F15, WXK_F15 }, | |
5639 | { VK_F16, WXK_F16 }, | |
5640 | { VK_F17, WXK_F17 }, | |
5641 | { VK_F18, WXK_F18 }, | |
5642 | { VK_F19, WXK_F19 }, | |
5643 | { VK_F20, WXK_F20 }, | |
5644 | { VK_F21, WXK_F21 }, | |
5645 | { VK_F22, WXK_F22 }, | |
5646 | { VK_F23, WXK_F23 }, | |
5647 | { VK_F24, WXK_F24 }, | |
5648 | ||
5649 | { VK_NUMLOCK, WXK_NUMLOCK }, | |
5650 | { VK_SCROLL, WXK_SCROLL }, | |
5651 | ||
5652 | #ifdef VK_APPS | |
5653 | { VK_LWIN, WXK_WINDOWS_LEFT }, | |
5654 | { VK_RWIN, WXK_WINDOWS_RIGHT }, | |
5655 | { VK_APPS, WXK_WINDOWS_MENU }, | |
5656 | #endif // VK_APPS defined | |
5657 | }; | |
5658 | ||
42e69d6b VZ |
5659 | // Returns 0 if was a normal ASCII value, not a special key. This indicates that |
5660 | // the key should be ignored by WM_KEYDOWN and processed by WM_CHAR instead. | |
d5c21b02 | 5661 | int wxCharCodeMSWToWX(int vk, WXLPARAM lParam) |
42e69d6b | 5662 | { |
d5c21b02 VZ |
5663 | // check the table first |
5664 | for ( size_t n = 0; n < WXSIZEOF(gs_specialKeys); n++ ) | |
5665 | { | |
5666 | if ( gs_specialKeys[n].vk == vk ) | |
5667 | return gs_specialKeys[n].wxk; | |
5668 | } | |
9c7df356 | 5669 | |
d5c21b02 VZ |
5670 | // keys requiring special handling |
5671 | int wxk; | |
5672 | switch ( vk ) | |
5673 | { | |
e77c5d96 VZ |
5674 | // the mapping for these keys may be incorrect on non-US keyboards so |
5675 | // maybe we shouldn't map them to ASCII values at all | |
d5c21b02 VZ |
5676 | case VK_OEM_1: wxk = ';'; break; |
5677 | case VK_OEM_PLUS: wxk = '+'; break; | |
5678 | case VK_OEM_COMMA: wxk = ','; break; | |
5679 | case VK_OEM_MINUS: wxk = '-'; break; | |
5680 | case VK_OEM_PERIOD: wxk = '.'; break; | |
5681 | case VK_OEM_2: wxk = '/'; break; | |
5682 | case VK_OEM_3: wxk = '~'; break; | |
5683 | case VK_OEM_4: wxk = '['; break; | |
5684 | case VK_OEM_5: wxk = '\\'; break; | |
5685 | case VK_OEM_6: wxk = ']'; break; | |
5686 | case VK_OEM_7: wxk = '\''; break; | |
702c4208 | 5687 | |
5004c3ad | 5688 | // handle extended keys |
413553cc | 5689 | case VK_PRIOR: |
d5c21b02 | 5690 | wxk = ChooseNormalOrExtended(lParam, WXK_NUMPAD_PAGEUP, WXK_PAGEUP); |
413553cc | 5691 | break; |
d5c21b02 | 5692 | |
413553cc | 5693 | case VK_NEXT: |
d5c21b02 | 5694 | wxk = ChooseNormalOrExtended(lParam, WXK_NUMPAD_PAGEDOWN, WXK_PAGEDOWN); |
413553cc | 5695 | break; |
d5c21b02 | 5696 | |
413553cc | 5697 | case VK_END: |
d5c21b02 | 5698 | wxk = ChooseNormalOrExtended(lParam, WXK_NUMPAD_END, WXK_END); |
413553cc | 5699 | break; |
d5c21b02 | 5700 | |
413553cc | 5701 | case VK_HOME: |
d5c21b02 | 5702 | wxk = ChooseNormalOrExtended(lParam, WXK_NUMPAD_HOME, WXK_HOME); |
413553cc | 5703 | break; |
d5c21b02 | 5704 | |
413553cc | 5705 | case VK_LEFT: |
d5c21b02 | 5706 | wxk = ChooseNormalOrExtended(lParam, WXK_NUMPAD_LEFT, WXK_LEFT); |
413553cc | 5707 | break; |
d5c21b02 | 5708 | |
413553cc | 5709 | case VK_UP: |
d5c21b02 | 5710 | wxk = ChooseNormalOrExtended(lParam, WXK_NUMPAD_UP, WXK_UP); |
413553cc | 5711 | break; |
d5c21b02 | 5712 | |
413553cc | 5713 | case VK_RIGHT: |
d5c21b02 | 5714 | wxk = ChooseNormalOrExtended(lParam, WXK_NUMPAD_RIGHT, WXK_RIGHT); |
413553cc | 5715 | break; |
d5c21b02 | 5716 | |
413553cc | 5717 | case VK_DOWN: |
d5c21b02 | 5718 | wxk = ChooseNormalOrExtended(lParam, WXK_NUMPAD_DOWN, WXK_DOWN); |
413553cc | 5719 | break; |
d5c21b02 | 5720 | |
413553cc | 5721 | case VK_INSERT: |
d5c21b02 | 5722 | wxk = ChooseNormalOrExtended(lParam, WXK_NUMPAD_INSERT, WXK_INSERT); |
413553cc | 5723 | break; |
d5c21b02 | 5724 | |
413553cc | 5725 | case VK_DELETE: |
d5c21b02 | 5726 | wxk = ChooseNormalOrExtended(lParam, WXK_NUMPAD_DELETE, WXK_DELETE); |
413553cc | 5727 | break; |
d5c21b02 | 5728 | |
ff792344 | 5729 | case VK_RETURN: |
ed5bc8f1 VZ |
5730 | // don't use ChooseNormalOrExtended() here as the keys are reversed |
5731 | // here: numpad enter is the extended one | |
d5c21b02 | 5732 | wxk = lParam && (lParam & (1 << 24)) ? WXK_NUMPAD_ENTER : WXK_RETURN; |
ff792344 VZ |
5733 | break; |
5734 | ||
f6bcfd97 | 5735 | default: |
d5c21b02 VZ |
5736 | wxk = 0; |
5737 | } | |
5738 | ||
5739 | return wxk; | |
5740 | } | |
5741 | ||
5742 | WXWORD wxCharCodeWXToMSW(int wxk, bool *isVirtual) | |
5743 | { | |
5744 | if ( isVirtual ) | |
5745 | *isVirtual = true; | |
5746 | ||
5747 | // check the table first | |
5748 | for ( size_t n = 0; n < WXSIZEOF(gs_specialKeys); n++ ) | |
5749 | { | |
5750 | if ( gs_specialKeys[n].wxk == wxk ) | |
5751 | return gs_specialKeys[n].vk; | |
5752 | } | |
5753 | ||
5754 | // and then check for special keys not included in the table | |
5755 | WXWORD vk; | |
5756 | switch ( wxk ) | |
5757 | { | |
71403278 VZ |
5758 | case WXK_PAGEUP: |
5759 | case WXK_NUMPAD_PAGEUP: | |
5760 | vk = VK_PRIOR; | |
5761 | break; | |
5762 | ||
5763 | case WXK_PAGEDOWN: | |
5764 | case WXK_NUMPAD_PAGEDOWN: | |
5765 | vk = VK_NEXT; | |
5766 | break; | |
5767 | ||
5768 | case WXK_END: | |
5769 | case WXK_NUMPAD_END: | |
5770 | vk = VK_END; | |
5771 | break; | |
5772 | ||
5773 | case WXK_HOME: | |
5774 | case WXK_NUMPAD_HOME: | |
5775 | vk = VK_HOME; | |
5776 | break; | |
5777 | ||
5778 | case WXK_LEFT: | |
5779 | case WXK_NUMPAD_LEFT: | |
5780 | vk = VK_LEFT; | |
5781 | break; | |
5782 | ||
5783 | case WXK_UP: | |
5784 | case WXK_NUMPAD_UP: | |
5785 | vk = VK_UP; | |
5786 | break; | |
5787 | ||
5788 | case WXK_RIGHT: | |
5789 | case WXK_NUMPAD_RIGHT: | |
5790 | vk = VK_RIGHT; | |
5791 | break; | |
5792 | ||
5793 | case WXK_DOWN: | |
5794 | case WXK_NUMPAD_DOWN: | |
5795 | vk = VK_DOWN; | |
5796 | break; | |
5797 | ||
5798 | case WXK_INSERT: | |
5799 | case WXK_NUMPAD_INSERT: | |
5800 | vk = VK_INSERT; | |
5801 | break; | |
5802 | ||
5803 | case WXK_DELETE: | |
5804 | case WXK_NUMPAD_DELETE: | |
5805 | vk = VK_DELETE; | |
5806 | break; | |
d5c21b02 VZ |
5807 | |
5808 | default: | |
5809 | if ( isVirtual ) | |
5810 | *isVirtual = false; | |
5811 | vk = (WXWORD)wxk; | |
42e69d6b | 5812 | break; |
2bda0e17 | 5813 | } |
d5c21b02 VZ |
5814 | |
5815 | return vk; | |
5816 | } | |
5817 | ||
b8f434e7 JS |
5818 | #ifndef SM_SWAPBUTTON |
5819 | #define SM_SWAPBUTTON 23 | |
5820 | #endif | |
5821 | ||
d5c21b02 VZ |
5822 | // small helper for wxGetKeyState() and wxGetMouseState() |
5823 | static inline bool wxIsKeyDown(WXWORD vk) | |
5824 | { | |
b8f434e7 JS |
5825 | switch (vk) |
5826 | { | |
5827 | case VK_LBUTTON: | |
f4322df6 | 5828 | if (GetSystemMetrics(SM_SWAPBUTTON)) vk = VK_RBUTTON; |
b8f434e7 JS |
5829 | break; |
5830 | case VK_RBUTTON: | |
5831 | if (GetSystemMetrics(SM_SWAPBUTTON)) vk = VK_LBUTTON; | |
5832 | break; | |
5833 | } | |
d5c21b02 VZ |
5834 | // the low order bit indicates whether the key was pressed since the last |
5835 | // call and the high order one indicates whether it is down right now and | |
5836 | // we only want that one | |
b8f434e7 | 5837 | return (GetAsyncKeyState(vk) & (1<<15)) != 0; |
2bda0e17 KB |
5838 | } |
5839 | ||
1751226c | 5840 | bool wxGetKeyState(wxKeyCode key) |
6ed892f3 | 5841 | { |
d5c21b02 VZ |
5842 | // although this does work under Windows, it is not supported under other |
5843 | // platforms so don't allow it, you must use wxGetMouseState() instead | |
5844 | wxASSERT_MSG( key != VK_LBUTTON && | |
5845 | key != VK_RBUTTON && | |
5846 | key != VK_MBUTTON, | |
5847 | wxT("can't use wxGetKeyState() for mouse buttons") ); | |
6ed892f3 | 5848 | |
d5c21b02 | 5849 | const WXWORD vk = wxCharCodeWXToMSW(key); |
44353523 | 5850 | |
d5c21b02 VZ |
5851 | // if the requested key is a LED key, return true if the led is pressed |
5852 | if ( key == WXK_NUMLOCK || key == WXK_CAPITAL || key == WXK_SCROLL ) | |
fdec2c05 | 5853 | { |
d5c21b02 VZ |
5854 | // low order bit means LED is highlighted and high order one means the |
5855 | // key is down; for compatibility with the other ports return true if | |
5856 | // either one is set | |
b8f434e7 | 5857 | return GetKeyState(vk) != 0; |
35bbb0c6 | 5858 | |
fdec2c05 | 5859 | } |
d5c21b02 | 5860 | else // normal key |
84c51ddf | 5861 | { |
d5c21b02 | 5862 | return wxIsKeyDown(vk); |
84c51ddf | 5863 | } |
6ed892f3 RN |
5864 | } |
5865 | ||
7dd40b6f RD |
5866 | |
5867 | wxMouseState wxGetMouseState() | |
5868 | { | |
5869 | wxMouseState ms; | |
5870 | POINT pt; | |
5871 | GetCursorPos( &pt ); | |
5872 | ||
5873 | ms.SetX(pt.x); | |
5874 | ms.SetY(pt.y); | |
d5c21b02 VZ |
5875 | ms.SetLeftDown(wxIsKeyDown(VK_LBUTTON)); |
5876 | ms.SetMiddleDown(wxIsKeyDown(VK_MBUTTON)); | |
5877 | ms.SetRightDown(wxIsKeyDown(VK_RBUTTON)); | |
2f68482e | 5878 | #ifdef wxHAS_XBUTTON |
01101e2d VZ |
5879 | ms.SetAux1Down(wxIsKeyDown(VK_XBUTTON1)); |
5880 | ms.SetAux2Down(wxIsKeyDown(VK_XBUTTON2)); | |
2f68482e | 5881 | #endif // wxHAS_XBUTTON |
dd28827a | 5882 | |
d5c21b02 VZ |
5883 | ms.SetControlDown(wxIsKeyDown(VK_CONTROL)); |
5884 | ms.SetShiftDown(wxIsKeyDown(VK_SHIFT)); | |
5885 | ms.SetAltDown(wxIsKeyDown(VK_MENU)); | |
7dd40b6f | 5886 | // ms.SetMetaDown(); |
dd28827a | 5887 | |
7dd40b6f RD |
5888 | return ms; |
5889 | } | |
5890 | ||
5891 | ||
42e69d6b | 5892 | wxWindow *wxGetActiveWindow() |
2bda0e17 | 5893 | { |
42e69d6b VZ |
5894 | HWND hWnd = GetActiveWindow(); |
5895 | if ( hWnd != 0 ) | |
2d0a075d | 5896 | { |
42e69d6b | 5897 | return wxFindWinFromHandle((WXHWND) hWnd); |
2d0a075d | 5898 | } |
42e69d6b | 5899 | return NULL; |
2bda0e17 KB |
5900 | } |
5901 | ||
8614c467 VZ |
5902 | extern wxWindow *wxGetWindowFromHWND(WXHWND hWnd) |
5903 | { | |
5904 | HWND hwnd = (HWND)hWnd; | |
5905 | ||
5906 | // For a radiobutton, we get the radiobox from GWL_USERDATA (which is set | |
5907 | // by code in msw/radiobox.cpp), for all the others we just search up the | |
5908 | // window hierarchy | |
5909 | wxWindow *win = (wxWindow *)NULL; | |
5910 | if ( hwnd ) | |
5911 | { | |
5912 | win = wxFindWinFromHandle((WXHWND)hwnd); | |
5913 | if ( !win ) | |
5914 | { | |
a2242341 | 5915 | #if wxUSE_RADIOBOX |
8614c467 VZ |
5916 | // native radiobuttons return DLGC_RADIOBUTTON here and for any |
5917 | // wxWindow class which overrides WM_GETDLGCODE processing to | |
5918 | // do it as well, win would be already non NULL | |
a2242341 | 5919 | if ( ::SendMessage(hwnd, WM_GETDLGCODE, 0, 0) & DLGC_RADIOBUTTON ) |
8614c467 | 5920 | { |
975b6bcf | 5921 | win = (wxWindow *)wxGetWindowUserData(hwnd); |
8614c467 | 5922 | } |
a2242341 VZ |
5923 | //else: it's a wxRadioButton, not a radiobutton from wxRadioBox |
5924 | #endif // wxUSE_RADIOBOX | |
5925 | ||
5926 | // spin control text buddy window should be mapped to spin ctrl | |
5927 | // itself so try it too | |
24ce4c18 | 5928 | #if wxUSE_SPINCTRL && !defined(__WXUNIVERSAL__) |
a2242341 VZ |
5929 | if ( !win ) |
5930 | { | |
5931 | win = wxSpinCtrl::GetSpinForTextCtrl((WXHWND)hwnd); | |
5932 | } | |
5933 | #endif // wxUSE_SPINCTRL | |
8614c467 | 5934 | } |
8614c467 VZ |
5935 | } |
5936 | ||
5937 | while ( hwnd && !win ) | |
5938 | { | |
761989ff VZ |
5939 | // this is a really ugly hack needed to avoid mistakenly returning the |
5940 | // parent frame wxWindow for the find/replace modeless dialog HWND - | |
5941 | // this, in turn, is needed to call IsDialogMessage() from | |
5942 | // wxApp::ProcessMessage() as for this we must return NULL from here | |
5943 | // | |
5944 | // FIXME: this is clearly not the best way to do it but I think we'll | |
5945 | // need to change HWND <-> wxWindow code more heavily than I can | |
5946 | // do it now to fix it | |
c67d6888 | 5947 | #ifndef __WXMICROWIN__ |
761989ff VZ |
5948 | if ( ::GetWindow(hwnd, GW_OWNER) ) |
5949 | { | |
5950 | // it's a dialog box, don't go upwards | |
5951 | break; | |
5952 | } | |
c67d6888 | 5953 | #endif |
761989ff | 5954 | |
8614c467 | 5955 | hwnd = ::GetParent(hwnd); |
761989ff | 5956 | win = wxFindWinFromHandle((WXHWND)hwnd); |
8614c467 VZ |
5957 | } |
5958 | ||
5959 | return win; | |
5960 | } | |
5961 | ||
7f0586ef | 5962 | #if !defined(__WXMICROWIN__) && !defined(__WXWINCE__) |
04ef50df | 5963 | |
42e69d6b VZ |
5964 | // Windows keyboard hook. Allows interception of e.g. F1, ESCAPE |
5965 | // in active frames and dialogs, regardless of where the focus is. | |
5966 | static HHOOK wxTheKeyboardHook = 0; | |
5967 | static FARPROC wxTheKeyboardHookProc = 0; | |
5968 | int APIENTRY _EXPORT | |
5969 | wxKeyboardHook(int nCode, WORD wParam, DWORD lParam); | |
2bda0e17 | 5970 | |
42e69d6b | 5971 | void wxSetKeyboardHook(bool doIt) |
2bda0e17 | 5972 | { |
42e69d6b | 5973 | if ( doIt ) |
2d0a075d | 5974 | { |
42e69d6b VZ |
5975 | wxTheKeyboardHookProc = MakeProcInstance((FARPROC) wxKeyboardHook, wxGetInstance()); |
5976 | wxTheKeyboardHook = SetWindowsHookEx(WH_KEYBOARD, (HOOKPROC) wxTheKeyboardHookProc, wxGetInstance(), | |
c7527e3f | 5977 | |
8614c467 | 5978 | GetCurrentThreadId() |
42e69d6b | 5979 | // (DWORD)GetCurrentProcess()); // This is another possibility. Which is right? |
8614c467 | 5980 | ); |
2d0a075d | 5981 | } |
2d0a075d | 5982 | else |
2d0a075d | 5983 | { |
42e69d6b | 5984 | UnhookWindowsHookEx(wxTheKeyboardHook); |
2d0a075d | 5985 | } |
2bda0e17 KB |
5986 | } |
5987 | ||
42e69d6b VZ |
5988 | int APIENTRY _EXPORT |
5989 | wxKeyboardHook(int nCode, WORD wParam, DWORD lParam) | |
2bda0e17 | 5990 | { |
42e69d6b VZ |
5991 | DWORD hiWord = HIWORD(lParam); |
5992 | if ( nCode != HC_NOREMOVE && ((hiWord & KF_UP) == 0) ) | |
43d811ea | 5993 | { |
ff792344 | 5994 | int id = wxCharCodeMSWToWX(wParam, lParam); |
32de7d24 | 5995 | if ( id != 0 ) |
43d811ea | 5996 | { |
42e69d6b VZ |
5997 | wxKeyEvent event(wxEVT_CHAR_HOOK); |
5998 | if ( (HIWORD(lParam) & KF_ALTDOWN) == KF_ALTDOWN ) | |
08158721 | 5999 | event.m_altDown = true; |
c085e333 | 6000 | |
687706f5 | 6001 | event.SetEventObject(NULL); |
42e69d6b | 6002 | event.m_keyCode = id; |
3f7bc32b VZ |
6003 | event.m_shiftDown = wxIsShiftDown(); |
6004 | event.m_controlDown = wxIsCtrlDown(); | |
f0b1ccde | 6005 | #ifndef __WXWINCE__ |
1bf77ee5 | 6006 | event.SetTimestamp(::GetMessageTime()); |
f0b1ccde | 6007 | #endif |
42e69d6b | 6008 | wxWindow *win = wxGetActiveWindow(); |
32de7d24 | 6009 | wxEvtHandler *handler; |
42e69d6b VZ |
6010 | if ( win ) |
6011 | { | |
32de7d24 VZ |
6012 | handler = win->GetEventHandler(); |
6013 | event.SetId(win->GetId()); | |
42e69d6b VZ |
6014 | } |
6015 | else | |
6016 | { | |
32de7d24 | 6017 | handler = wxTheApp; |
abb74e0f | 6018 | event.SetId(wxID_ANY); |
32de7d24 VZ |
6019 | } |
6020 | ||
6021 | if ( handler && handler->ProcessEvent(event) ) | |
6022 | { | |
6023 | // processed | |
6024 | return 1; | |
42e69d6b | 6025 | } |
43d811ea JS |
6026 | } |
6027 | } | |
32de7d24 | 6028 | |
42e69d6b | 6029 | return (int)CallNextHookEx(wxTheKeyboardHook, nCode, wParam, lParam); |
4fabb575 | 6030 | } |
cd4453e5 VZ |
6031 | |
6032 | #endif // !__WXMICROWIN__ | |
4fabb575 | 6033 | |
b2aef89b | 6034 | #ifdef __WXDEBUG__ |
4a712ba3 | 6035 | const wxChar *wxGetMessageName(int message) |
47cbd6da | 6036 | { |
42e69d6b VZ |
6037 | switch ( message ) |
6038 | { | |
4a712ba3 VZ |
6039 | case 0x0000: return wxT("WM_NULL"); |
6040 | case 0x0001: return wxT("WM_CREATE"); | |
6041 | case 0x0002: return wxT("WM_DESTROY"); | |
6042 | case 0x0003: return wxT("WM_MOVE"); | |
6043 | case 0x0005: return wxT("WM_SIZE"); | |
6044 | case 0x0006: return wxT("WM_ACTIVATE"); | |
6045 | case 0x0007: return wxT("WM_SETFOCUS"); | |
6046 | case 0x0008: return wxT("WM_KILLFOCUS"); | |
6047 | case 0x000A: return wxT("WM_ENABLE"); | |
6048 | case 0x000B: return wxT("WM_SETREDRAW"); | |
6049 | case 0x000C: return wxT("WM_SETTEXT"); | |
6050 | case 0x000D: return wxT("WM_GETTEXT"); | |
6051 | case 0x000E: return wxT("WM_GETTEXTLENGTH"); | |
6052 | case 0x000F: return wxT("WM_PAINT"); | |
6053 | case 0x0010: return wxT("WM_CLOSE"); | |
6054 | case 0x0011: return wxT("WM_QUERYENDSESSION"); | |
6055 | case 0x0012: return wxT("WM_QUIT"); | |
6056 | case 0x0013: return wxT("WM_QUERYOPEN"); | |
6057 | case 0x0014: return wxT("WM_ERASEBKGND"); | |
6058 | case 0x0015: return wxT("WM_SYSCOLORCHANGE"); | |
6059 | case 0x0016: return wxT("WM_ENDSESSION"); | |
6060 | case 0x0017: return wxT("WM_SYSTEMERROR"); | |
6061 | case 0x0018: return wxT("WM_SHOWWINDOW"); | |
6062 | case 0x0019: return wxT("WM_CTLCOLOR"); | |
6063 | case 0x001A: return wxT("WM_WININICHANGE"); | |
6064 | case 0x001B: return wxT("WM_DEVMODECHANGE"); | |
6065 | case 0x001C: return wxT("WM_ACTIVATEAPP"); | |
6066 | case 0x001D: return wxT("WM_FONTCHANGE"); | |
6067 | case 0x001E: return wxT("WM_TIMECHANGE"); | |
6068 | case 0x001F: return wxT("WM_CANCELMODE"); | |
6069 | case 0x0020: return wxT("WM_SETCURSOR"); | |
6070 | case 0x0021: return wxT("WM_MOUSEACTIVATE"); | |
6071 | case 0x0022: return wxT("WM_CHILDACTIVATE"); | |
6072 | case 0x0023: return wxT("WM_QUEUESYNC"); | |
6073 | case 0x0024: return wxT("WM_GETMINMAXINFO"); | |
6074 | case 0x0026: return wxT("WM_PAINTICON"); | |
6075 | case 0x0027: return wxT("WM_ICONERASEBKGND"); | |
6076 | case 0x0028: return wxT("WM_NEXTDLGCTL"); | |
6077 | case 0x002A: return wxT("WM_SPOOLERSTATUS"); | |
6078 | case 0x002B: return wxT("WM_DRAWITEM"); | |
6079 | case 0x002C: return wxT("WM_MEASUREITEM"); | |
6080 | case 0x002D: return wxT("WM_DELETEITEM"); | |
6081 | case 0x002E: return wxT("WM_VKEYTOITEM"); | |
6082 | case 0x002F: return wxT("WM_CHARTOITEM"); | |
6083 | case 0x0030: return wxT("WM_SETFONT"); | |
6084 | case 0x0031: return wxT("WM_GETFONT"); | |
6085 | case 0x0037: return wxT("WM_QUERYDRAGICON"); | |
6086 | case 0x0039: return wxT("WM_COMPAREITEM"); | |
6087 | case 0x0041: return wxT("WM_COMPACTING"); | |
6088 | case 0x0044: return wxT("WM_COMMNOTIFY"); | |
6089 | case 0x0046: return wxT("WM_WINDOWPOSCHANGING"); | |
6090 | case 0x0047: return wxT("WM_WINDOWPOSCHANGED"); | |
6091 | case 0x0048: return wxT("WM_POWER"); | |
6092 | ||
6093 | case 0x004A: return wxT("WM_COPYDATA"); | |
6094 | case 0x004B: return wxT("WM_CANCELJOURNAL"); | |
6095 | case 0x004E: return wxT("WM_NOTIFY"); | |
6096 | case 0x0050: return wxT("WM_INPUTLANGCHANGEREQUEST"); | |
6097 | case 0x0051: return wxT("WM_INPUTLANGCHANGE"); | |
6098 | case 0x0052: return wxT("WM_TCARD"); | |
6099 | case 0x0053: return wxT("WM_HELP"); | |
6100 | case 0x0054: return wxT("WM_USERCHANGED"); | |
6101 | case 0x0055: return wxT("WM_NOTIFYFORMAT"); | |
6102 | case 0x007B: return wxT("WM_CONTEXTMENU"); | |
6103 | case 0x007C: return wxT("WM_STYLECHANGING"); | |
6104 | case 0x007D: return wxT("WM_STYLECHANGED"); | |
6105 | case 0x007E: return wxT("WM_DISPLAYCHANGE"); | |
6106 | case 0x007F: return wxT("WM_GETICON"); | |
6107 | case 0x0080: return wxT("WM_SETICON"); | |
6108 | ||
6109 | case 0x0081: return wxT("WM_NCCREATE"); | |
6110 | case 0x0082: return wxT("WM_NCDESTROY"); | |
6111 | case 0x0083: return wxT("WM_NCCALCSIZE"); | |
6112 | case 0x0084: return wxT("WM_NCHITTEST"); | |
6113 | case 0x0085: return wxT("WM_NCPAINT"); | |
6114 | case 0x0086: return wxT("WM_NCACTIVATE"); | |
6115 | case 0x0087: return wxT("WM_GETDLGCODE"); | |
6116 | case 0x00A0: return wxT("WM_NCMOUSEMOVE"); | |
6117 | case 0x00A1: return wxT("WM_NCLBUTTONDOWN"); | |
6118 | case 0x00A2: return wxT("WM_NCLBUTTONUP"); | |
6119 | case 0x00A3: return wxT("WM_NCLBUTTONDBLCLK"); | |
6120 | case 0x00A4: return wxT("WM_NCRBUTTONDOWN"); | |
6121 | case 0x00A5: return wxT("WM_NCRBUTTONUP"); | |
6122 | case 0x00A6: return wxT("WM_NCRBUTTONDBLCLK"); | |
6123 | case 0x00A7: return wxT("WM_NCMBUTTONDOWN"); | |
6124 | case 0x00A8: return wxT("WM_NCMBUTTONUP"); | |
6125 | case 0x00A9: return wxT("WM_NCMBUTTONDBLCLK"); | |
609da8bb VZ |
6126 | |
6127 | case 0x00B0: return wxT("EM_GETSEL"); | |
6128 | case 0x00B1: return wxT("EM_SETSEL"); | |
6129 | case 0x00B2: return wxT("EM_GETRECT"); | |
6130 | case 0x00B3: return wxT("EM_SETRECT"); | |
6131 | case 0x00B4: return wxT("EM_SETRECTNP"); | |
6132 | case 0x00B5: return wxT("EM_SCROLL"); | |
6133 | case 0x00B6: return wxT("EM_LINESCROLL"); | |
6134 | case 0x00B7: return wxT("EM_SCROLLCARET"); | |
6135 | case 0x00B8: return wxT("EM_GETMODIFY"); | |
6136 | case 0x00B9: return wxT("EM_SETMODIFY"); | |
6137 | case 0x00BA: return wxT("EM_GETLINECOUNT"); | |
6138 | case 0x00BB: return wxT("EM_LINEINDEX"); | |
6139 | case 0x00BC: return wxT("EM_SETHANDLE"); | |
6140 | case 0x00BD: return wxT("EM_GETHANDLE"); | |
6141 | case 0x00BE: return wxT("EM_GETTHUMB"); | |
6142 | case 0x00C1: return wxT("EM_LINELENGTH"); | |
6143 | case 0x00C2: return wxT("EM_REPLACESEL"); | |
6144 | case 0x00C4: return wxT("EM_GETLINE"); | |
6145 | case 0x00C5: return wxT("EM_LIMITTEXT/EM_SETLIMITTEXT"); /* ;win40 Name change */ | |
6146 | case 0x00C6: return wxT("EM_CANUNDO"); | |
6147 | case 0x00C7: return wxT("EM_UNDO"); | |
6148 | case 0x00C8: return wxT("EM_FMTLINES"); | |
6149 | case 0x00C9: return wxT("EM_LINEFROMCHAR"); | |
6150 | case 0x00CB: return wxT("EM_SETTABSTOPS"); | |
6151 | case 0x00CC: return wxT("EM_SETPASSWORDCHAR"); | |
6152 | case 0x00CD: return wxT("EM_EMPTYUNDOBUFFER"); | |
6153 | case 0x00CE: return wxT("EM_GETFIRSTVISIBLELINE"); | |
6154 | case 0x00CF: return wxT("EM_SETREADONLY"); | |
6155 | case 0x00D0: return wxT("EM_SETWORDBREAKPROC"); | |
6156 | case 0x00D1: return wxT("EM_GETWORDBREAKPROC"); | |
6157 | case 0x00D2: return wxT("EM_GETPASSWORDCHAR"); | |
6158 | case 0x00D3: return wxT("EM_SETMARGINS"); | |
6159 | case 0x00D4: return wxT("EM_GETMARGINS"); | |
6160 | case 0x00D5: return wxT("EM_GETLIMITTEXT"); | |
6161 | case 0x00D6: return wxT("EM_POSFROMCHAR"); | |
6162 | case 0x00D7: return wxT("EM_CHARFROMPOS"); | |
6163 | case 0x00D8: return wxT("EM_SETIMESTATUS"); | |
6164 | case 0x00D9: return wxT("EM_GETIMESTATUS"); | |
6165 | ||
4a712ba3 VZ |
6166 | case 0x0100: return wxT("WM_KEYDOWN"); |
6167 | case 0x0101: return wxT("WM_KEYUP"); | |
6168 | case 0x0102: return wxT("WM_CHAR"); | |
6169 | case 0x0103: return wxT("WM_DEADCHAR"); | |
6170 | case 0x0104: return wxT("WM_SYSKEYDOWN"); | |
6171 | case 0x0105: return wxT("WM_SYSKEYUP"); | |
6172 | case 0x0106: return wxT("WM_SYSCHAR"); | |
6173 | case 0x0107: return wxT("WM_SYSDEADCHAR"); | |
6174 | case 0x0108: return wxT("WM_KEYLAST"); | |
6175 | ||
6176 | case 0x010D: return wxT("WM_IME_STARTCOMPOSITION"); | |
6177 | case 0x010E: return wxT("WM_IME_ENDCOMPOSITION"); | |
6178 | case 0x010F: return wxT("WM_IME_COMPOSITION"); | |
6179 | ||
6180 | case 0x0110: return wxT("WM_INITDIALOG"); | |
6181 | case 0x0111: return wxT("WM_COMMAND"); | |
6182 | case 0x0112: return wxT("WM_SYSCOMMAND"); | |
6183 | case 0x0113: return wxT("WM_TIMER"); | |
6184 | case 0x0114: return wxT("WM_HSCROLL"); | |
6185 | case 0x0115: return wxT("WM_VSCROLL"); | |
6186 | case 0x0116: return wxT("WM_INITMENU"); | |
6187 | case 0x0117: return wxT("WM_INITMENUPOPUP"); | |
6188 | case 0x011F: return wxT("WM_MENUSELECT"); | |
6189 | case 0x0120: return wxT("WM_MENUCHAR"); | |
6190 | case 0x0121: return wxT("WM_ENTERIDLE"); | |
609da8bb VZ |
6191 | |
6192 | case 0x0132: return wxT("WM_CTLCOLORMSGBOX"); | |
6193 | case 0x0133: return wxT("WM_CTLCOLOREDIT"); | |
6194 | case 0x0134: return wxT("WM_CTLCOLORLISTBOX"); | |
6195 | case 0x0135: return wxT("WM_CTLCOLORBTN"); | |
6196 | case 0x0136: return wxT("WM_CTLCOLORDLG"); | |
6197 | case 0x0137: return wxT("WM_CTLCOLORSCROLLBAR"); | |
6198 | case 0x0138: return wxT("WM_CTLCOLORSTATIC"); | |
6199 | case 0x01E1: return wxT("MN_GETHMENU"); | |
6200 | ||
4a712ba3 VZ |
6201 | case 0x0200: return wxT("WM_MOUSEMOVE"); |
6202 | case 0x0201: return wxT("WM_LBUTTONDOWN"); | |
6203 | case 0x0202: return wxT("WM_LBUTTONUP"); | |
6204 | case 0x0203: return wxT("WM_LBUTTONDBLCLK"); | |
6205 | case 0x0204: return wxT("WM_RBUTTONDOWN"); | |
6206 | case 0x0205: return wxT("WM_RBUTTONUP"); | |
6207 | case 0x0206: return wxT("WM_RBUTTONDBLCLK"); | |
6208 | case 0x0207: return wxT("WM_MBUTTONDOWN"); | |
6209 | case 0x0208: return wxT("WM_MBUTTONUP"); | |
6210 | case 0x0209: return wxT("WM_MBUTTONDBLCLK"); | |
6211 | case 0x020A: return wxT("WM_MOUSEWHEEL"); | |
01101e2d VZ |
6212 | case 0x020B: return wxT("WM_XBUTTONDOWN"); |
6213 | case 0x020C: return wxT("WM_XBUTTONUP"); | |
6214 | case 0x020D: return wxT("WM_XBUTTONDBLCLK"); | |
4a712ba3 VZ |
6215 | case 0x0210: return wxT("WM_PARENTNOTIFY"); |
6216 | case 0x0211: return wxT("WM_ENTERMENULOOP"); | |
6217 | case 0x0212: return wxT("WM_EXITMENULOOP"); | |
6218 | ||
6219 | case 0x0213: return wxT("WM_NEXTMENU"); | |
6220 | case 0x0214: return wxT("WM_SIZING"); | |
6221 | case 0x0215: return wxT("WM_CAPTURECHANGED"); | |
6222 | case 0x0216: return wxT("WM_MOVING"); | |
6223 | case 0x0218: return wxT("WM_POWERBROADCAST"); | |
6224 | case 0x0219: return wxT("WM_DEVICECHANGE"); | |
6225 | ||
6226 | case 0x0220: return wxT("WM_MDICREATE"); | |
6227 | case 0x0221: return wxT("WM_MDIDESTROY"); | |
6228 | case 0x0222: return wxT("WM_MDIACTIVATE"); | |
6229 | case 0x0223: return wxT("WM_MDIRESTORE"); | |
6230 | case 0x0224: return wxT("WM_MDINEXT"); | |
6231 | case 0x0225: return wxT("WM_MDIMAXIMIZE"); | |
6232 | case 0x0226: return wxT("WM_MDITILE"); | |
6233 | case 0x0227: return wxT("WM_MDICASCADE"); | |
6234 | case 0x0228: return wxT("WM_MDIICONARRANGE"); | |
6235 | case 0x0229: return wxT("WM_MDIGETACTIVE"); | |
6236 | case 0x0230: return wxT("WM_MDISETMENU"); | |
6237 | case 0x0233: return wxT("WM_DROPFILES"); | |
6238 | ||
6239 | case 0x0281: return wxT("WM_IME_SETCONTEXT"); | |
6240 | case 0x0282: return wxT("WM_IME_NOTIFY"); | |
6241 | case 0x0283: return wxT("WM_IME_CONTROL"); | |
6242 | case 0x0284: return wxT("WM_IME_COMPOSITIONFULL"); | |
6243 | case 0x0285: return wxT("WM_IME_SELECT"); | |
6244 | case 0x0286: return wxT("WM_IME_CHAR"); | |
6245 | case 0x0290: return wxT("WM_IME_KEYDOWN"); | |
6246 | case 0x0291: return wxT("WM_IME_KEYUP"); | |
6247 | ||
609da8bb VZ |
6248 | case 0x02A0: return wxT("WM_NCMOUSEHOVER"); |
6249 | case 0x02A1: return wxT("WM_MOUSEHOVER"); | |
6250 | case 0x02A2: return wxT("WM_NCMOUSELEAVE"); | |
6251 | case 0x02A3: return wxT("WM_MOUSELEAVE"); | |
6252 | ||
4a712ba3 VZ |
6253 | case 0x0300: return wxT("WM_CUT"); |
6254 | case 0x0301: return wxT("WM_COPY"); | |
6255 | case 0x0302: return wxT("WM_PASTE"); | |
6256 | case 0x0303: return wxT("WM_CLEAR"); | |
6257 | case 0x0304: return wxT("WM_UNDO"); | |
6258 | case 0x0305: return wxT("WM_RENDERFORMAT"); | |
6259 | case 0x0306: return wxT("WM_RENDERALLFORMATS"); | |
6260 | case 0x0307: return wxT("WM_DESTROYCLIPBOARD"); | |
6261 | case 0x0308: return wxT("WM_DRAWCLIPBOARD"); | |
6262 | case 0x0309: return wxT("WM_PAINTCLIPBOARD"); | |
6263 | case 0x030A: return wxT("WM_VSCROLLCLIPBOARD"); | |
6264 | case 0x030B: return wxT("WM_SIZECLIPBOARD"); | |
6265 | case 0x030C: return wxT("WM_ASKCBFORMATNAME"); | |
6266 | case 0x030D: return wxT("WM_CHANGECBCHAIN"); | |
6267 | case 0x030E: return wxT("WM_HSCROLLCLIPBOARD"); | |
6268 | case 0x030F: return wxT("WM_QUERYNEWPALETTE"); | |
6269 | case 0x0310: return wxT("WM_PALETTEISCHANGING"); | |
6270 | case 0x0311: return wxT("WM_PALETTECHANGED"); | |
4a712ba3 | 6271 | case 0x0312: return wxT("WM_HOTKEY"); |
609da8bb VZ |
6272 | |
6273 | case 0x0317: return wxT("WM_PRINT"); | |
6274 | case 0x0318: return wxT("WM_PRINTCLIENT"); | |
c085e333 | 6275 | |
2d0a075d JS |
6276 | // common controls messages - although they're not strictly speaking |
6277 | // standard, it's nice to decode them nevertheless | |
a02eb1d2 | 6278 | |
2d0a075d | 6279 | // listview |
4a712ba3 VZ |
6280 | case 0x1000 + 0: return wxT("LVM_GETBKCOLOR"); |
6281 | case 0x1000 + 1: return wxT("LVM_SETBKCOLOR"); | |
6282 | case 0x1000 + 2: return wxT("LVM_GETIMAGELIST"); | |
6283 | case 0x1000 + 3: return wxT("LVM_SETIMAGELIST"); | |
6284 | case 0x1000 + 4: return wxT("LVM_GETITEMCOUNT"); | |
6285 | case 0x1000 + 5: return wxT("LVM_GETITEMA"); | |
6286 | case 0x1000 + 75: return wxT("LVM_GETITEMW"); | |
6287 | case 0x1000 + 6: return wxT("LVM_SETITEMA"); | |
6288 | case 0x1000 + 76: return wxT("LVM_SETITEMW"); | |
6289 | case 0x1000 + 7: return wxT("LVM_INSERTITEMA"); | |
6290 | case 0x1000 + 77: return wxT("LVM_INSERTITEMW"); | |
6291 | case 0x1000 + 8: return wxT("LVM_DELETEITEM"); | |
6292 | case 0x1000 + 9: return wxT("LVM_DELETEALLITEMS"); | |
6293 | case 0x1000 + 10: return wxT("LVM_GETCALLBACKMASK"); | |
6294 | case 0x1000 + 11: return wxT("LVM_SETCALLBACKMASK"); | |
6295 | case 0x1000 + 12: return wxT("LVM_GETNEXTITEM"); | |
6296 | case 0x1000 + 13: return wxT("LVM_FINDITEMA"); | |
6297 | case 0x1000 + 83: return wxT("LVM_FINDITEMW"); | |
6298 | case 0x1000 + 14: return wxT("LVM_GETITEMRECT"); | |
6299 | case 0x1000 + 15: return wxT("LVM_SETITEMPOSITION"); | |
6300 | case 0x1000 + 16: return wxT("LVM_GETITEMPOSITION"); | |
6301 | case 0x1000 + 17: return wxT("LVM_GETSTRINGWIDTHA"); | |
6302 | case 0x1000 + 87: return wxT("LVM_GETSTRINGWIDTHW"); | |
6303 | case 0x1000 + 18: return wxT("LVM_HITTEST"); | |
6304 | case 0x1000 + 19: return wxT("LVM_ENSUREVISIBLE"); | |
6305 | case 0x1000 + 20: return wxT("LVM_SCROLL"); | |
6306 | case 0x1000 + 21: return wxT("LVM_REDRAWITEMS"); | |
6307 | case 0x1000 + 22: return wxT("LVM_ARRANGE"); | |
6308 | case 0x1000 + 23: return wxT("LVM_EDITLABELA"); | |
6309 | case 0x1000 + 118: return wxT("LVM_EDITLABELW"); | |
6310 | case 0x1000 + 24: return wxT("LVM_GETEDITCONTROL"); | |
6311 | case 0x1000 + 25: return wxT("LVM_GETCOLUMNA"); | |
6312 | case 0x1000 + 95: return wxT("LVM_GETCOLUMNW"); | |
6313 | case 0x1000 + 26: return wxT("LVM_SETCOLUMNA"); | |
6314 | case 0x1000 + 96: return wxT("LVM_SETCOLUMNW"); | |
6315 | case 0x1000 + 27: return wxT("LVM_INSERTCOLUMNA"); | |
6316 | case 0x1000 + 97: return wxT("LVM_INSERTCOLUMNW"); | |
6317 | case 0x1000 + 28: return wxT("LVM_DELETECOLUMN"); | |
6318 | case 0x1000 + 29: return wxT("LVM_GETCOLUMNWIDTH"); | |
6319 | case 0x1000 + 30: return wxT("LVM_SETCOLUMNWIDTH"); | |
6320 | case 0x1000 + 31: return wxT("LVM_GETHEADER"); | |
6321 | case 0x1000 + 33: return wxT("LVM_CREATEDRAGIMAGE"); | |
6322 | case 0x1000 + 34: return wxT("LVM_GETVIEWRECT"); | |
6323 | case 0x1000 + 35: return wxT("LVM_GETTEXTCOLOR"); | |
6324 | case 0x1000 + 36: return wxT("LVM_SETTEXTCOLOR"); | |
6325 | case 0x1000 + 37: return wxT("LVM_GETTEXTBKCOLOR"); | |
6326 | case 0x1000 + 38: return wxT("LVM_SETTEXTBKCOLOR"); | |
6327 | case 0x1000 + 39: return wxT("LVM_GETTOPINDEX"); | |
6328 | case 0x1000 + 40: return wxT("LVM_GETCOUNTPERPAGE"); | |
6329 | case 0x1000 + 41: return wxT("LVM_GETORIGIN"); | |
6330 | case 0x1000 + 42: return wxT("LVM_UPDATE"); | |
6331 | case 0x1000 + 43: return wxT("LVM_SETITEMSTATE"); | |
6332 | case 0x1000 + 44: return wxT("LVM_GETITEMSTATE"); | |
6333 | case 0x1000 + 45: return wxT("LVM_GETITEMTEXTA"); | |
6334 | case 0x1000 + 115: return wxT("LVM_GETITEMTEXTW"); | |
6335 | case 0x1000 + 46: return wxT("LVM_SETITEMTEXTA"); | |
6336 | case 0x1000 + 116: return wxT("LVM_SETITEMTEXTW"); | |
6337 | case 0x1000 + 47: return wxT("LVM_SETITEMCOUNT"); | |
6338 | case 0x1000 + 48: return wxT("LVM_SORTITEMS"); | |
6339 | case 0x1000 + 49: return wxT("LVM_SETITEMPOSITION32"); | |
6340 | case 0x1000 + 50: return wxT("LVM_GETSELECTEDCOUNT"); | |
6341 | case 0x1000 + 51: return wxT("LVM_GETITEMSPACING"); | |
6342 | case 0x1000 + 52: return wxT("LVM_GETISEARCHSTRINGA"); | |
6343 | case 0x1000 + 117: return wxT("LVM_GETISEARCHSTRINGW"); | |
6344 | case 0x1000 + 53: return wxT("LVM_SETICONSPACING"); | |
6345 | case 0x1000 + 54: return wxT("LVM_SETEXTENDEDLISTVIEWSTYLE"); | |
6346 | case 0x1000 + 55: return wxT("LVM_GETEXTENDEDLISTVIEWSTYLE"); | |
6347 | case 0x1000 + 56: return wxT("LVM_GETSUBITEMRECT"); | |
6348 | case 0x1000 + 57: return wxT("LVM_SUBITEMHITTEST"); | |
6349 | case 0x1000 + 58: return wxT("LVM_SETCOLUMNORDERARRAY"); | |
6350 | case 0x1000 + 59: return wxT("LVM_GETCOLUMNORDERARRAY"); | |
6351 | case 0x1000 + 60: return wxT("LVM_SETHOTITEM"); | |
6352 | case 0x1000 + 61: return wxT("LVM_GETHOTITEM"); | |
6353 | case 0x1000 + 62: return wxT("LVM_SETHOTCURSOR"); | |
6354 | case 0x1000 + 63: return wxT("LVM_GETHOTCURSOR"); | |
6355 | case 0x1000 + 64: return wxT("LVM_APPROXIMATEVIEWRECT"); | |
6356 | case 0x1000 + 65: return wxT("LVM_SETWORKAREA"); | |
c085e333 | 6357 | |
2d0a075d | 6358 | // tree view |
4a712ba3 VZ |
6359 | case 0x1100 + 0: return wxT("TVM_INSERTITEMA"); |
6360 | case 0x1100 + 50: return wxT("TVM_INSERTITEMW"); | |
6361 | case 0x1100 + 1: return wxT("TVM_DELETEITEM"); | |
6362 | case 0x1100 + 2: return wxT("TVM_EXPAND"); | |
6363 | case 0x1100 + 4: return wxT("TVM_GETITEMRECT"); | |
6364 | case 0x1100 + 5: return wxT("TVM_GETCOUNT"); | |
6365 | case 0x1100 + 6: return wxT("TVM_GETINDENT"); | |
6366 | case 0x1100 + 7: return wxT("TVM_SETINDENT"); | |
6367 | case 0x1100 + 8: return wxT("TVM_GETIMAGELIST"); | |
6368 | case 0x1100 + 9: return wxT("TVM_SETIMAGELIST"); | |
6369 | case 0x1100 + 10: return wxT("TVM_GETNEXTITEM"); | |
6370 | case 0x1100 + 11: return wxT("TVM_SELECTITEM"); | |
6371 | case 0x1100 + 12: return wxT("TVM_GETITEMA"); | |
6372 | case 0x1100 + 62: return wxT("TVM_GETITEMW"); | |
6373 | case 0x1100 + 13: return wxT("TVM_SETITEMA"); | |
6374 | case 0x1100 + 63: return wxT("TVM_SETITEMW"); | |
6375 | case 0x1100 + 14: return wxT("TVM_EDITLABELA"); | |
6376 | case 0x1100 + 65: return wxT("TVM_EDITLABELW"); | |
6377 | case 0x1100 + 15: return wxT("TVM_GETEDITCONTROL"); | |
6378 | case 0x1100 + 16: return wxT("TVM_GETVISIBLECOUNT"); | |
6379 | case 0x1100 + 17: return wxT("TVM_HITTEST"); | |
6380 | case 0x1100 + 18: return wxT("TVM_CREATEDRAGIMAGE"); | |
6381 | case 0x1100 + 19: return wxT("TVM_SORTCHILDREN"); | |
6382 | case 0x1100 + 20: return wxT("TVM_ENSUREVISIBLE"); | |
6383 | case 0x1100 + 21: return wxT("TVM_SORTCHILDRENCB"); | |
6384 | case 0x1100 + 22: return wxT("TVM_ENDEDITLABELNOW"); | |
6385 | case 0x1100 + 23: return wxT("TVM_GETISEARCHSTRINGA"); | |
6386 | case 0x1100 + 64: return wxT("TVM_GETISEARCHSTRINGW"); | |
6387 | case 0x1100 + 24: return wxT("TVM_SETTOOLTIPS"); | |
6388 | case 0x1100 + 25: return wxT("TVM_GETTOOLTIPS"); | |
c085e333 | 6389 | |
2d0a075d | 6390 | // header |
4a712ba3 VZ |
6391 | case 0x1200 + 0: return wxT("HDM_GETITEMCOUNT"); |
6392 | case 0x1200 + 1: return wxT("HDM_INSERTITEMA"); | |
6393 | case 0x1200 + 10: return wxT("HDM_INSERTITEMW"); | |
6394 | case 0x1200 + 2: return wxT("HDM_DELETEITEM"); | |
6395 | case 0x1200 + 3: return wxT("HDM_GETITEMA"); | |
6396 | case 0x1200 + 11: return wxT("HDM_GETITEMW"); | |
6397 | case 0x1200 + 4: return wxT("HDM_SETITEMA"); | |
6398 | case 0x1200 + 12: return wxT("HDM_SETITEMW"); | |
6399 | case 0x1200 + 5: return wxT("HDM_LAYOUT"); | |
6400 | case 0x1200 + 6: return wxT("HDM_HITTEST"); | |
6401 | case 0x1200 + 7: return wxT("HDM_GETITEMRECT"); | |
6402 | case 0x1200 + 8: return wxT("HDM_SETIMAGELIST"); | |
6403 | case 0x1200 + 9: return wxT("HDM_GETIMAGELIST"); | |
6404 | case 0x1200 + 15: return wxT("HDM_ORDERTOINDEX"); | |
6405 | case 0x1200 + 16: return wxT("HDM_CREATEDRAGIMAGE"); | |
6406 | case 0x1200 + 17: return wxT("HDM_GETORDERARRAY"); | |
6407 | case 0x1200 + 18: return wxT("HDM_SETORDERARRAY"); | |
6408 | case 0x1200 + 19: return wxT("HDM_SETHOTDIVIDER"); | |
c085e333 | 6409 | |
2d0a075d | 6410 | // tab control |
4a712ba3 VZ |
6411 | case 0x1300 + 2: return wxT("TCM_GETIMAGELIST"); |
6412 | case 0x1300 + 3: return wxT("TCM_SETIMAGELIST"); | |
6413 | case 0x1300 + 4: return wxT("TCM_GETITEMCOUNT"); | |
6414 | case 0x1300 + 5: return wxT("TCM_GETITEMA"); | |
6415 | case 0x1300 + 60: return wxT("TCM_GETITEMW"); | |
6416 | case 0x1300 + 6: return wxT("TCM_SETITEMA"); | |
6417 | case 0x1300 + 61: return wxT("TCM_SETITEMW"); | |
6418 | case 0x1300 + 7: return wxT("TCM_INSERTITEMA"); | |
6419 | case 0x1300 + 62: return wxT("TCM_INSERTITEMW"); | |
6420 | case 0x1300 + 8: return wxT("TCM_DELETEITEM"); | |
6421 | case 0x1300 + 9: return wxT("TCM_DELETEALLITEMS"); | |
6422 | case 0x1300 + 10: return wxT("TCM_GETITEMRECT"); | |
6423 | case 0x1300 + 11: return wxT("TCM_GETCURSEL"); | |
6424 | case 0x1300 + 12: return wxT("TCM_SETCURSEL"); | |
6425 | case 0x1300 + 13: return wxT("TCM_HITTEST"); | |
6426 | case 0x1300 + 14: return wxT("TCM_SETITEMEXTRA"); | |
6427 | case 0x1300 + 40: return wxT("TCM_ADJUSTRECT"); | |
6428 | case 0x1300 + 41: return wxT("TCM_SETITEMSIZE"); | |
6429 | case 0x1300 + 42: return wxT("TCM_REMOVEIMAGE"); | |
6430 | case 0x1300 + 43: return wxT("TCM_SETPADDING"); | |
6431 | case 0x1300 + 44: return wxT("TCM_GETROWCOUNT"); | |
6432 | case 0x1300 + 45: return wxT("TCM_GETTOOLTIPS"); | |
6433 | case 0x1300 + 46: return wxT("TCM_SETTOOLTIPS"); | |
6434 | case 0x1300 + 47: return wxT("TCM_GETCURFOCUS"); | |
6435 | case 0x1300 + 48: return wxT("TCM_SETCURFOCUS"); | |
6436 | case 0x1300 + 49: return wxT("TCM_SETMINTABWIDTH"); | |
6437 | case 0x1300 + 50: return wxT("TCM_DESELECTALL"); | |
c085e333 | 6438 | |
2d0a075d | 6439 | // toolbar |
4a712ba3 VZ |
6440 | case WM_USER+1: return wxT("TB_ENABLEBUTTON"); |
6441 | case WM_USER+2: return wxT("TB_CHECKBUTTON"); | |
6442 | case WM_USER+3: return wxT("TB_PRESSBUTTON"); | |
6443 | case WM_USER+4: return wxT("TB_HIDEBUTTON"); | |
6444 | case WM_USER+5: return wxT("TB_INDETERMINATE"); | |
6445 | case WM_USER+9: return wxT("TB_ISBUTTONENABLED"); | |
6446 | case WM_USER+10: return wxT("TB_ISBUTTONCHECKED"); | |
6447 | case WM_USER+11: return wxT("TB_ISBUTTONPRESSED"); | |
6448 | case WM_USER+12: return wxT("TB_ISBUTTONHIDDEN"); | |
6449 | case WM_USER+13: return wxT("TB_ISBUTTONINDETERMINATE"); | |
6450 | case WM_USER+17: return wxT("TB_SETSTATE"); | |
6451 | case WM_USER+18: return wxT("TB_GETSTATE"); | |
6452 | case WM_USER+19: return wxT("TB_ADDBITMAP"); | |
6453 | case WM_USER+20: return wxT("TB_ADDBUTTONS"); | |
6454 | case WM_USER+21: return wxT("TB_INSERTBUTTON"); | |
6455 | case WM_USER+22: return wxT("TB_DELETEBUTTON"); | |
6456 | case WM_USER+23: return wxT("TB_GETBUTTON"); | |
6457 | case WM_USER+24: return wxT("TB_BUTTONCOUNT"); | |
6458 | case WM_USER+25: return wxT("TB_COMMANDTOINDEX"); | |
6459 | case WM_USER+26: return wxT("TB_SAVERESTOREA"); | |
6460 | case WM_USER+76: return wxT("TB_SAVERESTOREW"); | |
6461 | case WM_USER+27: return wxT("TB_CUSTOMIZE"); | |
6462 | case WM_USER+28: return wxT("TB_ADDSTRINGA"); | |
6463 | case WM_USER+77: return wxT("TB_ADDSTRINGW"); | |
6464 | case WM_USER+29: return wxT("TB_GETITEMRECT"); | |
6465 | case WM_USER+30: return wxT("TB_BUTTONSTRUCTSIZE"); | |
6466 | case WM_USER+31: return wxT("TB_SETBUTTONSIZE"); | |
6467 | case WM_USER+32: return wxT("TB_SETBITMAPSIZE"); | |
6468 | case WM_USER+33: return wxT("TB_AUTOSIZE"); | |
6469 | case WM_USER+35: return wxT("TB_GETTOOLTIPS"); | |
6470 | case WM_USER+36: return wxT("TB_SETTOOLTIPS"); | |
6471 | case WM_USER+37: return wxT("TB_SETPARENT"); | |
6472 | case WM_USER+39: return wxT("TB_SETROWS"); | |
6473 | case WM_USER+40: return wxT("TB_GETROWS"); | |
6474 | case WM_USER+42: return wxT("TB_SETCMDID"); | |
6475 | case WM_USER+43: return wxT("TB_CHANGEBITMAP"); | |
6476 | case WM_USER+44: return wxT("TB_GETBITMAP"); | |
6477 | case WM_USER+45: return wxT("TB_GETBUTTONTEXTA"); | |
6478 | case WM_USER+75: return wxT("TB_GETBUTTONTEXTW"); | |
6479 | case WM_USER+46: return wxT("TB_REPLACEBITMAP"); | |
6480 | case WM_USER+47: return wxT("TB_SETINDENT"); | |
6481 | case WM_USER+48: return wxT("TB_SETIMAGELIST"); | |
6482 | case WM_USER+49: return wxT("TB_GETIMAGELIST"); | |
6483 | case WM_USER+50: return wxT("TB_LOADIMAGES"); | |
6484 | case WM_USER+51: return wxT("TB_GETRECT"); | |
6485 | case WM_USER+52: return wxT("TB_SETHOTIMAGELIST"); | |
6486 | case WM_USER+53: return wxT("TB_GETHOTIMAGELIST"); | |
6487 | case WM_USER+54: return wxT("TB_SETDISABLEDIMAGELIST"); | |
6488 | case WM_USER+55: return wxT("TB_GETDISABLEDIMAGELIST"); | |
6489 | case WM_USER+56: return wxT("TB_SETSTYLE"); | |
6490 | case WM_USER+57: return wxT("TB_GETSTYLE"); | |
6491 | case WM_USER+58: return wxT("TB_GETBUTTONSIZE"); | |
6492 | case WM_USER+59: return wxT("TB_SETBUTTONWIDTH"); | |
6493 | case WM_USER+60: return wxT("TB_SETMAXTEXTROWS"); | |
6494 | case WM_USER+61: return wxT("TB_GETTEXTROWS"); | |
6495 | case WM_USER+41: return wxT("TB_GETBITMAPFLAGS"); | |
c085e333 | 6496 | |
42e69d6b | 6497 | default: |
4a712ba3 VZ |
6498 | static wxString s_szBuf; |
6499 | s_szBuf.Printf(wxT("<unknown message = %d>"), message); | |
6500 | return s_szBuf.c_str(); | |
42e69d6b | 6501 | } |
47cbd6da | 6502 | } |
ea57084d | 6503 | #endif //__WXDEBUG__ |
4aff28fc | 6504 | |
1e6feb95 | 6505 | static TEXTMETRIC wxGetTextMetrics(const wxWindowMSW *win) |
f6bcfd97 BP |
6506 | { |
6507 | // prepare the DC | |
6508 | TEXTMETRIC tm; | |
6509 | HWND hwnd = GetHwndOf(win); | |
6510 | HDC hdc = ::GetDC(hwnd); | |
6511 | ||
6512 | #if !wxDIALOG_UNIT_COMPATIBILITY | |
6513 | // and select the current font into it | |
6514 | HFONT hfont = GetHfontOf(win->GetFont()); | |
6515 | if ( hfont ) | |
6516 | { | |
6517 | hfont = (HFONT)::SelectObject(hdc, hfont); | |
6518 | } | |
6519 | #endif | |
6520 | ||
6521 | // finally retrieve the text metrics from it | |
6522 | GetTextMetrics(hdc, &tm); | |
6523 | ||
6524 | #if !wxDIALOG_UNIT_COMPATIBILITY | |
6525 | // and clean up | |
6526 | if ( hfont ) | |
6527 | { | |
6528 | (void)::SelectObject(hdc, hfont); | |
6529 | } | |
6530 | #endif | |
6531 | ||
6532 | ::ReleaseDC(hwnd, hdc); | |
6533 | ||
6534 | return tm; | |
6535 | } | |
3723b7b1 JS |
6536 | |
6537 | // Find the wxWindow at the current mouse position, returning the mouse | |
6538 | // position. | |
2b5f62a0 | 6539 | wxWindow* wxFindWindowAtPointer(wxPoint& pt) |
3723b7b1 | 6540 | { |
2b5f62a0 VZ |
6541 | pt = wxGetMousePosition(); |
6542 | return wxFindWindowAtPoint(pt); | |
57591e0e JS |
6543 | } |
6544 | ||
6545 | wxWindow* wxFindWindowAtPoint(const wxPoint& pt) | |
6546 | { | |
6547 | POINT pt2; | |
6548 | pt2.x = pt.x; | |
6549 | pt2.y = pt.y; | |
3723b7b1 | 6550 | |
ab3eae34 | 6551 | HWND hWnd = ::WindowFromPoint(pt2); |
3723b7b1 | 6552 | |
ab3eae34 | 6553 | return wxGetWindowFromHWND((WXHWND)hWnd); |
3723b7b1 JS |
6554 | } |
6555 | ||
6556 | // Get the current mouse position. | |
6557 | wxPoint wxGetMousePosition() | |
6558 | { | |
1772ead0 | 6559 | POINT pt; |
f2325516 JS |
6560 | #ifdef __WXWINCE__ |
6561 | GetCursorPosWinCE(&pt); | |
6562 | #else | |
1772ead0 | 6563 | GetCursorPos( & pt ); |
f2325516 | 6564 | #endif |
5cd16c0c | 6565 | |
1772ead0 | 6566 | return wxPoint(pt.x, pt.y); |
3723b7b1 JS |
6567 | } |
6568 | ||
5048c832 | 6569 | #if wxUSE_HOTKEY |
540b6b09 | 6570 | |
afafd942 JS |
6571 | #if defined(__SMARTPHONE__) || defined(__POCKETPC__) |
6572 | static void WinCEUnregisterHotKey(int modifiers, int id) | |
6573 | { | |
6574 | // Register hotkeys for the hardware buttons | |
6575 | HINSTANCE hCoreDll; | |
6576 | typedef BOOL (WINAPI *UnregisterFunc1Proc)(UINT, UINT); | |
6577 | ||
6578 | UnregisterFunc1Proc procUnregisterFunc; | |
6579 | hCoreDll = LoadLibrary(_T("coredll.dll")); | |
6580 | if (hCoreDll) | |
6581 | { | |
6582 | procUnregisterFunc = (UnregisterFunc1Proc)GetProcAddress(hCoreDll, _T("UnregisterFunc1")); | |
6583 | if (procUnregisterFunc) | |
6584 | procUnregisterFunc(modifiers, id); | |
6585 | FreeLibrary(hCoreDll); | |
6586 | } | |
6587 | } | |
6588 | #endif | |
6589 | ||
540b6b09 | 6590 | bool wxWindowMSW::RegisterHotKey(int hotkeyId, int modifiers, int keycode) |
5048c832 JS |
6591 | { |
6592 | UINT win_modifiers=0; | |
540b6b09 VZ |
6593 | if ( modifiers & wxMOD_ALT ) |
6594 | win_modifiers |= MOD_ALT; | |
6595 | if ( modifiers & wxMOD_SHIFT ) | |
6596 | win_modifiers |= MOD_SHIFT; | |
6597 | if ( modifiers & wxMOD_CONTROL ) | |
6598 | win_modifiers |= MOD_CONTROL; | |
6599 | if ( modifiers & wxMOD_WIN ) | |
6600 | win_modifiers |= MOD_WIN; | |
6601 | ||
afafd942 JS |
6602 | #if defined(__SMARTPHONE__) || defined(__POCKETPC__) |
6603 | // Required for PPC and Smartphone hardware buttons | |
6604 | if (keycode >= WXK_SPECIAL1 && keycode <= WXK_SPECIAL20) | |
6605 | WinCEUnregisterHotKey(win_modifiers, hotkeyId); | |
6606 | #endif | |
6607 | ||
540b6b09 VZ |
6608 | if ( !::RegisterHotKey(GetHwnd(), hotkeyId, win_modifiers, keycode) ) |
6609 | { | |
6610 | wxLogLastError(_T("RegisterHotKey")); | |
5048c832 | 6611 | |
08158721 | 6612 | return false; |
540b6b09 VZ |
6613 | } |
6614 | ||
08158721 | 6615 | return true; |
5048c832 JS |
6616 | } |
6617 | ||
6618 | bool wxWindowMSW::UnregisterHotKey(int hotkeyId) | |
6619 | { | |
afafd942 JS |
6620 | #if defined(__SMARTPHONE__) || defined(__POCKETPC__) |
6621 | WinCEUnregisterHotKey(MOD_WIN, hotkeyId); | |
6622 | #endif | |
6623 | ||
540b6b09 VZ |
6624 | if ( !::UnregisterHotKey(GetHwnd(), hotkeyId) ) |
6625 | { | |
6626 | wxLogLastError(_T("UnregisterHotKey")); | |
6627 | ||
08158721 | 6628 | return false; |
540b6b09 VZ |
6629 | } |
6630 | ||
08158721 | 6631 | return true; |
5048c832 JS |
6632 | } |
6633 | ||
0b4f47a3 DS |
6634 | #if wxUSE_ACCEL |
6635 | ||
5048c832 JS |
6636 | bool wxWindowMSW::HandleHotKey(WXWPARAM wParam, WXLPARAM lParam) |
6637 | { | |
540b6b09 VZ |
6638 | int hotkeyId = wParam; |
6639 | int virtualKey = HIWORD(lParam); | |
6640 | int win_modifiers = LOWORD(lParam); | |
6641 | ||
5048c832 JS |
6642 | wxKeyEvent event(CreateKeyEvent(wxEVT_HOTKEY, virtualKey, wParam, lParam)); |
6643 | event.SetId(hotkeyId); | |
6644 | event.m_shiftDown = (win_modifiers & MOD_SHIFT) != 0; | |
6645 | event.m_controlDown = (win_modifiers & MOD_CONTROL) != 0; | |
6646 | event.m_altDown = (win_modifiers & MOD_ALT) != 0; | |
6647 | event.m_metaDown = (win_modifiers & MOD_WIN) != 0; | |
540b6b09 VZ |
6648 | |
6649 | return GetEventHandler()->ProcessEvent(event); | |
5048c832 | 6650 | } |
540b6b09 | 6651 | |
0b4f47a3 DS |
6652 | #endif // wxUSE_ACCEL |
6653 | ||
540b6b09 | 6654 | #endif // wxUSE_HOTKEY |
5048c832 | 6655 | |
550049c2 | 6656 | // Not tested under WinCE |
d79df32c | 6657 | #ifndef __WXWINCE__ |
d79df32c | 6658 | |
550049c2 VZ |
6659 | // this class installs a message hook which really wakes up our idle processing |
6660 | // each time a WM_NULL is received (wxWakeUpIdle does this), even if we're | |
6661 | // sitting inside a local modal loop (e.g. a menu is opened or scrollbar is | |
6662 | // being dragged or even inside ::MessageBox()) and so don't control message | |
6663 | // dispatching otherwise | |
6664 | class wxIdleWakeUpModule : public wxModule | |
6665 | { | |
d79df32c | 6666 | public: |
3a3c8603 | 6667 | virtual bool OnInit() |
550049c2 | 6668 | { |
3a3c8603 | 6669 | ms_hMsgHookProc = ::SetWindowsHookEx |
550049c2 VZ |
6670 | ( |
6671 | WH_GETMESSAGE, | |
6672 | &wxIdleWakeUpModule::MsgHookProc, | |
6673 | NULL, | |
6674 | GetCurrentThreadId() | |
6675 | ); | |
d79df32c | 6676 | |
550049c2 VZ |
6677 | if ( !ms_hMsgHookProc ) |
6678 | { | |
6679 | wxLogLastError(_T("SetWindowsHookEx(WH_GETMESSAGE)")); | |
6680 | ||
6681 | return false; | |
6682 | } | |
6683 | ||
6684 | return true; | |
3a3c8603 | 6685 | } |
550049c2 | 6686 | |
3a3c8603 | 6687 | virtual void OnExit() |
550049c2 | 6688 | { |
3a3c8603 DS |
6689 | ::UnhookWindowsHookEx(wxIdleWakeUpModule::ms_hMsgHookProc); |
6690 | } | |
550049c2 | 6691 | |
3a3c8603 | 6692 | static LRESULT CALLBACK MsgHookProc(int nCode, WPARAM wParam, LPARAM lParam) |
550049c2 | 6693 | { |
3a3c8603 | 6694 | MSG *msg = (MSG*)lParam; |
34ea3c74 VZ |
6695 | |
6696 | // only process the message if it is actually going to be removed from | |
6697 | // the message queue, this prevents that the same event from being | |
6698 | // processed multiple times if now someone just called PeekMessage() | |
6699 | if ( msg->message == WM_NULL && wParam == PM_REMOVE ) | |
3a3c8603 | 6700 | { |
550049c2 | 6701 | wxTheApp->ProcessPendingEvents(); |
3a3c8603 | 6702 | } |
550049c2 | 6703 | |
3a3c8603 | 6704 | return CallNextHookEx(ms_hMsgHookProc, nCode, wParam, lParam); |
47b378bd | 6705 | } |
550049c2 | 6706 | |
d79df32c | 6707 | private: |
3a3c8603 | 6708 | static HHOOK ms_hMsgHookProc; |
550049c2 VZ |
6709 | |
6710 | DECLARE_DYNAMIC_CLASS(wxIdleWakeUpModule) | |
d79df32c | 6711 | }; |
d79df32c | 6712 | |
550049c2 VZ |
6713 | HHOOK wxIdleWakeUpModule::ms_hMsgHookProc = 0; |
6714 | ||
6715 | IMPLEMENT_DYNAMIC_CLASS(wxIdleWakeUpModule, wxModule) | |
6716 | ||
6717 | #endif // __WXWINCE__ | |
3a3c8603 | 6718 | |
d26e1ab2 JS |
6719 | #ifdef __WXWINCE__ |
6720 | ||
6721 | #if wxUSE_STATBOX | |
6722 | static void wxAdjustZOrder(wxWindow* parent) | |
6723 | { | |
6724 | if (parent->IsKindOf(CLASSINFO(wxStaticBox))) | |
6725 | { | |
6726 | // Set the z-order correctly | |
6727 | SetWindowPos((HWND) parent->GetHWND(), HWND_BOTTOM, 0, 0, 0, 0, SWP_NOMOVE|SWP_NOSIZE); | |
6728 | } | |
35bbb0c6 | 6729 | |
d26e1ab2 JS |
6730 | wxWindowList::compatibility_iterator current = parent->GetChildren().GetFirst(); |
6731 | while (current) | |
6732 | { | |
6733 | wxWindow *childWin = current->GetData(); | |
6734 | wxAdjustZOrder(childWin); | |
6735 | current = current->GetNext(); | |
6736 | } | |
6737 | } | |
6738 | #endif | |
6739 | ||
6740 | // We need to adjust the z-order of static boxes in WinCE, to | |
6741 | // make 'contained' controls visible | |
6742 | void wxWindowMSW::OnInitDialog( wxInitDialogEvent& event ) | |
6743 | { | |
6744 | #if wxUSE_STATBOX | |
6745 | wxAdjustZOrder(this); | |
6746 | #endif | |
35bbb0c6 | 6747 | |
d26e1ab2 JS |
6748 | event.Skip(); |
6749 | } | |
6750 | #endif |