1 ///////////////////////////////////////////////////////////////////////////////
3 // Purpose: wxWindowBase class - the interface of wxWindow
4 // Author: Vadim Zeitlin
8 // Copyright: (c) wxWindows team
9 // Licence: wxWindows licence
10 ///////////////////////////////////////////////////////////////////////////////
12 #ifndef _WX_WINDOW_H_BASE_
13 #define _WX_WINDOW_H_BASE_
16 #pragma interface "windowbase.h"
19 // ----------------------------------------------------------------------------
20 // headers which we must include here
21 // ----------------------------------------------------------------------------
23 #include "wx/event.h" // the base class
25 #include "wx/list.h" // defines wxWindowList
27 #include "wx/cursor.h" // we have member variables of these classes
28 #include "wx/font.h" // so we can't do without them
29 #include "wx/colour.h"
30 #include "wx/region.h"
36 // ----------------------------------------------------------------------------
37 // forward declarations
38 // ----------------------------------------------------------------------------
40 class WXDLLEXPORT wxCaret
;
41 class WXDLLEXPORT wxClientData
;
42 class WXDLLEXPORT wxControl
;
43 class WXDLLEXPORT wxCursor
;
44 class WXDLLEXPORT wxDC
;
45 class WXDLLEXPORT wxDropTarget
;
46 class WXDLLEXPORT wxItemResource
;
47 class WXDLLEXPORT wxLayoutConstraints
;
48 class WXDLLEXPORT wxResourceTable
;
49 class WXDLLEXPORT wxSizer
;
50 class WXDLLEXPORT wxToolTip
;
51 class WXDLLEXPORT wxValidator
;
52 class WXDLLEXPORT wxWindowBase
;
53 class WXDLLEXPORT wxWindow
;
55 // ----------------------------------------------------------------------------
56 // (pseudo)template list classes
57 // ----------------------------------------------------------------------------
59 WX_DECLARE_LIST_3(wxWindow
, wxWindowBase
, wxWindowList
, wxWindowListNode
);
61 // ----------------------------------------------------------------------------
63 // ----------------------------------------------------------------------------
65 WXDLLEXPORT_DATA(extern wxWindowList
) wxTopLevelWindows
;
67 // ----------------------------------------------------------------------------
68 // helper classes used by [SG]etClientObject/Data
70 // TODO move into a separate header?
71 // ----------------------------------------------------------------------------
77 virtual ~wxClientData() { }
80 class wxStringClientData
: public wxClientData
83 wxStringClientData() { }
84 wxStringClientData( const wxString
&data
) : m_data(data
) { }
85 void SetData( const wxString
&data
) { m_data
= data
; }
86 const wxString
& GetData() const { return m_data
; }
92 // ----------------------------------------------------------------------------
93 // wxWindowBase is the base class for all GUI controls/widgets, this is the public
94 // interface of this class.
96 // Event handler: windows have themselves as their event handlers by default,
97 // but their event handlers could be set to another object entirely. This
98 // separation can reduce the amount of derivation required, and allow
99 // alteration of a window's functionality (e.g. by a resource editor that
100 // temporarily switches event handlers).
101 // ----------------------------------------------------------------------------
103 class WXDLLEXPORT wxWindowBase
: public wxEvtHandler
105 DECLARE_ABSTRACT_CLASS(wxWindowBase
);
108 // creating the window
109 // -------------------
112 wxWindowBase() { InitBase(); }
114 // pseudo ctor (can't be virtual, called from ctor)
115 bool CreateBase(wxWindowBase
*parent
,
117 const wxPoint
& pos
= wxDefaultPosition
,
118 const wxSize
& size
= wxDefaultSize
,
120 const wxString
& name
= wxPanelNameStr
);
122 virtual ~wxWindowBase();
124 #if wxUSE_WX_RESOURCES
125 // these functions are implemented in resource.cpp and resourc2.cpp
126 virtual bool LoadFromResource(wxWindow
*parent
,
127 const wxString
& resourceName
,
128 const wxResourceTable
*table
= (const wxResourceTable
*) NULL
);
129 virtual wxControl
*CreateItem(const wxItemResource
* childResource
,
130 const wxItemResource
* parentResource
,
131 const wxResourceTable
*table
= (const wxResourceTable
*) NULL
);
132 #endif // wxUSE_WX_RESOURCES
134 // deleting the window
135 // -------------------
137 // ask the window to close itself, return TRUE if the event handler
138 // honoured our request
139 bool Close( bool force
= FALSE
);
141 // the following functions delete the C++ objects (the window itself
142 // or its children) as well as the GUI windows and normally should
143 // never be used directly
145 // delete window unconditionally (dangerous!), returns TRUE if ok
146 virtual bool Destroy();
147 // delete all children of this window, returns TRUE if ok
148 bool DestroyChildren();
150 // is the window being deleted?
151 bool IsBeingDeleted() const { return m_isBeingDeleted
; }
156 // the title (or label, see below) of the window: the text which the
158 virtual void SetTitle( const wxString
& WXUNUSED(title
) ) { }
159 virtual wxString
GetTitle() const { return ""; }
161 // label is just the same as the title (but for, e.g., buttons it
162 // makes more sense to speak about labels)
163 virtual void SetLabel(const wxString
& label
) { SetTitle(label
); }
164 virtual wxString
GetLabel() const { return GetTitle(); }
166 // the window name is used for ressource setting in X, it is not the
167 // same as the window title/label
168 virtual void SetName( const wxString
&name
) { m_windowName
= name
; }
169 virtual wxString
GetName() const { return m_windowName
; }
171 // window id uniquely identifies the window among its siblings unless
172 // it is -1 which means "don't care"
173 void SetId( wxWindowID id
) { m_windowId
= id
; }
174 wxWindowID
GetId() const { return m_windowId
; }
176 // generate a control id for the controls which were not given one by
178 static int NewControlId() { return --ms_lastControlId
; }
179 // get the id of the control following the one with the given
180 // (autogenerated) id
181 static int NextControlId(int id
) { return id
- 1; }
182 // get the id of the control preceding the one with the given
183 // (autogenerated) id
184 static int PrevControlId(int id
) { return id
+ 1; }
189 // set the window size and/or position
190 void SetSize( int x
, int y
, int width
, int height
,
191 int sizeFlags
= wxSIZE_AUTO
)
192 { DoSetSize(x
, y
, width
, height
, sizeFlags
); }
194 void SetSize( int width
, int height
)
195 { DoSetSize( -1, -1, width
, height
, wxSIZE_USE_EXISTING
); }
197 void SetSize( const wxSize
& size
)
198 { SetSize( size
.x
, size
.y
); }
200 void SetSize(const wxRect
& rect
, int sizeFlags
= wxSIZE_AUTO
)
201 { DoSetSize(rect
.x
, rect
.y
, rect
.width
, rect
.height
, sizeFlags
); }
203 void Move( int x
, int y
)
204 { DoSetSize( x
, y
, -1, -1, wxSIZE_USE_EXISTING
); }
206 void Move(const wxPoint
& pt
)
207 { Move(pt
.x
, pt
.y
); }
210 virtual void Raise() = 0;
211 virtual void Lower() = 0;
213 // client size is the size of area available for subwindows
214 void SetClientSize( int width
, int height
)
215 { DoSetClientSize(width
, height
); }
217 void SetClientSize( const wxSize
& size
)
218 { DoSetClientSize(size
.x
, size
.y
); }
220 void SetClientSize(const wxRect
& rect
)
221 { SetClientSize( rect
.width
, rect
.height
); }
223 // get the window position and/or size (pointers may be NULL)
224 void GetPosition( int *x
, int *y
) const { DoGetPosition(x
, y
); }
225 wxPoint
GetPosition() const
228 DoGetPosition(&w
, &h
);
230 return wxPoint(w
, h
);
233 void GetSize( int *w
, int *h
) const { DoGetSize(w
, h
); }
234 wxSize
GetSize() const
241 wxRect
GetRect() const
244 GetPosition(& x
, & y
);
247 return wxRect(x
, y
, w
, h
);
250 void GetClientSize( int *w
, int *h
) const { DoGetClientSize(w
, h
); }
251 wxSize
GetClientSize() const
254 DoGetClientSize(& w
, & h
);
259 // centre with respect to the the parent window
260 void Centre( int direction
= wxHORIZONTAL
);
261 void Center( int direction
= wxHORIZONTAL
) { Centre(direction
); }
262 void CentreOnParent(int direction
= wxHORIZONTAL
);
263 void CenterOnParent(int direction
= wxHORIZONTAL
) { CentreOnParent(direction
); }
265 // set window size to wrap around its children
268 // set min/max size of the window
269 virtual void SetSizeHints( int minW
, int minH
,
270 int maxW
= -1, int maxH
= -1,
271 int incW
= -1, int incH
= -1 );
276 // returns TRUE if window was shown/hidden, FALSE if the nothing was
277 // done (window was already shown/hidden)
278 virtual bool Show( bool show
= TRUE
);
279 bool Hide() { return Show(FALSE
); }
281 // returns TRUE if window was enabled/disabled, FALSE if nothing done
282 virtual bool Enable( bool enable
= TRUE
);
283 bool Disable() { return Enable(FALSE
); }
285 bool IsShown() const { return m_isShown
; }
286 bool IsEnabled() const { return m_isEnabled
; }
288 // get/set window style (setting style won't update the window and so
289 // is only useful for internal usage)
290 virtual void SetWindowStyleFlag( long style
) { m_windowStyle
= style
; }
291 virtual long GetWindowStyleFlag() const { return m_windowStyle
; }
293 // just some (somewhat shorter) synonims
294 void SetWindowStyle( long style
) { SetWindowStyleFlag(style
); }
295 long GetWindowStyle() const { return GetWindowStyleFlag(); }
297 bool HasFlag(int flag
) const { return (m_windowStyle
& flag
) != 0; }
299 virtual bool IsRetained() const
300 { return (m_windowStyle
& wxRETAINED
) != 0; }
302 // make the window modal (all other windows unresponsive)
303 virtual void MakeModal(bool modal
= TRUE
);
308 // set focus to this window
309 virtual void SetFocus() = 0;
311 // return the window which currently has the focus or NULL
312 static wxWindow
*FindFocus() /* = 0: implement in derived classes */;
314 // can this window have focus?
315 virtual bool AcceptsFocus() const { return IsShown() && IsEnabled(); }
317 // parent/children relations
318 // -------------------------
320 // get the list of children
321 const wxWindowList
& GetChildren() const { return m_children
; }
322 wxWindowList
& GetChildren() { return m_children
; }
324 // get the parent or the parent of the parent
325 wxWindow
*GetParent() const { return m_parent
; }
326 inline wxWindow
*GetGrandParent() const;
328 // is this window a top level one?
329 bool IsTopLevel() const;
331 // it doesn't really change parent, use ReParent() instead
332 void SetParent( wxWindowBase
*parent
) { m_parent
= (wxWindow
*)parent
; }
333 // change the real parent of this window, return TRUE if the parent
334 // was changed, FALSE otherwise (error or newParent == oldParent)
335 virtual bool Reparent( wxWindowBase
*newParent
);
337 // find window among the descendants of this one either by id or by
338 // name (return NULL if not found)
339 wxWindow
*FindWindow( long id
);
340 wxWindow
*FindWindow( const wxString
& name
);
342 // implementation mostly
343 virtual void AddChild( wxWindowBase
*child
);
344 virtual void RemoveChild( wxWindowBase
*child
);
346 // event handler stuff
347 // -------------------
349 // get the current event handler
350 wxEvtHandler
*GetEventHandler() const { return m_eventHandler
; }
352 // replace the event handler (allows to completely subclass the
354 void SetEventHandler( wxEvtHandler
*handler
) { m_eventHandler
= handler
; }
356 // push/pop event handler: allows to chain a custom event handler to
357 // alreasy existing ones
358 void PushEventHandler( wxEvtHandler
*handler
);
359 wxEvtHandler
*PopEventHandler( bool deleteHandler
= FALSE
);
361 // validators and client data
362 // --------------------------
365 // a window may have an associated validator which is used to control
367 virtual void SetValidator( const wxValidator
&validator
);
368 virtual wxValidator
*GetValidator() { return m_windowValidator
; }
369 #endif // wxUSE_VALIDATORS
371 // each window may have associated client data: either a pointer to
372 // wxClientData object in which case it is managed by the window (i.e.
373 // it will delete the data when it's destroyed) or an untyped pointer
374 // which won't be deleted by the window
375 virtual void SetClientObject( wxClientData
*data
)
377 if ( m_clientObject
)
378 delete m_clientObject
;
380 m_clientObject
= data
;
382 virtual wxClientData
*GetClientObject() const { return m_clientObject
; }
384 virtual void SetClientData( void *data
) { m_clientData
= data
; }
385 virtual void *GetClientData() const { return m_clientData
; }
387 // dialog oriented functions
388 // -------------------------
390 // validate the correctness of input, return TRUE if ok
391 virtual bool Validate();
393 // transfer data between internal and GUI representations
394 virtual bool TransferDataToWindow();
395 virtual bool TransferDataFromWindow();
397 virtual void InitDialog();
402 virtual void SetAcceleratorTable( const wxAcceleratorTable
& accel
)
403 { m_acceleratorTable
= accel
; }
404 wxAcceleratorTable
*GetAcceleratorTable()
405 { return &m_acceleratorTable
; }
406 #endif // wxUSE_ACCEL
408 // dialog units translations
409 // -------------------------
411 wxPoint
ConvertPixelsToDialog( const wxPoint
& pt
);
412 wxPoint
ConvertDialogToPixels( const wxPoint
& pt
);
413 wxSize
ConvertPixelsToDialog( const wxSize
& sz
)
415 wxPoint
pt(ConvertPixelsToDialog(wxPoint(sz
.x
, sz
.y
)));
417 return wxSize(pt
.x
, pt
.y
);
420 wxSize
ConvertDialogToPixels( const wxSize
& sz
)
422 wxPoint
pt(ConvertDialogToPixels(wxPoint(sz
.x
, sz
.y
)));
424 return wxSize(pt
.x
, pt
.y
);
430 // move the mouse to the specified position
431 virtual void WarpPointer(int x
, int y
) = 0;
433 // start or end mouse capture
434 virtual void CaptureMouse() = 0;
435 virtual void ReleaseMouse() = 0;
437 // painting the window
438 // -------------------
440 // mark the specified rectangle (or the whole window) as "dirty" so it
442 virtual void Refresh( bool eraseBackground
= TRUE
,
443 const wxRect
*rect
= (const wxRect
*) NULL
) = 0;
444 // clear the window entirely
445 virtual void Clear() = 0;
447 // adjust DC for drawing on this window
448 virtual void PrepareDC( wxDC
& WXUNUSED(dc
) ) { }
450 // the update region of the window contains the areas which must be
451 // repainted by the program
452 const wxRegion
& GetUpdateRegion() const { return m_updateRegion
; }
453 wxRegion
& GetUpdateRegion() { return m_updateRegion
; }
455 // these functions verify whether the given point/rectangle belongs to
456 // (or at least intersects with) the update region
457 bool IsExposed( int x
, int y
) const;
458 bool IsExposed( int x
, int y
, int w
, int h
) const;
460 bool IsExposed( const wxPoint
& pt
) const
461 { return IsExposed(pt
.x
, pt
.y
); }
462 bool IsExposed( const wxRect
& rect
) const
463 { return IsExposed(rect
.x
, rect
.y
, rect
.width
, rect
.height
); }
465 // colours, fonts and cursors
466 // --------------------------
468 // set/retrieve the window colours (system defaults are used by
469 // default): Set functions return TRUE if colour was changed
470 virtual bool SetBackgroundColour( const wxColour
&colour
);
471 virtual bool SetForegroundColour( const wxColour
&colour
);
473 wxColour
GetBackgroundColour() const { return m_backgroundColour
; }
474 wxColour
GetForegroundColour() const { return m_foregroundColour
; }
476 // set/retrieve the cursor for this window (SetCursor() returns TRUE
477 // if the cursor was really changed)
478 virtual bool SetCursor( const wxCursor
&cursor
);
479 const wxCursor
& GetCursor() const { return m_cursor
; }
480 wxCursor
& GetCursor() { return m_cursor
; }
482 // set/retrieve the font for the window (SetFont() returns TRUE if the
483 // font really changed)
484 virtual bool SetFont( const wxFont
&font
) = 0;
485 const wxFont
& GetFont() const { return m_font
; }
486 wxFont
& GetFont() { return m_font
; }
489 // associate a caret with the window
490 void SetCaret(wxCaret
*caret
);
491 // get the current caret (may be NULL)
492 wxCaret
*GetCaret() const { return m_caret
; }
493 #endif // wxUSE_CARET
495 // get the (average) character size for the current font
496 virtual int GetCharHeight() const = 0;
497 virtual int GetCharWidth() const = 0;
499 // get the width/height/... of the text using current or specified
501 virtual void GetTextExtent(const wxString
& string
,
503 int *descent
= (int *) NULL
,
504 int *externalLeading
= (int *) NULL
,
505 const wxFont
*theFont
= (const wxFont
*) NULL
)
508 // translate to/from screen/client coordinates (pointers may be NULL)
509 void ClientToScreen( int *x
, int *y
) const
510 { DoClientToScreen(x
, y
); }
511 void ScreenToClient( int *x
, int *y
) const
512 { DoScreenToClient(x
, y
); }
513 wxPoint
ClientToScreen(const wxPoint
& pt
) const
515 int x
= pt
.x
, y
= pt
.y
;
516 DoClientToScreen(&x
, &y
);
518 return wxPoint(x
, y
);
521 wxPoint
ScreenToClient(const wxPoint
& pt
) const
523 int x
= pt
.x
, y
= pt
.y
;
524 DoScreenToClient(&x
, &y
);
526 return wxPoint(x
, y
);
532 void UpdateWindowUI();
534 virtual bool PopupMenu( wxMenu
*menu
, int x
, int y
) = 0;
539 // configure the window scrollbars
540 virtual void SetScrollbar( int orient
,
544 bool refresh
= TRUE
) = 0;
545 virtual void SetScrollPos( int orient
, int pos
, bool refresh
= TRUE
) = 0;
546 virtual int GetScrollPos( int orient
) const = 0;
547 virtual int GetScrollThumb( int orient
) const = 0;
548 virtual int GetScrollRange( int orient
) const = 0;
550 // scroll window to the specified position
551 virtual void ScrollWindow( int dx
, int dy
,
552 const wxRect
* rect
= (wxRect
*) NULL
) = 0;
557 // the easiest way to set a tooltip for a window is to use this method
558 void SetToolTip( const wxString
&tip
);
559 // attach a tooltip to the window
560 void SetToolTip( wxToolTip
*tip
) { DoSetToolTip(tip
); }
561 // get the associated tooltip or NULL if none
562 wxToolTip
* GetToolTip() const { return m_tooltip
; }
563 #endif // wxUSE_TOOLTIPS
567 #if wxUSE_DRAG_AND_DROP
568 // set/retrieve the drop target associated with this window (may be
569 // NULL; it's owned by the window and will be deleted by it)
570 virtual void SetDropTarget( wxDropTarget
*dropTarget
) = 0;
571 virtual wxDropTarget
*GetDropTarget() const { return m_dropTarget
; }
572 #endif // wxUSE_DRAG_AND_DROP
574 // constraints and sizers
575 // ----------------------
576 #if wxUSE_CONSTRAINTS
577 // set the constraints for this window or retrieve them (may be NULL)
578 void SetConstraints( wxLayoutConstraints
*constraints
);
579 wxLayoutConstraints
*GetConstraints() const { return m_constraints
; }
581 // when using constraints, it makes sense to update children positions
582 // automatically whenever the window is resized - this is done if
584 void SetAutoLayout( bool autoLayout
) { m_autoLayout
= autoLayout
; }
585 bool GetAutoLayout() const { return m_autoLayout
; }
587 // do layout the window and its children
588 virtual bool Layout();
590 // implementation only
591 void UnsetConstraints(wxLayoutConstraints
*c
);
592 wxWindowList
*GetConstraintsInvolvedIn() const
593 { return m_constraintsInvolvedIn
; }
594 void AddConstraintReference(wxWindowBase
*otherWin
);
595 void RemoveConstraintReference(wxWindowBase
*otherWin
);
596 void DeleteRelatedConstraints();
597 void ResetConstraints();
599 // these methods may be overriden for special layout algorithms
600 virtual void SetConstraintSizes(bool recurse
= TRUE
);
601 virtual bool LayoutPhase1(int *noChanges
);
602 virtual bool LayoutPhase2(int *noChanges
);
603 virtual bool DoPhase(int);
605 // these methods are virtual but normally won't be overridden
606 virtual void TransformSizerToActual(int *x
, int *y
) const ;
607 virtual void SetSizeConstraint(int x
, int y
, int w
, int h
);
608 virtual void MoveConstraint(int x
, int y
);
609 virtual void GetSizeConstraint(int *w
, int *h
) const ;
610 virtual void GetClientSizeConstraint(int *w
, int *h
) const ;
611 virtual void GetPositionConstraint(int *x
, int *y
) const ;
614 // TODO: what are they and how do they work??
615 void SetSizer( wxSizer
*sizer
);
616 wxSizer
*GetSizer() const { return m_windowSizer
; }
618 void SetSizerParent( wxWindowBase
*win
) { m_sizerParent
= win
; }
619 wxWindowBase
*GetSizerParent() const { return m_sizerParent
; }
621 virtual void SizerSetSize(int x
, int y
, int w
, int h
);
622 virtual void SizerMove(int x
, int y
);
623 #endif // wxUSE_CONSTRAINTS
625 // backward compatibility
626 // ----------------------
627 #if WXWIN_COMPATIBILITY
628 bool Enabled() const { return IsEnabled(); }
630 void SetButtonFont(const wxFont
& font
) { SetFont(font
); }
631 void SetLabelFont(const wxFont
& font
) { SetFont(font
); }
632 wxFont
& GetLabelFont() { return GetFont(); };
633 wxFont
& GetButtonFont() { return GetFont(); };
634 #endif // WXWIN_COMPATIBILITY
640 void OnSysColourChanged( wxSysColourChangedEvent
& event
);
641 void OnInitDialog( wxInitDialogEvent
&event
);
643 // get the haqndle of the window for the underlying window system: this
644 // is only used for wxWin itself or for user code which wants to call
645 // platform-specific APIs
646 virtual WXWidget
GetHandle() const = 0;
649 // the window id - a number which uniquely identifies a window among
650 // its siblings unless it is -1
651 wxWindowID m_windowId
;
653 // the parent window of this window (or NULL) and the list of the children
656 wxWindowList m_children
;
658 // the minimal allowed size for the window (no minimal size if variable(s)
660 int m_minWidth
, m_minHeight
, m_maxWidth
, m_maxHeight
;
662 // event handler for this window: usually is just 'this' but may be
663 // changed with SetEventHandler()
664 wxEvtHandler
*m_eventHandler
;
667 // associated validator or NULL if none
668 wxValidator
*m_windowValidator
;
669 #endif // wxUSE_VALIDATORS
671 #if wxUSE_DRAG_AND_DROP
672 wxDropTarget
*m_dropTarget
;
673 #endif // wxUSE_DRAG_AND_DROP
675 // visual window attributes
678 wxColour m_backgroundColour
, m_foregroundColour
;
682 #endif // wxUSE_CARET
684 // the region which should be repainted in response to paint event
685 wxRegion m_updateRegion
;
688 // the accelerator table for the window which translates key strokes into
690 wxAcceleratorTable m_acceleratorTable
;
691 #endif // wxUSE_ACCEL
693 // user data associated with the window: either an object which will be
694 // deleted by the window when it's deleted or some raw pointer which we do
696 wxClientData
*m_clientObject
;
699 // the tooltip for this window (may be NULL)
701 wxToolTip
*m_tooltip
;
702 #endif // wxUSE_TOOLTIPS
704 // constraints and sizers
705 #if wxUSE_CONSTRAINTS
706 // the constraints for this window or NULL
707 wxLayoutConstraints
*m_constraints
;
709 // constraints this window is involved in
710 wxWindowList
*m_constraintsInvolvedIn
;
712 // top level and the parent sizers
713 // TODO what's this and how does it work?)
714 wxSizer
*m_windowSizer
;
715 wxWindowBase
*m_sizerParent
;
717 // Layout() window automatically when its size changes?
719 #endif // wxUSE_CONSTRAINTS
724 bool m_isBeingDeleted
:1;
728 wxString m_windowName
;
731 // common part of all ctors: it is not virtual because it is called from
735 // get the default size for the new window if no explicit size given
736 // FIXME why 20 and not 30, 10 or ...?
737 static int WidthDefault(int w
) { return w
== -1 ? 20 : w
; }
738 static int HeightDefault(int h
) { return h
== -1 ? 20 : h
; }
740 // more pure virtual functions
741 // ---------------------------
743 // NB: we must have DoSomething() function when Something() is an overloaded
744 // method: indeed, we can't just have "virtual Something()" in case when
745 // the function is overloaded because then we'd have to make virtual all
746 // the variants (otherwise only the virtual function may be called on a
747 // pointer to derived class according to C++ rules) which is, in
748 // general, absolutely not needed. So instead we implement all
749 // overloaded Something()s in terms of DoSomething() which will be the
750 // only one to be virtual.
752 // coordinates translation
753 virtual void DoClientToScreen( int *x
, int *y
) const = 0;
754 virtual void DoScreenToClient( int *x
, int *y
) const = 0;
756 // retrieve the position/size of the window
757 virtual void DoGetPosition( int *x
, int *y
) const = 0;
758 virtual void DoGetSize( int *width
, int *height
) const = 0;
759 virtual void DoGetClientSize( int *width
, int *height
) const = 0;
761 // this is the virtual function to be overriden in any derived class which
762 // wants to change how SetSize() or Move() works - it is called by all
763 // versions of these functions in the base class
764 virtual void DoSetSize(int x
, int y
,
765 int width
, int height
,
766 int sizeFlags
= wxSIZE_AUTO
) = 0;
768 // same as DoSetSize() for the client size
769 virtual void DoSetClientSize(int width
, int height
) = 0;
772 virtual void DoSetToolTip( wxToolTip
*tip
);
773 #endif // wxUSE_TOOLTIPS
776 // contains the last id generated by NewControlId
777 static int ms_lastControlId
;
779 DECLARE_NO_COPY_CLASS(wxWindowBase
);
780 DECLARE_EVENT_TABLE()
783 // ----------------------------------------------------------------------------
784 // now include the declaration of wxWindow class
785 // ----------------------------------------------------------------------------
787 #if defined(__WXMSW__)
788 #include "wx/msw/window.h"
789 #elif defined(__WXMOTIF__)
790 #include "wx/motif/window.h"
791 #elif defined(__WXGTK__)
792 #include "wx/gtk/window.h"
793 #elif defined(__WXQT__)
794 #include "wx/qt/window.h"
795 #elif defined(__WXMAC__)
796 #include "wx/mac/window.h"
799 // ----------------------------------------------------------------------------
800 // inline functions which couldn't be declared in the class body because of
801 // forward dependencies
802 // ----------------------------------------------------------------------------
804 inline wxWindow
*wxWindowBase::GetGrandParent() const
806 return m_parent
? m_parent
->GetParent() : (wxWindow
*)NULL
;
809 // ----------------------------------------------------------------------------
811 // ----------------------------------------------------------------------------
813 WXDLLEXPORT
extern wxWindow
* wxGetActiveWindow();
814 inline WXDLLEXPORT
int NewControlId() { return wxWindowBase::NewControlId(); }
817 // _WX_WINDOW_H_BASE_