1 /////////////////////////////////////////////////////////////////////////////
2 // Name: wx/msw/window.h
3 // Purpose: wxWindowMSW class
4 // Author: Julian Smart
5 // Modified by: Vadim Zeitlin on 13.05.99: complete refont of message handling,
6 // elimination of Default(), ...
9 // Copyright: (c) Julian Smart
10 // Licence: wxWindows licence
11 /////////////////////////////////////////////////////////////////////////////
16 #include "wx/settings.h" // solely for wxSystemColour
18 // if this is set to 1, we use deferred window sizing to reduce flicker when
19 // resizing complicated window hierarchies, but this can in theory result in
20 // different behaviour than the old code so we keep the possibility to use it
21 // by setting this to 0 (in the future this should be removed completely)
23 #define wxUSE_DEFERRED_SIZING 0
25 #define wxUSE_DEFERRED_SIZING 1
28 // ---------------------------------------------------------------------------
29 // wxWindow declaration for MSW
30 // ---------------------------------------------------------------------------
32 class WXDLLIMPEXP_CORE wxWindowMSW
: public wxWindowBase
34 friend class wxSpinCtrl
;
35 friend class wxSlider
;
36 friend class wxRadioBox
;
37 #if defined __VISUALC__ && __VISUALC__ <= 1200
38 friend class wxWindowMSW
;
41 wxWindowMSW() { Init(); }
43 wxWindowMSW(wxWindow
*parent
,
45 const wxPoint
& pos
= wxDefaultPosition
,
46 const wxSize
& size
= wxDefaultSize
,
48 const wxString
& name
= wxPanelNameStr
)
51 Create(parent
, id
, pos
, size
, style
, name
);
54 virtual ~wxWindowMSW();
56 bool Create(wxWindow
*parent
,
58 const wxPoint
& pos
= wxDefaultPosition
,
59 const wxSize
& size
= wxDefaultSize
,
61 const wxString
& name
= wxPanelNameStr
);
63 // implement base class pure virtuals
64 virtual void SetLabel(const wxString
& label
);
65 virtual wxString
GetLabel() const;
70 virtual bool BeginRepositioningChildren();
71 virtual void EndRepositioningChildren();
73 virtual bool Show(bool show
= true);
74 virtual bool ShowWithEffect(wxShowEffect effect
,
77 return MSWShowWithEffect(true, effect
, timeout
);
79 virtual bool HideWithEffect(wxShowEffect effect
,
82 return MSWShowWithEffect(false, effect
, timeout
);
85 virtual void SetFocus();
86 virtual void SetFocusFromKbd();
88 virtual bool Reparent(wxWindowBase
*newParent
);
90 virtual void WarpPointer(int x
, int y
);
92 virtual void Refresh( bool eraseBackground
= true,
93 const wxRect
*rect
= (const wxRect
*) NULL
);
94 virtual void Update();
96 virtual void SetWindowStyleFlag(long style
);
97 virtual void SetExtraStyle(long exStyle
);
98 virtual bool SetCursor( const wxCursor
&cursor
);
99 virtual bool SetFont( const wxFont
&font
);
101 virtual int GetCharHeight() const;
102 virtual int GetCharWidth() const;
104 virtual void SetScrollbar( int orient
, int pos
, int thumbVisible
,
105 int range
, bool refresh
= true );
106 virtual void SetScrollPos( int orient
, int pos
, bool refresh
= true );
107 virtual int GetScrollPos( int orient
) const;
108 virtual int GetScrollThumb( int orient
) const;
109 virtual int GetScrollRange( int orient
) const;
110 virtual void ScrollWindow( int dx
, int dy
,
111 const wxRect
* rect
= NULL
);
113 virtual bool ScrollLines(int lines
);
114 virtual bool ScrollPages(int pages
);
116 virtual void SetLayoutDirection(wxLayoutDirection dir
);
117 virtual wxLayoutDirection
GetLayoutDirection() const;
118 virtual wxCoord
AdjustForLayoutDirection(wxCoord x
,
120 wxCoord widthTotal
) const;
122 #if wxUSE_DRAG_AND_DROP
123 virtual void SetDropTarget( wxDropTarget
*dropTarget
);
124 #endif // wxUSE_DRAG_AND_DROP
126 // Accept files for dragging
127 virtual void DragAcceptFiles(bool accept
);
129 #ifndef __WXUNIVERSAL__
130 // Native resource loading (implemented in src/msw/nativdlg.cpp)
131 // FIXME: should they really be all virtual?
132 virtual bool LoadNativeDialog(wxWindow
* parent
, wxWindowID
& id
);
133 virtual bool LoadNativeDialog(wxWindow
* parent
, const wxString
& name
);
134 wxWindow
* GetWindowChild1(wxWindowID id
);
135 wxWindow
* GetWindowChild(wxWindowID id
);
136 #endif // __WXUNIVERSAL__
139 // install and deinstall a system wide hotkey
140 virtual bool RegisterHotKey(int hotkeyId
, int modifiers
, int keycode
);
141 virtual bool UnregisterHotKey(int hotkeyId
);
142 #endif // wxUSE_HOTKEY
145 bool IsContextMenuEnabled() const { return m_contextMenuEnabled
; }
146 void EnableContextMenu(bool enable
= true) { m_contextMenuEnabled
= enable
; }
149 // window handle stuff
150 // -------------------
152 WXHWND
GetHWND() const { return m_hWnd
; }
153 void SetHWND(WXHWND hWnd
) { m_hWnd
= hWnd
; }
154 virtual WXWidget
GetHandle() const { return GetHWND(); }
156 void AssociateHandle(WXWidget handle
);
157 void DissociateHandle();
159 // does this window have deferred position and/or size?
160 bool IsSizeDeferred() const;
162 // these functions allow to register a global handler for the given Windows
163 // message: it will be called from MSWWindowProc() of any window which gets
164 // this event if it's not processed before (i.e. unlike a hook procedure it
165 // does not override the normal processing)
167 // notice that if you want to process a message for a given window only you
168 // should override its MSWWindowProc() instead
170 // type of the handler: it is called with the message parameters (except
171 // that the window object is passed instead of window handle) and should
172 // return true if it handled the message or false if it should be passed to
174 typedef bool (*MSWMessageHandler
)(wxWindowMSW
*win
,
179 // install a handler, shouldn't be called more than one for the same message
180 static bool MSWRegisterMessageHandler(int msg
, MSWMessageHandler handler
);
182 // unregister a previously registered handler
183 static void MSWUnregisterMessageHandler(int msg
, MSWMessageHandler handler
);
186 // implementation from now on
187 // ==========================
192 void OnPaint(wxPaintEvent
& event
);
194 void OnInitDialog(wxInitDialogEvent
& event
);
198 // Windows subclassing
199 void SubclassWin(WXHWND hWnd
);
200 void UnsubclassWin();
202 WXFARPROC
MSWGetOldWndProc() const { return m_oldWndProc
; }
203 void MSWSetOldWndProc(WXFARPROC proc
) { m_oldWndProc
= proc
; }
205 // return true if the window is of a standard (i.e. not wxWidgets') class
207 // to understand why does it work, look at SubclassWin() code and comments
208 bool IsOfStandardClass() const { return m_oldWndProc
!= NULL
; }
210 wxWindow
*FindItem(long id
) const;
211 wxWindow
*FindItemByHWND(WXHWND hWnd
, bool controlOnly
= false) const;
213 // MSW only: true if this control is part of the main control
214 virtual bool ContainsHWND(WXHWND
WXUNUSED(hWnd
)) const { return false; }
217 // MSW only: true if this window or any of its children have a tooltip
218 virtual bool HasToolTips() const { return GetToolTip() != NULL
; }
219 #endif // wxUSE_TOOLTIPS
221 // translate wxWidgets style flags for this control into the Windows style
222 // and optional extended style for the corresponding native control
224 // this is the function that should be overridden in the derived classes,
225 // but you will mostly use MSWGetCreateWindowFlags() below
226 virtual WXDWORD
MSWGetStyle(long flags
, WXDWORD
*exstyle
= NULL
) const ;
228 // get the MSW window flags corresponding to wxWidgets ones
230 // the functions returns the flags (WS_XXX) directly and puts the ext
231 // (WS_EX_XXX) flags into the provided pointer if not NULL
232 WXDWORD
MSWGetCreateWindowFlags(WXDWORD
*exflags
= NULL
) const
233 { return MSWGetStyle(GetWindowStyle(), exflags
); }
235 // update the real underlying window style flags to correspond to the
236 // current wxWindow object style (safe to call even if window isn't fully
238 void MSWUpdateStyle(long flagsOld
, long exflagsOld
);
240 // get the HWND to be used as parent of this window with CreateWindow()
241 virtual WXHWND
MSWGetParent() const;
243 // get the Win32 window class name used by all wxWindow objects by default
244 static const wxChar
*MSWGetRegisteredClassName();
246 // creates the window of specified Windows class with given style, extended
247 // style, title and geometry (default values
249 // returns true if the window has been created, false if creation failed
250 bool MSWCreate(const wxChar
*wclass
,
251 const wxChar
*title
= NULL
,
252 const wxPoint
& pos
= wxDefaultPosition
,
253 const wxSize
& size
= wxDefaultSize
,
255 WXDWORD exendedStyle
= 0);
257 virtual bool MSWCommand(WXUINT param
, WXWORD id
);
259 #ifndef __WXUNIVERSAL__
260 // Create an appropriate wxWindow from a HWND
261 virtual wxWindow
* CreateWindowFromHWND(wxWindow
* parent
, WXHWND hWnd
);
263 // Make sure the window style reflects the HWND style (roughly)
264 virtual void AdoptAttributesFromHWND();
265 #endif // __WXUNIVERSAL__
267 // Setup background and foreground colours correctly
268 virtual void SetupColours();
270 // ------------------------------------------------------------------------
271 // helpers for message handlers: these perform the same function as the
272 // message crackers from <windowsx.h> - they unpack WPARAM and LPARAM into
273 // the correct parameters
274 // ------------------------------------------------------------------------
276 void UnpackCommand(WXWPARAM wParam
, WXLPARAM lParam
,
277 WXWORD
*id
, WXHWND
*hwnd
, WXWORD
*cmd
);
278 void UnpackActivate(WXWPARAM wParam
, WXLPARAM lParam
,
279 WXWORD
*state
, WXWORD
*minimized
, WXHWND
*hwnd
);
280 void UnpackScroll(WXWPARAM wParam
, WXLPARAM lParam
,
281 WXWORD
*code
, WXWORD
*pos
, WXHWND
*hwnd
);
282 void UnpackCtlColor(WXWPARAM wParam
, WXLPARAM lParam
,
283 WXHDC
*hdc
, WXHWND
*hwnd
);
284 void UnpackMenuSelect(WXWPARAM wParam
, WXLPARAM lParam
,
285 WXWORD
*item
, WXWORD
*flags
, WXHMENU
*hmenu
);
287 // ------------------------------------------------------------------------
288 // internal handlers for MSW messages: all handlers return a boolean value:
289 // true means that the handler processed the event and false that it didn't
290 // ------------------------------------------------------------------------
292 // there are several cases where we have virtual functions for Windows
293 // message processing: this is because these messages often require to be
294 // processed in a different manner in the derived classes. For all other
295 // messages, however, we do *not* have corresponding MSWOnXXX() function
296 // and if the derived class wants to process them, it should override
297 // MSWWindowProc() directly.
299 // scroll event (both horizontal and vertical)
300 virtual bool MSWOnScroll(int orientation
, WXWORD nSBCode
,
301 WXWORD pos
, WXHWND control
);
303 // child control notifications
304 virtual bool MSWOnNotify(int idCtrl
, WXLPARAM lParam
, WXLPARAM
*result
);
306 // owner-drawn controls need to process these messages
307 virtual bool MSWOnDrawItem(int id
, WXDRAWITEMSTRUCT
*item
);
308 virtual bool MSWOnMeasureItem(int id
, WXMEASUREITEMSTRUCT
*item
);
310 // the rest are not virtual
311 bool HandleCreate(WXLPCREATESTRUCT cs
, bool *mayCreate
);
312 bool HandleInitDialog(WXHWND hWndFocus
);
313 bool HandleDestroy();
316 bool HandlePrintClient(WXHDC hDC
);
317 bool HandleEraseBkgnd(WXHDC hDC
);
319 bool HandleMinimize();
320 bool HandleMaximize();
321 bool HandleSize(int x
, int y
, WXUINT flag
);
322 bool HandleSizing(wxRect
& rect
);
323 bool HandleGetMinMaxInfo(void *mmInfo
);
324 bool HandleEnterSizeMove();
325 bool HandleExitSizeMove();
327 bool HandleShow(bool show
, int status
);
328 bool HandleActivate(int flag
, bool minimized
, WXHWND activate
);
330 bool HandleCommand(WXWORD id
, WXWORD cmd
, WXHWND control
);
332 bool HandleCtlColor(WXHBRUSH
*hBrush
, WXHDC hdc
, WXHWND hWnd
);
334 bool HandlePaletteChanged(WXHWND hWndPalChange
);
335 bool HandleQueryNewPalette();
336 bool HandleSysColorChange();
337 bool HandleDisplayChange();
338 bool HandleCaptureChanged(WXHWND gainedCapture
);
339 virtual bool HandleSettingChange(WXWPARAM wParam
, WXLPARAM lParam
);
341 bool HandleQueryEndSession(long logOff
, bool *mayEnd
);
342 bool HandleEndSession(bool endSession
, long logOff
);
344 bool HandleSetFocus(WXHWND wnd
);
345 bool HandleKillFocus(WXHWND wnd
);
347 bool HandleDropFiles(WXWPARAM wParam
);
349 bool HandleMouseEvent(WXUINT msg
, int x
, int y
, WXUINT flags
);
350 bool HandleMouseMove(int x
, int y
, WXUINT flags
);
351 bool HandleMouseWheel(wxMouseWheelAxis axis
,
352 WXWPARAM wParam
, WXLPARAM lParam
);
354 bool HandleChar(WXWPARAM wParam
, WXLPARAM lParam
);
355 bool HandleKeyDown(WXWPARAM wParam
, WXLPARAM lParam
);
356 bool HandleKeyUp(WXWPARAM wParam
, WXLPARAM lParam
);
358 bool HandleHotKey(WXWPARAM wParam
, WXLPARAM lParam
);
361 int HandleMenuChar(int chAccel
, WXLPARAM lParam
);
363 // Create and process a clipboard event specified by type.
364 bool HandleClipboardEvent( WXUINT nMsg
);
366 bool HandleQueryDragIcon(WXHICON
*hIcon
);
368 bool HandleSetCursor(WXHWND hWnd
, short nHitTest
, int mouseMsg
);
370 bool HandlePower(WXWPARAM wParam
, WXLPARAM lParam
, bool *vetoed
);
373 // The main body of common window proc for all wxWindow objects. It tries
374 // to handle the given message and returns true if it was handled (the
375 // appropriate return value is then put in result, which must be non-NULL)
376 // or false if it wasn't.
378 // This function should be overridden in any new code instead of
379 // MSWWindowProc() even if currently most of the code overrides
380 // MSWWindowProc() as it had been written before this function was added.
381 virtual bool MSWHandleMessage(WXLRESULT
*result
,
386 // Common Window procedure for all wxWindow objects: forwards to
387 // MSWHandleMessage() and MSWDefWindowProc() if the message wasn't handled.
388 virtual WXLRESULT
MSWWindowProc(WXUINT nMsg
, WXWPARAM wParam
, WXLPARAM lParam
);
390 // Calls an appropriate default window procedure
391 virtual WXLRESULT
MSWDefWindowProc(WXUINT nMsg
, WXWPARAM wParam
, WXLPARAM lParam
);
393 // message processing helpers
395 // return false if the message shouldn't be translated/preprocessed but
396 // dispatched normally
397 virtual bool MSWShouldPreProcessMessage(WXMSG
* pMsg
);
399 // return true if the message was preprocessed and shouldn't be dispatched
400 virtual bool MSWProcessMessage(WXMSG
* pMsg
);
402 // return true if the message was translated and shouldn't be dispatched
403 virtual bool MSWTranslateMessage(WXMSG
* pMsg
);
405 // called when the window is about to be destroyed
406 virtual void MSWDestroyWindow();
409 // Functions dealing with painting the window background. The derived
410 // classes should normally only need to reimplement MSWGetBgBrush() if they
411 // need to use a non-solid brush for erasing their background. This
412 // function is called by MSWGetBgBrushForChild() which only exists for the
413 // weird wxToolBar case and MSWGetBgBrushForChild() itself is used by
414 // MSWGetBgBrush() to actually find the right brush to use.
416 // Adjust the origin for the brush returned by MSWGetBgBrushForChild().
418 // This needs to be overridden for scrolled windows to ensure that the
419 // scrolling of their associated DC is taken into account.
421 // Both parameters must be non-NULL.
422 virtual void MSWAdjustBrushOrg(int* WXUNUSED(xOrg
),
423 int* WXUNUSED(yOrg
)) const
427 // The brush returned from here must remain valid at least until the next
428 // event loop iteration. Returning 0, as is done by default, indicates
429 // there is no custom background brush.
430 virtual WXHBRUSH
MSWGetCustomBgBrush() { return 0; }
432 // this function should return the brush to paint the children controls
433 // background or 0 if this window doesn't impose any particular background
436 // the hDC parameter is the DC background will be drawn on, it can be used
437 // to call SetBrushOrgEx() on it if the returned brush is a bitmap one
439 // child parameter is never NULL, it can be this window itself or one of
440 // its (grand)children
442 // the base class version returns a solid brush if we have a non default
443 // background colour or 0 otherwise
444 virtual WXHBRUSH
MSWGetBgBrushForChild(WXHDC hDC
, wxWindowMSW
*child
);
446 // return the background brush to use for painting the given window by
447 // querying the parent windows via MSWGetBgBrushForChild() recursively
448 WXHBRUSH
MSWGetBgBrush(WXHDC hDC
);
453 ThemeColourBackground
,
457 // returns a specific theme colour, or if that is not possible then
458 // wxSystemSettings::GetColour(fallback)
459 wxColour
MSWGetThemeColour(const wchar_t *themeName
,
462 MSWThemeColour themeColour
,
463 wxSystemColour fallback
) const;
465 // gives the parent the possibility to draw its children background, e.g.
466 // this is used by wxNotebook to do it using DrawThemeBackground()
468 // return true if background was drawn, false otherwise
469 virtual bool MSWPrintChild(WXHDC
WXUNUSED(hDC
), wxWindow
* WXUNUSED(child
))
474 // some controls (e.g. wxListBox) need to set the return value themselves
476 // return true to let parent handle it if we don't, false otherwise
477 virtual bool MSWShouldPropagatePrintChild()
482 // This should be overridden to return true for the controls which have
483 // themed background that should through their children. Currently only
484 // wxNotebook uses this.
486 // The base class version already returns true if we have a solid
487 // background colour that should be propagated to our children.
488 virtual bool MSWHasInheritableBackground() const
490 return InheritsBackgroundColour();
493 #if !defined(__WXWINCE__) && !defined(__WXUNIVERSAL__)
494 #define wxHAS_MSW_BACKGROUND_ERASE_HOOK
497 #ifdef wxHAS_MSW_BACKGROUND_ERASE_HOOK
498 // allows the child to hook into its parent WM_ERASEBKGND processing: call
499 // MSWSetEraseBgHook() with a non-NULL window to make parent call
500 // MSWEraseBgHook() on this window (don't forget to reset it to NULL
503 // this hack is used by wxToolBar, see comments there
504 void MSWSetEraseBgHook(wxWindow
*child
);
506 // return true if WM_ERASEBKGND is currently hooked
507 bool MSWHasEraseBgHook() const;
509 // called when the window on which MSWSetEraseBgHook() had been called
510 // receives WM_ERASEBKGND
511 virtual bool MSWEraseBgHook(WXHDC
WXUNUSED(hDC
)) { return false; }
512 #endif // wxHAS_MSW_BACKGROUND_ERASE_HOOK
514 // common part of Show/HideWithEffect()
515 bool MSWShowWithEffect(bool show
,
519 // Responds to colour changes: passes event on to children.
520 void OnSysColourChanged(wxSysColourChangedEvent
& event
);
522 // initialize various fields of wxMouseEvent (common part of MSWOnMouseXXX)
523 void InitMouseEvent(wxMouseEvent
& event
, int x
, int y
, WXUINT flags
);
525 // check if mouse is in the window
526 bool IsMouseInWindow() const;
528 // check if a native double-buffering applies for this window
529 virtual bool IsDoubleBuffered() const;
531 void SetDoubleBuffered(bool on
);
533 // synthesize a wxEVT_LEAVE_WINDOW event and set m_mouseInWindow to false
534 void GenerateMouseLeave();
536 // virtual function for implementing internal idle
538 virtual void OnInternalIdle();
541 // this allows you to implement standard control borders without
542 // repeating the code in different classes that are not derived from
544 virtual wxBorder
GetDefaultBorderForControl() const;
546 // choose the default border for this window
547 virtual wxBorder
GetDefaultBorder() const;
549 // Translate wxBORDER_THEME (and other border styles if necessary to the value
550 // that makes most sense for this Windows environment
551 virtual wxBorder
TranslateBorder(wxBorder border
) const;
553 #if wxUSE_MENUS_NATIVE
554 virtual bool DoPopupMenu( wxMenu
*menu
, int x
, int y
);
555 #endif // wxUSE_MENUS_NATIVE
560 // the old window proc (we subclass all windows)
561 WXFARPROC m_oldWndProc
;
563 // additional (MSW specific) flags
564 bool m_mouseInWindow
:1;
565 bool m_lastKeydownProcessed
:1;
567 // the size of one page for scrolling
571 // implement the base class pure virtuals
572 virtual void DoGetTextExtent(const wxString
& string
,
575 int *externalLeading
= NULL
,
576 const wxFont
*font
= NULL
) const;
577 virtual void DoClientToScreen( int *x
, int *y
) const;
578 virtual void DoScreenToClient( int *x
, int *y
) const;
579 virtual void DoGetPosition( int *x
, int *y
) const;
580 virtual void DoGetSize( int *width
, int *height
) const;
581 virtual void DoGetClientSize( int *width
, int *height
) const;
582 virtual void DoSetSize(int x
, int y
,
583 int width
, int height
,
584 int sizeFlags
= wxSIZE_AUTO
);
585 virtual void DoSetClientSize(int width
, int height
);
587 virtual wxSize
DoGetBorderSize() const;
589 virtual void DoCaptureMouse();
590 virtual void DoReleaseMouse();
592 virtual void DoEnable(bool enable
);
594 virtual void DoFreeze();
595 virtual void DoThaw();
597 // this simply moves/resizes the given HWND which is supposed to be our
598 // sibling (this is useful for controls which are composite at MSW level
599 // and for which DoMoveWindow() is not enough)
601 // returns true if the window move was deferred, false if it was moved
602 // immediately (no error return)
603 bool DoMoveSibling(WXHWND hwnd
, int x
, int y
, int width
, int height
);
605 // move the window to the specified location and resize it: this is called
606 // from both DoSetSize() and DoSetClientSize() and would usually just call
607 // ::MoveWindow() except for composite controls which will want to arrange
608 // themselves inside the given rectangle
609 virtual void DoMoveWindow(int x
, int y
, int width
, int height
);
612 virtual void DoSetToolTip( wxToolTip
*tip
);
614 // process TTN_NEEDTEXT message properly (i.e. fixing the bugs in
615 // comctl32.dll in our code -- see the function body for more info)
616 bool HandleTooltipNotify(WXUINT code
,
618 const wxString
& ttip
);
619 #endif // wxUSE_TOOLTIPS
621 // This is used by CreateKeyEvent() and also for wxEVT_CHAR[_HOOK] event
622 // creation. Notice that this method doesn't initialize wxKeyEvent
623 // m_keyCode and m_uniChar fields.
624 void InitAnyKeyEvent(wxKeyEvent
& event
,
626 WXLPARAM lParam
) const;
628 // Helper functions used by HandleKeyXXX() methods and some derived
629 // classes, wParam and lParam have the same meaning as in WM_KEY{DOWN,UP}.
631 // NB: evType here must be wxEVT_KEY_{DOWN,UP} as wParam here contains the
632 // virtual key code, not character!
633 wxKeyEvent
CreateKeyEvent(wxEventType evType
,
635 WXLPARAM lParam
= 0) const;
637 // Another helper for creating wxKeyEvent for wxEVT_CHAR and related types.
639 // The wParam and lParam here must come from WM_CHAR event parameters, i.e.
640 // wParam must be a character and not a virtual code.
641 wxKeyEvent
CreateCharEvent(wxEventType evType
,
643 WXLPARAM lParam
) const;
646 // default OnEraseBackground() implementation, return true if we did erase
647 // the background, false otherwise (i.e. the system should erase it)
648 bool DoEraseBackground(WXHDC hDC
);
650 // generate WM_CHANGEUISTATE if it's needed for the OS we're running under
652 // action should be one of the UIS_XXX constants
653 // state should be one or more of the UISF_XXX constants
654 // if action == UIS_INITIALIZE then it doesn't seem to matter what we use
655 // for state as the system will decide for us what needs to be set
656 void MSWUpdateUIState(int action
, int state
= 0);
658 // translate wxWidgets coords into Windows ones suitable to be passed to
659 // ::CreateWindow(), called from MSWCreate()
660 virtual void MSWGetCreateWindowCoords(const wxPoint
& pos
,
663 int& w
, int& h
) const;
665 bool MSWEnableHWND(WXHWND hWnd
, bool enable
);
668 // common part of all ctors
671 // the (non-virtual) handlers for the events
672 bool HandleMove(int x
, int y
);
673 bool HandleMoving(wxRect
& rect
);
674 bool HandleJoystickEvent(WXUINT msg
, int x
, int y
, WXUINT flags
);
675 bool HandleNotify(int idCtrl
, WXLPARAM lParam
, WXLPARAM
*result
);
677 #if wxUSE_DEFERRED_SIZING
679 // this function is called after the window was resized to its new size
680 virtual void MSWEndDeferWindowPos()
682 m_pendingPosition
= wxDefaultPosition
;
683 m_pendingSize
= wxDefaultSize
;
686 // current defer window position operation handle (may be NULL)
689 // When deferred positioning is done these hold the pending changes, and
690 // are used for the default values if another size/pos changes is done on
691 // this window before the group of deferred changes is completed.
692 wxPoint m_pendingPosition
;
693 wxSize m_pendingSize
;
694 #endif // wxUSE_DEFERRED_SIZING
698 bool m_contextMenuEnabled
;
701 DECLARE_DYNAMIC_CLASS(wxWindowMSW
)
702 wxDECLARE_NO_COPY_CLASS(wxWindowMSW
);
703 DECLARE_EVENT_TABLE()
706 // window creation helper class: before creating a new HWND, instantiate an
707 // object of this class on stack - this allows to process the messages sent to
708 // the window even before CreateWindow() returns
709 class wxWindowCreationHook
712 wxWindowCreationHook(wxWindowMSW
*winBeingCreated
);
713 ~wxWindowCreationHook();
716 #endif // _WX_WINDOW_H_