]>
git.saurik.com Git - wxWidgets.git/blob - include/wx/msw/window.h
1 /////////////////////////////////////////////////////////////////////////////
2 // Name: wx/msw/window.h
3 // Purpose: wxWindow 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 // ---------------------------------------------------------------------------
18 // ---------------------------------------------------------------------------
20 #if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
21 #pragma interface "window.h"
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
28 // a better solution should be found later...
29 #define wxUSE_MOUSEEVENT_HACK 0
31 // ---------------------------------------------------------------------------
33 // ---------------------------------------------------------------------------
35 // FIXME does anybody use those? they're unused by wxWidgets...
42 // ---------------------------------------------------------------------------
43 // wxWindow declaration for MSW
44 // ---------------------------------------------------------------------------
46 class WXDLLEXPORT wxWindowMSW
: public wxWindowBase
49 wxWindowMSW() { Init(); }
51 wxWindowMSW(wxWindow
*parent
,
53 const wxPoint
& pos
= wxDefaultPosition
,
54 const wxSize
& size
= wxDefaultSize
,
56 const wxString
& name
= wxPanelNameStr
)
59 Create(parent
, id
, pos
, size
, style
, name
);
62 virtual ~wxWindowMSW();
64 bool Create(wxWindow
*parent
,
66 const wxPoint
& pos
= wxDefaultPosition
,
67 const wxSize
& size
= wxDefaultSize
,
69 const wxString
& name
= wxPanelNameStr
);
71 // implement base class pure virtuals
72 virtual void SetTitle( const wxString
& title
);
73 virtual wxString
GetTitle() const;
78 virtual bool Show( bool show
= TRUE
);
79 virtual bool Enable( bool enable
= TRUE
);
81 virtual void SetFocus();
82 virtual void SetFocusFromKbd();
84 virtual bool Reparent(wxWindowBase
*newParent
);
86 virtual void WarpPointer(int x
, int y
);
88 virtual void Refresh( bool eraseBackground
= TRUE
,
89 const wxRect
*rect
= (const wxRect
*) NULL
);
90 virtual void Update();
91 virtual void Freeze();
94 virtual void SetWindowStyleFlag( long style
);
95 virtual bool SetCursor( const wxCursor
&cursor
);
96 virtual bool SetFont( const wxFont
&font
);
98 virtual int GetCharHeight() const;
99 virtual int GetCharWidth() const;
100 virtual void GetTextExtent(const wxString
& string
,
102 int *descent
= (int *) NULL
,
103 int *externalLeading
= (int *) NULL
,
104 const wxFont
*theFont
= (const wxFont
*) NULL
)
107 #if wxUSE_MENUS_NATIVE
108 virtual bool DoPopupMenu( wxMenu
*menu
, int x
, int y
);
109 #endif // wxUSE_MENUS_NATIVE
111 virtual void SetScrollbar( int orient
, int pos
, int thumbVisible
,
112 int range
, bool refresh
= TRUE
);
113 virtual void SetScrollPos( int orient
, int pos
, bool refresh
= TRUE
);
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
);
120 virtual bool ScrollLines(int lines
);
121 virtual bool ScrollPages(int pages
);
123 #if wxUSE_DRAG_AND_DROP
124 virtual void SetDropTarget( wxDropTarget
*dropTarget
);
125 #endif // wxUSE_DRAG_AND_DROP
127 // Accept files for dragging
128 virtual void DragAcceptFiles(bool accept
);
130 #if WXWIN_COMPATIBILITY_2_4
131 wxDEPRECATED( bool GetUseCtl3D() const );
132 wxDEPRECATED( bool GetTransparentBackground() const );
133 wxDEPRECATED( void SetTransparent(bool t
= TRUE
) );
134 #endif // WXWIN_COMPATIBILITY_2_4
136 #ifndef __WXUNIVERSAL__
137 // Native resource loading (implemented in src/msw/nativdlg.cpp)
138 // FIXME: should they really be all virtual?
139 virtual bool LoadNativeDialog(wxWindow
* parent
, wxWindowID
& id
);
140 virtual bool LoadNativeDialog(wxWindow
* parent
, const wxString
& name
);
141 wxWindow
* GetWindowChild1(wxWindowID id
);
142 wxWindow
* GetWindowChild(wxWindowID id
);
143 #endif // __WXUNIVERSAL__
146 // install and deinstall a system wide hotkey
147 virtual bool RegisterHotKey(int hotkeyId
, int modifiers
, int keycode
);
148 virtual bool UnregisterHotKey(int hotkeyId
);
149 #endif // wxUSE_HOTKEY
151 // implementation from now on
152 // --------------------------
157 WXHWND
GetHWND() const { return m_hWnd
; }
158 void SetHWND(WXHWND hWnd
) { m_hWnd
= hWnd
; }
159 virtual WXWidget
GetHandle() const { return GetHWND(); }
164 void OnEraseBackground(wxEraseEvent
& event
);
165 void OnPaint(wxPaintEvent
& event
);
167 void OnInitDialog( wxInitDialogEvent
& event
);
171 // For implementation purposes - sometimes decorations make the client area
173 virtual wxPoint
GetClientAreaOrigin() const;
175 // Windows subclassing
176 void SubclassWin(WXHWND hWnd
);
177 void UnsubclassWin();
179 WXFARPROC
MSWGetOldWndProc() const { return m_oldWndProc
; }
180 void MSWSetOldWndProc(WXFARPROC proc
) { m_oldWndProc
= proc
; }
182 // return TRUE if the window is of a standard (i.e. not wxWidgets') class
184 // to understand why does it work, look at SubclassWin() code and comments
185 bool IsOfStandardClass() const { return m_oldWndProc
!= NULL
; }
187 wxWindow
*FindItem(long id
) const;
188 wxWindow
*FindItemByHWND(WXHWND hWnd
, bool controlOnly
= FALSE
) const;
190 // MSW only: TRUE if this control is part of the main control
191 virtual bool ContainsHWND(WXHWND
WXUNUSED(hWnd
)) const { return FALSE
; };
193 // translate wxWidgets style flags for this control into the Windows style
194 // and optional extended style for the corresponding native control
196 // this is the function that should be overridden in the derived classes,
197 // but you will mostly use MSWGetCreateWindowFlags() below
198 virtual WXDWORD
MSWGetStyle(long flags
, WXDWORD
*exstyle
= NULL
) const ;
200 // get the MSW window flags corresponding to wxWidgets ones
202 // the functions returns the flags (WS_XXX) directly and puts the ext
203 // (WS_EX_XXX) flags into the provided pointer if not NULL
204 WXDWORD
MSWGetCreateWindowFlags(WXDWORD
*exflags
= NULL
) const
205 { return MSWGetStyle(GetWindowStyle(), exflags
); }
207 // translate wxWidgets coords into Windows ones suitable to be passed to
210 // returns TRUE if non default coords are returned, FALSE otherwise
211 bool MSWGetCreateWindowCoords(const wxPoint
& pos
,
214 int& w
, int& h
) const;
216 // get the HWND to be used as parent of this window with CreateWindow()
217 virtual WXHWND
MSWGetParent() const;
219 // creates the window of specified Windows class with given style, extended
220 // style, title and geometry (default values
222 // returns TRUE if the window has been created, FALSE if creation failed
223 bool MSWCreate(const wxChar
*wclass
,
224 const wxChar
*title
= NULL
,
225 const wxPoint
& pos
= wxDefaultPosition
,
226 const wxSize
& size
= wxDefaultSize
,
228 WXDWORD exendedStyle
= 0);
230 virtual bool MSWCommand(WXUINT param
, WXWORD id
);
232 #ifndef __WXUNIVERSAL__
233 // Create an appropriate wxWindow from a HWND
234 virtual wxWindow
* CreateWindowFromHWND(wxWindow
* parent
, WXHWND hWnd
);
236 // Make sure the window style reflects the HWND style (roughly)
237 virtual void AdoptAttributesFromHWND();
238 #endif // __WXUNIVERSAL__
240 // Setup background and foreground colours correctly
241 virtual void SetupColours();
243 // ------------------------------------------------------------------------
244 // helpers for message handlers: these perform the same function as the
245 // message crackers from <windowsx.h> - they unpack WPARAM and LPARAM into
246 // the correct parameters
247 // ------------------------------------------------------------------------
249 void UnpackCommand(WXWPARAM wParam
, WXLPARAM lParam
,
250 WXWORD
*id
, WXHWND
*hwnd
, WXWORD
*cmd
);
251 void UnpackActivate(WXWPARAM wParam
, WXLPARAM lParam
,
252 WXWORD
*state
, WXWORD
*minimized
, WXHWND
*hwnd
);
253 void UnpackScroll(WXWPARAM wParam
, WXLPARAM lParam
,
254 WXWORD
*code
, WXWORD
*pos
, WXHWND
*hwnd
);
255 void UnpackCtlColor(WXWPARAM wParam
, WXLPARAM lParam
,
256 WXWORD
*nCtlColor
, WXHDC
*hdc
, WXHWND
*hwnd
);
257 void UnpackMenuSelect(WXWPARAM wParam
, WXLPARAM lParam
,
258 WXWORD
*item
, WXWORD
*flags
, WXHMENU
*hmenu
);
260 // ------------------------------------------------------------------------
261 // internal handlers for MSW messages: all handlers return a boolean value:
262 // TRUE means that the handler processed the event and FALSE that it didn't
263 // ------------------------------------------------------------------------
265 // there are several cases where we have virtual functions for Windows
266 // message processing: this is because these messages often require to be
267 // processed in a different manner in the derived classes. For all other
268 // messages, however, we do *not* have corresponding MSWOnXXX() function
269 // and if the derived class wants to process them, it should override
270 // MSWWindowProc() directly.
272 // scroll event (both horizontal and vertical)
273 virtual bool MSWOnScroll(int orientation
, WXWORD nSBCode
,
274 WXWORD pos
, WXHWND control
);
276 // child control notifications
278 virtual bool MSWOnNotify(int idCtrl
, WXLPARAM lParam
, WXLPARAM
*result
);
281 // owner-drawn controls need to process these messages
282 virtual bool MSWOnDrawItem(int id
, WXDRAWITEMSTRUCT
*item
);
283 virtual bool MSWOnMeasureItem(int id
, WXMEASUREITEMSTRUCT
*item
);
285 // the rest are not virtual
286 bool HandleCreate(WXLPCREATESTRUCT cs
, bool *mayCreate
);
287 bool HandleInitDialog(WXHWND hWndFocus
);
288 bool HandleDestroy();
291 bool HandleEraseBkgnd(WXHDC pDC
);
293 bool HandleMinimize();
294 bool HandleMaximize();
295 bool HandleSize(int x
, int y
, WXUINT flag
);
296 bool HandleSizing(wxRect
& rect
);
297 bool HandleGetMinMaxInfo(void *mmInfo
);
299 bool HandleShow(bool show
, int status
);
300 bool HandleActivate(int flag
, bool minimized
, WXHWND activate
);
302 bool HandleCommand(WXWORD id
, WXWORD cmd
, WXHWND control
);
304 bool HandleCtlColor(WXHBRUSH
*hBrush
,
312 bool HandlePaletteChanged(WXHWND hWndPalChange
);
313 bool HandleQueryNewPalette();
314 bool HandleSysColorChange();
315 bool HandleDisplayChange();
316 bool HandleCaptureChanged(WXHWND gainedCapture
);
318 bool HandleQueryEndSession(long logOff
, bool *mayEnd
);
319 bool HandleEndSession(bool endSession
, long logOff
);
321 bool HandleSetFocus(WXHWND wnd
);
322 bool HandleKillFocus(WXHWND wnd
);
324 bool HandleDropFiles(WXWPARAM wParam
);
326 bool HandleMouseEvent(WXUINT msg
, int x
, int y
, WXUINT flags
);
327 bool HandleMouseMove(int x
, int y
, WXUINT flags
);
328 bool HandleMouseWheel(WXWPARAM wParam
, WXLPARAM lParam
);
330 bool HandleChar(WXWPARAM wParam
, WXLPARAM lParam
, bool isASCII
= FALSE
);
331 bool HandleKeyDown(WXWPARAM wParam
, WXLPARAM lParam
);
332 bool HandleKeyUp(WXWPARAM wParam
, WXLPARAM lParam
);
334 bool HandleHotKey(WXWPARAM wParam
, WXLPARAM lParam
);
337 int HandleMenuChar(int chAccel
, WXLPARAM lParam
);
340 bool HandleQueryDragIcon(WXHICON
*hIcon
);
342 bool HandleSetCursor(WXHWND hWnd
, short nHitTest
, int mouseMsg
);
345 virtual WXLRESULT
MSWWindowProc(WXUINT nMsg
, WXWPARAM wParam
, WXLPARAM lParam
);
347 // Calls an appropriate default window procedure
348 virtual WXLRESULT
MSWDefWindowProc(WXUINT nMsg
, WXWPARAM wParam
, WXLPARAM lParam
);
350 // message processing helpers
352 // return FALSE if the message shouldn't be translated/preprocessed but
353 // dispatched normally
354 virtual bool MSWShouldPreProcessMessage(WXMSG
* pMsg
);
356 // return TRUE if the message was preprocessed and shouldn't be dispatched
357 virtual bool MSWProcessMessage(WXMSG
* pMsg
);
359 // return TRUE if the message was translated and shouldn't be dispatched
360 virtual bool MSWTranslateMessage(WXMSG
* pMsg
);
362 // called when the window is about to be destroyed
363 virtual void MSWDestroyWindow();
365 // this function should return the brush to paint the window background
366 // with or 0 for the default brush
367 virtual WXHBRUSH
OnCtlColor(WXHDC hDC
,
374 // Responds to colour changes: passes event on to children.
375 void OnSysColourChanged(wxSysColourChangedEvent
& event
);
377 // initialize various fields of wxMouseEvent (common part of MSWOnMouseXXX)
378 void InitMouseEvent(wxMouseEvent
& event
, int x
, int y
, WXUINT flags
);
380 // check if mouse is in the window
381 bool IsMouseInWindow() const;
383 // virtual function for implementing internal idle
385 virtual void OnInternalIdle() ;
391 // the old window proc (we subclass all windows)
392 WXFARPROC m_oldWndProc
;
394 // additional (MSW specific) flags
395 bool m_mouseInWindow
:1;
396 bool m_lastKeydownProcessed
:1;
398 // the size of one page for scrolling
402 #if wxUSE_MOUSEEVENT_HACK
403 // the coordinates of the last mouse event and the type of it
406 int m_lastMouseEvent
;
407 #endif // wxUSE_MOUSEEVENT_HACK
409 WXHMENU m_hMenu
; // Menu, if any
411 // implement the base class pure virtuals
412 virtual void DoClientToScreen( int *x
, int *y
) const;
413 virtual void DoScreenToClient( int *x
, int *y
) const;
414 virtual void DoGetPosition( int *x
, int *y
) const;
415 virtual void DoGetSize( int *width
, int *height
) const;
416 virtual void DoGetClientSize( int *width
, int *height
) const;
417 virtual void DoSetSize(int x
, int y
,
418 int width
, int height
,
419 int sizeFlags
= wxSIZE_AUTO
);
420 virtual void DoSetClientSize(int width
, int height
);
422 virtual void DoCaptureMouse();
423 virtual void DoReleaseMouse();
425 // has the window been frozen by Freeze()?
426 bool IsFrozen() const { return m_frozenness
> 0; }
428 // move the window to the specified location and resize it: this is called
429 // from both DoSetSize() and DoSetClientSize() and would usually just call
430 // ::MoveWindow() except for composite controls which will want to arrange
431 // themselves inside the given rectangle
432 virtual void DoMoveWindow(int x
, int y
, int width
, int height
);
435 virtual void DoSetToolTip( wxToolTip
*tip
);
437 // process TTN_NEEDTEXT message properly (i.e. fixing the bugs in
438 // comctl32.dll in our code -- see the function body for more info)
439 bool HandleTooltipNotify(WXUINT code
,
441 const wxString
& ttip
);
442 #endif // wxUSE_TOOLTIPS
444 // the helper functions used by HandleChar/KeyXXX methods
445 wxKeyEvent
CreateKeyEvent(wxEventType evType
, int id
,
446 WXLPARAM lParam
= 0, WXWPARAM wParam
= 0) const;
449 // common part of all ctors
452 // the (non-virtual) handlers for the events
453 bool HandleMove(int x
, int y
);
454 bool HandleMoving(wxRect
& rect
);
455 bool HandleJoystickEvent(WXUINT msg
, int x
, int y
, WXUINT flags
);
458 bool HandleNotify(int idCtrl
, WXLPARAM lParam
, WXLPARAM
*result
);
461 // list of disabled children before last call to our Disable()
462 wxWindowList
*m_childrenDisabled
;
464 // number of calls to Freeze() minus number of calls to Thaw()
465 unsigned int m_frozenness
;
467 DECLARE_DYNAMIC_CLASS(wxWindowMSW
)
468 DECLARE_NO_COPY_CLASS(wxWindowMSW
)
469 DECLARE_EVENT_TABLE()
472 // ----------------------------------------------------------------------------
474 // ----------------------------------------------------------------------------
476 #if WXWIN_COMPATIBILITY_2_4
478 inline bool wxWindowMSW::GetUseCtl3D() const { return false; }
479 inline bool wxWindowMSW::GetTransparentBackground() const { return false; }
480 inline void wxWindowMSW::SetTransparent(bool WXUNUSED(t
)) { }
482 #endif // WXWIN_COMPATIBILITY_2_4
484 // ---------------------------------------------------------------------------
486 // ---------------------------------------------------------------------------
488 // kbd code translation
489 WXDLLEXPORT
int wxCharCodeMSWToWX(int keySym
, WXLPARAM lParam
= 0);
490 WXDLLEXPORT
int wxCharCodeWXToMSW(int id
, bool *IsVirtual
);
492 // window creation helper class: before creating a new HWND, instantiate an
493 // object of this class on stack - this allows to process the messages sent to
494 // the window even before CreateWindow() returns
495 class wxWindowCreationHook
498 wxWindowCreationHook(wxWindowMSW
*winBeingCreated
);
499 ~wxWindowCreationHook();
502 // ----------------------------------------------------------------------------
504 // ----------------------------------------------------------------------------
506 // notice that this hash must be defined after wxWindow declaration as it
507 // needs to "see" its dtor and not just forward declaration
510 // pseudo-template HWND <-> wxWindow hash table
511 #if WXWIN_COMPATIBILITY_2_4
512 WX_DECLARE_HASH(wxWindow
, wxWindowList
, wxWinHashTable
);
514 WX_DECLARE_HASH(wxWindowMSW
, wxWindowList
, wxWinHashTable
);
517 extern wxWinHashTable
*wxWinHandleHash
;