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