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