]>
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$ | |
9 | // Copyright: (c) Julian Smart and Markus Holzem | |
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 | ||
2bda0e17 | 20 | #ifdef __GNUG__ |
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: |
1e6feb95 VZ |
56 | wxWindowMSW() { Init(); } |
57 | ||
58 | wxWindowMSW(wxWindow *parent, | |
59 | wxWindowID id, | |
60 | const wxPoint& pos = wxDefaultPosition, | |
61 | const wxSize& size = wxDefaultSize, | |
62 | long style = 0, | |
63 | const wxString& name = wxPanelNameStr) | |
bfc6fde4 VZ |
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(); |
bfc6fde4 | 89 | |
1e6feb95 | 90 | virtual bool Reparent(wxWindowBase *newParent); |
bfc6fde4 | 91 | |
cc2b7472 | 92 | virtual void WarpPointer(int x, int y); |
bfc6fde4 | 93 | |
cc2b7472 VZ |
94 | virtual void Refresh( bool eraseBackground = TRUE, |
95 | const wxRect *rect = (const wxRect *) NULL ); | |
1e6feb95 | 96 | virtual void Update(); |
cc2b7472 | 97 | virtual void Clear(); |
a0e449ff VZ |
98 | virtual void Freeze(); |
99 | virtual void Thaw(); | |
bfc6fde4 | 100 | |
cc2b7472 VZ |
101 | virtual bool SetCursor( const wxCursor &cursor ); |
102 | virtual bool SetFont( const wxFont &font ); | |
bfc6fde4 | 103 | |
bfc6fde4 VZ |
104 | virtual int GetCharHeight() const; |
105 | virtual int GetCharWidth() const; | |
cc2b7472 VZ |
106 | virtual void GetTextExtent(const wxString& string, |
107 | int *x, int *y, | |
108 | int *descent = (int *) NULL, | |
109 | int *externalLeading = (int *) NULL, | |
110 | const wxFont *theFont = (const wxFont *) NULL) | |
111 | const; | |
112 | ||
1e6feb95 | 113 | #if wxUSE_MENUS_NATIVE |
a1665b22 | 114 | virtual bool DoPopupMenu( wxMenu *menu, int x, int y ); |
1e6feb95 | 115 | #endif // wxUSE_MENUS_NATIVE |
cc2b7472 VZ |
116 | |
117 | virtual void SetScrollbar( int orient, int pos, int thumbVisible, | |
118 | int range, bool refresh = TRUE ); | |
119 | virtual void SetScrollPos( int orient, int pos, bool refresh = TRUE ); | |
120 | virtual int GetScrollPos( int orient ) const; | |
121 | virtual int GetScrollThumb( int orient ) const; | |
122 | virtual int GetScrollRange( int orient ) const; | |
123 | virtual void ScrollWindow( int dx, int dy, | |
124 | const wxRect* rect = (wxRect *) NULL ); | |
2bda0e17 | 125 | |
9cd6d737 VZ |
126 | virtual bool ScrollLines(int lines); |
127 | virtual bool ScrollPages(int pages); | |
b9b3393e | 128 | |
47d67540 | 129 | #if wxUSE_DRAG_AND_DROP |
cc2b7472 VZ |
130 | virtual void SetDropTarget( wxDropTarget *dropTarget ); |
131 | #endif // wxUSE_DRAG_AND_DROP | |
9f3362c4 | 132 | |
bfc6fde4 VZ |
133 | // Accept files for dragging |
134 | virtual void DragAcceptFiles(bool accept); | |
2bda0e17 | 135 | |
2bda0e17 | 136 | #if WXWIN_COMPATIBILITY |
bfc6fde4 VZ |
137 | // Set/get scroll attributes |
138 | virtual void SetScrollRange(int orient, int range, bool refresh = TRUE); | |
139 | virtual void SetScrollPage(int orient, int page, bool refresh = TRUE); | |
140 | virtual int OldGetScrollRange(int orient) const; | |
141 | virtual int GetScrollPage(int orient) const; | |
42e69d6b VZ |
142 | |
143 | // event handlers | |
144 | // Handle a control command | |
145 | virtual void OnCommand(wxWindow& win, wxCommandEvent& event); | |
146 | ||
147 | // Override to define new behaviour for default action (e.g. double | |
148 | // clicking on a listbox) | |
149 | virtual void OnDefaultAction(wxControl * WXUNUSED(initiatingItem)) { } | |
cc2b7472 | 150 | #endif // WXWIN_COMPATIBILITY |
bfc6fde4 | 151 | |
34636400 | 152 | #if wxUSE_CARET && WXWIN_COMPATIBILITY |
789295bf VZ |
153 | // caret manipulation (old MSW only functions, see wxCaret class for the |
154 | // new API) | |
155 | void CreateCaret(int w, int h); | |
156 | void CreateCaret(const wxBitmap *bitmap); | |
157 | void DestroyCaret(); | |
158 | void ShowCaret(bool show); | |
159 | void SetCaretPos(int x, int y); | |
160 | void GetCaretPos(int *x, int *y) const; | |
161 | #endif // wxUSE_CARET | |
bfc6fde4 | 162 | |
1e6feb95 | 163 | #ifndef __WXUNIVERSAL__ |
cc2b7472 VZ |
164 | // Native resource loading (implemented in src/msw/nativdlg.cpp) |
165 | // FIXME: should they really be all virtual? | |
bfc6fde4 VZ |
166 | virtual bool LoadNativeDialog(wxWindow* parent, wxWindowID& id); |
167 | virtual bool LoadNativeDialog(wxWindow* parent, const wxString& name); | |
42e69d6b VZ |
168 | wxWindow* GetWindowChild1(wxWindowID id); |
169 | wxWindow* GetWindowChild(wxWindowID id); | |
1e6feb95 | 170 | #endif // __WXUNIVERSAL__ |
2bda0e17 | 171 | |
f6bcfd97 BP |
172 | // a MSW only function which sends a size event to the window using its |
173 | // current size - this has an effect of refreshing the window layout | |
3cfcd50b GT |
174 | /* |
175 | FUNCTION IS NOW A MEMBER OF wxFrame - gt | |
f6bcfd97 | 176 | void SendSizeEvent(); |
3cfcd50b | 177 | */ |
f6bcfd97 | 178 | |
cc2b7472 VZ |
179 | // implementation from now on |
180 | // -------------------------- | |
2bda0e17 | 181 | |
cc2b7472 VZ |
182 | // simple accessors |
183 | // ---------------- | |
2bda0e17 | 184 | |
d7c24517 VZ |
185 | WXHWND GetHWND() const { return m_hWnd; } |
186 | void SetHWND(WXHWND hWnd) { m_hWnd = hWnd; } | |
187 | virtual WXWidget GetHandle() const { return GetHWND(); } | |
2bda0e17 | 188 | |
cc2b7472 VZ |
189 | bool GetUseCtl3D() const { return m_useCtl3D; } |
190 | bool GetTransparentBackground() const { return m_backgroundTransparent; } | |
191 | void SetTransparent(bool t = TRUE) { m_backgroundTransparent = t; } | |
2bda0e17 | 192 | |
cc2b7472 VZ |
193 | // event handlers |
194 | // -------------- | |
00c4e897 | 195 | |
bfc6fde4 | 196 | void OnEraseBackground(wxEraseEvent& event); |
bfc6fde4 | 197 | void OnIdle(wxIdleEvent& event); |
63da7df7 | 198 | void OnPaint(wxPaintEvent& event); |
2bda0e17 | 199 | |
2bda0e17 | 200 | public: |
bfc6fde4 VZ |
201 | // For implementation purposes - sometimes decorations make the client area |
202 | // smaller | |
203 | virtual wxPoint GetClientAreaOrigin() const; | |
204 | ||
bfc6fde4 VZ |
205 | // Windows subclassing |
206 | void SubclassWin(WXHWND hWnd); | |
207 | void UnsubclassWin(); | |
bfc6fde4 | 208 | |
a23fd0e1 VZ |
209 | WXFARPROC MSWGetOldWndProc() const { return m_oldWndProc; } |
210 | void MSWSetOldWndProc(WXFARPROC proc) { m_oldWndProc = proc; } | |
bfc6fde4 | 211 | |
197dd9af | 212 | wxWindow *FindItem(long id) const; |
42e69d6b | 213 | wxWindow *FindItemByHWND(WXHWND hWnd, bool controlOnly = FALSE) const; |
bfc6fde4 VZ |
214 | |
215 | // Make a Windows extended style from the given wxWindows window style | |
8d99be5f | 216 | static WXDWORD MakeExtendedStyle(long style, |
df613907 | 217 | bool eliminateBorders = FALSE); |
bfc6fde4 | 218 | // Determine whether 3D effects are wanted |
8d99be5f | 219 | WXDWORD Determine3DEffects(WXDWORD defaultBorderStyle, bool *want3D) const; |
bfc6fde4 | 220 | |
bfc6fde4 VZ |
221 | // MSW only: TRUE if this control is part of the main control |
222 | virtual bool ContainsHWND(WXHWND WXUNUSED(hWnd)) const { return FALSE; }; | |
223 | ||
b225f659 VZ |
224 | // translate wxWindows coords into Windows ones suitable to be passed to |
225 | // ::CreateWindow() | |
226 | // | |
227 | // returns TRUE if non default coords are returned, FALSE otherwise | |
228 | bool MSWGetCreateWindowCoords(const wxPoint& pos, | |
229 | const wxSize& size, | |
230 | int& x, int& y, | |
231 | int& w, int& h) const; | |
232 | ||
233 | // creates the window of specified Windows class with given style, extended | |
234 | // style, title and geometry (default values | |
235 | // | |
236 | // returns TRUE if the window has been created, FALSE if creation failed | |
237 | bool MSWCreate(const wxChar *wclass, | |
238 | const wxChar *title = NULL, | |
239 | const wxPoint& pos = wxDefaultPosition, | |
240 | const wxSize& size = wxDefaultSize, | |
241 | WXDWORD style = 0, | |
a23fd0e1 | 242 | WXDWORD exendedStyle = 0); |
b225f659 | 243 | |
42e69d6b | 244 | virtual bool MSWCommand(WXUINT param, WXWORD id); |
bfc6fde4 | 245 | |
42e69d6b VZ |
246 | #if WXWIN_COMPATIBILITY |
247 | wxObject *GetChild(int number) const; | |
248 | virtual void MSWDeviceToLogical(float *x, float *y) const; | |
249 | #endif // WXWIN_COMPATIBILITY | |
bfc6fde4 | 250 | |
1e6feb95 | 251 | #ifndef __WXUNIVERSAL__ |
bfc6fde4 VZ |
252 | // Create an appropriate wxWindow from a HWND |
253 | virtual wxWindow* CreateWindowFromHWND(wxWindow* parent, WXHWND hWnd); | |
254 | ||
255 | // Make sure the window style reflects the HWND style (roughly) | |
256 | virtual void AdoptAttributesFromHWND(); | |
1e6feb95 | 257 | #endif // __WXUNIVERSAL__ |
bfc6fde4 VZ |
258 | |
259 | // Setup background and foreground colours correctly | |
260 | virtual void SetupColours(); | |
261 | ||
42e69d6b VZ |
262 | // ------------------------------------------------------------------------ |
263 | // helpers for message handlers: these perform the same function as the | |
264 | // message crackers from <windowsx.h> - they unpack WPARAM and LPARAM into | |
265 | // the correct parameters | |
266 | // ------------------------------------------------------------------------ | |
267 | ||
268 | void UnpackCommand(WXWPARAM wParam, WXLPARAM lParam, | |
269 | WXWORD *id, WXHWND *hwnd, WXWORD *cmd); | |
270 | void UnpackActivate(WXWPARAM wParam, WXLPARAM lParam, | |
271 | WXWORD *state, WXWORD *minimized, WXHWND *hwnd); | |
272 | void UnpackScroll(WXWPARAM wParam, WXLPARAM lParam, | |
273 | WXWORD *code, WXWORD *pos, WXHWND *hwnd); | |
274 | void UnpackCtlColor(WXWPARAM wParam, WXLPARAM lParam, | |
275 | WXWORD *nCtlColor, WXHDC *hdc, WXHWND *hwnd); | |
276 | void UnpackMenuSelect(WXWPARAM wParam, WXLPARAM lParam, | |
277 | WXWORD *item, WXWORD *flags, WXHMENU *hmenu); | |
278 | ||
a23fd0e1 | 279 | // ------------------------------------------------------------------------ |
3cfcd50b | 280 | // internal handlers for MSW messages: all handlers return a boolean value: |
a23fd0e1 VZ |
281 | // TRUE means that the handler processed the event and FALSE that it didn't |
282 | // ------------------------------------------------------------------------ | |
bfc6fde4 | 283 | |
42e69d6b VZ |
284 | // there are several cases where we have virtual functions for Windows |
285 | // message processing: this is because these messages often require to be | |
286 | // processed in a different manner in the derived classes. For all other | |
287 | // messages, however, we do *not* have corresponding MSWOnXXX() function | |
288 | // and if the derived class wants to process them, it should override | |
289 | // MSWWindowProc() directly. | |
a23fd0e1 | 290 | |
42e69d6b | 291 | // scroll event (both horizontal and vertical) |
a23fd0e1 VZ |
292 | virtual bool MSWOnScroll(int orientation, WXWORD nSBCode, |
293 | WXWORD pos, WXHWND control); | |
294 | ||
42e69d6b | 295 | // child control notifications |
a23fd0e1 VZ |
296 | #ifdef __WIN95__ |
297 | virtual bool MSWOnNotify(int idCtrl, WXLPARAM lParam, WXLPARAM *result); | |
298 | #endif // __WIN95__ | |
299 | ||
42e69d6b VZ |
300 | // owner-drawn controls need to process these messages |
301 | virtual bool MSWOnDrawItem(int id, WXDRAWITEMSTRUCT *item); | |
302 | virtual bool MSWOnMeasureItem(int id, WXMEASUREITEMSTRUCT *item); | |
303 | ||
304 | // the rest are not virtual | |
305 | bool HandleCreate(WXLPCREATESTRUCT cs, bool *mayCreate); | |
306 | bool HandleInitDialog(WXHWND hWndFocus); | |
307 | bool HandleDestroy(); | |
308 | ||
309 | bool HandlePaint(); | |
310 | bool HandleEraseBkgnd(WXHDC pDC); | |
311 | ||
312 | bool HandleMinimize(); | |
313 | bool HandleMaximize(); | |
314 | bool HandleSize(int x, int y, WXUINT flag); | |
315 | bool HandleGetMinMaxInfo(void *mmInfo); | |
316 | ||
317 | bool HandleShow(bool show, int status); | |
318 | bool HandleActivate(int flag, bool minimized, WXHWND activate); | |
319 | ||
320 | bool HandleCommand(WXWORD id, WXWORD cmd, WXHWND control); | |
321 | bool HandleSysCommand(WXWPARAM wParam, WXLPARAM lParam); | |
322 | ||
323 | bool HandleCtlColor(WXHBRUSH *hBrush, | |
101f488c VZ |
324 | WXHDC hdc, |
325 | WXHWND hWnd, | |
326 | WXUINT nCtlColor, | |
327 | WXUINT message, | |
328 | WXWPARAM wParam, | |
329 | WXLPARAM lParam); | |
a23fd0e1 | 330 | |
42e69d6b VZ |
331 | bool HandlePaletteChanged(WXHWND hWndPalChange); |
332 | bool HandleQueryNewPalette(); | |
333 | bool HandleSysColorChange(); | |
574c939e KB |
334 | bool HandleDisplayChange(); |
335 | ||
a23fd0e1 | 336 | |
42e69d6b VZ |
337 | bool HandleQueryEndSession(long logOff, bool *mayEnd); |
338 | bool HandleEndSession(bool endSession, long logOff); | |
a23fd0e1 | 339 | |
42e69d6b VZ |
340 | bool HandleSetFocus(WXHWND wnd); |
341 | bool HandleKillFocus(WXHWND wnd); | |
bfc6fde4 | 342 | |
42e69d6b | 343 | bool HandleDropFiles(WXWPARAM wParam); |
bfc6fde4 | 344 | |
42e69d6b VZ |
345 | bool HandleMouseEvent(WXUINT msg, int x, int y, WXUINT flags); |
346 | bool HandleMouseMove(int x, int y, WXUINT flags); | |
d2c52078 | 347 | bool HandleMouseWheel(WXWPARAM wParam, WXLPARAM lParam); |
bfc6fde4 | 348 | |
33ac7e6f KB |
349 | bool HandleChar(WXWPARAM wParam, WXLPARAM lParam, bool isASCII = FALSE); |
350 | bool HandleKeyDown(WXWPARAM wParam, WXLPARAM lParam); | |
351 | bool HandleKeyUp(WXWPARAM wParam, WXLPARAM lParam); | |
bfc6fde4 | 352 | |
42e69d6b VZ |
353 | bool HandleQueryDragIcon(WXHICON *hIcon); |
354 | ||
355 | bool HandleSetCursor(WXHWND hWnd, short nHitTest, int mouseMsg); | |
bfc6fde4 | 356 | |
bfc6fde4 VZ |
357 | // Window procedure |
358 | virtual long MSWWindowProc(WXUINT nMsg, WXWPARAM wParam, WXLPARAM lParam); | |
359 | ||
360 | // Calls an appropriate default window procedure | |
361 | virtual long MSWDefWindowProc(WXUINT nMsg, WXWPARAM wParam, WXLPARAM lParam); | |
a37d422a VZ |
362 | |
363 | // message processing helpers | |
364 | ||
365 | // return FALSE if the message shouldn't be translated/preprocessed but | |
366 | // dispatched normally | |
367 | virtual bool MSWShouldPreProcessMessage(WXMSG* pMsg); | |
368 | ||
369 | // return TRUE if the message was preprocessed and shouldn't be dispatched | |
bfc6fde4 | 370 | virtual bool MSWProcessMessage(WXMSG* pMsg); |
a37d422a VZ |
371 | |
372 | // return TRUE if the message was translated and shouldn't be dispatched | |
bfc6fde4 | 373 | virtual bool MSWTranslateMessage(WXMSG* pMsg); |
a37d422a VZ |
374 | |
375 | // called when the window is about to be destroyed | |
bfc6fde4 VZ |
376 | virtual void MSWDestroyWindow(); |
377 | ||
a23fd0e1 VZ |
378 | // this function should return the brush to paint the window background |
379 | // with or 0 for the default brush | |
380 | virtual WXHBRUSH OnCtlColor(WXHDC hDC, | |
381 | WXHWND hWnd, | |
382 | WXUINT nCtlColor, | |
383 | WXUINT message, | |
384 | WXWPARAM wParam, | |
385 | WXLPARAM lParam); | |
bfc6fde4 | 386 | |
cc2b7472 VZ |
387 | #if WXWIN_COMPATIBILITY |
388 | void SetShowing(bool show) { (void)Show(show); } | |
389 | bool IsUserEnabled() const { return IsEnabled(); } | |
390 | #endif // WXWIN_COMPATIBILITY | |
bfc6fde4 VZ |
391 | |
392 | // Responds to colour changes: passes event on to children. | |
393 | void OnSysColourChanged(wxSysColourChangedEvent& event); | |
394 | ||
a23fd0e1 VZ |
395 | // initialize various fields of wxMouseEvent (common part of MSWOnMouseXXX) |
396 | void InitMouseEvent(wxMouseEvent& event, int x, int y, WXUINT flags); | |
bfc6fde4 | 397 | |
1e6feb95 VZ |
398 | // check if mouse is in the window |
399 | bool IsMouseInWindow() const; | |
400 | ||
2bda0e17 | 401 | protected: |
d7c24517 VZ |
402 | // the window handle |
403 | WXHWND m_hWnd; | |
404 | ||
cc2b7472 | 405 | // the old window proc (we subclass all windows) |
bfc6fde4 | 406 | WXFARPROC m_oldWndProc; |
2bda0e17 | 407 | |
cc2b7472 VZ |
408 | // additional (MSW specific) flags |
409 | bool m_useCtl3D:1; // Using CTL3D for this control | |
cc2b7472 VZ |
410 | bool m_backgroundTransparent:1; |
411 | bool m_mouseInWindow:1; | |
412 | bool m_doubleClickAllowed:1; | |
bfc6fde4 | 413 | |
cc2b7472 | 414 | // the size of one page for scrolling |
bfc6fde4 VZ |
415 | int m_xThumbSize; |
416 | int m_yThumbSize; | |
2bda0e17 | 417 | |
a23fd0e1 VZ |
418 | #if wxUSE_MOUSEEVENT_HACK |
419 | // the coordinates of the last mouse event and the type of it | |
cc2b7472 VZ |
420 | long m_lastMouseX, |
421 | m_lastMouseY; | |
422 | int m_lastMouseEvent; | |
a23fd0e1 | 423 | #endif // wxUSE_MOUSEEVENT_HACK |
bfc6fde4 | 424 | |
bfc6fde4 | 425 | WXHMENU m_hMenu; // Menu, if any |
bfc6fde4 | 426 | |
cc2b7472 | 427 | // implement the base class pure virtuals |
dabc0cd5 VZ |
428 | virtual void DoClientToScreen( int *x, int *y ) const; |
429 | virtual void DoScreenToClient( int *x, int *y ) const; | |
cc2b7472 VZ |
430 | virtual void DoGetPosition( int *x, int *y ) const; |
431 | virtual void DoGetSize( int *width, int *height ) const; | |
432 | virtual void DoGetClientSize( int *width, int *height ) const; | |
433 | virtual void DoSetSize(int x, int y, | |
434 | int width, int height, | |
435 | int sizeFlags = wxSIZE_AUTO); | |
bfc6fde4 | 436 | virtual void DoSetClientSize(int width, int height); |
2bda0e17 | 437 | |
94633ad9 VZ |
438 | virtual void DoCaptureMouse(); |
439 | virtual void DoReleaseMouse(); | |
7edcafa4 | 440 | |
b782f2e0 VZ |
441 | // move the window to the specified location and resize it: this is called |
442 | // from both DoSetSize() and DoSetClientSize() and would usually just call | |
443 | // ::MoveWindow() except for composite controls which will want to arrange | |
444 | // themselves inside the given rectangle | |
445 | virtual void DoMoveWindow(int x, int y, int width, int height); | |
446 | ||
cc2b7472 VZ |
447 | #if wxUSE_TOOLTIPS |
448 | virtual void DoSetToolTip( wxToolTip *tip ); | |
449 | #endif // wxUSE_TOOLTIPS | |
450 | ||
b09bda68 VZ |
451 | // the helper functions used by HandleChar/KeyXXX methods |
452 | wxKeyEvent CreateKeyEvent(wxEventType evType, int id, WXLPARAM lp) const; | |
453 | ||
fd3f686c VZ |
454 | private: |
455 | // common part of all ctors | |
456 | void Init(); | |
457 | ||
a23fd0e1 VZ |
458 | // the (non-virtual) handlers for the events |
459 | bool HandleMove(int x, int y); | |
460 | bool HandleJoystickEvent(WXUINT msg, int x, int y, WXUINT flags); | |
461 | ||
462 | #ifdef __WIN95__ | |
463 | bool HandleNotify(int idCtrl, WXLPARAM lParam, WXLPARAM *result); | |
464 | #endif // __WIN95__ | |
465 | ||
e8e4fa12 GT |
466 | DECLARE_DYNAMIC_CLASS(wxWindowMSW) |
467 | DECLARE_NO_COPY_CLASS(wxWindowMSW) | |
fd3f686c | 468 | DECLARE_EVENT_TABLE() |
2bda0e17 KB |
469 | }; |
470 | ||
cc2b7472 VZ |
471 | // --------------------------------------------------------------------------- |
472 | // global functions | |
473 | // --------------------------------------------------------------------------- | |
2bda0e17 | 474 | |
cc2b7472 | 475 | // kbd code translation |
184b5d99 JS |
476 | WXDLLEXPORT int wxCharCodeMSWToWX(int keySym); |
477 | WXDLLEXPORT int wxCharCodeWXToMSW(int id, bool *IsVirtual); | |
2bda0e17 | 478 | |
b225f659 VZ |
479 | // window creation helper class: before creating a new HWND, instantiate an |
480 | // object of this class on stack - this allows to process the messages sent to | |
481 | // the window even before CreateWindow() returns | |
482 | class wxWindowCreationHook | |
483 | { | |
484 | public: | |
485 | wxWindowCreationHook(wxWindowMSW *winBeingCreated); | |
486 | ~wxWindowCreationHook(); | |
487 | }; | |
488 | ||
2bda0e17 | 489 | #endif |
bbcdf8bc | 490 | // _WX_WINDOW_H_ |