]> git.saurik.com Git - wxWidgets.git/blame - include/wx/msw/window.h
support for vetoing grid cell editing (patch 469049)
[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$
9// Copyright: (c) Julian Smart and Markus Holzem
cc2b7472 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
2bda0e17 20#ifdef __GNUG__
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
1bffa913
VZ
31#include "wx/hash.h"
32
33// pseudo-template HWND <-> wxWindow hash table
34WX_DECLARE_HASH(wxWindow, wxWindowList, wxWinHashTable);
35
36extern wxWinHashTable *wxWinHandleHash;
37
cc2b7472
VZ
38// ---------------------------------------------------------------------------
39// constants
40// ---------------------------------------------------------------------------
1e6d9499 41
cc2b7472
VZ
42// FIXME does anybody use those? they're unused by wxWindows...
43enum
1e6d9499 44{
cc2b7472
VZ
45 wxKEY_SHIFT = 1,
46 wxKEY_CTRL = 2
1e6d9499
JS
47};
48
cc2b7472
VZ
49// ---------------------------------------------------------------------------
50// wxWindow declaration for MSW
51// ---------------------------------------------------------------------------
b782f2e0 52
1e6feb95 53class WXDLLEXPORT wxWindowMSW : public wxWindowBase
1e6d9499 54{
2bda0e17 55public:
1e6feb95
VZ
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)
bfc6fde4
VZ
64 {
65 Init();
66 Create(parent, id, pos, size, style, name);
67 }
2bda0e17 68
1e6feb95 69 virtual ~wxWindowMSW();
2bda0e17 70
cc2b7472
VZ
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);
bfc6fde4 77
cc2b7472 78 // implement base class pure virtuals
42e69d6b
VZ
79 virtual void SetTitle( const wxString& title);
80 virtual wxString GetTitle() const;
81
bfc6fde4 82 virtual void Raise();
bfc6fde4
VZ
83 virtual void Lower();
84
cc2b7472
VZ
85 virtual bool Show( bool show = TRUE );
86 virtual bool Enable( bool enable = TRUE );
bfc6fde4 87
cc2b7472 88 virtual void SetFocus();
bfc6fde4 89
1e6feb95 90 virtual bool Reparent(wxWindowBase *newParent);
bfc6fde4 91
cc2b7472
VZ
92 virtual void WarpPointer(int x, int y);
93 virtual void CaptureMouse();
94 virtual void ReleaseMouse();
bfc6fde4 95
cc2b7472
VZ
96 virtual void Refresh( bool eraseBackground = TRUE,
97 const wxRect *rect = (const wxRect *) NULL );
1e6feb95 98 virtual void Update();
cc2b7472 99 virtual void Clear();
a0e449ff
VZ
100 virtual void Freeze();
101 virtual void Thaw();
bfc6fde4 102
cc2b7472
VZ
103 virtual bool SetCursor( const wxCursor &cursor );
104 virtual bool SetFont( const wxFont &font );
bfc6fde4 105
bfc6fde4
VZ
106 virtual int GetCharHeight() const;
107 virtual int GetCharWidth() const;
cc2b7472
VZ
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
1e6feb95 115#if wxUSE_MENUS_NATIVE
a1665b22 116 virtual bool DoPopupMenu( wxMenu *menu, int x, int y );
1e6feb95 117#endif // wxUSE_MENUS_NATIVE
cc2b7472
VZ
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 );
2bda0e17 127
9cd6d737
VZ
128 virtual bool ScrollLines(int lines);
129 virtual bool ScrollPages(int pages);
b9b3393e 130
47d67540 131#if wxUSE_DRAG_AND_DROP
cc2b7472
VZ
132 virtual void SetDropTarget( wxDropTarget *dropTarget );
133#endif // wxUSE_DRAG_AND_DROP
9f3362c4 134
bfc6fde4
VZ
135 // Accept files for dragging
136 virtual void DragAcceptFiles(bool accept);
2bda0e17 137
2bda0e17 138#if WXWIN_COMPATIBILITY
bfc6fde4
VZ
139 // Set/get scroll attributes
140 virtual void SetScrollRange(int orient, int range, bool refresh = TRUE);
141 virtual void SetScrollPage(int orient, int page, bool refresh = TRUE);
142 virtual int OldGetScrollRange(int orient) const;
143 virtual int GetScrollPage(int orient) const;
42e69d6b
VZ
144
145 // event handlers
146 // Handle a control command
147 virtual void OnCommand(wxWindow& win, wxCommandEvent& event);
148
149 // Override to define new behaviour for default action (e.g. double
150 // clicking on a listbox)
151 virtual void OnDefaultAction(wxControl * WXUNUSED(initiatingItem)) { }
cc2b7472 152#endif // WXWIN_COMPATIBILITY
bfc6fde4 153
34636400 154#if wxUSE_CARET && WXWIN_COMPATIBILITY
789295bf
VZ
155 // caret manipulation (old MSW only functions, see wxCaret class for the
156 // new API)
157 void CreateCaret(int w, int h);
158 void CreateCaret(const wxBitmap *bitmap);
159 void DestroyCaret();
160 void ShowCaret(bool show);
161 void SetCaretPos(int x, int y);
162 void GetCaretPos(int *x, int *y) const;
163#endif // wxUSE_CARET
bfc6fde4 164
1e6feb95 165#ifndef __WXUNIVERSAL__
cc2b7472
VZ
166 // Native resource loading (implemented in src/msw/nativdlg.cpp)
167 // FIXME: should they really be all virtual?
bfc6fde4
VZ
168 virtual bool LoadNativeDialog(wxWindow* parent, wxWindowID& id);
169 virtual bool LoadNativeDialog(wxWindow* parent, const wxString& name);
42e69d6b
VZ
170 wxWindow* GetWindowChild1(wxWindowID id);
171 wxWindow* GetWindowChild(wxWindowID id);
1e6feb95 172#endif // __WXUNIVERSAL__
2bda0e17 173
f6bcfd97
BP
174 // a MSW only function which sends a size event to the window using its
175 // current size - this has an effect of refreshing the window layout
3cfcd50b
GT
176/*
177FUNCTION IS NOW A MEMBER OF wxFrame - gt
f6bcfd97 178 void SendSizeEvent();
3cfcd50b 179*/
f6bcfd97 180
cc2b7472
VZ
181 // implementation from now on
182 // --------------------------
2bda0e17 183
cc2b7472
VZ
184 // simple accessors
185 // ----------------
2bda0e17 186
d7c24517
VZ
187 WXHWND GetHWND() const { return m_hWnd; }
188 void SetHWND(WXHWND hWnd) { m_hWnd = hWnd; }
189 virtual WXWidget GetHandle() const { return GetHWND(); }
2bda0e17 190
cc2b7472
VZ
191 bool GetUseCtl3D() const { return m_useCtl3D; }
192 bool GetTransparentBackground() const { return m_backgroundTransparent; }
193 void SetTransparent(bool t = TRUE) { m_backgroundTransparent = t; }
2bda0e17 194
cc2b7472
VZ
195 // event handlers
196 // --------------
00c4e897
VZ
197
198 void OnSetFocus(wxFocusEvent& event);
bfc6fde4 199 void OnEraseBackground(wxEraseEvent& event);
bfc6fde4 200 void OnIdle(wxIdleEvent& event);
63da7df7 201 void OnPaint(wxPaintEvent& event);
2bda0e17 202
2bda0e17 203public:
bfc6fde4
VZ
204 // For implementation purposes - sometimes decorations make the client area
205 // smaller
206 virtual wxPoint GetClientAreaOrigin() const;
207
bfc6fde4
VZ
208 // Windows subclassing
209 void SubclassWin(WXHWND hWnd);
210 void UnsubclassWin();
bfc6fde4 211
a23fd0e1
VZ
212 WXFARPROC MSWGetOldWndProc() const { return m_oldWndProc; }
213 void MSWSetOldWndProc(WXFARPROC proc) { m_oldWndProc = proc; }
bfc6fde4 214
197dd9af 215 wxWindow *FindItem(long id) const;
42e69d6b 216 wxWindow *FindItemByHWND(WXHWND hWnd, bool controlOnly = FALSE) const;
bfc6fde4
VZ
217
218 // Make a Windows extended style from the given wxWindows window style
8d99be5f 219 static WXDWORD MakeExtendedStyle(long style,
df613907 220 bool eliminateBorders = FALSE);
bfc6fde4 221 // Determine whether 3D effects are wanted
8d99be5f 222 WXDWORD Determine3DEffects(WXDWORD defaultBorderStyle, bool *want3D) const;
bfc6fde4 223
bfc6fde4
VZ
224 // MSW only: TRUE if this control is part of the main control
225 virtual bool ContainsHWND(WXHWND WXUNUSED(hWnd)) const { return FALSE; };
226
b225f659
VZ
227 // translate wxWindows coords into Windows ones suitable to be passed to
228 // ::CreateWindow()
229 //
230 // returns TRUE if non default coords are returned, FALSE otherwise
231 bool MSWGetCreateWindowCoords(const wxPoint& pos,
232 const wxSize& size,
233 int& x, int& y,
234 int& w, int& h) const;
235
236 // creates the window of specified Windows class with given style, extended
237 // style, title and geometry (default values
238 //
239 // returns TRUE if the window has been created, FALSE if creation failed
240 bool MSWCreate(const wxChar *wclass,
241 const wxChar *title = NULL,
242 const wxPoint& pos = wxDefaultPosition,
243 const wxSize& size = wxDefaultSize,
244 WXDWORD style = 0,
a23fd0e1 245 WXDWORD exendedStyle = 0);
b225f659 246
42e69d6b 247 virtual bool MSWCommand(WXUINT param, WXWORD id);
bfc6fde4 248
42e69d6b
VZ
249#if WXWIN_COMPATIBILITY
250 wxObject *GetChild(int number) const;
251 virtual void MSWDeviceToLogical(float *x, float *y) const;
252#endif // WXWIN_COMPATIBILITY
bfc6fde4 253
1e6feb95 254#ifndef __WXUNIVERSAL__
bfc6fde4
VZ
255 // Create an appropriate wxWindow from a HWND
256 virtual wxWindow* CreateWindowFromHWND(wxWindow* parent, WXHWND hWnd);
257
258 // Make sure the window style reflects the HWND style (roughly)
259 virtual void AdoptAttributesFromHWND();
1e6feb95 260#endif // __WXUNIVERSAL__
bfc6fde4
VZ
261
262 // Setup background and foreground colours correctly
263 virtual void SetupColours();
264
42e69d6b
VZ
265 // ------------------------------------------------------------------------
266 // helpers for message handlers: these perform the same function as the
267 // message crackers from <windowsx.h> - they unpack WPARAM and LPARAM into
268 // the correct parameters
269 // ------------------------------------------------------------------------
270
271 void UnpackCommand(WXWPARAM wParam, WXLPARAM lParam,
272 WXWORD *id, WXHWND *hwnd, WXWORD *cmd);
273 void UnpackActivate(WXWPARAM wParam, WXLPARAM lParam,
274 WXWORD *state, WXWORD *minimized, WXHWND *hwnd);
275 void UnpackScroll(WXWPARAM wParam, WXLPARAM lParam,
276 WXWORD *code, WXWORD *pos, WXHWND *hwnd);
277 void UnpackCtlColor(WXWPARAM wParam, WXLPARAM lParam,
278 WXWORD *nCtlColor, WXHDC *hdc, WXHWND *hwnd);
279 void UnpackMenuSelect(WXWPARAM wParam, WXLPARAM lParam,
280 WXWORD *item, WXWORD *flags, WXHMENU *hmenu);
281
a23fd0e1 282 // ------------------------------------------------------------------------
3cfcd50b 283 // internal handlers for MSW messages: all handlers return a boolean value:
a23fd0e1
VZ
284 // TRUE means that the handler processed the event and FALSE that it didn't
285 // ------------------------------------------------------------------------
bfc6fde4 286
42e69d6b
VZ
287 // there are several cases where we have virtual functions for Windows
288 // message processing: this is because these messages often require to be
289 // processed in a different manner in the derived classes. For all other
290 // messages, however, we do *not* have corresponding MSWOnXXX() function
291 // and if the derived class wants to process them, it should override
292 // MSWWindowProc() directly.
a23fd0e1 293
42e69d6b 294 // scroll event (both horizontal and vertical)
a23fd0e1
VZ
295 virtual bool MSWOnScroll(int orientation, WXWORD nSBCode,
296 WXWORD pos, WXHWND control);
297
42e69d6b 298 // child control notifications
a23fd0e1
VZ
299#ifdef __WIN95__
300 virtual bool MSWOnNotify(int idCtrl, WXLPARAM lParam, WXLPARAM *result);
301#endif // __WIN95__
302
42e69d6b
VZ
303 // owner-drawn controls need to process these messages
304 virtual bool MSWOnDrawItem(int id, WXDRAWITEMSTRUCT *item);
305 virtual bool MSWOnMeasureItem(int id, WXMEASUREITEMSTRUCT *item);
306
307 // the rest are not virtual
308 bool HandleCreate(WXLPCREATESTRUCT cs, bool *mayCreate);
309 bool HandleInitDialog(WXHWND hWndFocus);
310 bool HandleDestroy();
311
312 bool HandlePaint();
313 bool HandleEraseBkgnd(WXHDC pDC);
314
315 bool HandleMinimize();
316 bool HandleMaximize();
317 bool HandleSize(int x, int y, WXUINT flag);
318 bool HandleGetMinMaxInfo(void *mmInfo);
319
320 bool HandleShow(bool show, int status);
321 bool HandleActivate(int flag, bool minimized, WXHWND activate);
322
323 bool HandleCommand(WXWORD id, WXWORD cmd, WXHWND control);
324 bool HandleSysCommand(WXWPARAM wParam, WXLPARAM lParam);
325
326 bool HandleCtlColor(WXHBRUSH *hBrush,
101f488c
VZ
327 WXHDC hdc,
328 WXHWND hWnd,
329 WXUINT nCtlColor,
330 WXUINT message,
331 WXWPARAM wParam,
332 WXLPARAM lParam);
a23fd0e1 333
42e69d6b
VZ
334 bool HandlePaletteChanged(WXHWND hWndPalChange);
335 bool HandleQueryNewPalette();
336 bool HandleSysColorChange();
a23fd0e1 337
42e69d6b
VZ
338 bool HandleQueryEndSession(long logOff, bool *mayEnd);
339 bool HandleEndSession(bool endSession, long logOff);
a23fd0e1 340
42e69d6b
VZ
341 bool HandleSetFocus(WXHWND wnd);
342 bool HandleKillFocus(WXHWND wnd);
bfc6fde4 343
42e69d6b 344 bool HandleDropFiles(WXWPARAM wParam);
bfc6fde4 345
42e69d6b
VZ
346 bool HandleMouseEvent(WXUINT msg, int x, int y, WXUINT flags);
347 bool HandleMouseMove(int x, int y, WXUINT flags);
d2c52078 348 bool HandleMouseWheel(WXWPARAM wParam, WXLPARAM lParam);
bfc6fde4 349
33ac7e6f
KB
350 bool HandleChar(WXWPARAM wParam, WXLPARAM lParam, bool isASCII = FALSE);
351 bool HandleKeyDown(WXWPARAM wParam, WXLPARAM lParam);
352 bool HandleKeyUp(WXWPARAM wParam, WXLPARAM lParam);
bfc6fde4 353
42e69d6b
VZ
354 bool HandleQueryDragIcon(WXHICON *hIcon);
355
356 bool HandleSetCursor(WXHWND hWnd, short nHitTest, int mouseMsg);
bfc6fde4 357
bfc6fde4
VZ
358 // Window procedure
359 virtual long MSWWindowProc(WXUINT nMsg, WXWPARAM wParam, WXLPARAM lParam);
360
361 // Calls an appropriate default window procedure
362 virtual long MSWDefWindowProc(WXUINT nMsg, WXWPARAM wParam, WXLPARAM lParam);
a37d422a
VZ
363
364 // message processing helpers
365
366 // return FALSE if the message shouldn't be translated/preprocessed but
367 // dispatched normally
368 virtual bool MSWShouldPreProcessMessage(WXMSG* pMsg);
369
370 // return TRUE if the message was preprocessed and shouldn't be dispatched
bfc6fde4 371 virtual bool MSWProcessMessage(WXMSG* pMsg);
a37d422a
VZ
372
373 // return TRUE if the message was translated and shouldn't be dispatched
bfc6fde4 374 virtual bool MSWTranslateMessage(WXMSG* pMsg);
a37d422a
VZ
375
376 // called when the window is about to be destroyed
bfc6fde4
VZ
377 virtual void MSWDestroyWindow();
378
379 // Detach "Window" menu from menu bar so it doesn't get deleted
380 void MSWDetachWindowMenu();
381
a23fd0e1
VZ
382 // this function should return the brush to paint the window background
383 // with or 0 for the default brush
384 virtual WXHBRUSH OnCtlColor(WXHDC hDC,
385 WXHWND hWnd,
386 WXUINT nCtlColor,
387 WXUINT message,
388 WXWPARAM wParam,
389 WXLPARAM lParam);
bfc6fde4 390
cc2b7472
VZ
391#if WXWIN_COMPATIBILITY
392 void SetShowing(bool show) { (void)Show(show); }
393 bool IsUserEnabled() const { return IsEnabled(); }
394#endif // WXWIN_COMPATIBILITY
bfc6fde4
VZ
395
396 // Responds to colour changes: passes event on to children.
397 void OnSysColourChanged(wxSysColourChangedEvent& event);
398
a23fd0e1
VZ
399 // initialize various fields of wxMouseEvent (common part of MSWOnMouseXXX)
400 void InitMouseEvent(wxMouseEvent& event, int x, int y, WXUINT flags);
bfc6fde4 401
1e6feb95
VZ
402 // check if mouse is in the window
403 bool IsMouseInWindow() const;
404
2bda0e17 405protected:
d7c24517
VZ
406 // the window handle
407 WXHWND m_hWnd;
408
cc2b7472 409 // the old window proc (we subclass all windows)
bfc6fde4 410 WXFARPROC m_oldWndProc;
2bda0e17 411
cc2b7472
VZ
412 // additional (MSW specific) flags
413 bool m_useCtl3D:1; // Using CTL3D for this control
cc2b7472
VZ
414 bool m_backgroundTransparent:1;
415 bool m_mouseInWindow:1;
416 bool m_doubleClickAllowed:1;
bfc6fde4 417
cc2b7472 418 // the size of one page for scrolling
bfc6fde4
VZ
419 int m_xThumbSize;
420 int m_yThumbSize;
2bda0e17 421
a23fd0e1
VZ
422#if wxUSE_MOUSEEVENT_HACK
423 // the coordinates of the last mouse event and the type of it
cc2b7472
VZ
424 long m_lastMouseX,
425 m_lastMouseY;
426 int m_lastMouseEvent;
a23fd0e1 427#endif // wxUSE_MOUSEEVENT_HACK
bfc6fde4 428
bfc6fde4 429 WXHMENU m_hMenu; // Menu, if any
bfc6fde4 430
101f488c
VZ
431 // the return value of WM_GETDLGCODE handler
432 long m_lDlgCode;
433
cc2b7472 434 // implement the base class pure virtuals
dabc0cd5
VZ
435 virtual void DoClientToScreen( int *x, int *y ) const;
436 virtual void DoScreenToClient( int *x, int *y ) const;
cc2b7472
VZ
437 virtual void DoGetPosition( int *x, int *y ) const;
438 virtual void DoGetSize( int *width, int *height ) const;
439 virtual void DoGetClientSize( int *width, int *height ) const;
440 virtual void DoSetSize(int x, int y,
441 int width, int height,
442 int sizeFlags = wxSIZE_AUTO);
bfc6fde4 443 virtual void DoSetClientSize(int width, int height);
2bda0e17 444
b782f2e0
VZ
445 // move the window to the specified location and resize it: this is called
446 // from both DoSetSize() and DoSetClientSize() and would usually just call
447 // ::MoveWindow() except for composite controls which will want to arrange
448 // themselves inside the given rectangle
449 virtual void DoMoveWindow(int x, int y, int width, int height);
450
cc2b7472
VZ
451#if wxUSE_TOOLTIPS
452 virtual void DoSetToolTip( wxToolTip *tip );
453#endif // wxUSE_TOOLTIPS
454
b09bda68
VZ
455 // the helper functions used by HandleChar/KeyXXX methods
456 wxKeyEvent CreateKeyEvent(wxEventType evType, int id, WXLPARAM lp) const;
457
fd3f686c
VZ
458private:
459 // common part of all ctors
460 void Init();
461
a23fd0e1
VZ
462 // the (non-virtual) handlers for the events
463 bool HandleMove(int x, int y);
464 bool HandleJoystickEvent(WXUINT msg, int x, int y, WXUINT flags);
465
466#ifdef __WIN95__
467 bool HandleNotify(int idCtrl, WXLPARAM lParam, WXLPARAM *result);
468#endif // __WIN95__
469
e8e4fa12
GT
470 DECLARE_DYNAMIC_CLASS(wxWindowMSW)
471 DECLARE_NO_COPY_CLASS(wxWindowMSW)
fd3f686c 472 DECLARE_EVENT_TABLE()
2bda0e17
KB
473};
474
cc2b7472
VZ
475// ---------------------------------------------------------------------------
476// global functions
477// ---------------------------------------------------------------------------
2bda0e17 478
cc2b7472 479// kbd code translation
184b5d99
JS
480WXDLLEXPORT int wxCharCodeMSWToWX(int keySym);
481WXDLLEXPORT int wxCharCodeWXToMSW(int id, bool *IsVirtual);
2bda0e17 482
b225f659
VZ
483// window creation helper class: before creating a new HWND, instantiate an
484// object of this class on stack - this allows to process the messages sent to
485// the window even before CreateWindow() returns
486class wxWindowCreationHook
487{
488public:
489 wxWindowCreationHook(wxWindowMSW *winBeingCreated);
490 ~wxWindowCreationHook();
491};
492
2bda0e17 493#endif
bbcdf8bc 494 // _WX_WINDOW_H_