]>
Commit | Line | Data |
---|---|---|
2bda0e17 | 1 | ///////////////////////////////////////////////////////////////////////////// |
1e6feb95 | 2 | // Name: wx/msw/window.h |
faa49bfd | 3 | // Purpose: wxWindowMSW class |
2bda0e17 | 4 | // Author: Julian Smart |
1e6feb95 VZ |
5 | // Modified by: Vadim Zeitlin on 13.05.99: complete refont of message handling, |
6 | // elimination of Default(), ... | |
2bda0e17 KB |
7 | // Created: 01/02/97 |
8 | // RCS-ID: $Id$ | |
371a5b4e | 9 | // Copyright: (c) Julian Smart |
65571936 | 10 | // Licence: wxWindows licence |
2bda0e17 KB |
11 | ///////////////////////////////////////////////////////////////////////////// |
12 | ||
bbcdf8bc JS |
13 | #ifndef _WX_WINDOW_H_ |
14 | #define _WX_WINDOW_H_ | |
2bda0e17 | 15 | |
cc2b7472 VZ |
16 | // --------------------------------------------------------------------------- |
17 | // constants | |
18 | // --------------------------------------------------------------------------- | |
1e6d9499 | 19 | |
e951b8e4 WS |
20 | #if WXWIN_COMPATIBILITY_2_4 |
21 | // they're unused by wxWidgets... | |
cc2b7472 | 22 | enum |
1e6d9499 | 23 | { |
cc2b7472 VZ |
24 | wxKEY_SHIFT = 1, |
25 | wxKEY_CTRL = 2 | |
1e6d9499 | 26 | }; |
e951b8e4 | 27 | #endif |
1e6d9499 | 28 | |
cc2b7472 VZ |
29 | // --------------------------------------------------------------------------- |
30 | // wxWindow declaration for MSW | |
31 | // --------------------------------------------------------------------------- | |
b782f2e0 | 32 | |
1e6feb95 | 33 | class WXDLLEXPORT wxWindowMSW : public wxWindowBase |
1e6d9499 | 34 | { |
8e44f3ca JS |
35 | friend class wxSpinCtrl; |
36 | friend class wxSlider; | |
37 | friend class wxRadioBox; | |
fa61fec5 MW |
38 | #if defined __VISUALC__ && __VISUALC__ <= 1200 |
39 | friend class wxWindowMSW; | |
40 | #endif | |
2bda0e17 | 41 | public: |
6463b9f5 | 42 | wxWindowMSW() { Init(); } |
1e6feb95 VZ |
43 | |
44 | wxWindowMSW(wxWindow *parent, | |
45 | wxWindowID id, | |
46 | const wxPoint& pos = wxDefaultPosition, | |
47 | const wxSize& size = wxDefaultSize, | |
48 | long style = 0, | |
6463b9f5 JS |
49 | const wxString& name = wxPanelNameStr) |
50 | { | |
51 | Init(); | |
52 | Create(parent, id, pos, size, style, name); | |
53 | } | |
2bda0e17 | 54 | |
1e6feb95 | 55 | virtual ~wxWindowMSW(); |
2bda0e17 | 56 | |
cc2b7472 VZ |
57 | bool Create(wxWindow *parent, |
58 | wxWindowID id, | |
59 | const wxPoint& pos = wxDefaultPosition, | |
60 | const wxSize& size = wxDefaultSize, | |
61 | long style = 0, | |
62 | const wxString& name = wxPanelNameStr); | |
bfc6fde4 | 63 | |
cc2b7472 | 64 | // implement base class pure virtuals |
faa49bfd WS |
65 | virtual void SetLabel(const wxString& label); |
66 | virtual wxString GetLabel() const; | |
42e69d6b | 67 | |
bfc6fde4 | 68 | virtual void Raise(); |
bfc6fde4 VZ |
69 | virtual void Lower(); |
70 | ||
27d2dbbc WS |
71 | virtual bool Show( bool show = true ); |
72 | virtual bool Enable( bool enable = true ); | |
bfc6fde4 | 73 | |
cc2b7472 | 74 | virtual void SetFocus(); |
ddf9d04f | 75 | virtual void SetFocusFromKbd(); |
bfc6fde4 | 76 | |
1e6feb95 | 77 | virtual bool Reparent(wxWindowBase *newParent); |
bfc6fde4 | 78 | |
cc2b7472 | 79 | virtual void WarpPointer(int x, int y); |
bfc6fde4 | 80 | |
27d2dbbc | 81 | virtual void Refresh( bool eraseBackground = true, |
cc2b7472 | 82 | const wxRect *rect = (const wxRect *) NULL ); |
1e6feb95 | 83 | virtual void Update(); |
a0e449ff VZ |
84 | virtual void Freeze(); |
85 | virtual void Thaw(); | |
bfc6fde4 | 86 | |
b2d5a7ee | 87 | virtual void SetWindowStyleFlag( long style ); |
cc2b7472 VZ |
88 | virtual bool SetCursor( const wxCursor &cursor ); |
89 | virtual bool SetFont( const wxFont &font ); | |
bfc6fde4 | 90 | |
bfc6fde4 VZ |
91 | virtual int GetCharHeight() const; |
92 | virtual int GetCharWidth() const; | |
cc2b7472 VZ |
93 | virtual void GetTextExtent(const wxString& string, |
94 | int *x, int *y, | |
95 | int *descent = (int *) NULL, | |
96 | int *externalLeading = (int *) NULL, | |
97 | const wxFont *theFont = (const wxFont *) NULL) | |
98 | const; | |
99 | ||
cc2b7472 | 100 | virtual void SetScrollbar( int orient, int pos, int thumbVisible, |
27d2dbbc WS |
101 | int range, bool refresh = true ); |
102 | virtual void SetScrollPos( int orient, int pos, bool refresh = true ); | |
cc2b7472 VZ |
103 | virtual int GetScrollPos( int orient ) const; |
104 | virtual int GetScrollThumb( int orient ) const; | |
105 | virtual int GetScrollRange( int orient ) const; | |
106 | virtual void ScrollWindow( int dx, int dy, | |
107 | const wxRect* rect = (wxRect *) NULL ); | |
2bda0e17 | 108 | |
9cd6d737 VZ |
109 | virtual bool ScrollLines(int lines); |
110 | virtual bool ScrollPages(int pages); | |
b9b3393e | 111 | |
47d67540 | 112 | #if wxUSE_DRAG_AND_DROP |
cc2b7472 VZ |
113 | virtual void SetDropTarget( wxDropTarget *dropTarget ); |
114 | #endif // wxUSE_DRAG_AND_DROP | |
9f3362c4 | 115 | |
bfc6fde4 VZ |
116 | // Accept files for dragging |
117 | virtual void DragAcceptFiles(bool accept); | |
2bda0e17 | 118 | |
b0cb0158 VZ |
119 | #if WXWIN_COMPATIBILITY_2_4 |
120 | wxDEPRECATED( bool GetUseCtl3D() const ); | |
121 | wxDEPRECATED( bool GetTransparentBackground() const ); | |
27d2dbbc | 122 | wxDEPRECATED( void SetTransparent(bool t = true) ); |
b0cb0158 VZ |
123 | #endif // WXWIN_COMPATIBILITY_2_4 |
124 | ||
1e6feb95 | 125 | #ifndef __WXUNIVERSAL__ |
cc2b7472 VZ |
126 | // Native resource loading (implemented in src/msw/nativdlg.cpp) |
127 | // FIXME: should they really be all virtual? | |
bfc6fde4 VZ |
128 | virtual bool LoadNativeDialog(wxWindow* parent, wxWindowID& id); |
129 | virtual bool LoadNativeDialog(wxWindow* parent, const wxString& name); | |
42e69d6b VZ |
130 | wxWindow* GetWindowChild1(wxWindowID id); |
131 | wxWindow* GetWindowChild(wxWindowID id); | |
1e6feb95 | 132 | #endif // __WXUNIVERSAL__ |
2bda0e17 | 133 | |
540b6b09 | 134 | #if wxUSE_HOTKEY |
5048c832 | 135 | // install and deinstall a system wide hotkey |
540b6b09 | 136 | virtual bool RegisterHotKey(int hotkeyId, int modifiers, int keycode); |
5048c832 | 137 | virtual bool UnregisterHotKey(int hotkeyId); |
540b6b09 | 138 | #endif // wxUSE_HOTKEY |
5048c832 | 139 | |
7d4f65e3 JS |
140 | #ifdef __POCKETPC__ |
141 | bool IsContextMenuEnabled() const { return m_contextMenuEnabled; } | |
142 | void EnableContextMenu(bool enable = true) { m_contextMenuEnabled = enable; } | |
143 | #endif | |
144 | ||
ed4780ea VZ |
145 | // window handle stuff |
146 | // ------------------- | |
2bda0e17 | 147 | |
d7c24517 VZ |
148 | WXHWND GetHWND() const { return m_hWnd; } |
149 | void SetHWND(WXHWND hWnd) { m_hWnd = hWnd; } | |
150 | virtual WXWidget GetHandle() const { return GetHWND(); } | |
2bda0e17 | 151 | |
ed4780ea VZ |
152 | void AssociateHandle(WXWidget handle); |
153 | void DissociateHandle(); | |
154 | ||
f7040b5f VZ |
155 | // does this window have deferred position and/or size? |
156 | bool IsSizeDeferred() const; | |
157 | ||
ed4780ea VZ |
158 | |
159 | // implementation from now on | |
160 | // ========================== | |
161 | ||
cc2b7472 VZ |
162 | // event handlers |
163 | // -------------- | |
00c4e897 | 164 | |
63da7df7 | 165 | void OnPaint(wxPaintEvent& event); |
8681b094 | 166 | void OnEraseBackground(wxEraseEvent& event); |
79099b80 | 167 | #ifdef __WXWINCE__ |
8681b094 | 168 | void OnInitDialog(wxInitDialogEvent& event); |
79099b80 | 169 | #endif |
2bda0e17 | 170 | |
2bda0e17 | 171 | public: |
bfc6fde4 VZ |
172 | // Windows subclassing |
173 | void SubclassWin(WXHWND hWnd); | |
174 | void UnsubclassWin(); | |
bfc6fde4 | 175 | |
a23fd0e1 VZ |
176 | WXFARPROC MSWGetOldWndProc() const { return m_oldWndProc; } |
177 | void MSWSetOldWndProc(WXFARPROC proc) { m_oldWndProc = proc; } | |
bfc6fde4 | 178 | |
27d2dbbc | 179 | // return true if the window is of a standard (i.e. not wxWidgets') class |
5a403e3f VZ |
180 | // |
181 | // to understand why does it work, look at SubclassWin() code and comments | |
182 | bool IsOfStandardClass() const { return m_oldWndProc != NULL; } | |
183 | ||
197dd9af | 184 | wxWindow *FindItem(long id) const; |
27d2dbbc | 185 | wxWindow *FindItemByHWND(WXHWND hWnd, bool controlOnly = false) const; |
bfc6fde4 | 186 | |
27d2dbbc WS |
187 | // MSW only: true if this control is part of the main control |
188 | virtual bool ContainsHWND(WXHWND WXUNUSED(hWnd)) const { return false; }; | |
bfc6fde4 | 189 | |
c009bf3e VZ |
190 | #if wxUSE_TOOLTIPS |
191 | // MSW only: true if this window or any of its children have a tooltip | |
192 | virtual bool HasToolTips() const { return GetToolTip() != NULL; } | |
193 | #endif // wxUSE_TOOLTIPS | |
194 | ||
77ffb593 | 195 | // translate wxWidgets style flags for this control into the Windows style |
b2d5a7ee VZ |
196 | // and optional extended style for the corresponding native control |
197 | // | |
198 | // this is the function that should be overridden in the derived classes, | |
199 | // but you will mostly use MSWGetCreateWindowFlags() below | |
fe3d9123 | 200 | virtual WXDWORD MSWGetStyle(long flags, WXDWORD *exstyle = NULL) const ; |
b2d5a7ee | 201 | |
77ffb593 | 202 | // get the MSW window flags corresponding to wxWidgets ones |
b2d5a7ee VZ |
203 | // |
204 | // the functions returns the flags (WS_XXX) directly and puts the ext | |
205 | // (WS_EX_XXX) flags into the provided pointer if not NULL | |
206 | WXDWORD MSWGetCreateWindowFlags(WXDWORD *exflags = NULL) const | |
207 | { return MSWGetStyle(GetWindowStyle(), exflags); } | |
208 | ||
77ffb593 | 209 | // translate wxWidgets coords into Windows ones suitable to be passed to |
b225f659 VZ |
210 | // ::CreateWindow() |
211 | // | |
27d2dbbc | 212 | // returns true if non default coords are returned, false otherwise |
b225f659 VZ |
213 | bool MSWGetCreateWindowCoords(const wxPoint& pos, |
214 | const wxSize& size, | |
215 | int& x, int& y, | |
216 | int& w, int& h) const; | |
217 | ||
9dfef5ac VZ |
218 | // get the HWND to be used as parent of this window with CreateWindow() |
219 | virtual WXHWND MSWGetParent() const; | |
220 | ||
b225f659 VZ |
221 | // creates the window of specified Windows class with given style, extended |
222 | // style, title and geometry (default values | |
223 | // | |
27d2dbbc | 224 | // returns true if the window has been created, false if creation failed |
b225f659 VZ |
225 | bool MSWCreate(const wxChar *wclass, |
226 | const wxChar *title = NULL, | |
227 | const wxPoint& pos = wxDefaultPosition, | |
228 | const wxSize& size = wxDefaultSize, | |
229 | WXDWORD style = 0, | |
a23fd0e1 | 230 | WXDWORD exendedStyle = 0); |
b225f659 | 231 | |
42e69d6b | 232 | virtual bool MSWCommand(WXUINT param, WXWORD id); |
bfc6fde4 | 233 | |
1e6feb95 | 234 | #ifndef __WXUNIVERSAL__ |
bfc6fde4 VZ |
235 | // Create an appropriate wxWindow from a HWND |
236 | virtual wxWindow* CreateWindowFromHWND(wxWindow* parent, WXHWND hWnd); | |
237 | ||
238 | // Make sure the window style reflects the HWND style (roughly) | |
239 | virtual void AdoptAttributesFromHWND(); | |
1e6feb95 | 240 | #endif // __WXUNIVERSAL__ |
bfc6fde4 VZ |
241 | |
242 | // Setup background and foreground colours correctly | |
243 | virtual void SetupColours(); | |
244 | ||
42e69d6b VZ |
245 | // ------------------------------------------------------------------------ |
246 | // helpers for message handlers: these perform the same function as the | |
247 | // message crackers from <windowsx.h> - they unpack WPARAM and LPARAM into | |
248 | // the correct parameters | |
249 | // ------------------------------------------------------------------------ | |
250 | ||
251 | void UnpackCommand(WXWPARAM wParam, WXLPARAM lParam, | |
252 | WXWORD *id, WXHWND *hwnd, WXWORD *cmd); | |
253 | void UnpackActivate(WXWPARAM wParam, WXLPARAM lParam, | |
254 | WXWORD *state, WXWORD *minimized, WXHWND *hwnd); | |
255 | void UnpackScroll(WXWPARAM wParam, WXLPARAM lParam, | |
256 | WXWORD *code, WXWORD *pos, WXHWND *hwnd); | |
257 | void UnpackCtlColor(WXWPARAM wParam, WXLPARAM lParam, | |
01c500af | 258 | WXHDC *hdc, WXHWND *hwnd); |
42e69d6b VZ |
259 | void UnpackMenuSelect(WXWPARAM wParam, WXLPARAM lParam, |
260 | WXWORD *item, WXWORD *flags, WXHMENU *hmenu); | |
261 | ||
a23fd0e1 | 262 | // ------------------------------------------------------------------------ |
3cfcd50b | 263 | // internal handlers for MSW messages: all handlers return a boolean value: |
27d2dbbc | 264 | // true means that the handler processed the event and false that it didn't |
a23fd0e1 | 265 | // ------------------------------------------------------------------------ |
bfc6fde4 | 266 | |
42e69d6b VZ |
267 | // there are several cases where we have virtual functions for Windows |
268 | // message processing: this is because these messages often require to be | |
269 | // processed in a different manner in the derived classes. For all other | |
270 | // messages, however, we do *not* have corresponding MSWOnXXX() function | |
271 | // and if the derived class wants to process them, it should override | |
272 | // MSWWindowProc() directly. | |
a23fd0e1 | 273 | |
42e69d6b | 274 | // scroll event (both horizontal and vertical) |
a23fd0e1 VZ |
275 | virtual bool MSWOnScroll(int orientation, WXWORD nSBCode, |
276 | WXWORD pos, WXHWND control); | |
277 | ||
42e69d6b | 278 | // child control notifications |
a23fd0e1 | 279 | virtual bool MSWOnNotify(int idCtrl, WXLPARAM lParam, WXLPARAM *result); |
a23fd0e1 | 280 | |
42e69d6b VZ |
281 | // owner-drawn controls need to process these messages |
282 | virtual bool MSWOnDrawItem(int id, WXDRAWITEMSTRUCT *item); | |
283 | virtual bool MSWOnMeasureItem(int id, WXMEASUREITEMSTRUCT *item); | |
284 | ||
285 | // the rest are not virtual | |
286 | bool HandleCreate(WXLPCREATESTRUCT cs, bool *mayCreate); | |
287 | bool HandleInitDialog(WXHWND hWndFocus); | |
288 | bool HandleDestroy(); | |
289 | ||
290 | bool HandlePaint(); | |
1a784dfc VZ |
291 | bool HandlePrintClient(WXHDC hDC); |
292 | bool HandleEraseBkgnd(WXHDC hDC); | |
42e69d6b VZ |
293 | |
294 | bool HandleMinimize(); | |
295 | bool HandleMaximize(); | |
296 | bool HandleSize(int x, int y, WXUINT flag); | |
5706de1c | 297 | bool HandleSizing(wxRect& rect); |
42e69d6b VZ |
298 | bool HandleGetMinMaxInfo(void *mmInfo); |
299 | ||
300 | bool HandleShow(bool show, int status); | |
301 | bool HandleActivate(int flag, bool minimized, WXHWND activate); | |
302 | ||
303 | bool HandleCommand(WXWORD id, WXWORD cmd, WXHWND control); | |
42e69d6b | 304 | |
48fa6bd3 | 305 | bool HandleCtlColor(WXHBRUSH *hBrush, WXHDC hdc, WXHWND hWnd); |
a23fd0e1 | 306 | |
42e69d6b VZ |
307 | bool HandlePaletteChanged(WXHWND hWndPalChange); |
308 | bool HandleQueryNewPalette(); | |
309 | bool HandleSysColorChange(); | |
574c939e | 310 | bool HandleDisplayChange(); |
a5e84126 | 311 | bool HandleCaptureChanged(WXHWND gainedCapture); |
1272e71b | 312 | virtual bool HandleSettingChange(WXWPARAM wParam, WXLPARAM lParam); |
a23fd0e1 | 313 | |
42e69d6b VZ |
314 | bool HandleQueryEndSession(long logOff, bool *mayEnd); |
315 | bool HandleEndSession(bool endSession, long logOff); | |
a23fd0e1 | 316 | |
42e69d6b VZ |
317 | bool HandleSetFocus(WXHWND wnd); |
318 | bool HandleKillFocus(WXHWND wnd); | |
bfc6fde4 | 319 | |
42e69d6b | 320 | bool HandleDropFiles(WXWPARAM wParam); |
bfc6fde4 | 321 | |
42e69d6b VZ |
322 | bool HandleMouseEvent(WXUINT msg, int x, int y, WXUINT flags); |
323 | bool HandleMouseMove(int x, int y, WXUINT flags); | |
d2c52078 | 324 | bool HandleMouseWheel(WXWPARAM wParam, WXLPARAM lParam); |
bfc6fde4 | 325 | |
27d2dbbc | 326 | bool HandleChar(WXWPARAM wParam, WXLPARAM lParam, bool isASCII = false); |
33ac7e6f KB |
327 | bool HandleKeyDown(WXWPARAM wParam, WXLPARAM lParam); |
328 | bool HandleKeyUp(WXWPARAM wParam, WXLPARAM lParam); | |
5048c832 JS |
329 | #if wxUSE_ACCEL |
330 | bool HandleHotKey(WXWPARAM wParam, WXLPARAM lParam); | |
331 | #endif | |
b74cce40 VZ |
332 | #ifdef __WIN32__ |
333 | int HandleMenuChar(int chAccel, WXLPARAM lParam); | |
334 | #endif | |
78c91815 VZ |
335 | // Create and process a clipboard event specified by type. |
336 | bool HandleClipboardEvent( WXUINT nMsg ); | |
bfc6fde4 | 337 | |
42e69d6b VZ |
338 | bool HandleQueryDragIcon(WXHICON *hIcon); |
339 | ||
340 | bool HandleSetCursor(WXHWND hWnd, short nHitTest, int mouseMsg); | |
bfc6fde4 | 341 | |
355debca VZ |
342 | bool HandlePower(WXWPARAM wParam, WXLPARAM lParam, bool *vetoed); |
343 | ||
344 | ||
bfc6fde4 | 345 | // Window procedure |
c140b7e7 | 346 | virtual WXLRESULT MSWWindowProc(WXUINT nMsg, WXWPARAM wParam, WXLPARAM lParam); |
bfc6fde4 VZ |
347 | |
348 | // Calls an appropriate default window procedure | |
c140b7e7 | 349 | virtual WXLRESULT MSWDefWindowProc(WXUINT nMsg, WXWPARAM wParam, WXLPARAM lParam); |
a37d422a VZ |
350 | |
351 | // message processing helpers | |
352 | ||
27d2dbbc | 353 | // return false if the message shouldn't be translated/preprocessed but |
a37d422a VZ |
354 | // dispatched normally |
355 | virtual bool MSWShouldPreProcessMessage(WXMSG* pMsg); | |
356 | ||
27d2dbbc | 357 | // return true if the message was preprocessed and shouldn't be dispatched |
bfc6fde4 | 358 | virtual bool MSWProcessMessage(WXMSG* pMsg); |
a37d422a | 359 | |
27d2dbbc | 360 | // return true if the message was translated and shouldn't be dispatched |
bfc6fde4 | 361 | virtual bool MSWTranslateMessage(WXMSG* pMsg); |
a37d422a VZ |
362 | |
363 | // called when the window is about to be destroyed | |
bfc6fde4 VZ |
364 | virtual void MSWDestroyWindow(); |
365 | ||
01c500af | 366 | |
c5bd3c62 VZ |
367 | // this function should return the brush to paint the children controls |
368 | // background or 0 if this window doesn't impose any particular background | |
369 | // on its children | |
370 | // | |
c3732409 VZ |
371 | // the base class version returns a solid brush if we have a non default |
372 | // background colour or 0 otherwise | |
2bae4332 | 373 | virtual WXHBRUSH MSWGetBgBrushForChild(WXHDC hDC, WXHWND hWnd); |
c5bd3c62 | 374 | |
c3732409 VZ |
375 | // return the background brush to use for painting the given window by |
376 | // quering the parent windows via their MSWGetBgBrushForChild() recursively | |
c5bd3c62 | 377 | // |
2bae4332 | 378 | // hWndToPaint is normally NULL meaning this window itself, but it can also |
c3732409 VZ |
379 | // be a child of this window which is used by the static box and could be |
380 | // potentially useful for other transparent controls | |
2bae4332 | 381 | WXHBRUSH MSWGetBgBrush(WXHDC hDC, WXHWND hWndToPaint = NULL); |
c3732409 VZ |
382 | |
383 | // gives the parent the possibility to draw its children background, e.g. | |
384 | // this is used by wxNotebook to do it using DrawThemeBackground() | |
07c19327 | 385 | // |
c3732409 VZ |
386 | // return true if background was drawn, false otherwise |
387 | virtual bool MSWPrintChild(WXHDC WXUNUSED(hDC), wxWindow * WXUNUSED(child)) | |
388 | { | |
389 | return false; | |
390 | } | |
07c19327 | 391 | |
ce0e1aac JS |
392 | // some controls (e.g. wxListBox) need to set the return value themselves |
393 | // | |
394 | // return true to let parent handle it if we don't, false otherwise | |
395 | virtual bool MSWShouldPropagatePrintChild() | |
396 | { | |
397 | return true; | |
398 | } | |
399 | ||
07c19327 | 400 | |
bfc6fde4 VZ |
401 | // Responds to colour changes: passes event on to children. |
402 | void OnSysColourChanged(wxSysColourChangedEvent& event); | |
403 | ||
a23fd0e1 VZ |
404 | // initialize various fields of wxMouseEvent (common part of MSWOnMouseXXX) |
405 | void InitMouseEvent(wxMouseEvent& event, int x, int y, WXUINT flags); | |
bfc6fde4 | 406 | |
1e6feb95 VZ |
407 | // check if mouse is in the window |
408 | bool IsMouseInWindow() const; | |
409 | ||
51e4e266 VZ |
410 | // synthesize a wxEVT_LEAVE_WINDOW event and set m_mouseInWindow to false |
411 | void GenerateMouseLeave(); | |
412 | ||
e39af974 JS |
413 | // virtual function for implementing internal idle |
414 | // behaviour | |
c3732409 | 415 | virtual void OnInternalIdle(); |
e39af974 | 416 | |
2bda0e17 | 417 | protected: |
6f02a879 VZ |
418 | |
419 | #if wxUSE_MENUS_NATIVE | |
420 | virtual bool DoPopupMenu( wxMenu *menu, int x, int y ); | |
421 | #endif // wxUSE_MENUS_NATIVE | |
422 | ||
d7c24517 VZ |
423 | // the window handle |
424 | WXHWND m_hWnd; | |
425 | ||
cc2b7472 | 426 | // the old window proc (we subclass all windows) |
bfc6fde4 | 427 | WXFARPROC m_oldWndProc; |
2bda0e17 | 428 | |
cc2b7472 | 429 | // additional (MSW specific) flags |
cc2b7472 | 430 | bool m_mouseInWindow:1; |
68304caf | 431 | bool m_lastKeydownProcessed:1; |
bfc6fde4 | 432 | |
cc2b7472 | 433 | // the size of one page for scrolling |
bfc6fde4 VZ |
434 | int m_xThumbSize; |
435 | int m_yThumbSize; | |
2bda0e17 | 436 | |
cc2b7472 | 437 | // implement the base class pure virtuals |
dabc0cd5 VZ |
438 | virtual void DoClientToScreen( int *x, int *y ) const; |
439 | virtual void DoScreenToClient( int *x, int *y ) const; | |
cc2b7472 VZ |
440 | virtual void DoGetPosition( int *x, int *y ) const; |
441 | virtual void DoGetSize( int *width, int *height ) const; | |
442 | virtual void DoGetClientSize( int *width, int *height ) const; | |
443 | virtual void DoSetSize(int x, int y, | |
444 | int width, int height, | |
445 | int sizeFlags = wxSIZE_AUTO); | |
bfc6fde4 | 446 | virtual void DoSetClientSize(int width, int height); |
2bda0e17 | 447 | |
94633ad9 VZ |
448 | virtual void DoCaptureMouse(); |
449 | virtual void DoReleaseMouse(); | |
68304caf | 450 | |
a494b2bc VZ |
451 | // has the window been frozen by Freeze()? |
452 | bool IsFrozen() const { return m_frozenness > 0; } | |
453 | ||
7d86a2d4 VZ |
454 | // this simply moves/resizes the given HWND which is supposed to be our |
455 | // sibling (this is useful for controls which are composite at MSW level | |
456 | // and for which DoMoveWindow() is not enough) | |
86e30911 VZ |
457 | // |
458 | // returns true if the window move was deferred, false if it was moved | |
459 | // immediately (no error return) | |
460 | bool DoMoveSibling(WXHWND hwnd, int x, int y, int width, int height); | |
7d86a2d4 | 461 | |
b782f2e0 VZ |
462 | // move the window to the specified location and resize it: this is called |
463 | // from both DoSetSize() and DoSetClientSize() and would usually just call | |
464 | // ::MoveWindow() except for composite controls which will want to arrange | |
465 | // themselves inside the given rectangle | |
466 | virtual void DoMoveWindow(int x, int y, int width, int height); | |
467 | ||
cc2b7472 VZ |
468 | #if wxUSE_TOOLTIPS |
469 | virtual void DoSetToolTip( wxToolTip *tip ); | |
bd9cd534 VZ |
470 | |
471 | // process TTN_NEEDTEXT message properly (i.e. fixing the bugs in | |
472 | // comctl32.dll in our code -- see the function body for more info) | |
473 | bool HandleTooltipNotify(WXUINT code, | |
474 | WXLPARAM lParam, | |
475 | const wxString& ttip); | |
cc2b7472 VZ |
476 | #endif // wxUSE_TOOLTIPS |
477 | ||
b09bda68 | 478 | // the helper functions used by HandleChar/KeyXXX methods |
9c7df356 VZ |
479 | wxKeyEvent CreateKeyEvent(wxEventType evType, int id, |
480 | WXLPARAM lParam = 0, WXWPARAM wParam = 0) const; | |
b09bda68 | 481 | |
3b72cd91 VZ |
482 | |
483 | // default OnEraseBackground() implementation, return true if we did erase | |
c3732409 VZ |
484 | // the background, false otherwise (i.e. the system should erase it) |
485 | bool DoEraseBackground(WXHDC hDC); | |
3b72cd91 | 486 | |
1ca78aa1 | 487 | // generate WM_CHANGEUISTATE if it's needed for the OS we're running under |
3ef092d6 | 488 | // |
1ca78aa1 JS |
489 | // action should be one of the UIS_XXX constants |
490 | // state should be one or more of the UISF_XXX constants | |
491 | // if action == UIS_INITIALIZE then it doesn't seem to matter what we use | |
492 | // for state as the system will decide for us what needs to be set | |
493 | void MSWUpdateUIState(int action, int state = 0); | |
d7e0024b | 494 | |
fd3f686c VZ |
495 | private: |
496 | // common part of all ctors | |
497 | void Init(); | |
498 | ||
a23fd0e1 VZ |
499 | // the (non-virtual) handlers for the events |
500 | bool HandleMove(int x, int y); | |
5706de1c | 501 | bool HandleMoving(wxRect& rect); |
a23fd0e1 | 502 | bool HandleJoystickEvent(WXUINT msg, int x, int y, WXUINT flags); |
a23fd0e1 | 503 | bool HandleNotify(int idCtrl, WXLPARAM lParam, WXLPARAM *result); |
a23fd0e1 | 504 | |
d7cbabe0 VZ |
505 | // list of disabled children before last call to our Disable() |
506 | wxWindowList *m_childrenDisabled; | |
507 | ||
a1037371 VZ |
508 | // number of calls to Freeze() minus number of calls to Thaw() |
509 | unsigned int m_frozenness; | |
510 | ||
220f77b0 | 511 | // current defer window position operation handle (may be NULL) |
3b72cd91 | 512 | WXHANDLE m_hDWP; |
220f77b0 | 513 | |
67644c1d RD |
514 | // When deferred positioning is done these hold the pending changes, and |
515 | // are used for the default values if another size/pos changes is done on | |
516 | // this window before the group of deferred changes is completed. | |
517 | wxPoint m_pendingPosition; | |
518 | wxSize m_pendingSize; | |
220f77b0 | 519 | |
7d4f65e3 JS |
520 | #ifdef __POCKETPC__ |
521 | bool m_contextMenuEnabled; | |
522 | #endif | |
523 | ||
e8e4fa12 GT |
524 | DECLARE_DYNAMIC_CLASS(wxWindowMSW) |
525 | DECLARE_NO_COPY_CLASS(wxWindowMSW) | |
fd3f686c | 526 | DECLARE_EVENT_TABLE() |
2bda0e17 KB |
527 | }; |
528 | ||
b0cb0158 VZ |
529 | // ---------------------------------------------------------------------------- |
530 | // inline functions | |
531 | // ---------------------------------------------------------------------------- | |
532 | ||
533 | #if WXWIN_COMPATIBILITY_2_4 | |
534 | ||
535 | inline bool wxWindowMSW::GetUseCtl3D() const { return false; } | |
536 | inline bool wxWindowMSW::GetTransparentBackground() const { return false; } | |
537 | inline void wxWindowMSW::SetTransparent(bool WXUNUSED(t)) { } | |
538 | ||
539 | #endif // WXWIN_COMPATIBILITY_2_4 | |
540 | ||
cc2b7472 VZ |
541 | // --------------------------------------------------------------------------- |
542 | // global functions | |
543 | // --------------------------------------------------------------------------- | |
2bda0e17 | 544 | |
cc2b7472 | 545 | // kbd code translation |
ff792344 | 546 | WXDLLEXPORT int wxCharCodeMSWToWX(int keySym, WXLPARAM lParam = 0); |
373a5fb3 | 547 | WXDLLEXPORT WXWORD wxCharCodeWXToMSW(int id, bool *IsVirtual); |
2bda0e17 | 548 | |
b225f659 VZ |
549 | // window creation helper class: before creating a new HWND, instantiate an |
550 | // object of this class on stack - this allows to process the messages sent to | |
551 | // the window even before CreateWindow() returns | |
552 | class wxWindowCreationHook | |
553 | { | |
554 | public: | |
555 | wxWindowCreationHook(wxWindowMSW *winBeingCreated); | |
556 | ~wxWindowCreationHook(); | |
557 | }; | |
558 | ||
cbc8c6ee VZ |
559 | // ---------------------------------------------------------------------------- |
560 | // global objects | |
561 | // ---------------------------------------------------------------------------- | |
562 | ||
563 | // notice that this hash must be defined after wxWindow declaration as it | |
564 | // needs to "see" its dtor and not just forward declaration | |
565 | #include "wx/hash.h" | |
566 | ||
567 | // pseudo-template HWND <-> wxWindow hash table | |
54d73f3d MB |
568 | #if WXWIN_COMPATIBILITY_2_4 |
569 | WX_DECLARE_HASH(wxWindow, wxWindowList, wxWinHashTable); | |
570 | #else | |
40ad3426 | 571 | WX_DECLARE_HASH(wxWindowMSW, wxWindowList, wxWinHashTable); |
54d73f3d | 572 | #endif |
cbc8c6ee VZ |
573 | |
574 | extern wxWinHashTable *wxWinHandleHash; | |
575 | ||
faa49bfd | 576 | #endif // _WX_WINDOW_H_ |