]> git.saurik.com Git - wxWidgets.git/blame - include/wx/msw/window.h
wx/msw/notebook.h needs wx/notebook.h in lack of precompiled headers.
[wxWidgets.git] / include / wx / msw / window.h
CommitLineData
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
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// 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
cc2b7472
VZ
31// ---------------------------------------------------------------------------
32// constants
33// ---------------------------------------------------------------------------
1e6d9499 34
77ffb593 35// FIXME does anybody use those? they're unused by wxWidgets...
cc2b7472 36enum
1e6d9499 37{
cc2b7472
VZ
38 wxKEY_SHIFT = 1,
39 wxKEY_CTRL = 2
1e6d9499
JS
40};
41
cc2b7472
VZ
42// ---------------------------------------------------------------------------
43// wxWindow declaration for MSW
44// ---------------------------------------------------------------------------
b782f2e0 45
1e6feb95 46class WXDLLEXPORT wxWindowMSW : public wxWindowBase
1e6d9499 47{
2bda0e17 48public:
6463b9f5 49 wxWindowMSW() { Init(); }
1e6feb95
VZ
50
51 wxWindowMSW(wxWindow *parent,
52 wxWindowID id,
53 const wxPoint& pos = wxDefaultPosition,
54 const wxSize& size = wxDefaultSize,
55 long style = 0,
6463b9f5
JS
56 const wxString& name = wxPanelNameStr)
57 {
58 Init();
59 Create(parent, id, pos, size, style, name);
60 }
2bda0e17 61
1e6feb95 62 virtual ~wxWindowMSW();
2bda0e17 63
cc2b7472
VZ
64 bool Create(wxWindow *parent,
65 wxWindowID id,
66 const wxPoint& pos = wxDefaultPosition,
67 const wxSize& size = wxDefaultSize,
68 long style = 0,
69 const wxString& name = wxPanelNameStr);
bfc6fde4 70
cc2b7472 71 // implement base class pure virtuals
42e69d6b
VZ
72 virtual void SetTitle( const wxString& title);
73 virtual wxString GetTitle() const;
74
bfc6fde4 75 virtual void Raise();
bfc6fde4
VZ
76 virtual void Lower();
77
27d2dbbc
WS
78 virtual bool Show( bool show = true );
79 virtual bool Enable( bool enable = true );
bfc6fde4 80
cc2b7472 81 virtual void SetFocus();
ddf9d04f 82 virtual void SetFocusFromKbd();
bfc6fde4 83
1e6feb95 84 virtual bool Reparent(wxWindowBase *newParent);
bfc6fde4 85
cc2b7472 86 virtual void WarpPointer(int x, int y);
bfc6fde4 87
27d2dbbc 88 virtual void Refresh( bool eraseBackground = true,
cc2b7472 89 const wxRect *rect = (const wxRect *) NULL );
1e6feb95 90 virtual void Update();
a0e449ff
VZ
91 virtual void Freeze();
92 virtual void Thaw();
bfc6fde4 93
b2d5a7ee 94 virtual void SetWindowStyleFlag( long style );
cc2b7472
VZ
95 virtual bool SetCursor( const wxCursor &cursor );
96 virtual bool SetFont( const wxFont &font );
bfc6fde4 97
bfc6fde4
VZ
98 virtual int GetCharHeight() const;
99 virtual int GetCharWidth() const;
cc2b7472
VZ
100 virtual void GetTextExtent(const wxString& string,
101 int *x, int *y,
102 int *descent = (int *) NULL,
103 int *externalLeading = (int *) NULL,
104 const wxFont *theFont = (const wxFont *) NULL)
105 const;
106
1e6feb95 107#if wxUSE_MENUS_NATIVE
a1665b22 108 virtual bool DoPopupMenu( wxMenu *menu, int x, int y );
1e6feb95 109#endif // wxUSE_MENUS_NATIVE
cc2b7472
VZ
110
111 virtual void SetScrollbar( int orient, int pos, int thumbVisible,
27d2dbbc
WS
112 int range, bool refresh = true );
113 virtual void SetScrollPos( int orient, int pos, bool refresh = true );
cc2b7472
VZ
114 virtual int GetScrollPos( int orient ) const;
115 virtual int GetScrollThumb( int orient ) const;
116 virtual int GetScrollRange( int orient ) const;
117 virtual void ScrollWindow( int dx, int dy,
118 const wxRect* rect = (wxRect *) NULL );
2bda0e17 119
9cd6d737
VZ
120 virtual bool ScrollLines(int lines);
121 virtual bool ScrollPages(int pages);
b9b3393e 122
47d67540 123#if wxUSE_DRAG_AND_DROP
cc2b7472
VZ
124 virtual void SetDropTarget( wxDropTarget *dropTarget );
125#endif // wxUSE_DRAG_AND_DROP
9f3362c4 126
bfc6fde4
VZ
127 // Accept files for dragging
128 virtual void DragAcceptFiles(bool accept);
2bda0e17 129
b0cb0158
VZ
130#if WXWIN_COMPATIBILITY_2_4
131 wxDEPRECATED( bool GetUseCtl3D() const );
132 wxDEPRECATED( bool GetTransparentBackground() const );
27d2dbbc 133 wxDEPRECATED( void SetTransparent(bool t = true) );
b0cb0158
VZ
134#endif // WXWIN_COMPATIBILITY_2_4
135
1e6feb95 136#ifndef __WXUNIVERSAL__
cc2b7472
VZ
137 // Native resource loading (implemented in src/msw/nativdlg.cpp)
138 // FIXME: should they really be all virtual?
bfc6fde4
VZ
139 virtual bool LoadNativeDialog(wxWindow* parent, wxWindowID& id);
140 virtual bool LoadNativeDialog(wxWindow* parent, const wxString& name);
42e69d6b
VZ
141 wxWindow* GetWindowChild1(wxWindowID id);
142 wxWindow* GetWindowChild(wxWindowID id);
1e6feb95 143#endif // __WXUNIVERSAL__
2bda0e17 144
540b6b09 145#if wxUSE_HOTKEY
5048c832 146 // install and deinstall a system wide hotkey
540b6b09 147 virtual bool RegisterHotKey(int hotkeyId, int modifiers, int keycode);
5048c832 148 virtual bool UnregisterHotKey(int hotkeyId);
540b6b09 149#endif // wxUSE_HOTKEY
5048c832 150
ed4780ea
VZ
151 // window handle stuff
152 // -------------------
2bda0e17 153
d7c24517
VZ
154 WXHWND GetHWND() const { return m_hWnd; }
155 void SetHWND(WXHWND hWnd) { m_hWnd = hWnd; }
156 virtual WXWidget GetHandle() const { return GetHWND(); }
2bda0e17 157
ed4780ea
VZ
158 void AssociateHandle(WXWidget handle);
159 void DissociateHandle();
160
161
162 // implementation from now on
163 // ==========================
164
cc2b7472
VZ
165 // event handlers
166 // --------------
00c4e897 167
63da7df7 168 void OnPaint(wxPaintEvent& event);
8681b094 169 void OnEraseBackground(wxEraseEvent& event);
79099b80 170#ifdef __WXWINCE__
8681b094 171 void OnInitDialog(wxInitDialogEvent& event);
79099b80 172#endif
2bda0e17 173
2bda0e17 174public:
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
27d2dbbc 186 // return true if the window is of a standard (i.e. not wxWidgets') class
5a403e3f
VZ
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;
27d2dbbc 192 wxWindow *FindItemByHWND(WXHWND hWnd, bool controlOnly = false) const;
bfc6fde4 193
27d2dbbc
WS
194 // MSW only: true if this control is part of the main control
195 virtual bool ContainsHWND(WXHWND WXUNUSED(hWnd)) const { return false; };
bfc6fde4 196
77ffb593 197 // translate wxWidgets style flags for this control into the Windows style
b2d5a7ee
VZ
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 203
77ffb593 204 // get the MSW window flags corresponding to wxWidgets ones
b2d5a7ee
VZ
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
77ffb593 211 // translate wxWidgets coords into Windows ones suitable to be passed to
b225f659
VZ
212 // ::CreateWindow()
213 //
27d2dbbc 214 // returns true if non default coords are returned, false otherwise
b225f659
VZ
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 //
27d2dbbc 226 // returns true if the window has been created, false if creation failed
b225f659
VZ
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,
01c500af 260 WXHDC *hdc, WXHWND *hwnd);
42e69d6b
VZ
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:
27d2dbbc 266 // true means that the handler processed the event and false that it didn't
a23fd0e1 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);
42e69d6b 307
48fa6bd3 308 bool HandleCtlColor(WXHBRUSH *hBrush, WXHDC hdc, WXHWND hWnd);
a23fd0e1 309
42e69d6b
VZ
310 bool HandlePaletteChanged(WXHWND hWndPalChange);
311 bool HandleQueryNewPalette();
312 bool HandleSysColorChange();
574c939e 313 bool HandleDisplayChange();
a5e84126 314 bool HandleCaptureChanged(WXHWND gainedCapture);
a23fd0e1 315
42e69d6b
VZ
316 bool HandleQueryEndSession(long logOff, bool *mayEnd);
317 bool HandleEndSession(bool endSession, long logOff);
a23fd0e1 318
42e69d6b
VZ
319 bool HandleSetFocus(WXHWND wnd);
320 bool HandleKillFocus(WXHWND wnd);
bfc6fde4 321
42e69d6b 322 bool HandleDropFiles(WXWPARAM wParam);
bfc6fde4 323
42e69d6b
VZ
324 bool HandleMouseEvent(WXUINT msg, int x, int y, WXUINT flags);
325 bool HandleMouseMove(int x, int y, WXUINT flags);
d2c52078 326 bool HandleMouseWheel(WXWPARAM wParam, WXLPARAM lParam);
bfc6fde4 327
27d2dbbc 328 bool HandleChar(WXWPARAM wParam, WXLPARAM lParam, bool isASCII = false);
33ac7e6f
KB
329 bool HandleKeyDown(WXWPARAM wParam, WXLPARAM lParam);
330 bool HandleKeyUp(WXWPARAM wParam, WXLPARAM lParam);
5048c832
JS
331#if wxUSE_ACCEL
332 bool HandleHotKey(WXWPARAM wParam, WXLPARAM lParam);
333#endif
b74cce40
VZ
334#ifdef __WIN32__
335 int HandleMenuChar(int chAccel, WXLPARAM lParam);
336#endif
bfc6fde4 337
42e69d6b
VZ
338 bool HandleQueryDragIcon(WXHICON *hIcon);
339
340 bool HandleSetCursor(WXHWND hWnd, short nHitTest, int mouseMsg);
bfc6fde4 341
bfc6fde4 342 // Window procedure
c140b7e7 343 virtual WXLRESULT MSWWindowProc(WXUINT nMsg, WXWPARAM wParam, WXLPARAM lParam);
bfc6fde4
VZ
344
345 // Calls an appropriate default window procedure
c140b7e7 346 virtual WXLRESULT MSWDefWindowProc(WXUINT nMsg, WXWPARAM wParam, WXLPARAM lParam);
a37d422a
VZ
347
348 // message processing helpers
349
27d2dbbc 350 // return false if the message shouldn't be translated/preprocessed but
a37d422a
VZ
351 // dispatched normally
352 virtual bool MSWShouldPreProcessMessage(WXMSG* pMsg);
353
27d2dbbc 354 // return true if the message was preprocessed and shouldn't be dispatched
bfc6fde4 355 virtual bool MSWProcessMessage(WXMSG* pMsg);
a37d422a 356
27d2dbbc 357 // return true if the message was translated and shouldn't be dispatched
bfc6fde4 358 virtual bool MSWTranslateMessage(WXMSG* pMsg);
a37d422a
VZ
359
360 // called when the window is about to be destroyed
bfc6fde4
VZ
361 virtual void MSWDestroyWindow();
362
a23fd0e1
VZ
363 // this function should return the brush to paint the window background
364 // with or 0 for the default brush
01c500af
VZ
365 virtual WXHBRUSH MSWControlColor(WXHDC hDC);
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 //
371 // the base class version uses MSWGetBgColourForChild() and returns a solid
372 // brush if we have a non default background colour or 0 otherwise
373 virtual WXHBRUSH MSWGetBgBrushForChild(WXHDC WXUNUSED(hDC), wxWindow *child)
374 {
375 return MSWGetSolidBgBrushForChild(child);
376 }
377
378 // return the background colour of this window under the given child
379 // (possible grand child)
380 //
381 // this is a hack as if the background is themed, there is no single colour
382 // representing it, but sometimes we can't use the pattern brush returned
383 // by MSWGetBgBrushForChild() anyhow and then this function is used as
384 // fallback
385 //
386 // the base class version returns bg colour if it had been explicitely set
387 // or wxNullColour otherwise
388 virtual wxColour MSWGetBgColourForChild(wxWindow *child);
389
390 // convenience function: returns a solid brush of the colour returned by
391 // MSWGetBgColourForChild() or 0
392 WXHBRUSH MSWGetSolidBgBrushForChild(wxWindow *child);
393
394 // normally just calls MSWGetBgBrushForChild() on the parent window but may
395 // be overridden if the default background brush is not suitable for some
396 // reason (e.g. wxStaticBox uses MSWGetSolidBgBrushForChild() instead)
397 virtual WXHBRUSH MSWGetBgBrushForSelf(wxWindow *parent, WXHDC hDC)
398 {
399 return parent->MSWGetBgBrushForChild(hDC, this);
400 }
401
402 // return the background brush to use for this window by quering the parent
403 // windows via their MSWGetBgBrushForChild() recursively
404 WXHBRUSH MSWGetBgBrush(WXHDC hDC);
405
bfc6fde4
VZ
406 // Responds to colour changes: passes event on to children.
407 void OnSysColourChanged(wxSysColourChangedEvent& event);
408
a23fd0e1
VZ
409 // initialize various fields of wxMouseEvent (common part of MSWOnMouseXXX)
410 void InitMouseEvent(wxMouseEvent& event, int x, int y, WXUINT flags);
bfc6fde4 411
1e6feb95
VZ
412 // check if mouse is in the window
413 bool IsMouseInWindow() const;
414
e39af974
JS
415 // virtual function for implementing internal idle
416 // behaviour
417 virtual void OnInternalIdle() ;
418
2bda0e17 419protected:
d7c24517
VZ
420 // the window handle
421 WXHWND m_hWnd;
422
cc2b7472 423 // the old window proc (we subclass all windows)
bfc6fde4 424 WXFARPROC m_oldWndProc;
2bda0e17 425
cc2b7472 426 // additional (MSW specific) flags
cc2b7472 427 bool m_mouseInWindow:1;
68304caf 428 bool m_lastKeydownProcessed:1;
bfc6fde4 429
cc2b7472 430 // the size of one page for scrolling
bfc6fde4
VZ
431 int m_xThumbSize;
432 int m_yThumbSize;
2bda0e17 433
a23fd0e1
VZ
434#if wxUSE_MOUSEEVENT_HACK
435 // the coordinates of the last mouse event and the type of it
cc2b7472
VZ
436 long m_lastMouseX,
437 m_lastMouseY;
438 int m_lastMouseEvent;
a23fd0e1 439#endif // wxUSE_MOUSEEVENT_HACK
bfc6fde4 440
bfc6fde4 441 WXHMENU m_hMenu; // Menu, if any
bfc6fde4 442
cc2b7472 443 // implement the base class pure virtuals
dabc0cd5
VZ
444 virtual void DoClientToScreen( int *x, int *y ) const;
445 virtual void DoScreenToClient( int *x, int *y ) const;
cc2b7472
VZ
446 virtual void DoGetPosition( int *x, int *y ) const;
447 virtual void DoGetSize( int *width, int *height ) const;
448 virtual void DoGetClientSize( int *width, int *height ) const;
449 virtual void DoSetSize(int x, int y,
450 int width, int height,
451 int sizeFlags = wxSIZE_AUTO);
bfc6fde4 452 virtual void DoSetClientSize(int width, int height);
2bda0e17 453
94633ad9
VZ
454 virtual void DoCaptureMouse();
455 virtual void DoReleaseMouse();
68304caf 456
a494b2bc
VZ
457 // has the window been frozen by Freeze()?
458 bool IsFrozen() const { return m_frozenness > 0; }
459
b782f2e0
VZ
460 // move the window to the specified location and resize it: this is called
461 // from both DoSetSize() and DoSetClientSize() and would usually just call
462 // ::MoveWindow() except for composite controls which will want to arrange
463 // themselves inside the given rectangle
464 virtual void DoMoveWindow(int x, int y, int width, int height);
465
cc2b7472
VZ
466#if wxUSE_TOOLTIPS
467 virtual void DoSetToolTip( wxToolTip *tip );
bd9cd534
VZ
468
469 // process TTN_NEEDTEXT message properly (i.e. fixing the bugs in
470 // comctl32.dll in our code -- see the function body for more info)
471 bool HandleTooltipNotify(WXUINT code,
472 WXLPARAM lParam,
473 const wxString& ttip);
cc2b7472
VZ
474#endif // wxUSE_TOOLTIPS
475
b09bda68 476 // the helper functions used by HandleChar/KeyXXX methods
9c7df356
VZ
477 wxKeyEvent CreateKeyEvent(wxEventType evType, int id,
478 WXLPARAM lParam = 0, WXWPARAM wParam = 0) const;
b09bda68 479
fd3f686c
VZ
480private:
481 // common part of all ctors
482 void Init();
483
a23fd0e1
VZ
484 // the (non-virtual) handlers for the events
485 bool HandleMove(int x, int y);
5706de1c 486 bool HandleMoving(wxRect& rect);
a23fd0e1
VZ
487 bool HandleJoystickEvent(WXUINT msg, int x, int y, WXUINT flags);
488
489#ifdef __WIN95__
490 bool HandleNotify(int idCtrl, WXLPARAM lParam, WXLPARAM *result);
491#endif // __WIN95__
492
d7cbabe0
VZ
493 // list of disabled children before last call to our Disable()
494 wxWindowList *m_childrenDisabled;
495
a1037371
VZ
496 // number of calls to Freeze() minus number of calls to Thaw()
497 unsigned int m_frozenness;
498
e8e4fa12
GT
499 DECLARE_DYNAMIC_CLASS(wxWindowMSW)
500 DECLARE_NO_COPY_CLASS(wxWindowMSW)
fd3f686c 501 DECLARE_EVENT_TABLE()
2bda0e17
KB
502};
503
b0cb0158
VZ
504// ----------------------------------------------------------------------------
505// inline functions
506// ----------------------------------------------------------------------------
507
508#if WXWIN_COMPATIBILITY_2_4
509
510inline bool wxWindowMSW::GetUseCtl3D() const { return false; }
511inline bool wxWindowMSW::GetTransparentBackground() const { return false; }
512inline void wxWindowMSW::SetTransparent(bool WXUNUSED(t)) { }
513
514#endif // WXWIN_COMPATIBILITY_2_4
515
cc2b7472
VZ
516// ---------------------------------------------------------------------------
517// global functions
518// ---------------------------------------------------------------------------
2bda0e17 519
cc2b7472 520// kbd code translation
ff792344 521WXDLLEXPORT int wxCharCodeMSWToWX(int keySym, WXLPARAM lParam = 0);
373a5fb3 522WXDLLEXPORT WXWORD wxCharCodeWXToMSW(int id, bool *IsVirtual);
2bda0e17 523
b225f659
VZ
524// window creation helper class: before creating a new HWND, instantiate an
525// object of this class on stack - this allows to process the messages sent to
526// the window even before CreateWindow() returns
527class wxWindowCreationHook
528{
529public:
530 wxWindowCreationHook(wxWindowMSW *winBeingCreated);
531 ~wxWindowCreationHook();
532};
533
cbc8c6ee
VZ
534// ----------------------------------------------------------------------------
535// global objects
536// ----------------------------------------------------------------------------
537
538// notice that this hash must be defined after wxWindow declaration as it
539// needs to "see" its dtor and not just forward declaration
540#include "wx/hash.h"
541
542// pseudo-template HWND <-> wxWindow hash table
54d73f3d
MB
543#if WXWIN_COMPATIBILITY_2_4
544WX_DECLARE_HASH(wxWindow, wxWindowList, wxWinHashTable);
545#else
40ad3426 546WX_DECLARE_HASH(wxWindowMSW, wxWindowList, wxWinHashTable);
54d73f3d 547#endif
cbc8c6ee
VZ
548
549extern wxWinHashTable *wxWinHandleHash;
550
2bda0e17 551#endif
bbcdf8bc 552 // _WX_WINDOW_H_