]> git.saurik.com Git - wxWidgets.git/blame - include/wx/window.h
compilation fix after wxCmdLineEntryDesc changes
[wxWidgets.git] / include / wx / window.h
CommitLineData
f03fc89f 1///////////////////////////////////////////////////////////////////////////////
23895080 2// Name: wx/window.h
789295bf 3// Purpose: wxWindowBase class - the interface of wxWindow
f03fc89f 4// Author: Vadim Zeitlin
566d84a7 5// Modified by: Ron Lee
f03fc89f
VZ
6// Created: 01/02/97
7// RCS-ID: $Id$
99d80019 8// Copyright: (c) Vadim Zeitlin
65571936 9// Licence: wxWindows licence
f03fc89f
VZ
10///////////////////////////////////////////////////////////////////////////////
11
34138703
JS
12#ifndef _WX_WINDOW_H_BASE_
13#define _WX_WINDOW_H_BASE_
c801d85f 14
f03fc89f
VZ
15// ----------------------------------------------------------------------------
16// headers which we must include here
17// ----------------------------------------------------------------------------
18
19#include "wx/event.h" // the base class
20
21#include "wx/list.h" // defines wxWindowList
22
23#include "wx/cursor.h" // we have member variables of these classes
24#include "wx/font.h" // so we can't do without them
25#include "wx/colour.h"
26#include "wx/region.h"
5e4ff78a 27#include "wx/utils.h"
978af864 28#include "wx/intl.h"
88ac883a 29
674ac8b9 30#include "wx/validate.h" // for wxDefaultValidator (always include it)
8d99be5f 31
574c939e 32#if wxUSE_PALETTE
d577d610 33 #include "wx/palette.h"
574c939e
KB
34#endif // wxUSE_PALETTE
35
88ac883a
VZ
36#if wxUSE_ACCEL
37 #include "wx/accel.h"
38#endif // wxUSE_ACCEL
f03fc89f 39
45a959a3
JS
40#if wxUSE_ACCESSIBILITY
41#include "wx/access.h"
42#endif
43
6522713c
VZ
44// when building wxUniv/Foo we don't want the code for native menu use to be
45// compiled in - it should only be used when building real wxFoo
46#ifdef __WXUNIVERSAL__
47 #define wxUSE_MENUS_NATIVE 0
22dd3847 48#else // !__WXUNIVERSAL__
6522713c 49 #define wxUSE_MENUS_NATIVE wxUSE_MENUS
22dd3847 50#endif // __WXUNIVERSAL__/!__WXUNIVERSAL__
6522713c 51
47a8a4d5
VZ
52
53// Define this macro if the corresponding operating system handles the state
54// of children windows automatically when the parent is enabled/disabled.
55// Otherwise wx itself must ensure that when the parent is disabled its
56// children are disabled too, and their initial state is restored when the
57// parent is enabled back.
58#if defined(__WXMSW__) || defined(__WXPM__)
59 // must do everything ourselves
60 #undef wxHAS_NATIVE_ENABLED_MANAGEMENT
61#else
62 #define wxHAS_NATIVE_ENABLED_MANAGEMENT
63#endif
64
f03fc89f
VZ
65// ----------------------------------------------------------------------------
66// forward declarations
67// ----------------------------------------------------------------------------
68
b5dbe15d
VS
69class WXDLLIMPEXP_FWD_CORE wxCaret;
70class WXDLLIMPEXP_FWD_CORE wxControl;
71class WXDLLIMPEXP_FWD_CORE wxCursor;
72class WXDLLIMPEXP_FWD_CORE wxDC;
73class WXDLLIMPEXP_FWD_CORE wxDropTarget;
74class WXDLLIMPEXP_FWD_CORE wxItemResource;
75class WXDLLIMPEXP_FWD_CORE wxLayoutConstraints;
76class WXDLLIMPEXP_FWD_CORE wxResourceTable;
77class WXDLLIMPEXP_FWD_CORE wxSizer;
78class WXDLLIMPEXP_FWD_CORE wxToolTip;
79class WXDLLIMPEXP_FWD_CORE wxWindowBase;
80class WXDLLIMPEXP_FWD_CORE wxWindow;
81class WXDLLIMPEXP_FWD_CORE wxScrollHelper;
f03fc89f 82
45a959a3 83#if wxUSE_ACCESSIBILITY
b5dbe15d 84class WXDLLIMPEXP_FWD_CORE wxAccessible;
45a959a3
JS
85#endif
86
1b69c815
VZ
87// ----------------------------------------------------------------------------
88// helper stuff used by wxWindow
89// ----------------------------------------------------------------------------
90
91// struct containing all the visual attributes of a control
92struct WXDLLEXPORT wxVisualAttributes
93{
94 // the font used for control label/text inside it
95 wxFont font;
96
97 // the foreground colour
98 wxColour colFg;
99
100 // the background colour, may be wxNullColour if the controls background
101 // colour is not solid
102 wxColour colBg;
103};
104
105// different window variants, on platforms like eg mac uses different
106// rendering sizes
400a9e41 107enum wxWindowVariant
1b69c815
VZ
108{
109 wxWINDOW_VARIANT_NORMAL, // Normal size
110 wxWINDOW_VARIANT_SMALL, // Smaller size (about 25 % smaller than normal)
111 wxWINDOW_VARIANT_MINI, // Mini size (about 33 % smaller than normal)
112 wxWINDOW_VARIANT_LARGE, // Large size (about 25 % larger than normal)
113 wxWINDOW_VARIANT_MAX
114};
115
ff9f7a12
SC
116#if wxUSE_SYSTEM_OPTIONS
117 #define wxWINDOW_DEFAULT_VARIANT wxT("window-default-variant")
118#endif
119
f03fc89f
VZ
120// ----------------------------------------------------------------------------
121// (pseudo)template list classes
122// ----------------------------------------------------------------------------
123
f6bcfd97 124WX_DECLARE_LIST_3(wxWindow, wxWindowBase, wxWindowList, wxWindowListNode, class WXDLLEXPORT);
f03fc89f
VZ
125
126// ----------------------------------------------------------------------------
127// global variables
128// ----------------------------------------------------------------------------
129
16cba29d 130extern WXDLLEXPORT_DATA(wxWindowList) wxTopLevelWindows;
e7445ff8 131extern WXDLLIMPEXP_DATA_CORE(wxList) wxPendingDelete;
f03fc89f 132
f03fc89f
VZ
133// ----------------------------------------------------------------------------
134// wxWindowBase is the base class for all GUI controls/widgets, this is the public
135// interface of this class.
136//
137// Event handler: windows have themselves as their event handlers by default,
138// but their event handlers could be set to another object entirely. This
139// separation can reduce the amount of derivation required, and allow
140// alteration of a window's functionality (e.g. by a resource editor that
141// temporarily switches event handlers).
142// ----------------------------------------------------------------------------
143
144class WXDLLEXPORT wxWindowBase : public wxEvtHandler
145{
f03fc89f
VZ
146public:
147 // creating the window
148 // -------------------
149
06f6df7d
VZ
150 // default ctor, initializes everything which can be initialized before
151 // Create()
6463b9f5 152 wxWindowBase() ;
f03fc89f
VZ
153
154 // pseudo ctor (can't be virtual, called from ctor)
155 bool CreateBase(wxWindowBase *parent,
d9e2e4c2 156 wxWindowID winid,
f03fc89f
VZ
157 const wxPoint& pos = wxDefaultPosition,
158 const wxSize& size = wxDefaultSize,
159 long style = 0,
8d99be5f 160 const wxValidator& validator = wxDefaultValidator,
f03fc89f
VZ
161 const wxString& name = wxPanelNameStr);
162
163 virtual ~wxWindowBase();
164
f03fc89f
VZ
165 // deleting the window
166 // -------------------
167
d4864e97 168 // ask the window to close itself, return true if the event handler
f03fc89f 169 // honoured our request
d4864e97 170 bool Close( bool force = false );
f03fc89f
VZ
171
172 // the following functions delete the C++ objects (the window itself
173 // or its children) as well as the GUI windows and normally should
174 // never be used directly
175
d4864e97 176 // delete window unconditionally (dangerous!), returns true if ok
f03fc89f 177 virtual bool Destroy();
d4864e97 178 // delete all children of this window, returns true if ok
f03fc89f
VZ
179 bool DestroyChildren();
180
181 // is the window being deleted?
182 bool IsBeingDeleted() const { return m_isBeingDeleted; }
183
184 // window attributes
185 // -----------------
186
ffd84c94
WS
187 // label is just the same as the title (but for, e.g., buttons it
188 // makes more sense to speak about labels), title access
189 // is available from wxTLW classes only (frames, dialogs)
faa49bfd
WS
190 virtual void SetLabel(const wxString& label) = 0;
191 virtual wxString GetLabel() const = 0;
f03fc89f
VZ
192
193 // the window name is used for ressource setting in X, it is not the
194 // same as the window title/label
195 virtual void SetName( const wxString &name ) { m_windowName = name; }
196 virtual wxString GetName() const { return m_windowName; }
197
978af864
VZ
198 // sets the window variant, calls internally DoSetVariant if variant
199 // has changed
200 void SetWindowVariant(wxWindowVariant variant);
201 wxWindowVariant GetWindowVariant() const { return m_windowVariant; }
400a9e41 202
69d90995 203
f03fc89f 204 // window id uniquely identifies the window among its siblings unless
a0d9c6cb 205 // it is wxID_ANY which means "don't care"
d9e2e4c2 206 void SetId( wxWindowID winid ) { m_windowId = winid; }
f03fc89f 207 wxWindowID GetId() const { return m_windowId; }
b137e493 208
978af864
VZ
209 // get or change the layout direction (LTR or RTL) for this window,
210 // wxLayout_Default is returned if layout direction is not supported
211 virtual wxLayoutDirection GetLayoutDirection() const
212 { return wxLayout_Default; }
213 virtual void SetLayoutDirection(wxLayoutDirection WXUNUSED(dir))
214 { }
215
216 // mirror coordinates for RTL layout if this window uses it and if the
217 // mirroring is not done automatically like Win32
218 virtual wxCoord AdjustForLayoutDirection(wxCoord x,
219 wxCoord width,
220 wxCoord widthTotal) const;
f03fc89f
VZ
221
222 // generate a control id for the controls which were not given one by
223 // user
69418a8e 224 static int NewControlId() { return --ms_lastControlId; }
c539ab55
VZ
225 // get the id of the control following the one with the given
226 // (autogenerated) id
d9e2e4c2 227 static int NextControlId(int winid) { return winid - 1; }
c539ab55
VZ
228 // get the id of the control preceding the one with the given
229 // (autogenerated) id
d9e2e4c2 230 static int PrevControlId(int winid) { return winid + 1; }
f03fc89f
VZ
231
232 // moving/resizing
233 // ---------------
234
235 // set the window size and/or position
236 void SetSize( int x, int y, int width, int height,
237 int sizeFlags = wxSIZE_AUTO )
238 { DoSetSize(x, y, width, height, sizeFlags); }
239
240 void SetSize( int width, int height )
a0d9c6cb 241 { DoSetSize( wxDefaultCoord, wxDefaultCoord, width, height, wxSIZE_USE_EXISTING ); }
f03fc89f
VZ
242
243 void SetSize( const wxSize& size )
244 { SetSize( size.x, size.y); }
245
246 void SetSize(const wxRect& rect, int sizeFlags = wxSIZE_AUTO)
247 { DoSetSize(rect.x, rect.y, rect.width, rect.height, sizeFlags); }
248
1e6feb95 249 void Move(int x, int y, int flags = wxSIZE_USE_EXISTING)
a0d9c6cb 250 { DoSetSize(x, y, wxDefaultCoord, wxDefaultCoord, flags); }
f03fc89f 251
1e6feb95
VZ
252 void Move(const wxPoint& pt, int flags = wxSIZE_USE_EXISTING)
253 { Move(pt.x, pt.y, flags); }
f03fc89f 254
3c81c9aa
VZ
255 void SetPosition(const wxPoint& pt) { Move(pt); }
256
f03fc89f
VZ
257 // Z-order
258 virtual void Raise() = 0;
259 virtual void Lower() = 0;
260
261 // client size is the size of area available for subwindows
262 void SetClientSize( int width, int height )
263 { DoSetClientSize(width, height); }
264
265 void SetClientSize( const wxSize& size )
266 { DoSetClientSize(size.x, size.y); }
267
268 void SetClientSize(const wxRect& rect)
269 { SetClientSize( rect.width, rect.height ); }
270
3c81c9aa
VZ
271 // get the window position (pointers may be NULL): notice that it is in
272 // client coordinates for child windows and screen coordinates for the
273 // top level ones, use GetScreenPosition() if you need screen
274 // coordinates for all kinds of windows
f03fc89f
VZ
275 void GetPosition( int *x, int *y ) const { DoGetPosition(x, y); }
276 wxPoint GetPosition() const
277 {
3c81c9aa
VZ
278 int x, y;
279 DoGetPosition(&x, &y);
f03fc89f 280
3c81c9aa 281 return wxPoint(x, y);
f03fc89f
VZ
282 }
283
3c81c9aa
VZ
284 // get the window position in screen coordinates
285 void GetScreenPosition(int *x, int *y) const { DoGetScreenPosition(x, y); }
286 wxPoint GetScreenPosition() const
287 {
288 int x, y;
289 DoGetScreenPosition(&x, &y);
38759b67 290
3c81c9aa
VZ
291 return wxPoint(x, y);
292 }
293
294 // get the window size (pointers may be NULL)
f03fc89f
VZ
295 void GetSize( int *w, int *h ) const { DoGetSize(w, h); }
296 wxSize GetSize() const
297 {
298 int w, h;
299 DoGetSize(& w, & h);
300 return wxSize(w, h);
301 }
302
3c81c9aa
VZ
303 void GetClientSize( int *w, int *h ) const { DoGetClientSize(w, h); }
304 wxSize GetClientSize() const
305 {
306 int w, h;
307 DoGetClientSize(&w, &h);
308
309 return wxSize(w, h);
310 }
311
312 // get the position and size at once
f03fc89f
VZ
313 wxRect GetRect() const
314 {
315 int x, y, w, h;
3c81c9aa
VZ
316 GetPosition(&x, &y);
317 GetSize(&w, &h);
f03fc89f
VZ
318
319 return wxRect(x, y, w, h);
320 }
321
3c81c9aa 322 wxRect GetScreenRect() const
f03fc89f 323 {
3c81c9aa
VZ
324 int x, y, w, h;
325 GetScreenPosition(&x, &y);
326 GetSize(&w, &h);
f03fc89f 327
3c81c9aa 328 return wxRect(x, y, w, h);
f03fc89f
VZ
329 }
330
1e6feb95
VZ
331 // get the origin of the client area of the window relative to the
332 // window top left corner (the client area may be shifted because of
333 // the borders, scrollbars, other decorations...)
334 virtual wxPoint GetClientAreaOrigin() const;
335
336 // get the client rectangle in window (i.e. client) coordinates
337 wxRect GetClientRect() const
338 {
339 return wxRect(GetClientAreaOrigin(), GetClientSize());
340 }
341
f68586e5 342 // get the size best suited for the window (in fact, minimal
9f884528
RD
343 // acceptable size using which it will still look "nice" in
344 // most situations)
345 wxSize GetBestSize() const
346 {
347 if (m_bestSizeCache.IsFullySpecified())
348 return m_bestSizeCache;
349 return DoGetBestSize();
350 }
f68586e5
VZ
351 void GetBestSize(int *w, int *h) const
352 {
9f884528 353 wxSize s = GetBestSize();
f68586e5
VZ
354 if ( w )
355 *w = s.x;
356 if ( h )
357 *h = s.y;
358 }
359
f4fe2f20
RR
360 void SetScrollHelper( wxScrollHelper *sh ) { m_scrollHelper = sh; }
361 wxScrollHelper *GetScrollHelper() { return m_scrollHelper; }
362
9f884528
RD
363 // reset the cached best size value so it will be recalculated the
364 // next time it is needed.
992b2ec4 365 void InvalidateBestSize();
9f884528
RD
366 void CacheBestSize(const wxSize& size) const
367 { wxConstCast(this, wxWindowBase)->m_bestSizeCache = size; }
a0d9c6cb 368
2b5f62a0 369
9f884528
RD
370 // This function will merge the window's best size into the window's
371 // minimum size, giving priority to the min size components, and
372 // returns the results.
170acdc9
RD
373 wxSize GetEffectiveMinSize() const;
374 wxDEPRECATED( wxSize GetBestFittingSize() const ); // replaced by GetEffectiveMinSize
d6f582e7 375 wxDEPRECATED( wxSize GetAdjustedMinSize() const ); // replaced by GetEffectiveMinSize
a0d9c6cb 376
9f884528
RD
377 // A 'Smart' SetSize that will fill in default size values with 'best'
378 // size. Sets the minsize to what was passed in.
170acdc9
RD
379 void SetInitialSize(const wxSize& size=wxDefaultSize);
380 wxDEPRECATED( void SetBestFittingSize(const wxSize& size=wxDefaultSize) ); // replaced by SetInitialSize
9f884528 381
47a8a4d5 382
2b5f62a0 383 // the generic centre function - centers the window on parent by`
7eb4e9cc
VZ
384 // default or on screen if it doesn't have parent or
385 // wxCENTER_ON_SCREEN flag is given
1f464296
VZ
386 void Centre(int dir = wxBOTH) { DoCentre(dir); }
387 void Center(int dir = wxBOTH) { DoCentre(dir); }
7eb4e9cc
VZ
388
389 // centre with respect to the the parent window
1f464296 390 void CentreOnParent(int dir = wxBOTH) { DoCentre(dir); }
7eb4e9cc 391 void CenterOnParent(int dir = wxBOTH) { CentreOnParent(dir); }
f03fc89f
VZ
392
393 // set window size to wrap around its children
394 virtual void Fit();
395
2b5f62a0
VZ
396 // set virtual size to satisfy children
397 virtual void FitInside();
398
9379c0d7 399
b21f4960
RR
400 // SetSizeHints is actually for setting the size hints
401 // for the wxTLW for a Window Manager - hence the name -
402 // and it is therefore overridden in wxTLW to do that.
403 // In wxWindow(Base), it has (unfortunately) been abused
404 // to mean the same as SetMinSize() and SetMaxSize().
47a8a4d5 405
f03fc89f 406 virtual void SetSizeHints( int minW, int minH,
a0d9c6cb 407 int maxW = wxDefaultCoord, int maxH = wxDefaultCoord,
571f6981 408 int incW = wxDefaultCoord, int incH = wxDefaultCoord )
9379c0d7 409 { DoSetSizeHints(minW, minH, maxW, maxH, incW, incH); }
6fb99eb3 410
1ec25e8f
RD
411 void SetSizeHints( const wxSize& minSize,
412 const wxSize& maxSize=wxDefaultSize,
413 const wxSize& incSize=wxDefaultSize)
9379c0d7
RR
414 { DoSetSizeHints(minSize.x, minSize.y, maxSize.x, maxSize.y, incSize.x, incSize.y); }
415
b21f4960
RR
416 virtual void DoSetSizeHints( int minW, int minH,
417 int maxW, int maxH,
418 int incW, int incH );
6fb99eb3 419
9379c0d7
RR
420 // Methods for setting virtual size hints
421 // FIXME: What are virtual size hints?
f03fc89f 422
566d84a7 423 virtual void SetVirtualSizeHints( int minW, int minH,
a0d9c6cb 424 int maxW = wxDefaultCoord, int maxH = wxDefaultCoord );
1ec25e8f
RD
425 void SetVirtualSizeHints( const wxSize& minSize,
426 const wxSize& maxSize=wxDefaultSize)
427 {
428 SetVirtualSizeHints(minSize.x, minSize.y, maxSize.x, maxSize.y);
429 }
566d84a7 430
57c4d796 431
47a8a4d5 432 // Call these to override what GetBestSize() returns. This
a1b05a60
RR
433 // method is only virtual because it is overriden in wxTLW
434 // as a different API for SetSizeHints().
435 virtual void SetMinSize(const wxSize& minSize) { m_minWidth = minSize.x; m_minHeight = minSize.y; }
436 virtual void SetMaxSize(const wxSize& maxSize) { m_maxWidth = maxSize.x; m_maxHeight = maxSize.y; }
437
438 // Override these methods to impose restrictions on min/max size.
47a8a4d5 439 // The easier way is to call SetMinSize() and SetMaxSize() which
a1b05a60 440 // will have the same effect. Doing both is non-sense.
b4350341
VZ
441 virtual wxSize GetMinSize() const { return wxSize(m_minWidth, m_minHeight); }
442 virtual wxSize GetMaxSize() const { return wxSize(m_maxWidth, m_maxHeight); }
400a9e41 443
a1b05a60
RR
444 // Get the min and max values one by one
445 int GetMinWidth() const { return GetMinSize().x; }
446 int GetMinHeight() const { return GetMinSize().y; }
447 int GetMaxWidth() const { return GetMaxSize().x; }
448 int GetMaxHeight() const { return GetMaxSize().y; }
9379c0d7 449
a0d9c6cb 450
566d84a7
RL
451 // Methods for accessing the virtual size of a window. For most
452 // windows this is just the client area of the window, but for
453 // some like scrolled windows it is more or less independent of
454 // the screen window size. You may override the DoXXXVirtual
455 // methods below for classes where that is is the case.
456
457 void SetVirtualSize( const wxSize &size ) { DoSetVirtualSize( size.x, size.y ); }
458 void SetVirtualSize( int x, int y ) { DoSetVirtualSize( x, y ); }
459
460 wxSize GetVirtualSize() const { return DoGetVirtualSize(); }
461 void GetVirtualSize( int *x, int *y ) const
462 {
463 wxSize s( DoGetVirtualSize() );
464
465 if( x )
466 *x = s.GetWidth();
467 if( y )
468 *y = s.GetHeight();
469 }
470
471 // Override these methods for windows that have a virtual size
472 // independent of their client size. eg. the virtual area of a
e5ecf1fc 473 // wxScrolledWindow.
566d84a7
RL
474
475 virtual void DoSetVirtualSize( int x, int y );
85b38e0b 476 virtual wxSize DoGetVirtualSize() const;
e5ecf1fc 477
2b5f62a0
VZ
478 // Return the largest of ClientSize and BestSize (as determined
479 // by a sizer, interior children, or other means)
480
481 virtual wxSize GetBestVirtualSize() const
482 {
483 wxSize client( GetClientSize() );
484 wxSize best( GetBestSize() );
485
486 return wxSize( wxMax( client.x, best.x ), wxMax( client.y, best.y ) );
487 }
488
333d7052
VZ
489 // return the size of the left/right and top/bottom borders in x and y
490 // components of the result respectively
491 virtual wxSize GetWindowBorderSize() const;
492
493
f03fc89f
VZ
494 // window state
495 // ------------
496
d4864e97 497 // returns true if window was shown/hidden, false if the nothing was
f03fc89f 498 // done (window was already shown/hidden)
d4864e97
VZ
499 virtual bool Show( bool show = true );
500 bool Hide() { return Show(false); }
f03fc89f 501
d4864e97
VZ
502 // returns true if window was enabled/disabled, false if nothing done
503 virtual bool Enable( bool enable = true );
504 bool Disable() { return Enable(false); }
f03fc89f 505
b08cd3bf 506 virtual bool IsShown() const { return m_isShown; }
47a8a4d5
VZ
507 // returns true if the window is really enabled and false otherwise,
508 // whether because it had been explicitly disabled itself or because
509 // its parent is currently disabled -- then this method returns false
510 // whatever is the intrinsic state of this window, use IsThisEnabled(0
511 // to retrieve it. In other words, this relation always holds:
512 //
513 // IsEnabled() == IsThisEnabled() && parent.IsEnabled()
514 //
515 bool IsEnabled() const;
516
517 // returns the internal window state independently of the parent(s)
518 // state, i.e. the state in which the window would be if all its
519 // parents were enabled (use IsEnabled() above to get the effective
520 // window state)
521 bool IsThisEnabled() const { return m_isEnabled; }
f03fc89f 522
9c72cf76
VS
523 // returns true if the window is visible, i.e. IsShown() returns true
524 // if called on it and all its parents up to the first TLW
865a74c7 525 virtual bool IsShownOnScreen() const;
9c72cf76 526
f03fc89f
VZ
527 // get/set window style (setting style won't update the window and so
528 // is only useful for internal usage)
529 virtual void SetWindowStyleFlag( long style ) { m_windowStyle = style; }
530 virtual long GetWindowStyleFlag() const { return m_windowStyle; }
531
532 // just some (somewhat shorter) synonims
533 void SetWindowStyle( long style ) { SetWindowStyleFlag(style); }
534 long GetWindowStyle() const { return GetWindowStyleFlag(); }
535
d63312a9 536 // check if the flag is set
f03fc89f 537 bool HasFlag(int flag) const { return (m_windowStyle & flag) != 0; }
d80cd92a 538 virtual bool IsRetained() const { return HasFlag(wxRETAINED); }
f03fc89f 539
d63312a9
VZ
540 // turn the flag on if it had been turned off before and vice versa,
541 // return true if the flag is currently turned on
542 bool ToggleWindowStyle(int flag);
543
d80cd92a
VZ
544 // extra style: the less often used style bits which can't be set with
545 // SetWindowStyleFlag()
b2d5a7ee 546 virtual void SetExtraStyle(long exStyle) { m_exStyle = exStyle; }
d80cd92a 547 long GetExtraStyle() const { return m_exStyle; }
f03fc89f 548
a2979ead
VZ
549 bool HasExtraStyle(int exFlag) const { return (m_exStyle & exFlag) != 0; }
550
f03fc89f 551 // make the window modal (all other windows unresponsive)
d4864e97 552 virtual void MakeModal(bool modal = true);
f03fc89f 553
b8e7b673
VZ
554
555 // (primitive) theming support
556 // ---------------------------
557
a2d93e73
JS
558 virtual void SetThemeEnabled(bool enableTheme) { m_themeEnabled = enableTheme; }
559 virtual bool GetThemeEnabled() const { return m_themeEnabled; }
560
d4864e97 561
456bc6d9
VZ
562 // focus and keyboard handling
563 // ---------------------------
f03fc89f
VZ
564
565 // set focus to this window
566 virtual void SetFocus() = 0;
567
d577d610
VZ
568 // set focus to this window as the result of a keyboard action
569 virtual void SetFocusFromKbd() { SetFocus(); }
570
f03fc89f 571 // return the window which currently has the focus or NULL
0fe02759 572 static wxWindow *FindFocus();
6fb99eb3 573
0fe02759 574 static wxWindow *DoFindFocus() /* = 0: implement in derived classes */;
f03fc89f 575
ad02525d
VZ
576 // can this window have focus in principle?
577 //
578 // the difference between AcceptsFocus[FromKeyboard]() and CanAcceptFocus
579 // [FromKeyboard]() is that the former functions are meant to be
580 // overridden in the derived classes to simply return false if the
581 // control can't have focus, while the latter are meant to be used by
582 // this class clients and take into account the current window state
583 virtual bool AcceptsFocus() const { return true; }
584
edc09871
VZ
585 // can this window or one of its children accept focus?
586 //
587 // usually it's the same as AcceptsFocus() but is overridden for
588 // container windows
589 virtual bool AcceptsFocusRecursively() const { return AcceptsFocus(); }
f03fc89f 590
1e6feb95
VZ
591 // can this window be given focus by keyboard navigation? if not, the
592 // only way to give it focus (provided it accepts it at all) is to
593 // click it
594 virtual bool AcceptsFocusFromKeyboard() const { return AcceptsFocus(); }
595
edc09871
VZ
596
597 // this is mostly a helper for the various functions using it below
598 bool CanBeFocused() const { return IsShown() && IsEnabled(); }
599
600 // can this window itself have focus?
601 bool IsFocusable() const { return AcceptsFocus() && CanBeFocused(); }
602
603 // can this window have focus right now?
604 //
605 // if this method returns true, it means that calling SetFocus() will
606 // put focus either to this window or one of its children, if you need
607 // to know whether this window accepts focus itself, use IsFocusable()
608 bool CanAcceptFocus() const
609 { return AcceptsFocusRecursively() && CanBeFocused(); }
610
ad02525d
VZ
611 // can this window be assigned focus from keyboard right now?
612 bool CanAcceptFocusFromKeyboard() const
edc09871 613 { return AcceptsFocusFromKeyboard() && CanBeFocused(); }
ad02525d 614
80332672
VZ
615 // call this when the return value of AcceptsFocus() changes
616 virtual void SetCanFocus(bool WXUNUSED(canFocus)) { }
617
5644933f
VZ
618 // navigates inside this window
619 bool NavigateIn(int flags = wxNavigationKeyEvent::IsForward)
620 { return DoNavigateIn(flags); }
621
622 // navigates in the specified direction from this window, this is
623 // equivalent to GetParent()->NavigateIn()
624 bool Navigate(int flags = wxNavigationKeyEvent::IsForward)
625 { return m_parent && ((wxWindowBase *)m_parent)->DoNavigateIn(flags); }
5f6cfda7 626
a24de76b
VZ
627 // move this window just before/after the specified one in tab order
628 // (the other window must be our sibling!)
629 void MoveBeforeInTabOrder(wxWindow *win)
630 { DoMoveInTabOrder(win, MoveBefore); }
631 void MoveAfterInTabOrder(wxWindow *win)
632 { DoMoveInTabOrder(win, MoveAfter); }
633
634
f03fc89f
VZ
635 // parent/children relations
636 // -------------------------
637
638 // get the list of children
639 const wxWindowList& GetChildren() const { return m_children; }
640 wxWindowList& GetChildren() { return m_children; }
641
1978421a
SC
642 // needed just for extended runtime
643 const wxWindowList& GetWindowChildren() const { return GetChildren() ; }
644
f03fc89f
VZ
645 // get the parent or the parent of the parent
646 wxWindow *GetParent() const { return m_parent; }
647 inline wxWindow *GetGrandParent() const;
648
649 // is this window a top level one?
8487f887 650 virtual bool IsTopLevel() const;
f03fc89f 651
87b6002d 652 // it doesn't really change parent, use Reparent() instead
f03fc89f 653 void SetParent( wxWindowBase *parent ) { m_parent = (wxWindow *)parent; }
d4864e97
VZ
654 // change the real parent of this window, return true if the parent
655 // was changed, false otherwise (error or newParent == oldParent)
f03fc89f
VZ
656 virtual bool Reparent( wxWindowBase *newParent );
657
146ba0fe
VZ
658 // implementation mostly
659 virtual void AddChild( wxWindowBase *child );
660 virtual void RemoveChild( wxWindowBase *child );
661
049908c5
VS
662 // returns true if the child is in the client area of the window, i.e. is
663 // not scrollbar, toolbar etc.
664 virtual bool IsClientAreaChild(const wxWindow *WXUNUSED(child)) const
665 { return true; }
666
146ba0fe
VZ
667 // looking for windows
668 // -------------------
669
f03fc89f
VZ
670 // find window among the descendants of this one either by id or by
671 // name (return NULL if not found)
6b73af79
VZ
672 wxWindow *FindWindow(long winid) const;
673 wxWindow *FindWindow(const wxString& name) const;
f03fc89f 674
146ba0fe 675 // Find a window among any window (all return NULL if not found)
d9e2e4c2 676 static wxWindow *FindWindowById( long winid, const wxWindow *parent = NULL );
146ba0fe
VZ
677 static wxWindow *FindWindowByName( const wxString& name,
678 const wxWindow *parent = NULL );
679 static wxWindow *FindWindowByLabel( const wxString& label,
680 const wxWindow *parent = NULL );
f03fc89f
VZ
681
682 // event handler stuff
683 // -------------------
684
685 // get the current event handler
686 wxEvtHandler *GetEventHandler() const { return m_eventHandler; }
687
688 // replace the event handler (allows to completely subclass the
689 // window)
690 void SetEventHandler( wxEvtHandler *handler ) { m_eventHandler = handler; }
691
692 // push/pop event handler: allows to chain a custom event handler to
693 // alreasy existing ones
694 void PushEventHandler( wxEvtHandler *handler );
d4864e97 695 wxEvtHandler *PopEventHandler( bool deleteHandler = false );
f03fc89f 696
2e36d5cf 697 // find the given handler in the event handler chain and remove (but
d4864e97
VZ
698 // not delete) it from the event handler chain, return true if it was
699 // found and false otherwise (this also results in an assert failure so
2e36d5cf
VZ
700 // this function should only be called when the handler is supposed to
701 // be there)
702 bool RemoveEventHandler(wxEvtHandler *handler);
703
1e6feb95
VZ
704 // validators
705 // ----------
f03fc89f 706
88ac883a 707#if wxUSE_VALIDATORS
f03fc89f
VZ
708 // a window may have an associated validator which is used to control
709 // user input
710 virtual void SetValidator( const wxValidator &validator );
711 virtual wxValidator *GetValidator() { return m_windowValidator; }
88ac883a 712#endif // wxUSE_VALIDATORS
f03fc89f 713
f03fc89f
VZ
714
715 // dialog oriented functions
716 // -------------------------
717
d4864e97 718 // validate the correctness of input, return true if ok
f03fc89f
VZ
719 virtual bool Validate();
720
721 // transfer data between internal and GUI representations
722 virtual bool TransferDataToWindow();
723 virtual bool TransferDataFromWindow();
724
725 virtual void InitDialog();
726
88ac883a 727#if wxUSE_ACCEL
f03fc89f
VZ
728 // accelerators
729 // ------------
730 virtual void SetAcceleratorTable( const wxAcceleratorTable& accel )
731 { m_acceleratorTable = accel; }
732 wxAcceleratorTable *GetAcceleratorTable()
733 { return &m_acceleratorTable; }
5048c832 734
540b6b09
VZ
735#endif // wxUSE_ACCEL
736
737#if wxUSE_HOTKEY
738 // hot keys (system wide accelerators)
739 // -----------------------------------
740
741 virtual bool RegisterHotKey(int hotkeyId, int modifiers, int keycode);
5048c832 742 virtual bool UnregisterHotKey(int hotkeyId);
540b6b09 743#endif // wxUSE_HOTKEY
5048c832 744
f03fc89f
VZ
745
746 // dialog units translations
747 // -------------------------
748
749 wxPoint ConvertPixelsToDialog( const wxPoint& pt );
750 wxPoint ConvertDialogToPixels( const wxPoint& pt );
751 wxSize ConvertPixelsToDialog( const wxSize& sz )
752 {
753 wxPoint pt(ConvertPixelsToDialog(wxPoint(sz.x, sz.y)));
754
755 return wxSize(pt.x, pt.y);
756 }
757
758 wxSize ConvertDialogToPixels( const wxSize& sz )
759 {
760 wxPoint pt(ConvertDialogToPixels(wxPoint(sz.x, sz.y)));
761
762 return wxSize(pt.x, pt.y);
763 }
764
765 // mouse functions
766 // ---------------
767
768 // move the mouse to the specified position
769 virtual void WarpPointer(int x, int y) = 0;
770
94633ad9
VZ
771 // start or end mouse capture, these functions maintain the stack of
772 // windows having captured the mouse and after calling ReleaseMouse()
773 // the mouse is not released but returns to the window which had had
774 // captured it previously (if any)
775 void CaptureMouse();
776 void ReleaseMouse();
f03fc89f 777
1e6feb95
VZ
778 // get the window which currently captures the mouse or NULL
779 static wxWindow *GetCapture();
780
781 // does this window have the capture?
782 virtual bool HasCapture() const
783 { return (wxWindow *)this == GetCapture(); }
784
f03fc89f
VZ
785 // painting the window
786 // -------------------
787
788 // mark the specified rectangle (or the whole window) as "dirty" so it
789 // will be repainted
d4864e97 790 virtual void Refresh( bool eraseBackground = true,
f03fc89f 791 const wxRect *rect = (const wxRect *) NULL ) = 0;
1e6feb95
VZ
792
793 // a less awkward wrapper for Refresh
8cfa09bd
VZ
794 void RefreshRect(const wxRect& rect, bool eraseBackground = true)
795 {
796 Refresh(eraseBackground, &rect);
797 }
1e6feb95
VZ
798
799 // repaint all invalid areas of the window immediately
800 virtual void Update() { }
801
5da0803c
VZ
802 // clear the window background
803 virtual void ClearBackground();
f03fc89f 804
0cc7251e
VZ
805 // freeze the window: don't redraw it until it is thawed
806 virtual void Freeze() { }
807
808 // thaw the window: redraw it after it had been frozen
809 virtual void Thaw() { }
810
d4a1433f
VZ
811 // return true if window had been frozen and not unthawed yet
812 virtual bool IsFrozen() const { return false; }
813
f03fc89f 814 // adjust DC for drawing on this window
f6147cfc 815 virtual void PrepareDC( wxDC & WXUNUSED(dc) ) { }
f03fc89f 816
2e992e06
VZ
817 // return true if the window contents is double buffered by the system
818 virtual bool IsDoubleBuffered() const { return false; }
819
f03fc89f
VZ
820 // the update region of the window contains the areas which must be
821 // repainted by the program
822 const wxRegion& GetUpdateRegion() const { return m_updateRegion; }
823 wxRegion& GetUpdateRegion() { return m_updateRegion; }
824
1e6feb95
VZ
825 // get the update rectangleregion bounding box in client coords
826 wxRect GetUpdateClientRect() const;
827
f03fc89f
VZ
828 // these functions verify whether the given point/rectangle belongs to
829 // (or at least intersects with) the update region
657b4fd4
RD
830 virtual bool DoIsExposed( int x, int y ) const;
831 virtual bool DoIsExposed( int x, int y, int w, int h ) const;
f03fc89f 832
657b4fd4
RD
833 bool IsExposed( int x, int y ) const
834 { return DoIsExposed(x, y); }
835 bool IsExposed( int x, int y, int w, int h ) const
836 { return DoIsExposed(x, y, w, h); }
f03fc89f 837 bool IsExposed( const wxPoint& pt ) const
657b4fd4 838 { return DoIsExposed(pt.x, pt.y); }
f03fc89f 839 bool IsExposed( const wxRect& rect ) const
657b4fd4 840 { return DoIsExposed(rect.x, rect.y, rect.width, rect.height); }
f03fc89f
VZ
841
842 // colours, fonts and cursors
843 // --------------------------
844
1b69c815
VZ
845 // get the default attributes for the controls of this class: we
846 // provide a virtual function which can be used to query the default
847 // attributes of an existing control and a static function which can
848 // be used even when no existing object of the given class is
849 // available, but which won't return any styles specific to this
850 // particular control, of course (e.g. "Ok" button might have
851 // different -- bold for example -- font)
852 virtual wxVisualAttributes GetDefaultAttributes() const
853 {
854 return GetClassDefaultAttributes(GetWindowVariant());
855 }
856
857 static wxVisualAttributes
858 GetClassDefaultAttributes(wxWindowVariant variant = wxWINDOW_VARIANT_NORMAL);
859
f03fc89f 860 // set/retrieve the window colours (system defaults are used by
b8e7b673 861 // default): SetXXX() functions return true if colour was changed,
f8ff87ed
VS
862 // SetDefaultXXX() reset the "m_inheritXXX" flag after setting the
863 // value to prevent it from being inherited by our children
b8e7b673 864 virtual bool SetBackgroundColour(const wxColour& colour);
fa47d7a7 865 void SetOwnBackgroundColour(const wxColour& colour)
b8e7b673
VZ
866 {
867 if ( SetBackgroundColour(colour) )
f8ff87ed 868 m_inheritBgCol = false;
b8e7b673 869 }
1b69c815 870 wxColour GetBackgroundColour() const;
e5ecf1fc
WS
871 bool InheritsBackgroundColour() const
872 {
873 return m_inheritBgCol;
874 }
875 bool UseBgCol() const
876 {
877 return m_hasBgCol;
878 }
b8e7b673
VZ
879
880 virtual bool SetForegroundColour(const wxColour& colour);
fa47d7a7 881 void SetOwnForegroundColour(const wxColour& colour)
b8e7b673
VZ
882 {
883 if ( SetForegroundColour(colour) )
f8ff87ed 884 m_inheritFgCol = false;
b8e7b673 885 }
1b69c815 886 wxColour GetForegroundColour() const;
f03fc89f 887
50c53860
JS
888 // Set/get the background style.
889 // Pass one of wxBG_STYLE_SYSTEM, wxBG_STYLE_COLOUR, wxBG_STYLE_CUSTOM
890 virtual bool SetBackgroundStyle(wxBackgroundStyle style) { m_backgroundStyle = style; return true; }
891 virtual wxBackgroundStyle GetBackgroundStyle() const { return m_backgroundStyle; }
892
7c7a653b
VZ
893 // returns true if the control has "transparent" areas such as a
894 // wxStaticText and wxCheckBox and the background should be adapted
895 // from a parent window
896 virtual bool HasTransparentBackground() { return false; }
897
b8e7b673
VZ
898 // set/retrieve the font for the window (SetFont() returns true if the
899 // font really changed)
900 virtual bool SetFont(const wxFont& font) = 0;
fa47d7a7 901 void SetOwnFont(const wxFont& font)
b8e7b673
VZ
902 {
903 if ( SetFont(font) )
f8ff87ed 904 m_inheritFont = false;
b8e7b673 905 }
29094af0 906 wxFont GetFont() const;
b8e7b673 907
d4864e97 908 // set/retrieve the cursor for this window (SetCursor() returns true
f03fc89f
VZ
909 // if the cursor was really changed)
910 virtual bool SetCursor( const wxCursor &cursor );
911 const wxCursor& GetCursor() const { return m_cursor; }
f03fc89f 912
789295bf
VZ
913#if wxUSE_CARET
914 // associate a caret with the window
915 void SetCaret(wxCaret *caret);
916 // get the current caret (may be NULL)
917 wxCaret *GetCaret() const { return m_caret; }
918#endif // wxUSE_CARET
919
f03fc89f
VZ
920 // get the (average) character size for the current font
921 virtual int GetCharHeight() const = 0;
922 virtual int GetCharWidth() const = 0;
923
924 // get the width/height/... of the text using current or specified
925 // font
926 virtual void GetTextExtent(const wxString& string,
927 int *x, int *y,
928 int *descent = (int *) NULL,
929 int *externalLeading = (int *) NULL,
930 const wxFont *theFont = (const wxFont *) NULL)
931 const = 0;
932
6b062263
VZ
933 wxSize GetTextExtent(const wxString& string) const
934 {
935 wxCoord w, h;
936 GetTextExtent(string, &w, &h);
937 return wxSize(w, h);
938 }
939
1e6feb95
VZ
940 // client <-> screen coords
941 // ------------------------
942
f03fc89f 943 // translate to/from screen/client coordinates (pointers may be NULL)
dabc0cd5
VZ
944 void ClientToScreen( int *x, int *y ) const
945 { DoClientToScreen(x, y); }
946 void ScreenToClient( int *x, int *y ) const
947 { DoScreenToClient(x, y); }
1e6feb95
VZ
948
949 // wxPoint interface to do the same thing
dabc0cd5
VZ
950 wxPoint ClientToScreen(const wxPoint& pt) const
951 {
952 int x = pt.x, y = pt.y;
953 DoClientToScreen(&x, &y);
954
955 return wxPoint(x, y);
956 }
957
958 wxPoint ScreenToClient(const wxPoint& pt) const
959 {
960 int x = pt.x, y = pt.y;
961 DoScreenToClient(&x, &y);
962
963 return wxPoint(x, y);
964 }
f03fc89f 965
1e6feb95
VZ
966 // test where the given (in client coords) point lies
967 wxHitTest HitTest(wxCoord x, wxCoord y) const
968 { return DoHitTest(x, y); }
969
970 wxHitTest HitTest(const wxPoint& pt) const
971 { return DoHitTest(pt.x, pt.y); }
972
f03fc89f
VZ
973 // misc
974 // ----
975
aede4ebb
VZ
976 // get the window border style from the given flags: this is different from
977 // simply doing flags & wxBORDER_MASK because it uses GetDefaultBorder() to
978 // translate wxBORDER_DEFAULT to something reasonable
979 wxBorder GetBorder(long flags) const;
980
981 // get border for the flags of this window
982 wxBorder GetBorder() const { return GetBorder(GetWindowStyleFlag()); }
1e6feb95 983
d4864e97 984 // send wxUpdateUIEvents to this window, and children if recurse is true
e39af974
JS
985 virtual void UpdateWindowUI(long flags = wxUPDATE_UI_NONE);
986
987 // do the window-specific processing after processing the update event
988 virtual void DoUpdateWindowUI(wxUpdateUIEvent& event) ;
f03fc89f 989
1e6feb95 990#if wxUSE_MENUS
45b8a256 991 bool PopupMenu(wxMenu *menu, const wxPoint& pos = wxDefaultPosition)
a1665b22 992 { return DoPopupMenu(menu, pos.x, pos.y); }
971562cb 993 bool PopupMenu(wxMenu *menu, int x, int y)
a1665b22 994 { return DoPopupMenu(menu, x, y); }
1e6feb95 995#endif // wxUSE_MENUS
f03fc89f 996
e71c530e
VZ
997 // override this method to return true for controls having multiple pages
998 virtual bool HasMultiplePages() const { return false; }
999
1000
f03fc89f
VZ
1001 // scrollbars
1002 // ----------
1003
1e6feb95
VZ
1004 // does the window have the scrollbar for this orientation?
1005 bool HasScrollbar(int orient) const
1006 {
1007 return (m_windowStyle &
1008 (orient == wxHORIZONTAL ? wxHSCROLL : wxVSCROLL)) != 0;
1009 }
1010
f03fc89f
VZ
1011 // configure the window scrollbars
1012 virtual void SetScrollbar( int orient,
1013 int pos,
1e6feb95 1014 int thumbvisible,
f03fc89f 1015 int range,
d4864e97
VZ
1016 bool refresh = true ) = 0;
1017 virtual void SetScrollPos( int orient, int pos, bool refresh = true ) = 0;
f03fc89f
VZ
1018 virtual int GetScrollPos( int orient ) const = 0;
1019 virtual int GetScrollThumb( int orient ) const = 0;
1020 virtual int GetScrollRange( int orient ) const = 0;
1021
1022 // scroll window to the specified position
1023 virtual void ScrollWindow( int dx, int dy,
1024 const wxRect* rect = (wxRect *) NULL ) = 0;
1025
b9b3393e 1026 // scrolls window by line/page: note that not all controls support this
9cd6d737 1027 //
d4864e97
VZ
1028 // return true if the position changed, false otherwise
1029 virtual bool ScrollLines(int WXUNUSED(lines)) { return false; }
1030 virtual bool ScrollPages(int WXUNUSED(pages)) { return false; }
9cd6d737
VZ
1031
1032 // convenient wrappers for ScrollLines/Pages
1033 bool LineUp() { return ScrollLines(-1); }
1034 bool LineDown() { return ScrollLines(1); }
1035 bool PageUp() { return ScrollPages(-1); }
1036 bool PageDown() { return ScrollPages(1); }
b9b3393e 1037
bd83cb56
VZ
1038 // context-sensitive help
1039 // ----------------------
1040
1041 // these are the convenience functions wrapping wxHelpProvider methods
1042
1043#if wxUSE_HELP
1044 // associate this help text with this window
1045 void SetHelpText(const wxString& text);
1046 // associate this help text with all windows with the same id as this
1047 // one
1048 void SetHelpTextForId(const wxString& text);
dc6588e7
VZ
1049 // get the help string associated with the given position in this window
1050 //
1051 // notice that pt may be invalid if event origin is keyboard or unknown
1052 // and this method should return the global window help text then
1053 virtual wxString GetHelpTextAtPoint(const wxPoint& pt,
1054 wxHelpEvent::Origin origin) const;
1055 // returns the position-independent help text
1056 wxString GetHelpText() const
1057 {
1058 return GetHelpTextAtPoint(wxDefaultPosition, wxHelpEvent::Origin_Unknown);
1059 }
1060
1061#else // !wxUSE_HELP
6c3c55cf
VZ
1062 // silently ignore SetHelpText() calls
1063 void SetHelpText(const wxString& WXUNUSED(text)) { }
1064 void SetHelpTextForId(const wxString& WXUNUSED(text)) { }
bd83cb56
VZ
1065#endif // wxUSE_HELP
1066
f03fc89f
VZ
1067 // tooltips
1068 // --------
bd83cb56 1069
f03fc89f
VZ
1070#if wxUSE_TOOLTIPS
1071 // the easiest way to set a tooltip for a window is to use this method
1072 void SetToolTip( const wxString &tip );
1073 // attach a tooltip to the window
1074 void SetToolTip( wxToolTip *tip ) { DoSetToolTip(tip); }
1075 // get the associated tooltip or NULL if none
1076 wxToolTip* GetToolTip() const { return m_tooltip; }
311a173b 1077 wxString GetToolTipText() const ;
7649d8fc
JS
1078#else
1079 // make it much easier to compile apps in an environment
1080 // that doesn't support tooltips, such as PocketPC
1081 inline void SetToolTip( const wxString & WXUNUSED(tip) ) {}
f03fc89f
VZ
1082#endif // wxUSE_TOOLTIPS
1083
1084 // drag and drop
1085 // -------------
1086#if wxUSE_DRAG_AND_DROP
1087 // set/retrieve the drop target associated with this window (may be
1088 // NULL; it's owned by the window and will be deleted by it)
1089 virtual void SetDropTarget( wxDropTarget *dropTarget ) = 0;
1090 virtual wxDropTarget *GetDropTarget() const { return m_dropTarget; }
1091#endif // wxUSE_DRAG_AND_DROP
1092
1093 // constraints and sizers
1094 // ----------------------
1095#if wxUSE_CONSTRAINTS
1096 // set the constraints for this window or retrieve them (may be NULL)
1097 void SetConstraints( wxLayoutConstraints *constraints );
1098 wxLayoutConstraints *GetConstraints() const { return m_constraints; }
1099
f03fc89f
VZ
1100 // implementation only
1101 void UnsetConstraints(wxLayoutConstraints *c);
1102 wxWindowList *GetConstraintsInvolvedIn() const
1103 { return m_constraintsInvolvedIn; }
1104 void AddConstraintReference(wxWindowBase *otherWin);
1105 void RemoveConstraintReference(wxWindowBase *otherWin);
1106 void DeleteRelatedConstraints();
1107 void ResetConstraints();
1108
90e572f1 1109 // these methods may be overridden for special layout algorithms
d4864e97 1110 virtual void SetConstraintSizes(bool recurse = true);
f03fc89f
VZ
1111 virtual bool LayoutPhase1(int *noChanges);
1112 virtual bool LayoutPhase2(int *noChanges);
4b7f2165 1113 virtual bool DoPhase(int phase);
f03fc89f
VZ
1114
1115 // these methods are virtual but normally won't be overridden
f03fc89f
VZ
1116 virtual void SetSizeConstraint(int x, int y, int w, int h);
1117 virtual void MoveConstraint(int x, int y);
1118 virtual void GetSizeConstraint(int *w, int *h) const ;
1119 virtual void GetClientSizeConstraint(int *w, int *h) const ;
1120 virtual void GetPositionConstraint(int *x, int *y) const ;
1121
461e93f9
JS
1122#endif // wxUSE_CONSTRAINTS
1123
1124 // when using constraints or sizers, it makes sense to update
1125 // children positions automatically whenever the window is resized
1126 // - this is done if autoLayout is on
1127 void SetAutoLayout( bool autoLayout ) { m_autoLayout = autoLayout; }
1128 bool GetAutoLayout() const { return m_autoLayout; }
1129
1130 // lay out the window and its children
1131 virtual bool Layout();
1132
f03fc89f 1133 // sizers
d4864e97
VZ
1134 void SetSizer(wxSizer *sizer, bool deleteOld = true );
1135 void SetSizerAndFit( wxSizer *sizer, bool deleteOld = true );
566d84a7 1136
f03fc89f 1137 wxSizer *GetSizer() const { return m_windowSizer; }
be90c029
RD
1138
1139 // Track if this window is a member of a sizer
1ebfafde 1140 void SetContainingSizer(wxSizer* sizer);
be90c029
RD
1141 wxSizer *GetContainingSizer() const { return m_containingSizer; }
1142
45a959a3
JS
1143 // accessibility
1144 // ----------------------
1145#if wxUSE_ACCESSIBILITY
1146 // Override to create a specific accessible object.
1147 virtual wxAccessible* CreateAccessible();
1148
1149 // Sets the accessible object.
1150 void SetAccessible(wxAccessible* accessible) ;
1151
1152 // Returns the accessible object.
47b378bd 1153 wxAccessible* GetAccessible() { return m_accessible; }
45a959a3
JS
1154
1155 // Returns the accessible object, creating if necessary.
1156 wxAccessible* GetOrCreateAccessible() ;
1157#endif
1158
b137e493 1159
b58d5e2d
RD
1160 // Set window transparency if the platform supports it
1161 virtual bool SetTransparent(wxByte WXUNUSED(alpha)) { return false; }
1162 virtual bool CanSetTransparent() { return false; }
1163
1164
f03fc89f
VZ
1165 // implementation
1166 // --------------
1167
1168 // event handlers
1169 void OnSysColourChanged( wxSysColourChangedEvent& event );
1170 void OnInitDialog( wxInitDialogEvent &event );
72fc5caf 1171 void OnMiddleClick( wxMouseEvent& event );
bd83cb56
VZ
1172#if wxUSE_HELP
1173 void OnHelp(wxHelpEvent& event);
1174#endif // wxUSE_HELP
f03fc89f 1175
e39af974
JS
1176 // virtual function for implementing internal idle
1177 // behaviour
1178 virtual void OnInternalIdle() {}
1179
1180 // call internal idle recursively
5109ae5d 1181// void ProcessInternalIdle() ;
e39af974
JS
1182
1183 // get the handle of the window for the underlying window system: this
d7c24517
VZ
1184 // is only used for wxWin itself or for user code which wants to call
1185 // platform-specific APIs
d22699b5 1186 virtual WXWidget GetHandle() const = 0;
ed4780ea
VZ
1187 // associate the window with a new native handle
1188 virtual void AssociateHandle(WXWidget WXUNUSED(handle)) { }
1189 // dissociate the current native handle from the window
1190 virtual void DissociateHandle() { }
cc2b7472 1191
574c939e
KB
1192#if wxUSE_PALETTE
1193 // Store the palette used by DCs in wxWindow so that the dcs can share
1194 // a palette. And we can respond to palette messages.
1195 wxPalette GetPalette() const { return m_palette; }
b95edd47 1196
574c939e
KB
1197 // When palette is changed tell the DC to set the system palette to the
1198 // new one.
b95edd47
VZ
1199 void SetPalette(const wxPalette& pal);
1200
1201 // return true if we have a specific palette
1202 bool HasCustomPalette() const { return m_hasCustomPalette; }
1203
1204 // return the first parent window with a custom palette or NULL
1205 wxWindow *GetAncestorWithCustomPalette() const;
574c939e
KB
1206#endif // wxUSE_PALETTE
1207
b8e7b673
VZ
1208 // inherit the parents visual attributes if they had been explicitly set
1209 // by the user (i.e. we don't inherit default attributes) and if we don't
1210 // have our own explicitly set
1211 virtual void InheritAttributes();
1212
1213 // returns false from here if this window doesn't want to inherit the
1214 // parents colours even if InheritAttributes() would normally do it
1215 //
1216 // this just provides a simple way to customize InheritAttributes()
1217 // behaviour in the most common case
1218 virtual bool ShouldInheritColours() const { return false; }
1219
c04c7a3d
VS
1220 // returns true if the window can be positioned outside of parent's client
1221 // area (normal windows can't, but e.g. menubar or statusbar can):
1222 virtual bool CanBeOutsideClientArea() const { return false; }
1223
a047aff2
JS
1224 // returns true if the platform should explicitly apply a theme border
1225 virtual bool CanApplyThemeBorder() const { return true; }
1226
245c5d2e
RD
1227protected:
1228 // event handling specific to wxWindow
1229 virtual bool TryValidator(wxEvent& event);
1230 virtual bool TryParent(wxEvent& event);
1231
a24de76b
VZ
1232 // common part of MoveBefore/AfterInTabOrder()
1233 enum MoveKind
1234 {
1235 MoveBefore, // insert before the given window
1236 MoveAfter // insert after the given window
1237 };
1238 virtual void DoMoveInTabOrder(wxWindow *win, MoveKind move);
4caf847c 1239
5644933f
VZ
1240 // implementation of Navigate() and NavigateIn()
1241 virtual bool DoNavigateIn(int flags);
1242
1243
ec5bb70d
VZ
1244#if wxUSE_CONSTRAINTS
1245 // satisfy the constraints for the windows but don't set the window sizes
1246 void SatisfyConstraints();
1247#endif // wxUSE_CONSTRAINTS
566d84a7 1248
7de59551
RD
1249 // Send the wxWindowDestroyEvent
1250 void SendDestroyEvent();
1251
0fe02759
VS
1252 // returns the main window of composite control; this is the window
1253 // that FindFocus returns if the focus is in one of composite control's
1254 // windows
6fb99eb3 1255 virtual wxWindow *GetMainWindowOfCompositeControl()
0fe02759
VS
1256 { return (wxWindow*)this; }
1257
47a8a4d5
VZ
1258 // this method should be implemented to use operating system specific code
1259 // to really enable/disable the widget, it will only be called when we
1260 // really need to enable/disable window and so no additional checks on the
1261 // widgets state are necessary
1262 virtual void DoEnable(bool WXUNUSED(enable)) { }
1263
1264 // called when the on-screen widget state changes and provides an
1265 // an opportunity for the widget to update its visual state (colours,
1266 // fonts, anything else) as necessary
1267 virtual void OnEnabled(bool WXUNUSED(enabled)) { }
1268
1269
7af6f327 1270 // the window id - a number which uniquely identifies a window among
a0d9c6cb 1271 // its siblings unless it is wxID_ANY
f03fc89f 1272 wxWindowID m_windowId;
456bc6d9 1273
f03fc89f
VZ
1274 // the parent window of this window (or NULL) and the list of the children
1275 // of this window
1276 wxWindow *m_parent;
1277 wxWindowList m_children;
1278
1279 // the minimal allowed size for the window (no minimal size if variable(s)
a0d9c6cb 1280 // contain(s) wxDefaultCoord)
ec5bb70d
VZ
1281 int m_minWidth,
1282 m_minHeight,
1283 m_maxWidth,
1284 m_maxHeight;
f03fc89f
VZ
1285
1286 // event handler for this window: usually is just 'this' but may be
1287 // changed with SetEventHandler()
1288 wxEvtHandler *m_eventHandler;
1289
88ac883a 1290#if wxUSE_VALIDATORS
f03fc89f
VZ
1291 // associated validator or NULL if none
1292 wxValidator *m_windowValidator;
88ac883a 1293#endif // wxUSE_VALIDATORS
f03fc89f
VZ
1294
1295#if wxUSE_DRAG_AND_DROP
1296 wxDropTarget *m_dropTarget;
1297#endif // wxUSE_DRAG_AND_DROP
1298
1299 // visual window attributes
1300 wxCursor m_cursor;
1b69c815
VZ
1301 wxFont m_font; // see m_hasFont
1302 wxColour m_backgroundColour, // m_hasBgCol
1303 m_foregroundColour; // m_hasFgCol
f03fc89f 1304
789295bf
VZ
1305#if wxUSE_CARET
1306 wxCaret *m_caret;
1307#endif // wxUSE_CARET
1308
f03fc89f
VZ
1309 // the region which should be repainted in response to paint event
1310 wxRegion m_updateRegion;
1311
88ac883a 1312#if wxUSE_ACCEL
f03fc89f
VZ
1313 // the accelerator table for the window which translates key strokes into
1314 // command events
1315 wxAcceleratorTable m_acceleratorTable;
88ac883a 1316#endif // wxUSE_ACCEL
f03fc89f 1317
f03fc89f
VZ
1318 // the tooltip for this window (may be NULL)
1319#if wxUSE_TOOLTIPS
1320 wxToolTip *m_tooltip;
1321#endif // wxUSE_TOOLTIPS
1322
1323 // constraints and sizers
1324#if wxUSE_CONSTRAINTS
1325 // the constraints for this window or NULL
1326 wxLayoutConstraints *m_constraints;
1327
1328 // constraints this window is involved in
1329 wxWindowList *m_constraintsInvolvedIn;
461e93f9 1330#endif // wxUSE_CONSTRAINTS
f03fc89f 1331
be90c029 1332 // this window's sizer
f03fc89f 1333 wxSizer *m_windowSizer;
be90c029
RD
1334
1335 // The sizer this window is a member of, if any
1336 wxSizer *m_containingSizer;
f03fc89f
VZ
1337
1338 // Layout() window automatically when its size changes?
1339 bool m_autoLayout:1;
f03fc89f
VZ
1340
1341 // window state
1342 bool m_isShown:1;
1343 bool m_isEnabled:1;
1344 bool m_isBeingDeleted:1;
1345
23895080
VZ
1346 // was the window colours/font explicitly changed by user?
1347 bool m_hasBgCol:1;
1348 bool m_hasFgCol:1;
1349 bool m_hasFont:1;
a0d9c6cb 1350
f8ff87ed
VS
1351 // and should it be inherited by children?
1352 bool m_inheritBgCol:1;
1353 bool m_inheritFgCol:1;
1354 bool m_inheritFont:1;
23895080 1355
f03fc89f 1356 // window attributes
d80cd92a
VZ
1357 long m_windowStyle,
1358 m_exStyle;
f03fc89f 1359 wxString m_windowName;
a2d93e73 1360 bool m_themeEnabled;
50c53860 1361 wxBackgroundStyle m_backgroundStyle;
071e5fd9 1362#if wxUSE_PALETTE
574c939e 1363 wxPalette m_palette;
b95edd47
VZ
1364 bool m_hasCustomPalette;
1365#endif // wxUSE_PALETTE
574c939e 1366
45a959a3
JS
1367#if wxUSE_ACCESSIBILITY
1368 wxAccessible* m_accessible;
1369#endif
2654f7e4 1370
566d84a7
RL
1371 // Virtual size (scrolling)
1372 wxSize m_virtualSize;
1373
f4fe2f20
RR
1374 wxScrollHelper *m_scrollHelper;
1375
566d84a7
RL
1376 int m_minVirtualWidth; // VirtualSizeHints
1377 int m_minVirtualHeight;
1378 int m_maxVirtualWidth;
1379 int m_maxVirtualHeight;
400a9e41 1380
69d90995 1381 wxWindowVariant m_windowVariant ;
45e0dc94 1382
1e6feb95
VZ
1383 // override this to change the default (i.e. used when no style is
1384 // specified) border for the window class
1385 virtual wxBorder GetDefaultBorder() const;
1386
a047aff2
JS
1387 // this allows you to implement standard control borders without
1388 // repeating the code in different classes that are not derived from
1389 // wxControl
1390 virtual wxBorder GetDefaultBorderForControl() const { return wxWindowBase::GetDefaultBorder(); }
1391
5c2be659
RD
1392 // Get the default size for the new window if no explicit size given. TLWs
1393 // have their own default size so this is just for non top-level windows.
a0d9c6cb
WS
1394 static int WidthDefault(int w) { return w == wxDefaultCoord ? 20 : w; }
1395 static int HeightDefault(int h) { return h == wxDefaultCoord ? 20 : h; }
f03fc89f 1396
9f884528
RD
1397
1398 // Used to save the results of DoGetBestSize so it doesn't need to be
1399 // recalculated each time the value is needed.
1400 wxSize m_bestSizeCache;
1401
170acdc9
RD
1402 wxDEPRECATED( void SetBestSize(const wxSize& size) ); // use SetInitialSize
1403 wxDEPRECATED( virtual void SetInitialBestSize(const wxSize& size) ); // use SetInitialSize
d3b5db4b 1404
a0d9c6cb 1405
d3b5db4b 1406
f03fc89f
VZ
1407 // more pure virtual functions
1408 // ---------------------------
1409
1410 // NB: we must have DoSomething() function when Something() is an overloaded
1411 // method: indeed, we can't just have "virtual Something()" in case when
1412 // the function is overloaded because then we'd have to make virtual all
1413 // the variants (otherwise only the virtual function may be called on a
1414 // pointer to derived class according to C++ rules) which is, in
1415 // general, absolutely not needed. So instead we implement all
1416 // overloaded Something()s in terms of DoSomething() which will be the
1417 // only one to be virtual.
1418
dabc0cd5
VZ
1419 // coordinates translation
1420 virtual void DoClientToScreen( int *x, int *y ) const = 0;
1421 virtual void DoScreenToClient( int *x, int *y ) const = 0;
1422
1e6feb95
VZ
1423 virtual wxHitTest DoHitTest(wxCoord x, wxCoord y) const;
1424
94633ad9 1425 // capture/release the mouse, used by Capture/ReleaseMouse()
a83e1475
VZ
1426 virtual void DoCaptureMouse() = 0;
1427 virtual void DoReleaseMouse() = 0;
be90c029 1428
f03fc89f 1429 // retrieve the position/size of the window
3c81c9aa
VZ
1430 virtual void DoGetPosition(int *x, int *y) const = 0;
1431 virtual void DoGetScreenPosition(int *x, int *y) const;
1432 virtual void DoGetSize(int *width, int *height) const = 0;
1433 virtual void DoGetClientSize(int *width, int *height) const = 0;
f03fc89f 1434
f68586e5
VZ
1435 // get the size which best suits the window: for a control, it would be
1436 // the minimal size which doesn't truncate the control, for a panel - the
1437 // same size as it would have after a call to Fit()
1438 virtual wxSize DoGetBestSize() const;
1439
ee146bca
VZ
1440 // called from DoGetBestSize() to convert best virtual size (returned by
1441 // the window sizer) to the best size for the window itself; this is
1442 // overridden at wxScrolledWindow level to clump down virtual size to real
1443 virtual wxSize GetWindowSizeForVirtualSize(const wxSize& size) const
1444 {
1445 return size;
1446 }
1447
f03fc89f
VZ
1448 // this is the virtual function to be overriden in any derived class which
1449 // wants to change how SetSize() or Move() works - it is called by all
1450 // versions of these functions in the base class
1451 virtual void DoSetSize(int x, int y,
1452 int width, int height,
1453 int sizeFlags = wxSIZE_AUTO) = 0;
1454
1455 // same as DoSetSize() for the client size
1456 virtual void DoSetClientSize(int width, int height) = 0;
1457
9d9b7755
VZ
1458 // move the window to the specified location and resize it: this is called
1459 // from both DoSetSize() and DoSetClientSize() and would usually just
1460 // reposition this window except for composite controls which will want to
1461 // arrange themselves inside the given rectangle
69deca26
VS
1462 //
1463 // Important note: the coordinates passed to this method are in parent's
1464 // *window* coordinates and not parent's client coordinates (as the values
1465 // passed to DoSetSize and returned by DoGetPosition are)!
9d9b7755
VZ
1466 virtual void DoMoveWindow(int x, int y, int width, int height) = 0;
1467
1f464296
VZ
1468 // centre the window in the specified direction on parent, note that
1469 // wxCENTRE_ON_SCREEN shouldn't be specified here, it only makes sense for
1470 // TLWs
1471 virtual void DoCentre(int dir);
1472
f03fc89f
VZ
1473#if wxUSE_TOOLTIPS
1474 virtual void DoSetToolTip( wxToolTip *tip );
1475#endif // wxUSE_TOOLTIPS
1476
1e6feb95 1477#if wxUSE_MENUS
971562cb 1478 virtual bool DoPopupMenu(wxMenu *menu, int x, int y) = 0;
1e6feb95 1479#endif // wxUSE_MENUS
a1665b22 1480
716e96df
VZ
1481 // Makes an adjustment to the window position to make it relative to the
1482 // parents client area, e.g. if the parent is a frame with a toolbar, its
1483 // (0, 0) is just below the toolbar
1484 virtual void AdjustForParentClientOrigin(int& x, int& y,
1485 int sizeFlags = 0) const;
8d99be5f 1486
69d90995
SC
1487 // implements the window variants
1488 virtual void DoSetWindowVariant( wxWindowVariant variant ) ;
45e0dc94 1489
63e819f2 1490 // Must be called when mouse capture is lost to send
72f8c792
VS
1491 // wxMouseCaptureLostEvent to windows on capture stack.
1492 static void NotifyCaptureLost();
63e819f2 1493
f03fc89f 1494private:
47a8a4d5
VZ
1495 // recursively call our own and our children OnEnabled() when the
1496 // enabled/disabled status changed because a parent window had been
1497 // enabled/disabled
1498 void NotifyWindowOnEnableChange(bool enabled);
1499
1500
f03fc89f
VZ
1501 // contains the last id generated by NewControlId
1502 static int ms_lastControlId;
1503
a83e1475 1504 // the stack of windows which have captured the mouse
b5dbe15d 1505 static struct WXDLLIMPEXP_FWD_CORE wxWindowNext *ms_winCaptureNext;
63e819f2
VS
1506 // the window that currently has mouse capture
1507 static wxWindow *ms_winCaptureCurrent;
1508 // indicates if execution is inside CaptureMouse/ReleaseMouse
1509 static bool ms_winCaptureChanging;
a83e1475 1510
1e6feb95
VZ
1511 DECLARE_ABSTRACT_CLASS(wxWindowBase)
1512 DECLARE_NO_COPY_CLASS(wxWindowBase)
f03fc89f
VZ
1513 DECLARE_EVENT_TABLE()
1514};
1515
170acdc9
RD
1516
1517
1518// Inlines for some deprecated methods
1519inline wxSize wxWindowBase::GetBestFittingSize() const
1520{
1521 return GetEffectiveMinSize();
1522}
1523
1524inline void wxWindowBase::SetBestFittingSize(const wxSize& size)
1525{
1526 SetInitialSize(size);
1527}
1528
1529inline void wxWindowBase::SetBestSize(const wxSize& size)
1530{
1531 SetInitialSize(size);
1532}
1533
1534inline void wxWindowBase::SetInitialBestSize(const wxSize& size)
1535{
1536 SetInitialSize(size);
1537}
1538
1539
f03fc89f
VZ
1540// ----------------------------------------------------------------------------
1541// now include the declaration of wxWindow class
1542// ----------------------------------------------------------------------------
1543
1e6feb95 1544// include the declaration of the platform-specific class
4055ed82 1545#if defined(__WXPALMOS__)
ffecfa5a
JS
1546 #ifdef __WXUNIVERSAL__
1547 #define wxWindowNative wxWindowPalm
1548 #else // !wxUniv
1549 #define wxWindowPalm wxWindow
1550 #endif // wxUniv/!wxUniv
1551 #include "wx/palmos/window.h"
1552#elif defined(__WXMSW__)
a5b3669d
VZ
1553 #ifdef __WXUNIVERSAL__
1554 #define wxWindowNative wxWindowMSW
1555 #else // !wxUniv
1e6feb95 1556 #define wxWindowMSW wxWindow
a5b3669d 1557 #endif // wxUniv/!wxUniv
f03fc89f 1558 #include "wx/msw/window.h"
2049ba38 1559#elif defined(__WXMOTIF__)
f03fc89f 1560 #include "wx/motif/window.h"
1be7a35c 1561#elif defined(__WXGTK20__)
a5b3669d
VZ
1562 #ifdef __WXUNIVERSAL__
1563 #define wxWindowNative wxWindowGTK
1564 #else // !wxUniv
1e6feb95 1565 #define wxWindowGTK wxWindow
1e6feb95 1566 #endif // wxUniv
f03fc89f 1567 #include "wx/gtk/window.h"
1be7a35c
MR
1568#elif defined(__WXGTK__)
1569 #ifdef __WXUNIVERSAL__
1570 #define wxWindowNative wxWindowGTK
1571 #else // !wxUniv
1572 #define wxWindowGTK wxWindow
1573 #endif // wxUniv
1574 #include "wx/gtk1/window.h"
83df96d6
JS
1575#elif defined(__WXX11__)
1576 #ifdef __WXUNIVERSAL__
1577 #define wxWindowNative wxWindowX11
1578 #else // !wxUniv
1579 #define wxWindowX11 wxWindow
83df96d6
JS
1580 #endif // wxUniv
1581 #include "wx/x11/window.h"
711c76db 1582#elif defined(__WXMGL__)
b3c86150 1583 #define wxWindowNative wxWindowMGL
386c7058 1584 #include "wx/mgl/window.h"
b3c86150
VS
1585#elif defined(__WXDFB__)
1586 #define wxWindowNative wxWindowDFB
1587 #include "wx/dfb/window.h"
34138703 1588#elif defined(__WXMAC__)
e766c8a9
SC
1589 #ifdef __WXUNIVERSAL__
1590 #define wxWindowNative wxWindowMac
1591 #else // !wxUniv
1592 #define wxWindowMac wxWindow
e766c8a9 1593 #endif // wxUniv
f03fc89f 1594 #include "wx/mac/window.h"
e64df9bc
DE
1595#elif defined(__WXCOCOA__)
1596 #ifdef __WXUNIVERSAL__
1597 #define wxWindowNative wxWindowCocoa
1598 #else // !wxUniv
1599 #define wxWindowCocoa wxWindow
e64df9bc
DE
1600 #endif // wxUniv
1601 #include "wx/cocoa/window.h"
1777b9bb 1602#elif defined(__WXPM__)
210a651b
DW
1603 #ifdef __WXUNIVERSAL__
1604 #define wxWindowNative wxWindowOS2
1605 #else // !wxUniv
1606 #define wxWindowOS2 wxWindow
210a651b 1607 #endif // wxUniv/!wxUniv
1777b9bb 1608 #include "wx/os2/window.h"
c801d85f
KB
1609#endif
1610
1e6feb95
VZ
1611// for wxUniversal, we now derive the real wxWindow from wxWindow<platform>,
1612// for the native ports we already have defined it above
1613#if defined(__WXUNIVERSAL__)
a5b3669d
VZ
1614 #ifndef wxWindowNative
1615 #error "wxWindowNative must be defined above!"
1616 #endif
1617
1e6feb95
VZ
1618 #include "wx/univ/window.h"
1619#endif // wxUniv
1620
f03fc89f
VZ
1621// ----------------------------------------------------------------------------
1622// inline functions which couldn't be declared in the class body because of
1623// forward dependencies
1624// ----------------------------------------------------------------------------
1625
bacd69f9 1626inline wxWindow *wxWindowBase::GetGrandParent() const
f03fc89f
VZ
1627{
1628 return m_parent ? m_parent->GetParent() : (wxWindow *)NULL;
1629}
1630
1631// ----------------------------------------------------------------------------
3723b7b1 1632// global functions
f03fc89f
VZ
1633// ----------------------------------------------------------------------------
1634
3723b7b1
JS
1635// Find the wxWindow at the current mouse position, also returning the mouse
1636// position.
16cba29d 1637extern WXDLLEXPORT wxWindow* wxFindWindowAtPointer(wxPoint& pt);
3723b7b1
JS
1638
1639// Get the current mouse position.
16cba29d 1640extern WXDLLEXPORT wxPoint wxGetMousePosition();
3723b7b1 1641
1e6feb95 1642// get the currently active window of this application or NULL
16cba29d 1643extern WXDLLEXPORT wxWindow *wxGetActiveWindow();
1e6feb95 1644
33b494d6
VZ
1645// get the (first) top level parent window
1646WXDLLEXPORT wxWindow* wxGetTopLevelParent(wxWindow *win);
1647
40ff126a
WS
1648#if WXWIN_COMPATIBILITY_2_6
1649 // deprecated (doesn't start with 'wx' prefix), use wxWindow::NewControlId()
1650 wxDEPRECATED( int NewControlId() );
1651 inline int NewControlId() { return wxWindowBase::NewControlId(); }
1652#endif // WXWIN_COMPATIBILITY_2_6
f03fc89f 1653
45a959a3
JS
1654#if wxUSE_ACCESSIBILITY
1655// ----------------------------------------------------------------------------
1656// accessible object for windows
1657// ----------------------------------------------------------------------------
1658
1659class WXDLLEXPORT wxWindowAccessible: public wxAccessible
1660{
1661public:
f81387bd 1662 wxWindowAccessible(wxWindow* win): wxAccessible(win) { if (win) win->SetAccessible(this); }
6fb99eb3 1663 virtual ~wxWindowAccessible() {}
45a959a3
JS
1664
1665// Overridables
1666
1667 // Can return either a child object, or an integer
1668 // representing the child element, starting from 1.
1669 virtual wxAccStatus HitTest(const wxPoint& pt, int* childId, wxAccessible** childObject);
1670
1671 // Returns the rectangle for this object (id = 0) or a child element (id > 0).
1672 virtual wxAccStatus GetLocation(wxRect& rect, int elementId);
1673
1674 // Navigates from fromId to toId/toObject.
1675 virtual wxAccStatus Navigate(wxNavDir navDir, int fromId,
1676 int* toId, wxAccessible** toObject);
1677
1678 // Gets the name of the specified object.
1679 virtual wxAccStatus GetName(int childId, wxString* name);
1680
1681 // Gets the number of children.
a37e4a07 1682 virtual wxAccStatus GetChildCount(int* childCount);
45a959a3
JS
1683
1684 // Gets the specified child (starting from 1).
1685 // If *child is NULL and return value is wxACC_OK,
1686 // this means that the child is a simple element and
1687 // not an accessible object.
1688 virtual wxAccStatus GetChild(int childId, wxAccessible** child);
1689
1690 // Gets the parent, or NULL.
1691 virtual wxAccStatus GetParent(wxAccessible** parent);
1692
1693 // Performs the default action. childId is 0 (the action for this object)
1694 // or > 0 (the action for a child).
1695 // Return wxACC_NOT_SUPPORTED if there is no default action for this
1696 // window (e.g. an edit control).
1697 virtual wxAccStatus DoDefaultAction(int childId);
1698
1699 // Gets the default action for this object (0) or > 0 (the action for a child).
1700 // Return wxACC_OK even if there is no action. actionName is the action, or the empty
1701 // string if there is no action.
1702 // The retrieved string describes the action that is performed on an object,
1703 // not what the object does as a result. For example, a toolbar button that prints
1704 // a document has a default action of "Press" rather than "Prints the current document."
1705 virtual wxAccStatus GetDefaultAction(int childId, wxString* actionName);
1706
1707 // Returns the description for this object or a child.
1708 virtual wxAccStatus GetDescription(int childId, wxString* description);
1709
1710 // Returns help text for this object or a child, similar to tooltip text.
1711 virtual wxAccStatus GetHelpText(int childId, wxString* helpText);
1712
1713 // Returns the keyboard shortcut for this object or child.
1714 // Return e.g. ALT+K
1715 virtual wxAccStatus GetKeyboardShortcut(int childId, wxString* shortcut);
1716
1717 // Returns a role constant.
1718 virtual wxAccStatus GetRole(int childId, wxAccRole* role);
1719
1720 // Returns a state constant.
1721 virtual wxAccStatus GetState(int childId, long* state);
1722
1723 // Returns a localized string representing the value for the object
1724 // or child.
1725 virtual wxAccStatus GetValue(int childId, wxString* strValue);
1726
1727 // Selects the object or child.
1728 virtual wxAccStatus Select(int childId, wxAccSelectionFlags selectFlags);
1729
1730 // Gets the window with the keyboard focus.
1731 // If childId is 0 and child is NULL, no object in
1732 // this subhierarchy has the focus.
1733 // If this object has the focus, child should be 'this'.
1734 virtual wxAccStatus GetFocus(int* childId, wxAccessible** child);
1735
ca5c6ac3 1736#if wxUSE_VARIANT
45a959a3
JS
1737 // Gets a variant representing the selected children
1738 // of this object.
1739 // Acceptable values:
d4864e97 1740 // - a null variant (IsNull() returns true)
45a959a3
JS
1741 // - a list variant (GetType() == wxT("list")
1742 // - an integer representing the selected child element,
1743 // or 0 if this object is selected (GetType() == wxT("long")
1744 // - a "void*" pointer to a wxAccessible child object
1745 virtual wxAccStatus GetSelections(wxVariant* selections);
ca5c6ac3 1746#endif // wxUSE_VARIANT
45a959a3
JS
1747};
1748
1749#endif // wxUSE_ACCESSIBILITY
1750
1751
faa49bfd 1752#endif // _WX_WINDOW_H_BASE_