]>
Commit | Line | Data |
---|---|---|
2bda0e17 | 1 | ///////////////////////////////////////////////////////////////////////////// |
1e6feb95 | 2 | // Name: wx/msw/window.h |
faa49bfd | 3 | // Purpose: wxWindowMSW class |
2bda0e17 | 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$ | |
371a5b4e | 9 | // Copyright: (c) Julian Smart |
65571936 | 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 | // constants | |
18 | // --------------------------------------------------------------------------- | |
1e6d9499 | 19 | |
cc2b7472 VZ |
20 | // --------------------------------------------------------------------------- |
21 | // wxWindow declaration for MSW | |
22 | // --------------------------------------------------------------------------- | |
b782f2e0 | 23 | |
53a2db12 | 24 | class WXDLLIMPEXP_CORE wxWindowMSW : public wxWindowBase |
1e6d9499 | 25 | { |
8e44f3ca JS |
26 | friend class wxSpinCtrl; |
27 | friend class wxSlider; | |
28 | friend class wxRadioBox; | |
fa61fec5 MW |
29 | #if defined __VISUALC__ && __VISUALC__ <= 1200 |
30 | friend class wxWindowMSW; | |
31 | #endif | |
2bda0e17 | 32 | public: |
6463b9f5 | 33 | wxWindowMSW() { Init(); } |
1e6feb95 VZ |
34 | |
35 | wxWindowMSW(wxWindow *parent, | |
36 | wxWindowID id, | |
37 | const wxPoint& pos = wxDefaultPosition, | |
38 | const wxSize& size = wxDefaultSize, | |
39 | long style = 0, | |
6463b9f5 JS |
40 | const wxString& name = wxPanelNameStr) |
41 | { | |
42 | Init(); | |
43 | Create(parent, id, pos, size, style, name); | |
44 | } | |
2bda0e17 | 45 | |
1e6feb95 | 46 | virtual ~wxWindowMSW(); |
2bda0e17 | 47 | |
cc2b7472 VZ |
48 | bool Create(wxWindow *parent, |
49 | wxWindowID id, | |
50 | const wxPoint& pos = wxDefaultPosition, | |
51 | const wxSize& size = wxDefaultSize, | |
52 | long style = 0, | |
53 | const wxString& name = wxPanelNameStr); | |
bfc6fde4 | 54 | |
cc2b7472 | 55 | // implement base class pure virtuals |
faa49bfd WS |
56 | virtual void SetLabel(const wxString& label); |
57 | virtual wxString GetLabel() const; | |
42e69d6b | 58 | |
bfc6fde4 | 59 | virtual void Raise(); |
bfc6fde4 VZ |
60 | virtual void Lower(); |
61 | ||
376d7d97 VZ |
62 | virtual bool Show(bool show = true); |
63 | virtual bool ShowWithEffect(wxShowEffect effect, | |
eed04c99 | 64 | unsigned timeout = 0) |
376d7d97 | 65 | { |
eed04c99 | 66 | return MSWShowWithEffect(true, effect, timeout); |
376d7d97 VZ |
67 | } |
68 | virtual bool HideWithEffect(wxShowEffect effect, | |
eed04c99 | 69 | unsigned timeout = 0) |
376d7d97 | 70 | { |
eed04c99 | 71 | return MSWShowWithEffect(false, effect, timeout); |
376d7d97 | 72 | } |
bfc6fde4 | 73 | |
cc2b7472 | 74 | virtual void SetFocus(); |
ddf9d04f | 75 | virtual void SetFocusFromKbd(); |
bfc6fde4 | 76 | |
1e6feb95 | 77 | virtual bool Reparent(wxWindowBase *newParent); |
bfc6fde4 | 78 | |
cc2b7472 | 79 | virtual void WarpPointer(int x, int y); |
bfc6fde4 | 80 | |
27d2dbbc | 81 | virtual void Refresh( bool eraseBackground = true, |
cc2b7472 | 82 | const wxRect *rect = (const wxRect *) NULL ); |
1e6feb95 | 83 | virtual void Update(); |
bfc6fde4 | 84 | |
7bd6bf45 VZ |
85 | virtual void SetWindowStyleFlag(long style); |
86 | virtual void SetExtraStyle(long exStyle); | |
cc2b7472 VZ |
87 | virtual bool SetCursor( const wxCursor &cursor ); |
88 | virtual bool SetFont( const wxFont &font ); | |
bfc6fde4 | 89 | |
bfc6fde4 VZ |
90 | virtual int GetCharHeight() const; |
91 | virtual int GetCharWidth() const; | |
cc2b7472 VZ |
92 | virtual void GetTextExtent(const wxString& string, |
93 | int *x, int *y, | |
94 | int *descent = (int *) NULL, | |
95 | int *externalLeading = (int *) NULL, | |
96 | const wxFont *theFont = (const wxFont *) NULL) | |
97 | const; | |
98 | ||
cc2b7472 | 99 | virtual void SetScrollbar( int orient, int pos, int thumbVisible, |
27d2dbbc WS |
100 | int range, bool refresh = true ); |
101 | virtual void SetScrollPos( int orient, int pos, bool refresh = true ); | |
cc2b7472 VZ |
102 | virtual int GetScrollPos( int orient ) const; |
103 | virtual int GetScrollThumb( int orient ) const; | |
104 | virtual int GetScrollRange( int orient ) const; | |
105 | virtual void ScrollWindow( int dx, int dy, | |
106 | const wxRect* rect = (wxRect *) NULL ); | |
2bda0e17 | 107 | |
9cd6d737 VZ |
108 | virtual bool ScrollLines(int lines); |
109 | virtual bool ScrollPages(int pages); | |
b9b3393e | 110 | |
978af864 VZ |
111 | virtual void SetLayoutDirection(wxLayoutDirection dir); |
112 | virtual wxLayoutDirection GetLayoutDirection() const; | |
113 | virtual wxCoord AdjustForLayoutDirection(wxCoord x, | |
114 | wxCoord width, | |
115 | wxCoord widthTotal) const; | |
116 | ||
47d67540 | 117 | #if wxUSE_DRAG_AND_DROP |
cc2b7472 VZ |
118 | virtual void SetDropTarget( wxDropTarget *dropTarget ); |
119 | #endif // wxUSE_DRAG_AND_DROP | |
9f3362c4 | 120 | |
bfc6fde4 VZ |
121 | // Accept files for dragging |
122 | virtual void DragAcceptFiles(bool accept); | |
2bda0e17 | 123 | |
1e6feb95 | 124 | #ifndef __WXUNIVERSAL__ |
cc2b7472 VZ |
125 | // Native resource loading (implemented in src/msw/nativdlg.cpp) |
126 | // FIXME: should they really be all virtual? | |
bfc6fde4 VZ |
127 | virtual bool LoadNativeDialog(wxWindow* parent, wxWindowID& id); |
128 | virtual bool LoadNativeDialog(wxWindow* parent, const wxString& name); | |
42e69d6b VZ |
129 | wxWindow* GetWindowChild1(wxWindowID id); |
130 | wxWindow* GetWindowChild(wxWindowID id); | |
1e6feb95 | 131 | #endif // __WXUNIVERSAL__ |
2bda0e17 | 132 | |
540b6b09 | 133 | #if wxUSE_HOTKEY |
5048c832 | 134 | // install and deinstall a system wide hotkey |
540b6b09 | 135 | virtual bool RegisterHotKey(int hotkeyId, int modifiers, int keycode); |
5048c832 | 136 | virtual bool UnregisterHotKey(int hotkeyId); |
540b6b09 | 137 | #endif // wxUSE_HOTKEY |
5048c832 | 138 | |
7d4f65e3 JS |
139 | #ifdef __POCKETPC__ |
140 | bool IsContextMenuEnabled() const { return m_contextMenuEnabled; } | |
141 | void EnableContextMenu(bool enable = true) { m_contextMenuEnabled = enable; } | |
142 | #endif | |
143 | ||
ed4780ea VZ |
144 | // window handle stuff |
145 | // ------------------- | |
2bda0e17 | 146 | |
d7c24517 VZ |
147 | WXHWND GetHWND() const { return m_hWnd; } |
148 | void SetHWND(WXHWND hWnd) { m_hWnd = hWnd; } | |
149 | virtual WXWidget GetHandle() const { return GetHWND(); } | |
2bda0e17 | 150 | |
ed4780ea VZ |
151 | void AssociateHandle(WXWidget handle); |
152 | void DissociateHandle(); | |
153 | ||
f7040b5f VZ |
154 | // does this window have deferred position and/or size? |
155 | bool IsSizeDeferred() const; | |
156 | ||
5acec112 VZ |
157 | // these functions allow to register a global handler for the given Windows |
158 | // message: it will be called from MSWWindowProc() of any window which gets | |
159 | // this event if it's not processed before (i.e. unlike a hook procedure it | |
160 | // does not override the normal processing) | |
161 | // | |
162 | // notice that if you want to process a message for a given window only you | |
163 | // should override its MSWWindowProc() instead | |
164 | ||
165 | // type of the handler: it is called with the message parameters (except | |
166 | // that the window object is passed instead of window handle) and should | |
167 | // return true if it handled the message or false if it should be passed to | |
168 | // DefWindowProc() | |
2035ad11 | 169 | typedef bool (*MSWMessageHandler)(wxWindowMSW *win, |
5acec112 VZ |
170 | WXUINT nMsg, |
171 | WXWPARAM wParam, | |
172 | WXLPARAM lParam); | |
173 | ||
174 | // install a handler, shouldn't be called more than one for the same message | |
175 | static bool MSWRegisterMessageHandler(int msg, MSWMessageHandler handler); | |
176 | ||
177 | // unregister a previously registered handler | |
178 | static void MSWUnregisterMessageHandler(int msg, MSWMessageHandler handler); | |
179 | ||
ed4780ea VZ |
180 | |
181 | // implementation from now on | |
182 | // ========================== | |
183 | ||
cc2b7472 VZ |
184 | // event handlers |
185 | // -------------- | |
00c4e897 | 186 | |
63da7df7 | 187 | void OnPaint(wxPaintEvent& event); |
8681b094 | 188 | void OnEraseBackground(wxEraseEvent& event); |
79099b80 | 189 | #ifdef __WXWINCE__ |
8681b094 | 190 | void OnInitDialog(wxInitDialogEvent& event); |
79099b80 | 191 | #endif |
2bda0e17 | 192 | |
2bda0e17 | 193 | public: |
bfc6fde4 VZ |
194 | // Windows subclassing |
195 | void SubclassWin(WXHWND hWnd); | |
196 | void UnsubclassWin(); | |
bfc6fde4 | 197 | |
a23fd0e1 VZ |
198 | WXFARPROC MSWGetOldWndProc() const { return m_oldWndProc; } |
199 | void MSWSetOldWndProc(WXFARPROC proc) { m_oldWndProc = proc; } | |
bfc6fde4 | 200 | |
27d2dbbc | 201 | // return true if the window is of a standard (i.e. not wxWidgets') class |
5a403e3f VZ |
202 | // |
203 | // to understand why does it work, look at SubclassWin() code and comments | |
204 | bool IsOfStandardClass() const { return m_oldWndProc != NULL; } | |
205 | ||
197dd9af | 206 | wxWindow *FindItem(long id) const; |
27d2dbbc | 207 | wxWindow *FindItemByHWND(WXHWND hWnd, bool controlOnly = false) const; |
bfc6fde4 | 208 | |
27d2dbbc | 209 | // MSW only: true if this control is part of the main control |
47b378bd | 210 | virtual bool ContainsHWND(WXHWND WXUNUSED(hWnd)) const { return false; } |
bfc6fde4 | 211 | |
c009bf3e VZ |
212 | #if wxUSE_TOOLTIPS |
213 | // MSW only: true if this window or any of its children have a tooltip | |
214 | virtual bool HasToolTips() const { return GetToolTip() != NULL; } | |
215 | #endif // wxUSE_TOOLTIPS | |
216 | ||
77ffb593 | 217 | // translate wxWidgets style flags for this control into the Windows style |
b2d5a7ee VZ |
218 | // and optional extended style for the corresponding native control |
219 | // | |
220 | // this is the function that should be overridden in the derived classes, | |
221 | // but you will mostly use MSWGetCreateWindowFlags() below | |
fe3d9123 | 222 | virtual WXDWORD MSWGetStyle(long flags, WXDWORD *exstyle = NULL) const ; |
b2d5a7ee | 223 | |
77ffb593 | 224 | // get the MSW window flags corresponding to wxWidgets ones |
b2d5a7ee VZ |
225 | // |
226 | // the functions returns the flags (WS_XXX) directly and puts the ext | |
227 | // (WS_EX_XXX) flags into the provided pointer if not NULL | |
228 | WXDWORD MSWGetCreateWindowFlags(WXDWORD *exflags = NULL) const | |
229 | { return MSWGetStyle(GetWindowStyle(), exflags); } | |
230 | ||
7bd6bf45 VZ |
231 | // update the real underlying window style flags to correspond to the |
232 | // current wxWindow object style (safe to call even if window isn't fully | |
233 | // created yet) | |
234 | void MSWUpdateStyle(long flagsOld, long exflagsOld); | |
235 | ||
77ffb593 | 236 | // translate wxWidgets coords into Windows ones suitable to be passed to |
b225f659 VZ |
237 | // ::CreateWindow() |
238 | // | |
27d2dbbc | 239 | // returns true if non default coords are returned, false otherwise |
b225f659 VZ |
240 | bool MSWGetCreateWindowCoords(const wxPoint& pos, |
241 | const wxSize& size, | |
242 | int& x, int& y, | |
243 | int& w, int& h) const; | |
244 | ||
9dfef5ac VZ |
245 | // get the HWND to be used as parent of this window with CreateWindow() |
246 | virtual WXHWND MSWGetParent() const; | |
247 | ||
b225f659 VZ |
248 | // creates the window of specified Windows class with given style, extended |
249 | // style, title and geometry (default values | |
250 | // | |
27d2dbbc | 251 | // returns true if the window has been created, false if creation failed |
b225f659 VZ |
252 | bool MSWCreate(const wxChar *wclass, |
253 | const wxChar *title = NULL, | |
254 | const wxPoint& pos = wxDefaultPosition, | |
255 | const wxSize& size = wxDefaultSize, | |
256 | WXDWORD style = 0, | |
a23fd0e1 | 257 | WXDWORD exendedStyle = 0); |
b225f659 | 258 | |
42e69d6b | 259 | virtual bool MSWCommand(WXUINT param, WXWORD id); |
bfc6fde4 | 260 | |
1e6feb95 | 261 | #ifndef __WXUNIVERSAL__ |
bfc6fde4 VZ |
262 | // Create an appropriate wxWindow from a HWND |
263 | virtual wxWindow* CreateWindowFromHWND(wxWindow* parent, WXHWND hWnd); | |
264 | ||
265 | // Make sure the window style reflects the HWND style (roughly) | |
266 | virtual void AdoptAttributesFromHWND(); | |
1e6feb95 | 267 | #endif // __WXUNIVERSAL__ |
bfc6fde4 VZ |
268 | |
269 | // Setup background and foreground colours correctly | |
270 | virtual void SetupColours(); | |
271 | ||
42e69d6b VZ |
272 | // ------------------------------------------------------------------------ |
273 | // helpers for message handlers: these perform the same function as the | |
274 | // message crackers from <windowsx.h> - they unpack WPARAM and LPARAM into | |
275 | // the correct parameters | |
276 | // ------------------------------------------------------------------------ | |
277 | ||
278 | void UnpackCommand(WXWPARAM wParam, WXLPARAM lParam, | |
279 | WXWORD *id, WXHWND *hwnd, WXWORD *cmd); | |
280 | void UnpackActivate(WXWPARAM wParam, WXLPARAM lParam, | |
281 | WXWORD *state, WXWORD *minimized, WXHWND *hwnd); | |
282 | void UnpackScroll(WXWPARAM wParam, WXLPARAM lParam, | |
283 | WXWORD *code, WXWORD *pos, WXHWND *hwnd); | |
284 | void UnpackCtlColor(WXWPARAM wParam, WXLPARAM lParam, | |
01c500af | 285 | WXHDC *hdc, WXHWND *hwnd); |
42e69d6b VZ |
286 | void UnpackMenuSelect(WXWPARAM wParam, WXLPARAM lParam, |
287 | WXWORD *item, WXWORD *flags, WXHMENU *hmenu); | |
288 | ||
a23fd0e1 | 289 | // ------------------------------------------------------------------------ |
3cfcd50b | 290 | // internal handlers for MSW messages: all handlers return a boolean value: |
27d2dbbc | 291 | // true means that the handler processed the event and false that it didn't |
a23fd0e1 | 292 | // ------------------------------------------------------------------------ |
bfc6fde4 | 293 | |
42e69d6b VZ |
294 | // there are several cases where we have virtual functions for Windows |
295 | // message processing: this is because these messages often require to be | |
296 | // processed in a different manner in the derived classes. For all other | |
297 | // messages, however, we do *not* have corresponding MSWOnXXX() function | |
298 | // and if the derived class wants to process them, it should override | |
299 | // MSWWindowProc() directly. | |
a23fd0e1 | 300 | |
42e69d6b | 301 | // scroll event (both horizontal and vertical) |
a23fd0e1 VZ |
302 | virtual bool MSWOnScroll(int orientation, WXWORD nSBCode, |
303 | WXWORD pos, WXHWND control); | |
304 | ||
42e69d6b | 305 | // child control notifications |
a23fd0e1 | 306 | virtual bool MSWOnNotify(int idCtrl, WXLPARAM lParam, WXLPARAM *result); |
a23fd0e1 | 307 | |
42e69d6b VZ |
308 | // owner-drawn controls need to process these messages |
309 | virtual bool MSWOnDrawItem(int id, WXDRAWITEMSTRUCT *item); | |
310 | virtual bool MSWOnMeasureItem(int id, WXMEASUREITEMSTRUCT *item); | |
311 | ||
312 | // the rest are not virtual | |
313 | bool HandleCreate(WXLPCREATESTRUCT cs, bool *mayCreate); | |
314 | bool HandleInitDialog(WXHWND hWndFocus); | |
315 | bool HandleDestroy(); | |
316 | ||
317 | bool HandlePaint(); | |
1a784dfc VZ |
318 | bool HandlePrintClient(WXHDC hDC); |
319 | bool HandleEraseBkgnd(WXHDC hDC); | |
42e69d6b VZ |
320 | |
321 | bool HandleMinimize(); | |
322 | bool HandleMaximize(); | |
323 | bool HandleSize(int x, int y, WXUINT flag); | |
5706de1c | 324 | bool HandleSizing(wxRect& rect); |
42e69d6b | 325 | bool HandleGetMinMaxInfo(void *mmInfo); |
aa767a45 JS |
326 | bool HandleEnterSizeMove(); |
327 | bool HandleExitSizeMove(); | |
42e69d6b VZ |
328 | |
329 | bool HandleShow(bool show, int status); | |
330 | bool HandleActivate(int flag, bool minimized, WXHWND activate); | |
331 | ||
332 | bool HandleCommand(WXWORD id, WXWORD cmd, WXHWND control); | |
42e69d6b | 333 | |
48fa6bd3 | 334 | bool HandleCtlColor(WXHBRUSH *hBrush, WXHDC hdc, WXHWND hWnd); |
a23fd0e1 | 335 | |
42e69d6b VZ |
336 | bool HandlePaletteChanged(WXHWND hWndPalChange); |
337 | bool HandleQueryNewPalette(); | |
338 | bool HandleSysColorChange(); | |
574c939e | 339 | bool HandleDisplayChange(); |
a5e84126 | 340 | bool HandleCaptureChanged(WXHWND gainedCapture); |
1272e71b | 341 | virtual bool HandleSettingChange(WXWPARAM wParam, WXLPARAM lParam); |
a23fd0e1 | 342 | |
42e69d6b VZ |
343 | bool HandleQueryEndSession(long logOff, bool *mayEnd); |
344 | bool HandleEndSession(bool endSession, long logOff); | |
a23fd0e1 | 345 | |
42e69d6b VZ |
346 | bool HandleSetFocus(WXHWND wnd); |
347 | bool HandleKillFocus(WXHWND wnd); | |
bfc6fde4 | 348 | |
42e69d6b | 349 | bool HandleDropFiles(WXWPARAM wParam); |
bfc6fde4 | 350 | |
42e69d6b VZ |
351 | bool HandleMouseEvent(WXUINT msg, int x, int y, WXUINT flags); |
352 | bool HandleMouseMove(int x, int y, WXUINT flags); | |
d2c52078 | 353 | bool HandleMouseWheel(WXWPARAM wParam, WXLPARAM lParam); |
bfc6fde4 | 354 | |
27d2dbbc | 355 | bool HandleChar(WXWPARAM wParam, WXLPARAM lParam, bool isASCII = false); |
33ac7e6f KB |
356 | bool HandleKeyDown(WXWPARAM wParam, WXLPARAM lParam); |
357 | bool HandleKeyUp(WXWPARAM wParam, WXLPARAM lParam); | |
5048c832 JS |
358 | #if wxUSE_ACCEL |
359 | bool HandleHotKey(WXWPARAM wParam, WXLPARAM lParam); | |
360 | #endif | |
b74cce40 VZ |
361 | #ifdef __WIN32__ |
362 | int HandleMenuChar(int chAccel, WXLPARAM lParam); | |
363 | #endif | |
78c91815 VZ |
364 | // Create and process a clipboard event specified by type. |
365 | bool HandleClipboardEvent( WXUINT nMsg ); | |
bfc6fde4 | 366 | |
42e69d6b VZ |
367 | bool HandleQueryDragIcon(WXHICON *hIcon); |
368 | ||
369 | bool HandleSetCursor(WXHWND hWnd, short nHitTest, int mouseMsg); | |
bfc6fde4 | 370 | |
355debca VZ |
371 | bool HandlePower(WXWPARAM wParam, WXLPARAM lParam, bool *vetoed); |
372 | ||
373 | ||
bfc6fde4 | 374 | // Window procedure |
c140b7e7 | 375 | virtual WXLRESULT MSWWindowProc(WXUINT nMsg, WXWPARAM wParam, WXLPARAM lParam); |
bfc6fde4 VZ |
376 | |
377 | // Calls an appropriate default window procedure | |
c140b7e7 | 378 | virtual WXLRESULT MSWDefWindowProc(WXUINT nMsg, WXWPARAM wParam, WXLPARAM lParam); |
a37d422a VZ |
379 | |
380 | // message processing helpers | |
381 | ||
27d2dbbc | 382 | // return false if the message shouldn't be translated/preprocessed but |
a37d422a VZ |
383 | // dispatched normally |
384 | virtual bool MSWShouldPreProcessMessage(WXMSG* pMsg); | |
385 | ||
27d2dbbc | 386 | // return true if the message was preprocessed and shouldn't be dispatched |
bfc6fde4 | 387 | virtual bool MSWProcessMessage(WXMSG* pMsg); |
a37d422a | 388 | |
27d2dbbc | 389 | // return true if the message was translated and shouldn't be dispatched |
bfc6fde4 | 390 | virtual bool MSWTranslateMessage(WXMSG* pMsg); |
a37d422a VZ |
391 | |
392 | // called when the window is about to be destroyed | |
bfc6fde4 VZ |
393 | virtual void MSWDestroyWindow(); |
394 | ||
01c500af | 395 | |
c5bd3c62 VZ |
396 | // this function should return the brush to paint the children controls |
397 | // background or 0 if this window doesn't impose any particular background | |
398 | // on its children | |
399 | // | |
c3732409 VZ |
400 | // the base class version returns a solid brush if we have a non default |
401 | // background colour or 0 otherwise | |
2bae4332 | 402 | virtual WXHBRUSH MSWGetBgBrushForChild(WXHDC hDC, WXHWND hWnd); |
c5bd3c62 | 403 | |
c3732409 VZ |
404 | // return the background brush to use for painting the given window by |
405 | // quering the parent windows via their MSWGetBgBrushForChild() recursively | |
c5bd3c62 | 406 | // |
2bae4332 | 407 | // hWndToPaint is normally NULL meaning this window itself, but it can also |
c3732409 VZ |
408 | // be a child of this window which is used by the static box and could be |
409 | // potentially useful for other transparent controls | |
2bae4332 | 410 | WXHBRUSH MSWGetBgBrush(WXHDC hDC, WXHWND hWndToPaint = NULL); |
c3732409 VZ |
411 | |
412 | // gives the parent the possibility to draw its children background, e.g. | |
413 | // this is used by wxNotebook to do it using DrawThemeBackground() | |
07c19327 | 414 | // |
c3732409 VZ |
415 | // return true if background was drawn, false otherwise |
416 | virtual bool MSWPrintChild(WXHDC WXUNUSED(hDC), wxWindow * WXUNUSED(child)) | |
417 | { | |
418 | return false; | |
419 | } | |
07c19327 | 420 | |
ce0e1aac JS |
421 | // some controls (e.g. wxListBox) need to set the return value themselves |
422 | // | |
423 | // return true to let parent handle it if we don't, false otherwise | |
424 | virtual bool MSWShouldPropagatePrintChild() | |
425 | { | |
426 | return true; | |
427 | } | |
428 | ||
376d7d97 VZ |
429 | // common part of Show/HideWithEffect() |
430 | bool MSWShowWithEffect(bool show, | |
431 | wxShowEffect effect, | |
eed04c99 | 432 | unsigned timeout); |
07c19327 | 433 | |
bfc6fde4 VZ |
434 | // Responds to colour changes: passes event on to children. |
435 | void OnSysColourChanged(wxSysColourChangedEvent& event); | |
436 | ||
a23fd0e1 VZ |
437 | // initialize various fields of wxMouseEvent (common part of MSWOnMouseXXX) |
438 | void InitMouseEvent(wxMouseEvent& event, int x, int y, WXUINT flags); | |
bfc6fde4 | 439 | |
1e6feb95 VZ |
440 | // check if mouse is in the window |
441 | bool IsMouseInWindow() const; | |
2e992e06 VZ |
442 | |
443 | // check if a native double-buffering applies for this window | |
444 | virtual bool IsDoubleBuffered() const; | |
1e6feb95 | 445 | |
51e4e266 VZ |
446 | // synthesize a wxEVT_LEAVE_WINDOW event and set m_mouseInWindow to false |
447 | void GenerateMouseLeave(); | |
448 | ||
e39af974 JS |
449 | // virtual function for implementing internal idle |
450 | // behaviour | |
c3732409 | 451 | virtual void OnInternalIdle(); |
e39af974 | 452 | |
2bda0e17 | 453 | protected: |
3c75d8ba PC |
454 | // this allows you to implement standard control borders without |
455 | // repeating the code in different classes that are not derived from | |
456 | // wxControl | |
457 | virtual wxBorder GetDefaultBorderForControl() const; | |
458 | ||
459 | // choose the default border for this window | |
460 | virtual wxBorder GetDefaultBorder() const; | |
6f02a879 | 461 | |
dc797d8e JS |
462 | // Translate wxBORDER_THEME (and other border styles if necessary to the value |
463 | // that makes most sense for this Windows environment | |
464 | virtual wxBorder TranslateBorder(wxBorder border) const; | |
465 | ||
6f02a879 VZ |
466 | #if wxUSE_MENUS_NATIVE |
467 | virtual bool DoPopupMenu( wxMenu *menu, int x, int y ); | |
468 | #endif // wxUSE_MENUS_NATIVE | |
469 | ||
d7c24517 VZ |
470 | // the window handle |
471 | WXHWND m_hWnd; | |
472 | ||
cc2b7472 | 473 | // the old window proc (we subclass all windows) |
bfc6fde4 | 474 | WXFARPROC m_oldWndProc; |
2bda0e17 | 475 | |
cc2b7472 | 476 | // additional (MSW specific) flags |
cc2b7472 | 477 | bool m_mouseInWindow:1; |
68304caf | 478 | bool m_lastKeydownProcessed:1; |
bfc6fde4 | 479 | |
cc2b7472 | 480 | // the size of one page for scrolling |
bfc6fde4 VZ |
481 | int m_xThumbSize; |
482 | int m_yThumbSize; | |
2bda0e17 | 483 | |
cc2b7472 | 484 | // implement the base class pure virtuals |
dabc0cd5 VZ |
485 | virtual void DoClientToScreen( int *x, int *y ) const; |
486 | virtual void DoScreenToClient( int *x, int *y ) const; | |
cc2b7472 VZ |
487 | virtual void DoGetPosition( int *x, int *y ) const; |
488 | virtual void DoGetSize( int *width, int *height ) const; | |
489 | virtual void DoGetClientSize( int *width, int *height ) const; | |
490 | virtual void DoSetSize(int x, int y, | |
491 | int width, int height, | |
492 | int sizeFlags = wxSIZE_AUTO); | |
bfc6fde4 | 493 | virtual void DoSetClientSize(int width, int height); |
2bda0e17 | 494 | |
94633ad9 VZ |
495 | virtual void DoCaptureMouse(); |
496 | virtual void DoReleaseMouse(); | |
68304caf | 497 | |
3c75d8ba PC |
498 | virtual void DoEnable(bool enable); |
499 | ||
17808a75 VZ |
500 | virtual void DoFreeze(); |
501 | virtual void DoThaw(); | |
502 | ||
7d86a2d4 VZ |
503 | // this simply moves/resizes the given HWND which is supposed to be our |
504 | // sibling (this is useful for controls which are composite at MSW level | |
505 | // and for which DoMoveWindow() is not enough) | |
86e30911 VZ |
506 | // |
507 | // returns true if the window move was deferred, false if it was moved | |
508 | // immediately (no error return) | |
509 | bool DoMoveSibling(WXHWND hwnd, int x, int y, int width, int height); | |
7d86a2d4 | 510 | |
b782f2e0 VZ |
511 | // move the window to the specified location and resize it: this is called |
512 | // from both DoSetSize() and DoSetClientSize() and would usually just call | |
513 | // ::MoveWindow() except for composite controls which will want to arrange | |
514 | // themselves inside the given rectangle | |
515 | virtual void DoMoveWindow(int x, int y, int width, int height); | |
516 | ||
cc2b7472 VZ |
517 | #if wxUSE_TOOLTIPS |
518 | virtual void DoSetToolTip( wxToolTip *tip ); | |
bd9cd534 VZ |
519 | |
520 | // process TTN_NEEDTEXT message properly (i.e. fixing the bugs in | |
521 | // comctl32.dll in our code -- see the function body for more info) | |
522 | bool HandleTooltipNotify(WXUINT code, | |
523 | WXLPARAM lParam, | |
524 | const wxString& ttip); | |
cc2b7472 VZ |
525 | #endif // wxUSE_TOOLTIPS |
526 | ||
b09bda68 | 527 | // the helper functions used by HandleChar/KeyXXX methods |
9c7df356 VZ |
528 | wxKeyEvent CreateKeyEvent(wxEventType evType, int id, |
529 | WXLPARAM lParam = 0, WXWPARAM wParam = 0) const; | |
b09bda68 | 530 | |
3b72cd91 VZ |
531 | |
532 | // default OnEraseBackground() implementation, return true if we did erase | |
c3732409 VZ |
533 | // the background, false otherwise (i.e. the system should erase it) |
534 | bool DoEraseBackground(WXHDC hDC); | |
3b72cd91 | 535 | |
1ca78aa1 | 536 | // generate WM_CHANGEUISTATE if it's needed for the OS we're running under |
3ef092d6 | 537 | // |
1ca78aa1 JS |
538 | // action should be one of the UIS_XXX constants |
539 | // state should be one or more of the UISF_XXX constants | |
540 | // if action == UIS_INITIALIZE then it doesn't seem to matter what we use | |
541 | // for state as the system will decide for us what needs to be set | |
542 | void MSWUpdateUIState(int action, int state = 0); | |
d7e0024b | 543 | |
fd3f686c VZ |
544 | private: |
545 | // common part of all ctors | |
546 | void Init(); | |
547 | ||
a23fd0e1 VZ |
548 | // the (non-virtual) handlers for the events |
549 | bool HandleMove(int x, int y); | |
5706de1c | 550 | bool HandleMoving(wxRect& rect); |
a23fd0e1 | 551 | bool HandleJoystickEvent(WXUINT msg, int x, int y, WXUINT flags); |
a23fd0e1 | 552 | bool HandleNotify(int idCtrl, WXLPARAM lParam, WXLPARAM *result); |
a23fd0e1 | 553 | |
d7cbabe0 | 554 | |
220f77b0 | 555 | // current defer window position operation handle (may be NULL) |
3b72cd91 | 556 | WXHANDLE m_hDWP; |
220f77b0 | 557 | |
5637cc35 | 558 | protected: |
67644c1d RD |
559 | // When deferred positioning is done these hold the pending changes, and |
560 | // are used for the default values if another size/pos changes is done on | |
561 | // this window before the group of deferred changes is completed. | |
562 | wxPoint m_pendingPosition; | |
563 | wxSize m_pendingSize; | |
220f77b0 | 564 | |
5637cc35 | 565 | private: |
7d4f65e3 JS |
566 | #ifdef __POCKETPC__ |
567 | bool m_contextMenuEnabled; | |
568 | #endif | |
569 | ||
e8e4fa12 GT |
570 | DECLARE_DYNAMIC_CLASS(wxWindowMSW) |
571 | DECLARE_NO_COPY_CLASS(wxWindowMSW) | |
fd3f686c | 572 | DECLARE_EVENT_TABLE() |
2bda0e17 KB |
573 | }; |
574 | ||
b0cb0158 VZ |
575 | // ---------------------------------------------------------------------------- |
576 | // inline functions | |
577 | // ---------------------------------------------------------------------------- | |
578 | ||
cc2b7472 VZ |
579 | // --------------------------------------------------------------------------- |
580 | // global functions | |
581 | // --------------------------------------------------------------------------- | |
2bda0e17 | 582 | |
cc2b7472 | 583 | // kbd code translation |
53a2db12 FM |
584 | WXDLLIMPEXP_CORE int wxCharCodeMSWToWX(int keySym, WXLPARAM lParam = 0); |
585 | WXDLLIMPEXP_CORE WXWORD wxCharCodeWXToMSW(int id, bool *IsVirtual = NULL); | |
2bda0e17 | 586 | |
b225f659 VZ |
587 | // window creation helper class: before creating a new HWND, instantiate an |
588 | // object of this class on stack - this allows to process the messages sent to | |
589 | // the window even before CreateWindow() returns | |
590 | class wxWindowCreationHook | |
591 | { | |
592 | public: | |
593 | wxWindowCreationHook(wxWindowMSW *winBeingCreated); | |
594 | ~wxWindowCreationHook(); | |
595 | }; | |
596 | ||
faa49bfd | 597 | #endif // _WX_WINDOW_H_ |