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