warnings fixes
[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 #ifdef __GNUG__
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 #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
38 // ---------------------------------------------------------------------------
39 // constants
40 // ---------------------------------------------------------------------------
41
42 // FIXME does anybody use those? they're unused by wxWindows...
43 enum
44 {
45 wxKEY_SHIFT = 1,
46 wxKEY_CTRL = 2
47 };
48
49 // ---------------------------------------------------------------------------
50 // wxWindow declaration for MSW
51 // ---------------------------------------------------------------------------
52
53 class WXDLLEXPORT wxWindowMSW : public wxWindowBase
54 {
55 public:
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)
64 {
65 Init();
66 Create(parent, id, pos, size, style, name);
67 }
68
69 virtual ~wxWindowMSW();
70
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);
77
78 // implement base class pure virtuals
79 virtual void SetTitle( const wxString& title);
80 virtual wxString GetTitle() const;
81
82 virtual void Raise();
83 virtual void Lower();
84
85 virtual bool Show( bool show = TRUE );
86 virtual bool Enable( bool enable = TRUE );
87
88 virtual void SetFocus();
89 virtual void SetFocusFromKbd();
90
91 virtual bool Reparent(wxWindowBase *newParent);
92
93 virtual void WarpPointer(int x, int y);
94
95 virtual void Refresh( bool eraseBackground = TRUE,
96 const wxRect *rect = (const wxRect *) NULL );
97 virtual void Update();
98 virtual void Clear();
99 virtual void Freeze();
100 virtual void Thaw();
101
102 virtual void SetWindowStyleFlag( long style );
103 virtual bool SetCursor( const wxCursor &cursor );
104 virtual bool SetFont( const wxFont &font );
105
106 virtual int GetCharHeight() const;
107 virtual int GetCharWidth() const;
108 virtual void GetTextExtent(const wxString& string,
109 int *x, int *y,
110 int *descent = (int *) NULL,
111 int *externalLeading = (int *) NULL,
112 const wxFont *theFont = (const wxFont *) NULL)
113 const;
114
115 #if wxUSE_MENUS_NATIVE
116 virtual bool DoPopupMenu( wxMenu *menu, int x, int y );
117 #endif // wxUSE_MENUS_NATIVE
118
119 virtual void SetScrollbar( int orient, int pos, int thumbVisible,
120 int range, bool refresh = TRUE );
121 virtual void SetScrollPos( int orient, int pos, bool refresh = TRUE );
122 virtual int GetScrollPos( int orient ) const;
123 virtual int GetScrollThumb( int orient ) const;
124 virtual int GetScrollRange( int orient ) const;
125 virtual void ScrollWindow( int dx, int dy,
126 const wxRect* rect = (wxRect *) NULL );
127
128 virtual bool ScrollLines(int lines);
129 virtual bool ScrollPages(int pages);
130
131 #if wxUSE_DRAG_AND_DROP
132 virtual void SetDropTarget( wxDropTarget *dropTarget );
133 #endif // wxUSE_DRAG_AND_DROP
134
135 // Accept files for dragging
136 virtual void DragAcceptFiles(bool accept);
137
138 #if WXWIN_COMPATIBILITY_2_4
139 wxDEPRECATED( bool GetUseCtl3D() const );
140 wxDEPRECATED( bool GetTransparentBackground() const );
141 wxDEPRECATED( void SetTransparent(bool t = TRUE) );
142 #endif // WXWIN_COMPATIBILITY_2_4
143
144 #if WXWIN_COMPATIBILITY
145 // Set/get scroll attributes
146 virtual void SetScrollRange(int orient, int range, bool refresh = TRUE);
147 virtual void SetScrollPage(int orient, int page, bool refresh = TRUE);
148 virtual int OldGetScrollRange(int orient) const;
149 virtual int GetScrollPage(int orient) const;
150
151 // event handlers
152 // Handle a control command
153 virtual void OnCommand(wxWindow& win, wxCommandEvent& event);
154
155 // Override to define new behaviour for default action (e.g. double
156 // clicking on a listbox)
157 virtual void OnDefaultAction(wxControl * WXUNUSED(initiatingItem)) { }
158 #endif // WXWIN_COMPATIBILITY
159
160 #if wxUSE_CARET && WXWIN_COMPATIBILITY
161 // caret manipulation (old MSW only functions, see wxCaret class for the
162 // new API)
163 void CreateCaret(int w, int h);
164 void CreateCaret(const wxBitmap *bitmap);
165 void DestroyCaret();
166 void ShowCaret(bool show);
167 void SetCaretPos(int x, int y);
168 void GetCaretPos(int *x, int *y) const;
169 #endif // wxUSE_CARET
170
171 #ifndef __WXUNIVERSAL__
172 // Native resource loading (implemented in src/msw/nativdlg.cpp)
173 // FIXME: should they really be all virtual?
174 virtual bool LoadNativeDialog(wxWindow* parent, wxWindowID& id);
175 virtual bool LoadNativeDialog(wxWindow* parent, const wxString& name);
176 wxWindow* GetWindowChild1(wxWindowID id);
177 wxWindow* GetWindowChild(wxWindowID id);
178 #endif // __WXUNIVERSAL__
179
180 // implementation from now on
181 // --------------------------
182
183 // simple accessors
184 // ----------------
185
186 WXHWND GetHWND() const { return m_hWnd; }
187 void SetHWND(WXHWND hWnd) { m_hWnd = hWnd; }
188 virtual WXWidget GetHandle() const { return GetHWND(); }
189
190 // event handlers
191 // --------------
192
193 void OnEraseBackground(wxEraseEvent& event);
194 void OnIdle(wxIdleEvent& event);
195 void OnPaint(wxPaintEvent& event);
196
197 public:
198 // For implementation purposes - sometimes decorations make the client area
199 // smaller
200 virtual wxPoint GetClientAreaOrigin() const;
201
202 // Windows subclassing
203 void SubclassWin(WXHWND hWnd);
204 void UnsubclassWin();
205
206 WXFARPROC MSWGetOldWndProc() const { return m_oldWndProc; }
207 void MSWSetOldWndProc(WXFARPROC proc) { m_oldWndProc = proc; }
208
209 // return TRUE if the window is of a standard (i.e. not wxWindows') class
210 //
211 // to understand why does it work, look at SubclassWin() code and comments
212 bool IsOfStandardClass() const { return m_oldWndProc != NULL; }
213
214 wxWindow *FindItem(long id) const;
215 wxWindow *FindItemByHWND(WXHWND hWnd, bool controlOnly = FALSE) const;
216
217 // MSW only: TRUE if this control is part of the main control
218 virtual bool ContainsHWND(WXHWND WXUNUSED(hWnd)) const { return FALSE; };
219
220 // translate wxWindows style flags for this control into the Windows style
221 // and optional extended style for the corresponding native control
222 //
223 // this is the function that should be overridden in the derived classes,
224 // but you will mostly use MSWGetCreateWindowFlags() below
225 virtual WXDWORD MSWGetStyle(long flags, WXDWORD *exstyle = NULL) const ;
226
227 // get the MSW window flags corresponding to wxWindows ones
228 //
229 // the functions returns the flags (WS_XXX) directly and puts the ext
230 // (WS_EX_XXX) flags into the provided pointer if not NULL
231 WXDWORD MSWGetCreateWindowFlags(WXDWORD *exflags = NULL) const
232 { return MSWGetStyle(GetWindowStyle(), exflags); }
233
234 // translate wxWindows coords into Windows ones suitable to be passed to
235 // ::CreateWindow()
236 //
237 // returns TRUE if non default coords are returned, FALSE otherwise
238 bool MSWGetCreateWindowCoords(const wxPoint& pos,
239 const wxSize& size,
240 int& x, int& y,
241 int& w, int& h) const;
242
243 // get the HWND to be used as parent of this window with CreateWindow()
244 virtual WXHWND MSWGetParent() const;
245
246 // creates the window of specified Windows class with given style, extended
247 // style, title and geometry (default values
248 //
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,
254 WXDWORD style = 0,
255 WXDWORD exendedStyle = 0);
256
257 virtual bool MSWCommand(WXUINT param, WXWORD id);
258
259 #if WXWIN_COMPATIBILITY
260 wxObject *GetChild(int number) const;
261 virtual void MSWDeviceToLogical(float *x, float *y) const;
262 #endif // WXWIN_COMPATIBILITY
263
264 #ifndef __WXUNIVERSAL__
265 // Create an appropriate wxWindow from a HWND
266 virtual wxWindow* CreateWindowFromHWND(wxWindow* parent, WXHWND hWnd);
267
268 // Make sure the window style reflects the HWND style (roughly)
269 virtual void AdoptAttributesFromHWND();
270 #endif // __WXUNIVERSAL__
271
272 // Setup background and foreground colours correctly
273 virtual void SetupColours();
274
275 // ------------------------------------------------------------------------
276 // helpers for message handlers: these perform the same function as the
277 // message crackers from <windowsx.h> - they unpack WPARAM and LPARAM into
278 // the correct parameters
279 // ------------------------------------------------------------------------
280
281 void UnpackCommand(WXWPARAM wParam, WXLPARAM lParam,
282 WXWORD *id, WXHWND *hwnd, WXWORD *cmd);
283 void UnpackActivate(WXWPARAM wParam, WXLPARAM lParam,
284 WXWORD *state, WXWORD *minimized, WXHWND *hwnd);
285 void UnpackScroll(WXWPARAM wParam, WXLPARAM lParam,
286 WXWORD *code, WXWORD *pos, WXHWND *hwnd);
287 void UnpackCtlColor(WXWPARAM wParam, WXLPARAM lParam,
288 WXWORD *nCtlColor, WXHDC *hdc, WXHWND *hwnd);
289 void UnpackMenuSelect(WXWPARAM wParam, WXLPARAM lParam,
290 WXWORD *item, WXWORD *flags, WXHMENU *hmenu);
291
292 // ------------------------------------------------------------------------
293 // internal handlers for MSW messages: all handlers return a boolean value:
294 // TRUE means that the handler processed the event and FALSE that it didn't
295 // ------------------------------------------------------------------------
296
297 // there are several cases where we have virtual functions for Windows
298 // message processing: this is because these messages often require to be
299 // processed in a different manner in the derived classes. For all other
300 // messages, however, we do *not* have corresponding MSWOnXXX() function
301 // and if the derived class wants to process them, it should override
302 // MSWWindowProc() directly.
303
304 // scroll event (both horizontal and vertical)
305 virtual bool MSWOnScroll(int orientation, WXWORD nSBCode,
306 WXWORD pos, WXHWND control);
307
308 // child control notifications
309 #ifdef __WIN95__
310 virtual bool MSWOnNotify(int idCtrl, WXLPARAM lParam, WXLPARAM *result);
311 #endif // __WIN95__
312
313 // owner-drawn controls need to process these messages
314 virtual bool MSWOnDrawItem(int id, WXDRAWITEMSTRUCT *item);
315 virtual bool MSWOnMeasureItem(int id, WXMEASUREITEMSTRUCT *item);
316
317 // the rest are not virtual
318 bool HandleCreate(WXLPCREATESTRUCT cs, bool *mayCreate);
319 bool HandleInitDialog(WXHWND hWndFocus);
320 bool HandleDestroy();
321
322 bool HandlePaint();
323 bool HandleEraseBkgnd(WXHDC pDC);
324
325 bool HandleMinimize();
326 bool HandleMaximize();
327 bool HandleSize(int x, int y, WXUINT flag);
328 bool HandleSizing(wxRect& rect);
329 bool HandleGetMinMaxInfo(void *mmInfo);
330
331 bool HandleShow(bool show, int status);
332 bool HandleActivate(int flag, bool minimized, WXHWND activate);
333
334 bool HandleCommand(WXWORD id, WXWORD cmd, WXHWND control);
335 bool HandleSysCommand(WXWPARAM wParam, WXLPARAM lParam);
336
337 bool HandleCtlColor(WXHBRUSH *hBrush,
338 WXHDC hdc,
339 WXHWND hWnd,
340 WXUINT nCtlColor,
341 WXUINT message,
342 WXWPARAM wParam,
343 WXLPARAM lParam);
344
345 bool HandlePaletteChanged(WXHWND hWndPalChange);
346 bool HandleQueryNewPalette();
347 bool HandleSysColorChange();
348 bool HandleDisplayChange();
349 bool HandleCaptureChanged(WXHWND gainedCapture);
350
351 bool HandleQueryEndSession(long logOff, bool *mayEnd);
352 bool HandleEndSession(bool endSession, long logOff);
353
354 bool HandleSetFocus(WXHWND wnd);
355 bool HandleKillFocus(WXHWND wnd);
356
357 bool HandleDropFiles(WXWPARAM wParam);
358
359 bool HandleMouseEvent(WXUINT msg, int x, int y, WXUINT flags);
360 bool HandleMouseMove(int x, int y, WXUINT flags);
361 bool HandleMouseWheel(WXWPARAM wParam, WXLPARAM lParam);
362
363 bool HandleChar(WXWPARAM wParam, WXLPARAM lParam, bool isASCII = FALSE);
364 bool HandleKeyDown(WXWPARAM wParam, WXLPARAM lParam);
365 bool HandleKeyUp(WXWPARAM wParam, WXLPARAM lParam);
366 #ifdef __WIN32__
367 int HandleMenuChar(int chAccel, WXLPARAM lParam);
368 #endif
369
370 bool HandleQueryDragIcon(WXHICON *hIcon);
371
372 bool HandleSetCursor(WXHWND hWnd, short nHitTest, int mouseMsg);
373
374 // Window procedure
375 virtual long MSWWindowProc(WXUINT nMsg, WXWPARAM wParam, WXLPARAM lParam);
376
377 // Calls an appropriate default window procedure
378 virtual long MSWDefWindowProc(WXUINT nMsg, WXWPARAM wParam, WXLPARAM lParam);
379
380 // message processing helpers
381
382 // return FALSE if the message shouldn't be translated/preprocessed but
383 // dispatched normally
384 virtual bool MSWShouldPreProcessMessage(WXMSG* pMsg);
385
386 // return TRUE if the message was preprocessed and shouldn't be dispatched
387 virtual bool MSWProcessMessage(WXMSG* pMsg);
388
389 // return TRUE if the message was translated and shouldn't be dispatched
390 virtual bool MSWTranslateMessage(WXMSG* pMsg);
391
392 // called when the window is about to be destroyed
393 virtual void MSWDestroyWindow();
394
395 // this function should return the brush to paint the window background
396 // with or 0 for the default brush
397 virtual WXHBRUSH OnCtlColor(WXHDC hDC,
398 WXHWND hWnd,
399 WXUINT nCtlColor,
400 WXUINT message,
401 WXWPARAM wParam,
402 WXLPARAM lParam);
403
404 #if WXWIN_COMPATIBILITY
405 void SetShowing(bool show) { (void)Show(show); }
406 bool IsUserEnabled() const { return IsEnabled(); }
407 #endif // WXWIN_COMPATIBILITY
408
409 // Responds to colour changes: passes event on to children.
410 void OnSysColourChanged(wxSysColourChangedEvent& event);
411
412 // initialize various fields of wxMouseEvent (common part of MSWOnMouseXXX)
413 void InitMouseEvent(wxMouseEvent& event, int x, int y, WXUINT flags);
414
415 // check if mouse is in the window
416 bool IsMouseInWindow() const;
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 WXHMENU m_hMenu; // Menu, if any
441
442 // implement the base class pure virtuals
443 virtual void DoClientToScreen( int *x, int *y ) const;
444 virtual void DoScreenToClient( int *x, int *y ) const;
445 virtual void DoGetPosition( int *x, int *y ) const;
446 virtual void DoGetSize( int *width, int *height ) const;
447 virtual void DoGetClientSize( int *width, int *height ) const;
448 virtual void DoSetSize(int x, int y,
449 int width, int height,
450 int sizeFlags = wxSIZE_AUTO);
451 virtual void DoSetClientSize(int width, int height);
452
453 virtual void DoCaptureMouse();
454 virtual void DoReleaseMouse();
455
456 // move the window to the specified location and resize it: this is called
457 // from both DoSetSize() and DoSetClientSize() and would usually just call
458 // ::MoveWindow() except for composite controls which will want to arrange
459 // themselves inside the given rectangle
460 virtual void DoMoveWindow(int x, int y, int width, int height);
461
462 #if wxUSE_TOOLTIPS
463 virtual void DoSetToolTip( wxToolTip *tip );
464
465 // process TTN_NEEDTEXT message properly (i.e. fixing the bugs in
466 // comctl32.dll in our code -- see the function body for more info)
467 bool HandleTooltipNotify(WXUINT code,
468 WXLPARAM lParam,
469 const wxString& ttip);
470 #endif // wxUSE_TOOLTIPS
471
472 // the helper functions used by HandleChar/KeyXXX methods
473 wxKeyEvent CreateKeyEvent(wxEventType evType, int id,
474 WXLPARAM lParam = 0, WXWPARAM wParam = 0) const;
475
476 private:
477 // common part of all ctors
478 void Init();
479
480 // the (non-virtual) handlers for the events
481 bool HandleMove(int x, int y);
482 bool HandleMoving(wxRect& rect);
483 bool HandleJoystickEvent(WXUINT msg, int x, int y, WXUINT flags);
484
485 #ifdef __WIN95__
486 bool HandleNotify(int idCtrl, WXLPARAM lParam, WXLPARAM *result);
487 #endif // __WIN95__
488
489 // list of disabled children before last call to our Disable()
490 wxWindowList *m_childrenDisabled;
491
492 DECLARE_DYNAMIC_CLASS(wxWindowMSW)
493 DECLARE_NO_COPY_CLASS(wxWindowMSW)
494 DECLARE_EVENT_TABLE()
495 };
496
497 // ----------------------------------------------------------------------------
498 // inline functions
499 // ----------------------------------------------------------------------------
500
501 #if WXWIN_COMPATIBILITY_2_4
502
503 inline bool wxWindowMSW::GetUseCtl3D() const { return false; }
504 inline bool wxWindowMSW::GetTransparentBackground() const { return false; }
505 inline void wxWindowMSW::SetTransparent(bool WXUNUSED(t)) { }
506
507 #endif // WXWIN_COMPATIBILITY_2_4
508
509 // ---------------------------------------------------------------------------
510 // global functions
511 // ---------------------------------------------------------------------------
512
513 // kbd code translation
514 WXDLLEXPORT int wxCharCodeMSWToWX(int keySym);
515 WXDLLEXPORT int wxCharCodeWXToMSW(int id, bool *IsVirtual);
516
517 // window creation helper class: before creating a new HWND, instantiate an
518 // object of this class on stack - this allows to process the messages sent to
519 // the window even before CreateWindow() returns
520 class wxWindowCreationHook
521 {
522 public:
523 wxWindowCreationHook(wxWindowMSW *winBeingCreated);
524 ~wxWindowCreationHook();
525 };
526
527 #endif
528 // _WX_WINDOW_H_