]>
Commit | Line | Data |
---|---|---|
2bda0e17 | 1 | ///////////////////////////////////////////////////////////////////////////// |
1e6feb95 | 2 | // Name: wx/msw/window.h |
2bda0e17 KB |
3 | // Purpose: wxWindow class |
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 |
cc2b7472 | 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 | // headers | |
18 | // --------------------------------------------------------------------------- | |
19 | ||
12028905 | 20 | #if defined(__GNUG__) && !defined(NO_GCC_PRAGMA) |
cc2b7472 | 21 | #pragma interface "window.h" |
2bda0e17 KB |
22 | #endif |
23 | ||
1e6feb95 VZ |
24 | // [at least] some version of Windows send extra mouse move messages after |
25 | // a mouse click or a key press - to temporarily fix this problem, set the | |
26 | // define below to 1 | |
27 | // | |
28 | // a better solution should be found later... | |
a23fd0e1 VZ |
29 | #define wxUSE_MOUSEEVENT_HACK 0 |
30 | ||
1bffa913 VZ |
31 | #include "wx/hash.h" |
32 | ||
33 | // pseudo-template HWND <-> wxWindow hash table | |
34 | WX_DECLARE_HASH(wxWindow, wxWindowList, wxWinHashTable); | |
35 | ||
36 | extern wxWinHashTable *wxWinHandleHash; | |
37 | ||
cc2b7472 VZ |
38 | // --------------------------------------------------------------------------- |
39 | // constants | |
40 | // --------------------------------------------------------------------------- | |
1e6d9499 | 41 | |
cc2b7472 VZ |
42 | // FIXME does anybody use those? they're unused by wxWindows... |
43 | enum | |
1e6d9499 | 44 | { |
cc2b7472 VZ |
45 | wxKEY_SHIFT = 1, |
46 | wxKEY_CTRL = 2 | |
1e6d9499 JS |
47 | }; |
48 | ||
cc2b7472 VZ |
49 | // --------------------------------------------------------------------------- |
50 | // wxWindow declaration for MSW | |
51 | // --------------------------------------------------------------------------- | |
b782f2e0 | 52 | |
1e6feb95 | 53 | class WXDLLEXPORT wxWindowMSW : public wxWindowBase |
1e6d9499 | 54 | { |
2bda0e17 | 55 | public: |
6463b9f5 | 56 | wxWindowMSW() { Init(); } |
1e6feb95 VZ |
57 | |
58 | wxWindowMSW(wxWindow *parent, | |
59 | wxWindowID id, | |
60 | const wxPoint& pos = wxDefaultPosition, | |
61 | const wxSize& size = wxDefaultSize, | |
62 | long style = 0, | |
6463b9f5 JS |
63 | const wxString& name = wxPanelNameStr) |
64 | { | |
65 | Init(); | |
66 | Create(parent, id, pos, size, style, name); | |
67 | } | |
2bda0e17 | 68 | |
1e6feb95 | 69 | virtual ~wxWindowMSW(); |
2bda0e17 | 70 | |
cc2b7472 VZ |
71 | bool Create(wxWindow *parent, |
72 | wxWindowID id, | |
73 | const wxPoint& pos = wxDefaultPosition, | |
74 | const wxSize& size = wxDefaultSize, | |
75 | long style = 0, | |
76 | const wxString& name = wxPanelNameStr); | |
bfc6fde4 | 77 | |
cc2b7472 | 78 | // implement base class pure virtuals |
42e69d6b VZ |
79 | virtual void SetTitle( const wxString& title); |
80 | virtual wxString GetTitle() const; | |
81 | ||
bfc6fde4 | 82 | virtual void Raise(); |
bfc6fde4 VZ |
83 | virtual void Lower(); |
84 | ||
cc2b7472 VZ |
85 | virtual bool Show( bool show = TRUE ); |
86 | virtual bool Enable( bool enable = TRUE ); | |
bfc6fde4 | 87 | |
cc2b7472 | 88 | virtual void SetFocus(); |
ddf9d04f | 89 | virtual void SetFocusFromKbd(); |
bfc6fde4 | 90 | |
1e6feb95 | 91 | virtual bool Reparent(wxWindowBase *newParent); |
bfc6fde4 | 92 | |
cc2b7472 | 93 | virtual void WarpPointer(int x, int y); |
bfc6fde4 | 94 | |
cc2b7472 VZ |
95 | virtual void Refresh( bool eraseBackground = TRUE, |
96 | const wxRect *rect = (const wxRect *) NULL ); | |
1e6feb95 | 97 | virtual void Update(); |
a0e449ff VZ |
98 | virtual void Freeze(); |
99 | virtual void Thaw(); | |
bfc6fde4 | 100 | |
b2d5a7ee | 101 | virtual void SetWindowStyleFlag( long style ); |
cc2b7472 VZ |
102 | virtual bool SetCursor( const wxCursor &cursor ); |
103 | virtual bool SetFont( const wxFont &font ); | |
bfc6fde4 | 104 | |
bfc6fde4 VZ |
105 | virtual int GetCharHeight() const; |
106 | virtual int GetCharWidth() const; | |
cc2b7472 VZ |
107 | virtual void GetTextExtent(const wxString& string, |
108 | int *x, int *y, | |
109 | int *descent = (int *) NULL, | |
110 | int *externalLeading = (int *) NULL, | |
111 | const wxFont *theFont = (const wxFont *) NULL) | |
112 | const; | |
113 | ||
1e6feb95 | 114 | #if wxUSE_MENUS_NATIVE |
a1665b22 | 115 | virtual bool DoPopupMenu( wxMenu *menu, int x, int y ); |
1e6feb95 | 116 | #endif // wxUSE_MENUS_NATIVE |
cc2b7472 VZ |
117 | |
118 | virtual void SetScrollbar( int orient, int pos, int thumbVisible, | |
119 | int range, bool refresh = TRUE ); | |
120 | virtual void SetScrollPos( int orient, int pos, bool refresh = TRUE ); | |
121 | virtual int GetScrollPos( int orient ) const; | |
122 | virtual int GetScrollThumb( int orient ) const; | |
123 | virtual int GetScrollRange( int orient ) const; | |
124 | virtual void ScrollWindow( int dx, int dy, | |
125 | const wxRect* rect = (wxRect *) NULL ); | |
2bda0e17 | 126 | |
9cd6d737 VZ |
127 | virtual bool ScrollLines(int lines); |
128 | virtual bool ScrollPages(int pages); | |
b9b3393e | 129 | |
47d67540 | 130 | #if wxUSE_DRAG_AND_DROP |
cc2b7472 VZ |
131 | virtual void SetDropTarget( wxDropTarget *dropTarget ); |
132 | #endif // wxUSE_DRAG_AND_DROP | |
9f3362c4 | 133 | |
bfc6fde4 VZ |
134 | // Accept files for dragging |
135 | virtual void DragAcceptFiles(bool accept); | |
2bda0e17 | 136 | |
b0cb0158 VZ |
137 | #if WXWIN_COMPATIBILITY_2_4 |
138 | wxDEPRECATED( bool GetUseCtl3D() const ); | |
139 | wxDEPRECATED( bool GetTransparentBackground() const ); | |
140 | wxDEPRECATED( void SetTransparent(bool t = TRUE) ); | |
141 | #endif // WXWIN_COMPATIBILITY_2_4 | |
142 | ||
1e6feb95 | 143 | #ifndef __WXUNIVERSAL__ |
cc2b7472 VZ |
144 | // Native resource loading (implemented in src/msw/nativdlg.cpp) |
145 | // FIXME: should they really be all virtual? | |
bfc6fde4 VZ |
146 | virtual bool LoadNativeDialog(wxWindow* parent, wxWindowID& id); |
147 | virtual bool LoadNativeDialog(wxWindow* parent, const wxString& name); | |
42e69d6b VZ |
148 | wxWindow* GetWindowChild1(wxWindowID id); |
149 | wxWindow* GetWindowChild(wxWindowID id); | |
1e6feb95 | 150 | #endif // __WXUNIVERSAL__ |
2bda0e17 | 151 | |
540b6b09 | 152 | #if wxUSE_HOTKEY |
5048c832 | 153 | // install and deinstall a system wide hotkey |
540b6b09 | 154 | virtual bool RegisterHotKey(int hotkeyId, int modifiers, int keycode); |
5048c832 | 155 | virtual bool UnregisterHotKey(int hotkeyId); |
540b6b09 | 156 | #endif // wxUSE_HOTKEY |
5048c832 | 157 | |
cc2b7472 VZ |
158 | // implementation from now on |
159 | // -------------------------- | |
2bda0e17 | 160 | |
cc2b7472 VZ |
161 | // simple accessors |
162 | // ---------------- | |
2bda0e17 | 163 | |
d7c24517 VZ |
164 | WXHWND GetHWND() const { return m_hWnd; } |
165 | void SetHWND(WXHWND hWnd) { m_hWnd = hWnd; } | |
166 | virtual WXWidget GetHandle() const { return GetHWND(); } | |
2bda0e17 | 167 | |
cc2b7472 VZ |
168 | // event handlers |
169 | // -------------- | |
00c4e897 | 170 | |
bfc6fde4 | 171 | void OnEraseBackground(wxEraseEvent& event); |
63da7df7 | 172 | void OnPaint(wxPaintEvent& event); |
2bda0e17 | 173 | |
2bda0e17 | 174 | public: |
bfc6fde4 VZ |
175 | // For implementation purposes - sometimes decorations make the client area |
176 | // smaller | |
177 | virtual wxPoint GetClientAreaOrigin() const; | |
178 | ||
bfc6fde4 VZ |
179 | // Windows subclassing |
180 | void SubclassWin(WXHWND hWnd); | |
181 | void UnsubclassWin(); | |
bfc6fde4 | 182 | |
a23fd0e1 VZ |
183 | WXFARPROC MSWGetOldWndProc() const { return m_oldWndProc; } |
184 | void MSWSetOldWndProc(WXFARPROC proc) { m_oldWndProc = proc; } | |
bfc6fde4 | 185 | |
5a403e3f VZ |
186 | // return TRUE if the window is of a standard (i.e. not wxWindows') class |
187 | // | |
188 | // to understand why does it work, look at SubclassWin() code and comments | |
189 | bool IsOfStandardClass() const { return m_oldWndProc != NULL; } | |
190 | ||
197dd9af | 191 | wxWindow *FindItem(long id) const; |
42e69d6b | 192 | wxWindow *FindItemByHWND(WXHWND hWnd, bool controlOnly = FALSE) const; |
bfc6fde4 | 193 | |
bfc6fde4 VZ |
194 | // MSW only: TRUE if this control is part of the main control |
195 | virtual bool ContainsHWND(WXHWND WXUNUSED(hWnd)) const { return FALSE; }; | |
196 | ||
b2d5a7ee VZ |
197 | // translate wxWindows style flags for this control into the Windows style |
198 | // and optional extended style for the corresponding native control | |
199 | // | |
200 | // this is the function that should be overridden in the derived classes, | |
201 | // but you will mostly use MSWGetCreateWindowFlags() below | |
fe3d9123 | 202 | virtual WXDWORD MSWGetStyle(long flags, WXDWORD *exstyle = NULL) const ; |
b2d5a7ee VZ |
203 | |
204 | // get the MSW window flags corresponding to wxWindows ones | |
205 | // | |
206 | // the functions returns the flags (WS_XXX) directly and puts the ext | |
207 | // (WS_EX_XXX) flags into the provided pointer if not NULL | |
208 | WXDWORD MSWGetCreateWindowFlags(WXDWORD *exflags = NULL) const | |
209 | { return MSWGetStyle(GetWindowStyle(), exflags); } | |
210 | ||
b225f659 VZ |
211 | // translate wxWindows coords into Windows ones suitable to be passed to |
212 | // ::CreateWindow() | |
213 | // | |
214 | // returns TRUE if non default coords are returned, FALSE otherwise | |
215 | bool MSWGetCreateWindowCoords(const wxPoint& pos, | |
216 | const wxSize& size, | |
217 | int& x, int& y, | |
218 | int& w, int& h) const; | |
219 | ||
9dfef5ac VZ |
220 | // get the HWND to be used as parent of this window with CreateWindow() |
221 | virtual WXHWND MSWGetParent() const; | |
222 | ||
b225f659 VZ |
223 | // creates the window of specified Windows class with given style, extended |
224 | // style, title and geometry (default values | |
225 | // | |
226 | // returns TRUE if the window has been created, FALSE if creation failed | |
227 | bool MSWCreate(const wxChar *wclass, | |
228 | const wxChar *title = NULL, | |
229 | const wxPoint& pos = wxDefaultPosition, | |
230 | const wxSize& size = wxDefaultSize, | |
231 | WXDWORD style = 0, | |
a23fd0e1 | 232 | WXDWORD exendedStyle = 0); |
b225f659 | 233 | |
42e69d6b | 234 | virtual bool MSWCommand(WXUINT param, WXWORD id); |
bfc6fde4 | 235 | |
1e6feb95 | 236 | #ifndef __WXUNIVERSAL__ |
bfc6fde4 VZ |
237 | // Create an appropriate wxWindow from a HWND |
238 | virtual wxWindow* CreateWindowFromHWND(wxWindow* parent, WXHWND hWnd); | |
239 | ||
240 | // Make sure the window style reflects the HWND style (roughly) | |
241 | virtual void AdoptAttributesFromHWND(); | |
1e6feb95 | 242 | #endif // __WXUNIVERSAL__ |
bfc6fde4 VZ |
243 | |
244 | // Setup background and foreground colours correctly | |
245 | virtual void SetupColours(); | |
246 | ||
42e69d6b VZ |
247 | // ------------------------------------------------------------------------ |
248 | // helpers for message handlers: these perform the same function as the | |
249 | // message crackers from <windowsx.h> - they unpack WPARAM and LPARAM into | |
250 | // the correct parameters | |
251 | // ------------------------------------------------------------------------ | |
252 | ||
253 | void UnpackCommand(WXWPARAM wParam, WXLPARAM lParam, | |
254 | WXWORD *id, WXHWND *hwnd, WXWORD *cmd); | |
255 | void UnpackActivate(WXWPARAM wParam, WXLPARAM lParam, | |
256 | WXWORD *state, WXWORD *minimized, WXHWND *hwnd); | |
257 | void UnpackScroll(WXWPARAM wParam, WXLPARAM lParam, | |
258 | WXWORD *code, WXWORD *pos, WXHWND *hwnd); | |
259 | void UnpackCtlColor(WXWPARAM wParam, WXLPARAM lParam, | |
260 | WXWORD *nCtlColor, WXHDC *hdc, WXHWND *hwnd); | |
261 | void UnpackMenuSelect(WXWPARAM wParam, WXLPARAM lParam, | |
262 | WXWORD *item, WXWORD *flags, WXHMENU *hmenu); | |
263 | ||
a23fd0e1 | 264 | // ------------------------------------------------------------------------ |
3cfcd50b | 265 | // internal handlers for MSW messages: all handlers return a boolean value: |
a23fd0e1 VZ |
266 | // TRUE means that the handler processed the event and FALSE that it didn't |
267 | // ------------------------------------------------------------------------ | |
bfc6fde4 | 268 | |
42e69d6b VZ |
269 | // there are several cases where we have virtual functions for Windows |
270 | // message processing: this is because these messages often require to be | |
271 | // processed in a different manner in the derived classes. For all other | |
272 | // messages, however, we do *not* have corresponding MSWOnXXX() function | |
273 | // and if the derived class wants to process them, it should override | |
274 | // MSWWindowProc() directly. | |
a23fd0e1 | 275 | |
42e69d6b | 276 | // scroll event (both horizontal and vertical) |
a23fd0e1 VZ |
277 | virtual bool MSWOnScroll(int orientation, WXWORD nSBCode, |
278 | WXWORD pos, WXHWND control); | |
279 | ||
42e69d6b | 280 | // child control notifications |
a23fd0e1 VZ |
281 | #ifdef __WIN95__ |
282 | virtual bool MSWOnNotify(int idCtrl, WXLPARAM lParam, WXLPARAM *result); | |
283 | #endif // __WIN95__ | |
284 | ||
42e69d6b VZ |
285 | // owner-drawn controls need to process these messages |
286 | virtual bool MSWOnDrawItem(int id, WXDRAWITEMSTRUCT *item); | |
287 | virtual bool MSWOnMeasureItem(int id, WXMEASUREITEMSTRUCT *item); | |
288 | ||
289 | // the rest are not virtual | |
290 | bool HandleCreate(WXLPCREATESTRUCT cs, bool *mayCreate); | |
291 | bool HandleInitDialog(WXHWND hWndFocus); | |
292 | bool HandleDestroy(); | |
293 | ||
294 | bool HandlePaint(); | |
295 | bool HandleEraseBkgnd(WXHDC pDC); | |
296 | ||
297 | bool HandleMinimize(); | |
298 | bool HandleMaximize(); | |
299 | bool HandleSize(int x, int y, WXUINT flag); | |
5706de1c | 300 | bool HandleSizing(wxRect& rect); |
42e69d6b VZ |
301 | bool HandleGetMinMaxInfo(void *mmInfo); |
302 | ||
303 | bool HandleShow(bool show, int status); | |
304 | bool HandleActivate(int flag, bool minimized, WXHWND activate); | |
305 | ||
306 | bool HandleCommand(WXWORD id, WXWORD cmd, WXHWND control); | |
307 | bool HandleSysCommand(WXWPARAM wParam, WXLPARAM lParam); | |
308 | ||
309 | bool HandleCtlColor(WXHBRUSH *hBrush, | |
101f488c VZ |
310 | WXHDC hdc, |
311 | WXHWND hWnd, | |
312 | WXUINT nCtlColor, | |
313 | WXUINT message, | |
314 | WXWPARAM wParam, | |
315 | WXLPARAM lParam); | |
a23fd0e1 | 316 | |
42e69d6b VZ |
317 | bool HandlePaletteChanged(WXHWND hWndPalChange); |
318 | bool HandleQueryNewPalette(); | |
319 | bool HandleSysColorChange(); | |
574c939e | 320 | bool HandleDisplayChange(); |
a5e84126 | 321 | bool HandleCaptureChanged(WXHWND gainedCapture); |
a23fd0e1 | 322 | |
42e69d6b VZ |
323 | bool HandleQueryEndSession(long logOff, bool *mayEnd); |
324 | bool HandleEndSession(bool endSession, long logOff); | |
a23fd0e1 | 325 | |
42e69d6b VZ |
326 | bool HandleSetFocus(WXHWND wnd); |
327 | bool HandleKillFocus(WXHWND wnd); | |
bfc6fde4 | 328 | |
42e69d6b | 329 | bool HandleDropFiles(WXWPARAM wParam); |
bfc6fde4 | 330 | |
42e69d6b VZ |
331 | bool HandleMouseEvent(WXUINT msg, int x, int y, WXUINT flags); |
332 | bool HandleMouseMove(int x, int y, WXUINT flags); | |
d2c52078 | 333 | bool HandleMouseWheel(WXWPARAM wParam, WXLPARAM lParam); |
bfc6fde4 | 334 | |
33ac7e6f KB |
335 | bool HandleChar(WXWPARAM wParam, WXLPARAM lParam, bool isASCII = FALSE); |
336 | bool HandleKeyDown(WXWPARAM wParam, WXLPARAM lParam); | |
337 | bool HandleKeyUp(WXWPARAM wParam, WXLPARAM lParam); | |
5048c832 JS |
338 | #if wxUSE_ACCEL |
339 | bool HandleHotKey(WXWPARAM wParam, WXLPARAM lParam); | |
340 | #endif | |
b74cce40 VZ |
341 | #ifdef __WIN32__ |
342 | int HandleMenuChar(int chAccel, WXLPARAM lParam); | |
343 | #endif | |
bfc6fde4 | 344 | |
42e69d6b VZ |
345 | bool HandleQueryDragIcon(WXHICON *hIcon); |
346 | ||
347 | bool HandleSetCursor(WXHWND hWnd, short nHitTest, int mouseMsg); | |
bfc6fde4 | 348 | |
bfc6fde4 | 349 | // Window procedure |
c140b7e7 | 350 | virtual WXLRESULT MSWWindowProc(WXUINT nMsg, WXWPARAM wParam, WXLPARAM lParam); |
bfc6fde4 VZ |
351 | |
352 | // Calls an appropriate default window procedure | |
c140b7e7 | 353 | virtual WXLRESULT MSWDefWindowProc(WXUINT nMsg, WXWPARAM wParam, WXLPARAM lParam); |
a37d422a VZ |
354 | |
355 | // message processing helpers | |
356 | ||
357 | // return FALSE if the message shouldn't be translated/preprocessed but | |
358 | // dispatched normally | |
359 | virtual bool MSWShouldPreProcessMessage(WXMSG* pMsg); | |
360 | ||
361 | // return TRUE if the message was preprocessed and shouldn't be dispatched | |
bfc6fde4 | 362 | virtual bool MSWProcessMessage(WXMSG* pMsg); |
a37d422a VZ |
363 | |
364 | // return TRUE if the message was translated and shouldn't be dispatched | |
bfc6fde4 | 365 | virtual bool MSWTranslateMessage(WXMSG* pMsg); |
a37d422a VZ |
366 | |
367 | // called when the window is about to be destroyed | |
bfc6fde4 VZ |
368 | virtual void MSWDestroyWindow(); |
369 | ||
a23fd0e1 VZ |
370 | // this function should return the brush to paint the window background |
371 | // with or 0 for the default brush | |
372 | virtual WXHBRUSH OnCtlColor(WXHDC hDC, | |
373 | WXHWND hWnd, | |
374 | WXUINT nCtlColor, | |
375 | WXUINT message, | |
376 | WXWPARAM wParam, | |
377 | WXLPARAM lParam); | |
bfc6fde4 | 378 | |
bfc6fde4 VZ |
379 | // Responds to colour changes: passes event on to children. |
380 | void OnSysColourChanged(wxSysColourChangedEvent& event); | |
381 | ||
a23fd0e1 VZ |
382 | // initialize various fields of wxMouseEvent (common part of MSWOnMouseXXX) |
383 | void InitMouseEvent(wxMouseEvent& event, int x, int y, WXUINT flags); | |
bfc6fde4 | 384 | |
1e6feb95 VZ |
385 | // check if mouse is in the window |
386 | bool IsMouseInWindow() const; | |
387 | ||
e39af974 JS |
388 | // virtual function for implementing internal idle |
389 | // behaviour | |
390 | virtual void OnInternalIdle() ; | |
391 | ||
2bda0e17 | 392 | protected: |
d7c24517 VZ |
393 | // the window handle |
394 | WXHWND m_hWnd; | |
395 | ||
cc2b7472 | 396 | // the old window proc (we subclass all windows) |
bfc6fde4 | 397 | WXFARPROC m_oldWndProc; |
2bda0e17 | 398 | |
cc2b7472 | 399 | // additional (MSW specific) flags |
cc2b7472 | 400 | bool m_mouseInWindow:1; |
68304caf | 401 | bool m_lastKeydownProcessed:1; |
bfc6fde4 | 402 | |
cc2b7472 | 403 | // the size of one page for scrolling |
bfc6fde4 VZ |
404 | int m_xThumbSize; |
405 | int m_yThumbSize; | |
2bda0e17 | 406 | |
a23fd0e1 VZ |
407 | #if wxUSE_MOUSEEVENT_HACK |
408 | // the coordinates of the last mouse event and the type of it | |
cc2b7472 VZ |
409 | long m_lastMouseX, |
410 | m_lastMouseY; | |
411 | int m_lastMouseEvent; | |
a23fd0e1 | 412 | #endif // wxUSE_MOUSEEVENT_HACK |
bfc6fde4 | 413 | |
bfc6fde4 | 414 | WXHMENU m_hMenu; // Menu, if any |
bfc6fde4 | 415 | |
cc2b7472 | 416 | // implement the base class pure virtuals |
dabc0cd5 VZ |
417 | virtual void DoClientToScreen( int *x, int *y ) const; |
418 | virtual void DoScreenToClient( int *x, int *y ) const; | |
cc2b7472 VZ |
419 | virtual void DoGetPosition( int *x, int *y ) const; |
420 | virtual void DoGetSize( int *width, int *height ) const; | |
421 | virtual void DoGetClientSize( int *width, int *height ) const; | |
422 | virtual void DoSetSize(int x, int y, | |
423 | int width, int height, | |
424 | int sizeFlags = wxSIZE_AUTO); | |
bfc6fde4 | 425 | virtual void DoSetClientSize(int width, int height); |
2bda0e17 | 426 | |
94633ad9 VZ |
427 | virtual void DoCaptureMouse(); |
428 | virtual void DoReleaseMouse(); | |
68304caf | 429 | |
b782f2e0 VZ |
430 | // move the window to the specified location and resize it: this is called |
431 | // from both DoSetSize() and DoSetClientSize() and would usually just call | |
432 | // ::MoveWindow() except for composite controls which will want to arrange | |
433 | // themselves inside the given rectangle | |
434 | virtual void DoMoveWindow(int x, int y, int width, int height); | |
435 | ||
cc2b7472 VZ |
436 | #if wxUSE_TOOLTIPS |
437 | virtual void DoSetToolTip( wxToolTip *tip ); | |
bd9cd534 VZ |
438 | |
439 | // process TTN_NEEDTEXT message properly (i.e. fixing the bugs in | |
440 | // comctl32.dll in our code -- see the function body for more info) | |
441 | bool HandleTooltipNotify(WXUINT code, | |
442 | WXLPARAM lParam, | |
443 | const wxString& ttip); | |
cc2b7472 VZ |
444 | #endif // wxUSE_TOOLTIPS |
445 | ||
b09bda68 | 446 | // the helper functions used by HandleChar/KeyXXX methods |
9c7df356 VZ |
447 | wxKeyEvent CreateKeyEvent(wxEventType evType, int id, |
448 | WXLPARAM lParam = 0, WXWPARAM wParam = 0) const; | |
b09bda68 | 449 | |
fd3f686c VZ |
450 | private: |
451 | // common part of all ctors | |
452 | void Init(); | |
453 | ||
a23fd0e1 VZ |
454 | // the (non-virtual) handlers for the events |
455 | bool HandleMove(int x, int y); | |
5706de1c | 456 | bool HandleMoving(wxRect& rect); |
a23fd0e1 VZ |
457 | bool HandleJoystickEvent(WXUINT msg, int x, int y, WXUINT flags); |
458 | ||
459 | #ifdef __WIN95__ | |
460 | bool HandleNotify(int idCtrl, WXLPARAM lParam, WXLPARAM *result); | |
461 | #endif // __WIN95__ | |
462 | ||
d7cbabe0 VZ |
463 | // list of disabled children before last call to our Disable() |
464 | wxWindowList *m_childrenDisabled; | |
465 | ||
a1037371 VZ |
466 | // number of calls to Freeze() minus number of calls to Thaw() |
467 | unsigned int m_frozenness; | |
468 | ||
e8e4fa12 GT |
469 | DECLARE_DYNAMIC_CLASS(wxWindowMSW) |
470 | DECLARE_NO_COPY_CLASS(wxWindowMSW) | |
fd3f686c | 471 | DECLARE_EVENT_TABLE() |
2bda0e17 KB |
472 | }; |
473 | ||
b0cb0158 VZ |
474 | // ---------------------------------------------------------------------------- |
475 | // inline functions | |
476 | // ---------------------------------------------------------------------------- | |
477 | ||
478 | #if WXWIN_COMPATIBILITY_2_4 | |
479 | ||
480 | inline bool wxWindowMSW::GetUseCtl3D() const { return false; } | |
481 | inline bool wxWindowMSW::GetTransparentBackground() const { return false; } | |
482 | inline void wxWindowMSW::SetTransparent(bool WXUNUSED(t)) { } | |
483 | ||
484 | #endif // WXWIN_COMPATIBILITY_2_4 | |
485 | ||
cc2b7472 VZ |
486 | // --------------------------------------------------------------------------- |
487 | // global functions | |
488 | // --------------------------------------------------------------------------- | |
2bda0e17 | 489 | |
cc2b7472 | 490 | // kbd code translation |
184b5d99 JS |
491 | WXDLLEXPORT int wxCharCodeMSWToWX(int keySym); |
492 | WXDLLEXPORT int wxCharCodeWXToMSW(int id, bool *IsVirtual); | |
2bda0e17 | 493 | |
b225f659 VZ |
494 | // window creation helper class: before creating a new HWND, instantiate an |
495 | // object of this class on stack - this allows to process the messages sent to | |
496 | // the window even before CreateWindow() returns | |
497 | class wxWindowCreationHook | |
498 | { | |
499 | public: | |
500 | wxWindowCreationHook(wxWindowMSW *winBeingCreated); | |
501 | ~wxWindowCreationHook(); | |
502 | }; | |
503 | ||
2bda0e17 | 504 | #endif |
bbcdf8bc | 505 | // _WX_WINDOW_H_ |