1 /////////////////////////////////////////////////////////////////////////////
2 // Name: common/window.cpp
3 // Purpose: common (to all ports) wxWindow functions
4 // Author: Julian Smart, Vadim Zeitlin
8 // Copyright: (c) wxWidgets team
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
12 // ============================================================================
14 // ============================================================================
16 // ----------------------------------------------------------------------------
18 // ----------------------------------------------------------------------------
20 #if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
21 #pragma implementation "windowbase.h"
24 // For compilers that support precompilation, includes "wx.h".
25 #include "wx/wxprec.h"
32 #include "wx/string.h"
37 #include "wx/window.h"
38 #include "wx/control.h"
39 #include "wx/checkbox.h"
40 #include "wx/radiobut.h"
41 #include "wx/statbox.h"
42 #include "wx/textctrl.h"
43 #include "wx/settings.h"
44 #include "wx/dialog.h"
45 #include "wx/msgdlg.h"
46 #include "wx/statusbr.h"
47 #include "wx/dcclient.h"
50 #if defined(__WXMAC__) && wxUSE_SCROLLBAR
51 #include "wx/scrolbar.h"
55 #include "wx/layout.h"
56 #endif // wxUSE_CONSTRAINTS
60 #if wxUSE_DRAG_AND_DROP
62 #endif // wxUSE_DRAG_AND_DROP
64 #if wxUSE_ACCESSIBILITY
65 #include "wx/access.h"
69 #include "wx/cshelp.h"
73 #include "wx/tooltip.h"
74 #endif // wxUSE_TOOLTIPS
80 #if wxUSE_SYSTEM_OPTIONS
81 #include "wx/sysopt.h"
84 // ----------------------------------------------------------------------------
86 // ----------------------------------------------------------------------------
89 int wxWindowBase::ms_lastControlId
= 2000;
91 int wxWindowBase::ms_lastControlId
= -200;
94 IMPLEMENT_ABSTRACT_CLASS(wxWindowBase
, wxEvtHandler
)
96 // ----------------------------------------------------------------------------
98 // ----------------------------------------------------------------------------
100 BEGIN_EVENT_TABLE(wxWindowBase
, wxEvtHandler
)
101 EVT_SYS_COLOUR_CHANGED(wxWindowBase::OnSysColourChanged
)
102 EVT_INIT_DIALOG(wxWindowBase::OnInitDialog
)
103 EVT_MIDDLE_DOWN(wxWindowBase::OnMiddleClick
)
106 EVT_HELP(wxID_ANY
, wxWindowBase::OnHelp
)
111 // ============================================================================
112 // implementation of the common functionality of the wxWindow class
113 // ============================================================================
115 // ----------------------------------------------------------------------------
117 // ----------------------------------------------------------------------------
119 // the default initialization
120 wxWindowBase::wxWindowBase()
122 // no window yet, no parent nor children
123 m_parent
= (wxWindow
*)NULL
;
124 m_windowId
= wxID_ANY
;
126 // no constraints on the minimal window size
128 m_maxWidth
= wxDefaultCoord
;
130 m_maxHeight
= wxDefaultCoord
;
132 // invalidiated cache value
133 m_bestSizeCache
= wxDefaultSize
;
135 // window are created enabled and visible by default
139 // the default event handler is just this window
140 m_eventHandler
= this;
144 m_windowValidator
= (wxValidator
*) NULL
;
145 #endif // wxUSE_VALIDATORS
147 // the colours/fonts are default for now, so leave m_font,
148 // m_backgroundColour and m_foregroundColour uninitialized and set those
154 m_inheritFont
= false;
160 m_backgroundStyle
= wxBG_STYLE_SYSTEM
;
162 #if wxUSE_CONSTRAINTS
163 // no constraints whatsoever
164 m_constraints
= (wxLayoutConstraints
*) NULL
;
165 m_constraintsInvolvedIn
= (wxWindowList
*) NULL
;
166 #endif // wxUSE_CONSTRAINTS
168 m_windowSizer
= (wxSizer
*) NULL
;
169 m_containingSizer
= (wxSizer
*) NULL
;
170 m_autoLayout
= false;
172 #if wxUSE_DRAG_AND_DROP
173 m_dropTarget
= (wxDropTarget
*)NULL
;
174 #endif // wxUSE_DRAG_AND_DROP
177 m_tooltip
= (wxToolTip
*)NULL
;
178 #endif // wxUSE_TOOLTIPS
181 m_caret
= (wxCaret
*)NULL
;
182 #endif // wxUSE_CARET
185 m_hasCustomPalette
= false;
186 #endif // wxUSE_PALETTE
188 #if wxUSE_ACCESSIBILITY
192 m_virtualSize
= wxDefaultSize
;
195 m_maxVirtualWidth
= wxDefaultCoord
;
197 m_maxVirtualHeight
= wxDefaultCoord
;
199 m_windowVariant
= wxWINDOW_VARIANT_NORMAL
;
200 #if wxUSE_SYSTEM_OPTIONS
201 if ( wxSystemOptions::HasOption(wxWINDOW_DEFAULT_VARIANT
) )
203 m_windowVariant
= (wxWindowVariant
) wxSystemOptions::GetOptionInt( wxWINDOW_DEFAULT_VARIANT
) ;
207 // Whether we're using the current theme for this window (wxGTK only for now)
208 m_themeEnabled
= false;
210 // VZ: this one shouldn't exist...
211 m_isBeingDeleted
= false;
214 // common part of window creation process
215 bool wxWindowBase::CreateBase(wxWindowBase
*parent
,
217 const wxPoint
& WXUNUSED(pos
),
218 const wxSize
& WXUNUSED(size
),
220 const wxValidator
& wxVALIDATOR_PARAM(validator
),
221 const wxString
& name
)
224 // wxGTK doesn't allow to create controls with static box as the parent so
225 // this will result in a crash when the program is ported to wxGTK so warn
228 // if you get this assert, the correct solution is to create the controls
229 // as siblings of the static box
230 wxASSERT_MSG( !parent
|| !wxDynamicCast(parent
, wxStaticBox
),
231 _T("wxStaticBox can't be used as a window parent!") );
232 #endif // wxUSE_STATBOX
234 // ids are limited to 16 bits under MSW so if you care about portability,
235 // it's not a good idea to use ids out of this range (and negative ids are
236 // reserved for wxWidgets own usage)
237 wxASSERT_MSG( id
== wxID_ANY
|| (id
>= 0 && id
< 32767),
238 _T("invalid id value") );
240 // generate a new id if the user doesn't care about it
241 m_windowId
= id
== wxID_ANY
? NewControlId() : id
;
244 SetWindowStyleFlag(style
);
248 SetValidator(validator
);
249 #endif // wxUSE_VALIDATORS
251 // if the parent window has wxWS_EX_VALIDATE_RECURSIVELY set, we want to
252 // have it too - like this it's possible to set it only in the top level
253 // dialog/frame and all children will inherit it by defult
254 if ( parent
&& (parent
->GetExtraStyle() & wxWS_EX_VALIDATE_RECURSIVELY
) )
256 SetExtraStyle(GetExtraStyle() | wxWS_EX_VALIDATE_RECURSIVELY
);
262 // ----------------------------------------------------------------------------
264 // ----------------------------------------------------------------------------
267 wxWindowBase::~wxWindowBase()
269 wxASSERT_MSG( GetCapture() != this, wxT("attempt to destroy window with mouse capture") );
271 // FIXME if these 2 cases result from programming errors in the user code
272 // we should probably assert here instead of silently fixing them
274 // Just in case the window has been Closed, but we're then deleting
275 // immediately: don't leave dangling pointers.
276 wxPendingDelete
.DeleteObject(this);
278 // Just in case we've loaded a top-level window via LoadNativeDialog but
279 // we weren't a dialog class
280 wxTopLevelWindows
.DeleteObject((wxWindow
*)this);
282 wxASSERT_MSG( GetChildren().GetCount() == 0, wxT("children not destroyed") );
284 // reset the dangling pointer our parent window may keep to us
287 if ( m_parent
->GetDefaultItem() == this )
289 m_parent
->SetDefaultItem(NULL
);
292 m_parent
->RemoveChild(this);
297 #endif // wxUSE_CARET
300 delete m_windowValidator
;
301 #endif // wxUSE_VALIDATORS
303 #if wxUSE_CONSTRAINTS
304 // Have to delete constraints/sizer FIRST otherwise sizers may try to look
305 // at deleted windows as they delete themselves.
306 DeleteRelatedConstraints();
310 // This removes any dangling pointers to this window in other windows'
311 // constraintsInvolvedIn lists.
312 UnsetConstraints(m_constraints
);
313 delete m_constraints
;
314 m_constraints
= NULL
;
316 #endif // wxUSE_CONSTRAINTS
318 if ( m_containingSizer
)
319 m_containingSizer
->Detach( (wxWindow
*)this );
321 delete m_windowSizer
;
323 #if wxUSE_DRAG_AND_DROP
325 #endif // wxUSE_DRAG_AND_DROP
329 #endif // wxUSE_TOOLTIPS
331 #if wxUSE_ACCESSIBILITY
336 bool wxWindowBase::Destroy()
343 bool wxWindowBase::Close(bool force
)
345 wxCloseEvent
event(wxEVT_CLOSE_WINDOW
, m_windowId
);
346 event
.SetEventObject(this);
347 event
.SetCanVeto(!force
);
349 // return false if window wasn't closed because the application vetoed the
351 return GetEventHandler()->ProcessEvent(event
) && !event
.GetVeto();
354 bool wxWindowBase::DestroyChildren()
356 wxWindowList::compatibility_iterator node
;
359 // we iterate until the list becomes empty
360 node
= GetChildren().GetFirst();
364 wxWindow
*child
= node
->GetData();
366 // note that we really want to call delete and not ->Destroy() here
367 // because we want to delete the child immediately, before we are
368 // deleted, and delayed deletion would result in problems as our (top
369 // level) child could outlive its parent
372 wxASSERT_MSG( !GetChildren().Find(child
),
373 wxT("child didn't remove itself using RemoveChild()") );
379 // ----------------------------------------------------------------------------
380 // size/position related methods
381 // ----------------------------------------------------------------------------
383 // centre the window with respect to its parent in either (or both) directions
384 void wxWindowBase::Centre(int direction
)
386 // the position/size of the parent window or of the entire screen
388 int widthParent
, heightParent
;
390 wxWindow
*parent
= NULL
;
391 wxTopLevelWindow
*winTop
= NULL
;
393 if ( !(direction
& wxCENTRE_ON_SCREEN
) )
395 // find the parent to centre this window on: it should be the
396 // immediate parent for the controls but the top level parent for the
397 // top level windows (like dialogs)
398 parent
= GetParent();
401 while ( parent
&& !parent
->IsTopLevel() )
403 parent
= parent
->GetParent();
407 // there is no wxTopLevelWindow under wxMotif yet
409 // we shouldn't center the dialog on the iconized window: under
410 // Windows, for example, this places it completely off the screen
413 winTop
= wxDynamicCast(parent
, wxTopLevelWindow
);
414 if ( winTop
&& winTop
->IsIconized() )
420 #endif // __WXMOTIF__
422 // did we find the parent?
426 direction
|= wxCENTRE_ON_SCREEN
;
430 if ( direction
& wxCENTRE_ON_SCREEN
)
432 // centre with respect to the whole screen
433 wxDisplaySize(&widthParent
, &heightParent
);
440 winTop
->GetRectForTopLevelChildren(&posParent
.x
, &posParent
.y
, &widthParent
, &heightParent
);
443 // centre on the parent
444 parent
->GetSize(&widthParent
, &heightParent
);
446 // adjust to the parents position
447 posParent
= parent
->GetPosition();
452 // centre inside the parents client rectangle
453 parent
->GetClientSize(&widthParent
, &heightParent
);
458 GetSize(&width
, &height
);
460 int xNew
= wxDefaultCoord
,
461 yNew
= wxDefaultCoord
;
463 if ( direction
& wxHORIZONTAL
)
464 xNew
= (widthParent
- width
)/2;
466 if ( direction
& wxVERTICAL
)
467 yNew
= (heightParent
- height
)/2;
472 // Base size of the visible dimensions of the display
473 // to take into account the taskbar. And the Mac menu bar at top.
474 wxRect clientrect
= wxGetClientDisplayRect();
476 // NB: in wxMSW, negative position may not neccessary mean "out of screen",
477 // but it may mean that the window is placed on other than the main
478 // display. Therefore we only make sure centered window is on the main display
479 // if the parent is at least partially present here.
480 if (posParent
.x
+ widthParent
>= 0) // if parent is (partially) on the main display
482 if (xNew
< clientrect
.GetLeft())
483 xNew
= clientrect
.GetLeft();
484 else if (xNew
+ width
> clientrect
.GetRight())
485 xNew
= clientrect
.GetRight() - width
;
487 if (posParent
.y
+ heightParent
>= 0) // if parent is (partially) on the main display
489 if (yNew
+ height
> clientrect
.GetBottom())
490 yNew
= clientrect
.GetBottom() - height
;
492 // Make certain that the title bar is initially visible
493 // always, even if this would push the bottom of the
494 // dialog off the visible area of the display
495 if (yNew
< clientrect
.GetTop())
496 yNew
= clientrect
.GetTop();
499 // move the window to this position (keeping the old size but using
500 // SetSize() and not Move() to allow xNew and/or yNew to be wxDefaultCoord)
501 SetSize(xNew
, yNew
, width
, height
, wxSIZE_ALLOW_MINUS_ONE
);
504 // fits the window around the children
505 void wxWindowBase::Fit()
507 if ( GetChildren().GetCount() > 0 )
509 SetClientSize(GetBestSize());
511 //else: do nothing if we have no children
514 // fits virtual size (ie. scrolled area etc.) around children
515 void wxWindowBase::FitInside()
517 if ( GetChildren().GetCount() > 0 )
519 SetVirtualSize( GetBestVirtualSize() );
523 // On Mac, scrollbars are explicitly children.
525 static bool wxHasRealChildren(const wxWindowBase
* win
)
527 int realChildCount
= 0;
529 for ( wxWindowList::compatibility_iterator node
= win
->GetChildren().GetFirst();
531 node
= node
->GetNext() )
533 wxWindow
*win
= node
->GetData();
534 if ( !win
->IsTopLevel() && win
->IsShown() && !win
->IsKindOf(CLASSINFO(wxScrollBar
)))
537 return (realChildCount
> 0);
541 void wxWindowBase::InvalidateBestSize()
543 m_bestSizeCache
= wxDefaultSize
;
545 // parent's best size calculation may depend on its children's
546 // best sizes, so let's invalidate it as well to be safe:
548 m_parent
->InvalidateBestSize();
551 // return the size best suited for the current window
552 wxSize
wxWindowBase::DoGetBestSize() const
556 return m_windowSizer
->GetMinSize();
558 #if wxUSE_CONSTRAINTS
559 else if ( m_constraints
)
561 wxConstCast(this, wxWindowBase
)->SatisfyConstraints();
563 // our minimal acceptable size is such that all our windows fit inside
567 for ( wxWindowList::compatibility_iterator node
= GetChildren().GetFirst();
569 node
= node
->GetNext() )
571 wxLayoutConstraints
*c
= node
->GetData()->GetConstraints();
574 // it's not normal that we have an unconstrained child, but
575 // what can we do about it?
579 int x
= c
->right
.GetValue(),
580 y
= c
->bottom
.GetValue();
588 // TODO: we must calculate the overlaps somehow, otherwise we
589 // will never return a size bigger than the current one :-(
592 return wxSize(maxX
, maxY
);
594 #endif // wxUSE_CONSTRAINTS
595 else if ( !GetChildren().empty()
597 && wxHasRealChildren(this)
601 // our minimal acceptable size is such that all our visible child windows fit inside
605 for ( wxWindowList::compatibility_iterator node
= GetChildren().GetFirst();
607 node
= node
->GetNext() )
609 wxWindow
*win
= node
->GetData();
610 if ( win
->IsTopLevel() || ( ! win
->IsShown() )
612 || wxDynamicCast(win
, wxStatusBar
)
613 #endif // wxUSE_STATUSBAR
616 // dialogs and frames lie in different top level windows -
617 // don't deal with them here; as for the status bars, they
618 // don't lie in the client area at all
623 win
->GetPosition(&wx
, &wy
);
625 // if the window hadn't been positioned yet, assume that it is in
627 if ( wx
== wxDefaultCoord
)
629 if ( wy
== wxDefaultCoord
)
632 win
->GetSize(&ww
, &wh
);
633 if ( wx
+ ww
> maxX
)
635 if ( wy
+ wh
> maxY
)
639 // for compatibility with the old versions and because it really looks
640 // slightly more pretty like this, add a pad
644 return wxSize(maxX
, maxY
);
646 else // ! has children
648 // for a generic window there is no natural best size - just use either the
649 // minimum size if there is one, or the current size
650 if ( GetMinSize().IsFullySpecified() )
658 wxSize
wxWindowBase::GetBestFittingSize() const
660 // merge the best size with the min size, giving priority to the min size
661 wxSize min
= GetMinSize();
662 if (min
.x
== wxDefaultCoord
|| min
.y
== wxDefaultCoord
)
664 wxSize best
= GetBestSize();
665 if (min
.x
== wxDefaultCoord
) min
.x
= best
.x
;
666 if (min
.y
== wxDefaultCoord
) min
.y
= best
.y
;
672 void wxWindowBase::SetBestFittingSize(const wxSize
& size
)
674 // Set the min size to the size passed in. This will usually either be
675 // wxDefaultSize or the size passed to this window's ctor/Create function.
678 // Merge the size with the best size if needed
679 wxSize best
= GetBestFittingSize();
681 // If the current size doesn't match then change it
682 if (GetSize() != best
)
687 // by default the origin is not shifted
688 wxPoint
wxWindowBase::GetClientAreaOrigin() const
690 return wxPoint(0, 0);
693 // set the min/max size of the window
694 void wxWindowBase::DoSetSizeHints(int minW
, int minH
,
696 int WXUNUSED(incW
), int WXUNUSED(incH
))
698 // setting min width greater than max width leads to infinite loops under
699 // X11 and generally doesn't make any sense, so don't allow it
700 wxCHECK_RET( (minW
== wxDefaultCoord
|| maxW
== wxDefaultCoord
|| minW
<= maxW
) &&
701 (minH
== wxDefaultCoord
|| maxH
== wxDefaultCoord
|| minH
<= maxH
),
702 _T("min width/height must be less than max width/height!") );
710 void wxWindowBase::SetWindowVariant( wxWindowVariant variant
)
712 if ( m_windowVariant
!= variant
)
714 m_windowVariant
= variant
;
716 DoSetWindowVariant(variant
);
720 void wxWindowBase::DoSetWindowVariant( wxWindowVariant variant
)
722 // adjust the font height to correspond to our new variant (notice that
723 // we're only called if something really changed)
724 wxFont font
= GetFont();
725 int size
= font
.GetPointSize();
728 case wxWINDOW_VARIANT_NORMAL
:
731 case wxWINDOW_VARIANT_SMALL
:
736 case wxWINDOW_VARIANT_MINI
:
741 case wxWINDOW_VARIANT_LARGE
:
747 wxFAIL_MSG(_T("unexpected window variant"));
751 font
.SetPointSize(size
);
755 void wxWindowBase::SetVirtualSizeHints( int minW
, int minH
,
758 m_minVirtualWidth
= minW
;
759 m_maxVirtualWidth
= maxW
;
760 m_minVirtualHeight
= minH
;
761 m_maxVirtualHeight
= maxH
;
764 void wxWindowBase::DoSetVirtualSize( int x
, int y
)
766 if ( m_minVirtualWidth
!= wxDefaultCoord
&& m_minVirtualWidth
> x
)
767 x
= m_minVirtualWidth
;
768 if ( m_maxVirtualWidth
!= wxDefaultCoord
&& m_maxVirtualWidth
< x
)
769 x
= m_maxVirtualWidth
;
770 if ( m_minVirtualHeight
!= wxDefaultCoord
&& m_minVirtualHeight
> y
)
771 y
= m_minVirtualHeight
;
772 if ( m_maxVirtualHeight
!= wxDefaultCoord
&& m_maxVirtualHeight
< y
)
773 y
= m_maxVirtualHeight
;
775 m_virtualSize
= wxSize(x
, y
);
778 wxSize
wxWindowBase::DoGetVirtualSize() const
780 wxSize
s( GetClientSize() );
782 return wxSize( wxMax( m_virtualSize
.GetWidth(), s
.GetWidth() ),
783 wxMax( m_virtualSize
.GetHeight(), s
.GetHeight() ) );
786 // ----------------------------------------------------------------------------
787 // show/hide/enable/disable the window
788 // ----------------------------------------------------------------------------
790 bool wxWindowBase::Show(bool show
)
792 if ( show
!= m_isShown
)
804 bool wxWindowBase::Enable(bool enable
)
806 if ( enable
!= m_isEnabled
)
808 m_isEnabled
= enable
;
817 // ----------------------------------------------------------------------------
819 // ----------------------------------------------------------------------------
821 bool wxWindowBase::IsTopLevel() const
826 // ----------------------------------------------------------------------------
827 // reparenting the window
828 // ----------------------------------------------------------------------------
830 void wxWindowBase::AddChild(wxWindowBase
*child
)
832 wxCHECK_RET( child
, wxT("can't add a NULL child") );
834 // this should never happen and it will lead to a crash later if it does
835 // because RemoveChild() will remove only one node from the children list
836 // and the other(s) one(s) will be left with dangling pointers in them
837 wxASSERT_MSG( !GetChildren().Find((wxWindow
*)child
), _T("AddChild() called twice") );
839 GetChildren().Append((wxWindow
*)child
);
840 child
->SetParent(this);
843 void wxWindowBase::RemoveChild(wxWindowBase
*child
)
845 wxCHECK_RET( child
, wxT("can't remove a NULL child") );
847 GetChildren().DeleteObject((wxWindow
*)child
);
848 child
->SetParent(NULL
);
851 bool wxWindowBase::Reparent(wxWindowBase
*newParent
)
853 wxWindow
*oldParent
= GetParent();
854 if ( newParent
== oldParent
)
860 // unlink this window from the existing parent.
863 oldParent
->RemoveChild(this);
867 wxTopLevelWindows
.DeleteObject((wxWindow
*)this);
870 // add it to the new one
873 newParent
->AddChild(this);
877 wxTopLevelWindows
.Append((wxWindow
*)this);
883 // ----------------------------------------------------------------------------
884 // event handler stuff
885 // ----------------------------------------------------------------------------
887 void wxWindowBase::PushEventHandler(wxEvtHandler
*handler
)
889 wxEvtHandler
*handlerOld
= GetEventHandler();
891 handler
->SetNextHandler(handlerOld
);
894 GetEventHandler()->SetPreviousHandler(handler
);
896 SetEventHandler(handler
);
899 wxEvtHandler
*wxWindowBase::PopEventHandler(bool deleteHandler
)
901 wxEvtHandler
*handlerA
= GetEventHandler();
904 wxEvtHandler
*handlerB
= handlerA
->GetNextHandler();
905 handlerA
->SetNextHandler((wxEvtHandler
*)NULL
);
908 handlerB
->SetPreviousHandler((wxEvtHandler
*)NULL
);
909 SetEventHandler(handlerB
);
914 handlerA
= (wxEvtHandler
*)NULL
;
921 bool wxWindowBase::RemoveEventHandler(wxEvtHandler
*handler
)
923 wxCHECK_MSG( handler
, false, _T("RemoveEventHandler(NULL) called") );
925 wxEvtHandler
*handlerPrev
= NULL
,
926 *handlerCur
= GetEventHandler();
929 wxEvtHandler
*handlerNext
= handlerCur
->GetNextHandler();
931 if ( handlerCur
== handler
)
935 handlerPrev
->SetNextHandler(handlerNext
);
939 SetEventHandler(handlerNext
);
944 handlerNext
->SetPreviousHandler ( handlerPrev
);
947 handler
->SetNextHandler(NULL
);
948 handler
->SetPreviousHandler(NULL
);
953 handlerPrev
= handlerCur
;
954 handlerCur
= handlerNext
;
957 wxFAIL_MSG( _T("where has the event handler gone?") );
962 // ----------------------------------------------------------------------------
964 // ----------------------------------------------------------------------------
966 void wxWindowBase::InheritAttributes()
968 const wxWindowBase
* const parent
= GetParent();
972 // we only inherit attributes which had been explicitly set for the parent
973 // which ensures that this only happens if the user really wants it and
974 // not by default which wouldn't make any sense in modern GUIs where the
975 // controls don't all use the same fonts (nor colours)
976 if ( parent
->m_inheritFont
&& !m_hasFont
)
977 SetFont(parent
->GetFont());
979 // in addition, there is a possibility to explicitly forbid inheriting
980 // colours at each class level by overriding ShouldInheritColours()
981 if ( ShouldInheritColours() )
983 if ( parent
->m_inheritFgCol
&& !m_hasFgCol
)
984 SetForegroundColour(parent
->GetForegroundColour());
986 // inheriting (solid) background colour is wrong as it totally breaks
987 // any kind of themed backgrounds
989 // instead, the controls should use the same background as their parent
990 // (ideally by not drawing it at all)
992 if ( parent
->m_inheritBgCol
&& !m_hasBgCol
)
993 SetBackgroundColour(parent
->GetBackgroundColour());
998 /* static */ wxVisualAttributes
999 wxWindowBase::GetClassDefaultAttributes(wxWindowVariant
WXUNUSED(variant
))
1001 // it is important to return valid values for all attributes from here,
1002 // GetXXX() below rely on this
1003 wxVisualAttributes attrs
;
1004 attrs
.font
= wxSystemSettings::GetFont(wxSYS_DEFAULT_GUI_FONT
);
1005 attrs
.colFg
= wxSystemSettings::GetColour(wxSYS_COLOUR_WINDOWTEXT
);
1006 attrs
.colBg
= wxSystemSettings::GetColour(wxSYS_COLOUR_BTNFACE
);
1011 wxColour
wxWindowBase::GetBackgroundColour() const
1013 if ( !m_backgroundColour
.Ok() )
1015 wxASSERT_MSG( !m_hasBgCol
, _T("we have invalid explicit bg colour?") );
1017 // get our default background colour
1018 wxColour colBg
= GetDefaultAttributes().colBg
;
1020 // we must return some valid colour to avoid redoing this every time
1021 // and also to avoid surprizing the applications written for older
1022 // wxWidgets versions where GetBackgroundColour() always returned
1023 // something -- so give them something even if it doesn't make sense
1024 // for this window (e.g. it has a themed background)
1026 colBg
= GetClassDefaultAttributes().colBg
;
1031 return m_backgroundColour
;
1034 wxColour
wxWindowBase::GetForegroundColour() const
1036 // logic is the same as above
1037 if ( !m_hasFgCol
&& !m_foregroundColour
.Ok() )
1039 wxASSERT_MSG( !m_hasFgCol
, _T("we have invalid explicit fg colour?") );
1041 wxColour colFg
= GetDefaultAttributes().colFg
;
1044 colFg
= GetClassDefaultAttributes().colFg
;
1049 return m_foregroundColour
;
1052 bool wxWindowBase::SetBackgroundColour( const wxColour
&colour
)
1054 if ( colour
== m_backgroundColour
)
1057 m_hasBgCol
= colour
.Ok();
1058 if ( m_backgroundStyle
!= wxBG_STYLE_CUSTOM
)
1059 m_backgroundStyle
= m_hasBgCol
? wxBG_STYLE_COLOUR
: wxBG_STYLE_SYSTEM
;
1061 m_inheritBgCol
= m_hasBgCol
;
1062 m_backgroundColour
= colour
;
1063 SetThemeEnabled( !m_hasBgCol
&& !m_foregroundColour
.Ok() );
1067 bool wxWindowBase::SetForegroundColour( const wxColour
&colour
)
1069 if (colour
== m_foregroundColour
)
1072 m_hasFgCol
= colour
.Ok();
1073 m_inheritFgCol
= m_hasFgCol
;
1074 m_foregroundColour
= colour
;
1075 SetThemeEnabled( !m_hasFgCol
&& !m_backgroundColour
.Ok() );
1079 bool wxWindowBase::SetCursor(const wxCursor
& cursor
)
1081 // setting an invalid cursor is ok, it means that we don't have any special
1083 if ( m_cursor
== cursor
)
1094 wxFont
wxWindowBase::GetFont() const
1096 // logic is the same as in GetBackgroundColour()
1099 wxASSERT_MSG( !m_hasFont
, _T("we have invalid explicit font?") );
1101 wxFont font
= GetDefaultAttributes().font
;
1103 font
= GetClassDefaultAttributes().font
;
1111 bool wxWindowBase::SetFont(const wxFont
& font
)
1113 if ( font
== m_font
)
1120 m_hasFont
= font
.Ok();
1121 m_inheritFont
= m_hasFont
;
1123 InvalidateBestSize();
1130 void wxWindowBase::SetPalette(const wxPalette
& pal
)
1132 m_hasCustomPalette
= true;
1135 // VZ: can anyone explain me what do we do here?
1136 wxWindowDC
d((wxWindow
*) this);
1140 wxWindow
*wxWindowBase::GetAncestorWithCustomPalette() const
1142 wxWindow
*win
= (wxWindow
*)this;
1143 while ( win
&& !win
->HasCustomPalette() )
1145 win
= win
->GetParent();
1151 #endif // wxUSE_PALETTE
1154 void wxWindowBase::SetCaret(wxCaret
*caret
)
1165 wxASSERT_MSG( m_caret
->GetWindow() == this,
1166 wxT("caret should be created associated to this window") );
1169 #endif // wxUSE_CARET
1171 #if wxUSE_VALIDATORS
1172 // ----------------------------------------------------------------------------
1174 // ----------------------------------------------------------------------------
1176 void wxWindowBase::SetValidator(const wxValidator
& validator
)
1178 if ( m_windowValidator
)
1179 delete m_windowValidator
;
1181 m_windowValidator
= (wxValidator
*)validator
.Clone();
1183 if ( m_windowValidator
)
1184 m_windowValidator
->SetWindow(this);
1186 #endif // wxUSE_VALIDATORS
1188 // ----------------------------------------------------------------------------
1189 // update region stuff
1190 // ----------------------------------------------------------------------------
1192 wxRect
wxWindowBase::GetUpdateClientRect() const
1194 wxRegion rgnUpdate
= GetUpdateRegion();
1195 rgnUpdate
.Intersect(GetClientRect());
1196 wxRect rectUpdate
= rgnUpdate
.GetBox();
1197 wxPoint ptOrigin
= GetClientAreaOrigin();
1198 rectUpdate
.x
-= ptOrigin
.x
;
1199 rectUpdate
.y
-= ptOrigin
.y
;
1204 bool wxWindowBase::IsExposed(int x
, int y
) const
1206 return m_updateRegion
.Contains(x
, y
) != wxOutRegion
;
1209 bool wxWindowBase::IsExposed(int x
, int y
, int w
, int h
) const
1211 return m_updateRegion
.Contains(x
, y
, w
, h
) != wxOutRegion
;
1214 void wxWindowBase::ClearBackground()
1216 // wxGTK uses its own version, no need to add never used code
1218 wxClientDC
dc((wxWindow
*)this);
1219 wxBrush
brush(GetBackgroundColour(), wxSOLID
);
1220 dc
.SetBackground(brush
);
1225 // ----------------------------------------------------------------------------
1226 // find child window by id or name
1227 // ----------------------------------------------------------------------------
1229 wxWindow
*wxWindowBase::FindWindow(long id
) const
1231 if ( id
== m_windowId
)
1232 return (wxWindow
*)this;
1234 wxWindowBase
*res
= (wxWindow
*)NULL
;
1235 wxWindowList::compatibility_iterator node
;
1236 for ( node
= m_children
.GetFirst(); node
&& !res
; node
= node
->GetNext() )
1238 wxWindowBase
*child
= node
->GetData();
1239 res
= child
->FindWindow( id
);
1242 return (wxWindow
*)res
;
1245 wxWindow
*wxWindowBase::FindWindow(const wxString
& name
) const
1247 if ( name
== m_windowName
)
1248 return (wxWindow
*)this;
1250 wxWindowBase
*res
= (wxWindow
*)NULL
;
1251 wxWindowList::compatibility_iterator node
;
1252 for ( node
= m_children
.GetFirst(); node
&& !res
; node
= node
->GetNext() )
1254 wxWindow
*child
= node
->GetData();
1255 res
= child
->FindWindow(name
);
1258 return (wxWindow
*)res
;
1262 // find any window by id or name or label: If parent is non-NULL, look through
1263 // children for a label or title matching the specified string. If NULL, look
1264 // through all top-level windows.
1266 // to avoid duplicating code we reuse the same helper function but with
1267 // different comparators
1269 typedef bool (*wxFindWindowCmp
)(const wxWindow
*win
,
1270 const wxString
& label
, long id
);
1273 bool wxFindWindowCmpLabels(const wxWindow
*win
, const wxString
& label
,
1276 return win
->GetLabel() == label
;
1280 bool wxFindWindowCmpNames(const wxWindow
*win
, const wxString
& label
,
1283 return win
->GetName() == label
;
1287 bool wxFindWindowCmpIds(const wxWindow
*win
, const wxString
& WXUNUSED(label
),
1290 return win
->GetId() == id
;
1293 // recursive helper for the FindWindowByXXX() functions
1295 wxWindow
*wxFindWindowRecursively(const wxWindow
*parent
,
1296 const wxString
& label
,
1298 wxFindWindowCmp cmp
)
1302 // see if this is the one we're looking for
1303 if ( (*cmp
)(parent
, label
, id
) )
1304 return (wxWindow
*)parent
;
1306 // It wasn't, so check all its children
1307 for ( wxWindowList::compatibility_iterator node
= parent
->GetChildren().GetFirst();
1309 node
= node
->GetNext() )
1311 // recursively check each child
1312 wxWindow
*win
= (wxWindow
*)node
->GetData();
1313 wxWindow
*retwin
= wxFindWindowRecursively(win
, label
, id
, cmp
);
1323 // helper for FindWindowByXXX()
1325 wxWindow
*wxFindWindowHelper(const wxWindow
*parent
,
1326 const wxString
& label
,
1328 wxFindWindowCmp cmp
)
1332 // just check parent and all its children
1333 return wxFindWindowRecursively(parent
, label
, id
, cmp
);
1336 // start at very top of wx's windows
1337 for ( wxWindowList::compatibility_iterator node
= wxTopLevelWindows
.GetFirst();
1339 node
= node
->GetNext() )
1341 // recursively check each window & its children
1342 wxWindow
*win
= node
->GetData();
1343 wxWindow
*retwin
= wxFindWindowRecursively(win
, label
, id
, cmp
);
1353 wxWindowBase::FindWindowByLabel(const wxString
& title
, const wxWindow
*parent
)
1355 return wxFindWindowHelper(parent
, title
, 0, wxFindWindowCmpLabels
);
1360 wxWindowBase::FindWindowByName(const wxString
& title
, const wxWindow
*parent
)
1362 wxWindow
*win
= wxFindWindowHelper(parent
, title
, 0, wxFindWindowCmpNames
);
1366 // fall back to the label
1367 win
= FindWindowByLabel(title
, parent
);
1375 wxWindowBase::FindWindowById( long id
, const wxWindow
* parent
)
1377 return wxFindWindowHelper(parent
, _T(""), id
, wxFindWindowCmpIds
);
1380 // ----------------------------------------------------------------------------
1381 // dialog oriented functions
1382 // ----------------------------------------------------------------------------
1384 void wxWindowBase::MakeModal(bool modal
)
1386 // Disable all other windows
1389 wxWindowList::compatibility_iterator node
= wxTopLevelWindows
.GetFirst();
1392 wxWindow
*win
= node
->GetData();
1394 win
->Enable(!modal
);
1396 node
= node
->GetNext();
1401 bool wxWindowBase::Validate()
1403 #if wxUSE_VALIDATORS
1404 bool recurse
= (GetExtraStyle() & wxWS_EX_VALIDATE_RECURSIVELY
) != 0;
1406 wxWindowList::compatibility_iterator node
;
1407 for ( node
= m_children
.GetFirst(); node
; node
= node
->GetNext() )
1409 wxWindowBase
*child
= node
->GetData();
1410 wxValidator
*validator
= child
->GetValidator();
1411 if ( validator
&& !validator
->Validate((wxWindow
*)this) )
1416 if ( recurse
&& !child
->Validate() )
1421 #endif // wxUSE_VALIDATORS
1426 bool wxWindowBase::TransferDataToWindow()
1428 #if wxUSE_VALIDATORS
1429 bool recurse
= (GetExtraStyle() & wxWS_EX_VALIDATE_RECURSIVELY
) != 0;
1431 wxWindowList::compatibility_iterator node
;
1432 for ( node
= m_children
.GetFirst(); node
; node
= node
->GetNext() )
1434 wxWindowBase
*child
= node
->GetData();
1435 wxValidator
*validator
= child
->GetValidator();
1436 if ( validator
&& !validator
->TransferToWindow() )
1438 wxLogWarning(_("Could not transfer data to window"));
1440 wxLog::FlushActive();
1448 if ( !child
->TransferDataToWindow() )
1450 // warning already given
1455 #endif // wxUSE_VALIDATORS
1460 bool wxWindowBase::TransferDataFromWindow()
1462 #if wxUSE_VALIDATORS
1463 bool recurse
= (GetExtraStyle() & wxWS_EX_VALIDATE_RECURSIVELY
) != 0;
1465 wxWindowList::compatibility_iterator node
;
1466 for ( node
= m_children
.GetFirst(); node
; node
= node
->GetNext() )
1468 wxWindow
*child
= node
->GetData();
1469 wxValidator
*validator
= child
->GetValidator();
1470 if ( validator
&& !validator
->TransferFromWindow() )
1472 // nop warning here because the application is supposed to give
1473 // one itself - we don't know here what might have gone wrongly
1480 if ( !child
->TransferDataFromWindow() )
1482 // warning already given
1487 #endif // wxUSE_VALIDATORS
1492 void wxWindowBase::InitDialog()
1494 wxInitDialogEvent
event(GetId());
1495 event
.SetEventObject( this );
1496 GetEventHandler()->ProcessEvent(event
);
1499 // ----------------------------------------------------------------------------
1500 // context-sensitive help support
1501 // ----------------------------------------------------------------------------
1505 // associate this help text with this window
1506 void wxWindowBase::SetHelpText(const wxString
& text
)
1508 wxHelpProvider
*helpProvider
= wxHelpProvider::Get();
1511 helpProvider
->AddHelp(this, text
);
1515 // associate this help text with all windows with the same id as this
1517 void wxWindowBase::SetHelpTextForId(const wxString
& text
)
1519 wxHelpProvider
*helpProvider
= wxHelpProvider::Get();
1522 helpProvider
->AddHelp(GetId(), text
);
1526 // get the help string associated with this window (may be empty)
1527 wxString
wxWindowBase::GetHelpText() const
1530 wxHelpProvider
*helpProvider
= wxHelpProvider::Get();
1533 text
= helpProvider
->GetHelp(this);
1539 // show help for this window
1540 void wxWindowBase::OnHelp(wxHelpEvent
& event
)
1542 wxHelpProvider
*helpProvider
= wxHelpProvider::Get();
1545 if ( helpProvider
->ShowHelp(this) )
1547 // skip the event.Skip() below
1555 #endif // wxUSE_HELP
1557 // ----------------------------------------------------------------------------
1558 // tooltipsroot.Replace("\\", "/");
1559 // ----------------------------------------------------------------------------
1563 void wxWindowBase::SetToolTip( const wxString
&tip
)
1565 // don't create the new tooltip if we already have one
1568 m_tooltip
->SetTip( tip
);
1572 SetToolTip( new wxToolTip( tip
) );
1575 // setting empty tooltip text does not remove the tooltip any more - use
1576 // SetToolTip((wxToolTip *)NULL) for this
1579 void wxWindowBase::DoSetToolTip(wxToolTip
*tooltip
)
1584 m_tooltip
= tooltip
;
1587 #endif // wxUSE_TOOLTIPS
1589 // ----------------------------------------------------------------------------
1590 // constraints and sizers
1591 // ----------------------------------------------------------------------------
1593 #if wxUSE_CONSTRAINTS
1595 void wxWindowBase::SetConstraints( wxLayoutConstraints
*constraints
)
1597 if ( m_constraints
)
1599 UnsetConstraints(m_constraints
);
1600 delete m_constraints
;
1602 m_constraints
= constraints
;
1603 if ( m_constraints
)
1605 // Make sure other windows know they're part of a 'meaningful relationship'
1606 if ( m_constraints
->left
.GetOtherWindow() && (m_constraints
->left
.GetOtherWindow() != this) )
1607 m_constraints
->left
.GetOtherWindow()->AddConstraintReference(this);
1608 if ( m_constraints
->top
.GetOtherWindow() && (m_constraints
->top
.GetOtherWindow() != this) )
1609 m_constraints
->top
.GetOtherWindow()->AddConstraintReference(this);
1610 if ( m_constraints
->right
.GetOtherWindow() && (m_constraints
->right
.GetOtherWindow() != this) )
1611 m_constraints
->right
.GetOtherWindow()->AddConstraintReference(this);
1612 if ( m_constraints
->bottom
.GetOtherWindow() && (m_constraints
->bottom
.GetOtherWindow() != this) )
1613 m_constraints
->bottom
.GetOtherWindow()->AddConstraintReference(this);
1614 if ( m_constraints
->width
.GetOtherWindow() && (m_constraints
->width
.GetOtherWindow() != this) )
1615 m_constraints
->width
.GetOtherWindow()->AddConstraintReference(this);
1616 if ( m_constraints
->height
.GetOtherWindow() && (m_constraints
->height
.GetOtherWindow() != this) )
1617 m_constraints
->height
.GetOtherWindow()->AddConstraintReference(this);
1618 if ( m_constraints
->centreX
.GetOtherWindow() && (m_constraints
->centreX
.GetOtherWindow() != this) )
1619 m_constraints
->centreX
.GetOtherWindow()->AddConstraintReference(this);
1620 if ( m_constraints
->centreY
.GetOtherWindow() && (m_constraints
->centreY
.GetOtherWindow() != this) )
1621 m_constraints
->centreY
.GetOtherWindow()->AddConstraintReference(this);
1625 // This removes any dangling pointers to this window in other windows'
1626 // constraintsInvolvedIn lists.
1627 void wxWindowBase::UnsetConstraints(wxLayoutConstraints
*c
)
1631 if ( c
->left
.GetOtherWindow() && (c
->top
.GetOtherWindow() != this) )
1632 c
->left
.GetOtherWindow()->RemoveConstraintReference(this);
1633 if ( c
->top
.GetOtherWindow() && (c
->top
.GetOtherWindow() != this) )
1634 c
->top
.GetOtherWindow()->RemoveConstraintReference(this);
1635 if ( c
->right
.GetOtherWindow() && (c
->right
.GetOtherWindow() != this) )
1636 c
->right
.GetOtherWindow()->RemoveConstraintReference(this);
1637 if ( c
->bottom
.GetOtherWindow() && (c
->bottom
.GetOtherWindow() != this) )
1638 c
->bottom
.GetOtherWindow()->RemoveConstraintReference(this);
1639 if ( c
->width
.GetOtherWindow() && (c
->width
.GetOtherWindow() != this) )
1640 c
->width
.GetOtherWindow()->RemoveConstraintReference(this);
1641 if ( c
->height
.GetOtherWindow() && (c
->height
.GetOtherWindow() != this) )
1642 c
->height
.GetOtherWindow()->RemoveConstraintReference(this);
1643 if ( c
->centreX
.GetOtherWindow() && (c
->centreX
.GetOtherWindow() != this) )
1644 c
->centreX
.GetOtherWindow()->RemoveConstraintReference(this);
1645 if ( c
->centreY
.GetOtherWindow() && (c
->centreY
.GetOtherWindow() != this) )
1646 c
->centreY
.GetOtherWindow()->RemoveConstraintReference(this);
1650 // Back-pointer to other windows we're involved with, so if we delete this
1651 // window, we must delete any constraints we're involved with.
1652 void wxWindowBase::AddConstraintReference(wxWindowBase
*otherWin
)
1654 if ( !m_constraintsInvolvedIn
)
1655 m_constraintsInvolvedIn
= new wxWindowList
;
1656 if ( !m_constraintsInvolvedIn
->Find((wxWindow
*)otherWin
) )
1657 m_constraintsInvolvedIn
->Append((wxWindow
*)otherWin
);
1660 // REMOVE back-pointer to other windows we're involved with.
1661 void wxWindowBase::RemoveConstraintReference(wxWindowBase
*otherWin
)
1663 if ( m_constraintsInvolvedIn
)
1664 m_constraintsInvolvedIn
->DeleteObject((wxWindow
*)otherWin
);
1667 // Reset any constraints that mention this window
1668 void wxWindowBase::DeleteRelatedConstraints()
1670 if ( m_constraintsInvolvedIn
)
1672 wxWindowList::compatibility_iterator node
= m_constraintsInvolvedIn
->GetFirst();
1675 wxWindow
*win
= node
->GetData();
1676 wxLayoutConstraints
*constr
= win
->GetConstraints();
1678 // Reset any constraints involving this window
1681 constr
->left
.ResetIfWin(this);
1682 constr
->top
.ResetIfWin(this);
1683 constr
->right
.ResetIfWin(this);
1684 constr
->bottom
.ResetIfWin(this);
1685 constr
->width
.ResetIfWin(this);
1686 constr
->height
.ResetIfWin(this);
1687 constr
->centreX
.ResetIfWin(this);
1688 constr
->centreY
.ResetIfWin(this);
1691 wxWindowList::compatibility_iterator next
= node
->GetNext();
1692 m_constraintsInvolvedIn
->Erase(node
);
1696 delete m_constraintsInvolvedIn
;
1697 m_constraintsInvolvedIn
= (wxWindowList
*) NULL
;
1701 #endif // wxUSE_CONSTRAINTS
1703 void wxWindowBase::SetSizer(wxSizer
*sizer
, bool deleteOld
)
1705 if ( sizer
== m_windowSizer
)
1709 delete m_windowSizer
;
1711 m_windowSizer
= sizer
;
1713 SetAutoLayout( sizer
!= NULL
);
1716 void wxWindowBase::SetSizerAndFit(wxSizer
*sizer
, bool deleteOld
)
1718 SetSizer( sizer
, deleteOld
);
1719 sizer
->SetSizeHints( (wxWindow
*) this );
1723 void wxWindowBase::SetContainingSizer(wxSizer
* sizer
)
1725 // adding a window to a sizer twice is going to result in fatal and
1726 // hard to debug problems later because when deleting the second
1727 // associated wxSizerItem we're going to dereference a dangling
1728 // pointer; so try to detect this as early as possible
1729 wxASSERT_MSG( !sizer
|| m_containingSizer
!= sizer
,
1730 _T("Adding a window to the same sizer twice?") );
1732 m_containingSizer
= sizer
;
1735 #if wxUSE_CONSTRAINTS
1737 void wxWindowBase::SatisfyConstraints()
1739 wxLayoutConstraints
*constr
= GetConstraints();
1740 bool wasOk
= constr
&& constr
->AreSatisfied();
1742 ResetConstraints(); // Mark all constraints as unevaluated
1746 // if we're a top level panel (i.e. our parent is frame/dialog), our
1747 // own constraints will never be satisfied any more unless we do it
1751 while ( noChanges
> 0 )
1753 LayoutPhase1(&noChanges
);
1757 LayoutPhase2(&noChanges
);
1760 #endif // wxUSE_CONSTRAINTS
1762 bool wxWindowBase::Layout()
1764 // If there is a sizer, use it instead of the constraints
1768 GetVirtualSize(&w
, &h
);
1769 GetSizer()->SetDimension( 0, 0, w
, h
);
1771 #if wxUSE_CONSTRAINTS
1774 SatisfyConstraints(); // Find the right constraints values
1775 SetConstraintSizes(); // Recursively set the real window sizes
1782 #if wxUSE_CONSTRAINTS
1784 // first phase of the constraints evaluation: set our own constraints
1785 bool wxWindowBase::LayoutPhase1(int *noChanges
)
1787 wxLayoutConstraints
*constr
= GetConstraints();
1789 return !constr
|| constr
->SatisfyConstraints(this, noChanges
);
1792 // second phase: set the constraints for our children
1793 bool wxWindowBase::LayoutPhase2(int *noChanges
)
1800 // Layout grand children
1806 // Do a phase of evaluating child constraints
1807 bool wxWindowBase::DoPhase(int phase
)
1809 // the list containing the children for which the constraints are already
1811 wxWindowList succeeded
;
1813 // the max number of iterations we loop before concluding that we can't set
1815 static const int maxIterations
= 500;
1817 for ( int noIterations
= 0; noIterations
< maxIterations
; noIterations
++ )
1821 // loop over all children setting their constraints
1822 for ( wxWindowList::compatibility_iterator node
= GetChildren().GetFirst();
1824 node
= node
->GetNext() )
1826 wxWindow
*child
= node
->GetData();
1827 if ( child
->IsTopLevel() )
1829 // top level children are not inside our client area
1833 if ( !child
->GetConstraints() || succeeded
.Find(child
) )
1835 // this one is either already ok or nothing we can do about it
1839 int tempNoChanges
= 0;
1840 bool success
= phase
== 1 ? child
->LayoutPhase1(&tempNoChanges
)
1841 : child
->LayoutPhase2(&tempNoChanges
);
1842 noChanges
+= tempNoChanges
;
1846 succeeded
.Append(child
);
1852 // constraints are set
1860 void wxWindowBase::ResetConstraints()
1862 wxLayoutConstraints
*constr
= GetConstraints();
1865 constr
->left
.SetDone(false);
1866 constr
->top
.SetDone(false);
1867 constr
->right
.SetDone(false);
1868 constr
->bottom
.SetDone(false);
1869 constr
->width
.SetDone(false);
1870 constr
->height
.SetDone(false);
1871 constr
->centreX
.SetDone(false);
1872 constr
->centreY
.SetDone(false);
1875 wxWindowList::compatibility_iterator node
= GetChildren().GetFirst();
1878 wxWindow
*win
= node
->GetData();
1879 if ( !win
->IsTopLevel() )
1880 win
->ResetConstraints();
1881 node
= node
->GetNext();
1885 // Need to distinguish between setting the 'fake' size for windows and sizers,
1886 // and setting the real values.
1887 void wxWindowBase::SetConstraintSizes(bool recurse
)
1889 wxLayoutConstraints
*constr
= GetConstraints();
1890 if ( constr
&& constr
->AreSatisfied() )
1892 int x
= constr
->left
.GetValue();
1893 int y
= constr
->top
.GetValue();
1894 int w
= constr
->width
.GetValue();
1895 int h
= constr
->height
.GetValue();
1897 if ( (constr
->width
.GetRelationship() != wxAsIs
) ||
1898 (constr
->height
.GetRelationship() != wxAsIs
) )
1900 SetSize(x
, y
, w
, h
);
1904 // If we don't want to resize this window, just move it...
1910 wxLogDebug(wxT("Constraints not satisfied for %s named '%s'."),
1911 GetClassInfo()->GetClassName(),
1917 wxWindowList::compatibility_iterator node
= GetChildren().GetFirst();
1920 wxWindow
*win
= node
->GetData();
1921 if ( !win
->IsTopLevel() && win
->GetConstraints() )
1922 win
->SetConstraintSizes();
1923 node
= node
->GetNext();
1928 // Only set the size/position of the constraint (if any)
1929 void wxWindowBase::SetSizeConstraint(int x
, int y
, int w
, int h
)
1931 wxLayoutConstraints
*constr
= GetConstraints();
1934 if ( x
!= wxDefaultCoord
)
1936 constr
->left
.SetValue(x
);
1937 constr
->left
.SetDone(true);
1939 if ( y
!= wxDefaultCoord
)
1941 constr
->top
.SetValue(y
);
1942 constr
->top
.SetDone(true);
1944 if ( w
!= wxDefaultCoord
)
1946 constr
->width
.SetValue(w
);
1947 constr
->width
.SetDone(true);
1949 if ( h
!= wxDefaultCoord
)
1951 constr
->height
.SetValue(h
);
1952 constr
->height
.SetDone(true);
1957 void wxWindowBase::MoveConstraint(int x
, int y
)
1959 wxLayoutConstraints
*constr
= GetConstraints();
1962 if ( x
!= wxDefaultCoord
)
1964 constr
->left
.SetValue(x
);
1965 constr
->left
.SetDone(true);
1967 if ( y
!= wxDefaultCoord
)
1969 constr
->top
.SetValue(y
);
1970 constr
->top
.SetDone(true);
1975 void wxWindowBase::GetSizeConstraint(int *w
, int *h
) const
1977 wxLayoutConstraints
*constr
= GetConstraints();
1980 *w
= constr
->width
.GetValue();
1981 *h
= constr
->height
.GetValue();
1987 void wxWindowBase::GetClientSizeConstraint(int *w
, int *h
) const
1989 wxLayoutConstraints
*constr
= GetConstraints();
1992 *w
= constr
->width
.GetValue();
1993 *h
= constr
->height
.GetValue();
1996 GetClientSize(w
, h
);
1999 void wxWindowBase::GetPositionConstraint(int *x
, int *y
) const
2001 wxLayoutConstraints
*constr
= GetConstraints();
2004 *x
= constr
->left
.GetValue();
2005 *y
= constr
->top
.GetValue();
2011 #endif // wxUSE_CONSTRAINTS
2013 void wxWindowBase::AdjustForParentClientOrigin(int& x
, int& y
, int sizeFlags
) const
2015 // don't do it for the dialogs/frames - they float independently of their
2017 if ( !IsTopLevel() )
2019 wxWindow
*parent
= GetParent();
2020 if ( !(sizeFlags
& wxSIZE_NO_ADJUSTMENTS
) && parent
)
2022 wxPoint
pt(parent
->GetClientAreaOrigin());
2029 // ----------------------------------------------------------------------------
2030 // do Update UI processing for child controls
2031 // ----------------------------------------------------------------------------
2033 void wxWindowBase::UpdateWindowUI(long flags
)
2035 wxUpdateUIEvent
event(GetId());
2036 event
.SetEventObject(this);
2038 if ( GetEventHandler()->ProcessEvent(event
) )
2040 DoUpdateWindowUI(event
);
2043 if (flags
& wxUPDATE_UI_RECURSE
)
2045 wxWindowList::compatibility_iterator node
= GetChildren().GetFirst();
2048 wxWindow
* child
= (wxWindow
*) node
->GetData();
2049 child
->UpdateWindowUI(flags
);
2050 node
= node
->GetNext();
2055 // do the window-specific processing after processing the update event
2056 // TODO: take specific knowledge out of this function and
2057 // put in each control's base class. Unfortunately we don't
2058 // yet have base implementation files for wxCheckBox and wxRadioButton.
2059 void wxWindowBase::DoUpdateWindowUI(wxUpdateUIEvent
& event
)
2061 if ( event
.GetSetEnabled() )
2062 Enable(event
.GetEnabled());
2065 if ( event
.GetSetText() )
2067 wxControl
*control
= wxDynamicCastThis(wxControl
);
2070 if ( event
.GetText() != control
->GetLabel() )
2071 control
->SetLabel(event
.GetText());
2074 #endif // wxUSE_CONTROLS
2076 if ( event
.GetSetChecked() )
2079 wxCheckBox
*checkbox
= wxDynamicCastThis(wxCheckBox
);
2082 checkbox
->SetValue(event
.GetChecked());
2084 #endif // wxUSE_CHECKBOX
2087 wxRadioButton
*radiobtn
= wxDynamicCastThis(wxRadioButton
);
2090 radiobtn
->SetValue(event
.GetChecked());
2092 #endif // wxUSE_RADIOBTN
2097 // call internal idle recursively
2098 // may be obsolete (wait until OnIdle scheme stabilises)
2099 void wxWindowBase::ProcessInternalIdle()
2103 wxWindowList::compatibility_iterator node
= GetChildren().GetFirst();
2106 wxWindow
*child
= node
->GetData();
2107 child
->ProcessInternalIdle();
2108 node
= node
->GetNext();
2113 // ----------------------------------------------------------------------------
2114 // dialog units translations
2115 // ----------------------------------------------------------------------------
2117 wxPoint
wxWindowBase::ConvertPixelsToDialog(const wxPoint
& pt
)
2119 int charWidth
= GetCharWidth();
2120 int charHeight
= GetCharHeight();
2121 wxPoint pt2
= wxDefaultPosition
;
2122 if (pt
.x
!= wxDefaultCoord
)
2123 pt2
.x
= (int) ((pt
.x
* 4) / charWidth
);
2124 if (pt
.y
!= wxDefaultCoord
)
2125 pt2
.y
= (int) ((pt
.y
* 8) / charHeight
);
2130 wxPoint
wxWindowBase::ConvertDialogToPixels(const wxPoint
& pt
)
2132 int charWidth
= GetCharWidth();
2133 int charHeight
= GetCharHeight();
2134 wxPoint pt2
= wxDefaultPosition
;
2135 if (pt
.x
!= wxDefaultCoord
)
2136 pt2
.x
= (int) ((pt
.x
* charWidth
) / 4);
2137 if (pt
.y
!= wxDefaultCoord
)
2138 pt2
.y
= (int) ((pt
.y
* charHeight
) / 8);
2143 // ----------------------------------------------------------------------------
2145 // ----------------------------------------------------------------------------
2147 // propagate the colour change event to the subwindows
2148 void wxWindowBase::OnSysColourChanged(wxSysColourChangedEvent
& event
)
2150 wxWindowList::compatibility_iterator node
= GetChildren().GetFirst();
2153 // Only propagate to non-top-level windows
2154 wxWindow
*win
= node
->GetData();
2155 if ( !win
->IsTopLevel() )
2157 wxSysColourChangedEvent event2
;
2158 event
.SetEventObject(win
);
2159 win
->GetEventHandler()->ProcessEvent(event2
);
2162 node
= node
->GetNext();
2168 // the default action is to populate dialog with data when it's created,
2169 // and nudge the UI into displaying itself correctly in case
2170 // we've turned the wxUpdateUIEvents frequency down low.
2171 void wxWindowBase::OnInitDialog( wxInitDialogEvent
&WXUNUSED(event
) )
2173 TransferDataToWindow();
2175 // Update the UI at this point
2176 UpdateWindowUI(wxUPDATE_UI_RECURSE
);
2179 // process Ctrl-Alt-mclick
2180 void wxWindowBase::OnMiddleClick( wxMouseEvent
& event
)
2183 if ( event
.ControlDown() && event
.AltDown() )
2185 // don't translate these strings
2188 #ifdef __WXUNIVERSAL__
2190 #endif // __WXUNIVERSAL__
2192 switch ( wxGetOsVersion() )
2194 case wxMOTIF_X
: port
+= _T("Motif"); break;
2196 case wxMAC_DARWIN
: port
+= _T("Mac"); break;
2197 case wxBEOS
: port
+= _T("BeOS"); break;
2201 case wxGTK_BEOS
: port
+= _T("GTK"); break;
2207 case wxWIN386
: port
+= _T("MS Windows"); break;
2211 case wxMGL_OS2
: port
+= _T("MGL"); break;
2213 case wxOS2_PM
: port
+= _T("OS/2"); break;
2214 default: port
+= _T("unknown"); break;
2217 wxMessageBox(wxString::Format(
2219 " wxWidgets Library (%s port)\nVersion %u.%u.%u%s%s, compiled at %s %s\n Copyright (c) 1995-2004 wxWidgets team"
2238 _T("wxWidgets information"),
2239 wxICON_INFORMATION
| wxOK
,
2243 #endif // wxUSE_MSGDLG
2249 // ----------------------------------------------------------------------------
2251 // ----------------------------------------------------------------------------
2253 #if wxUSE_ACCESSIBILITY
2254 void wxWindowBase::SetAccessible(wxAccessible
* accessible
)
2256 if (m_accessible
&& (accessible
!= m_accessible
))
2257 delete m_accessible
;
2258 m_accessible
= accessible
;
2260 m_accessible
->SetWindow((wxWindow
*) this);
2263 // Returns the accessible object, creating if necessary.
2264 wxAccessible
* wxWindowBase::GetOrCreateAccessible()
2267 m_accessible
= CreateAccessible();
2268 return m_accessible
;
2271 // Override to create a specific accessible object.
2272 wxAccessible
* wxWindowBase::CreateAccessible()
2274 return new wxWindowAccessible((wxWindow
*) this);
2280 // ----------------------------------------------------------------------------
2281 // list classes implementation
2282 // ----------------------------------------------------------------------------
2284 void wxWindowListNode::DeleteData()
2286 delete (wxWindow
*)GetData();
2290 // ----------------------------------------------------------------------------
2292 // ----------------------------------------------------------------------------
2294 wxBorder
wxWindowBase::GetBorder(long flags
) const
2296 wxBorder border
= (wxBorder
)(flags
& wxBORDER_MASK
);
2297 if ( border
== wxBORDER_DEFAULT
)
2299 border
= GetDefaultBorder();
2305 wxBorder
wxWindowBase::GetDefaultBorder() const
2307 return wxBORDER_NONE
;
2310 // ----------------------------------------------------------------------------
2312 // ----------------------------------------------------------------------------
2314 wxHitTest
wxWindowBase::DoHitTest(wxCoord x
, wxCoord y
) const
2316 // here we just check if the point is inside the window or not
2318 // check the top and left border first
2319 bool outside
= x
< 0 || y
< 0;
2322 // check the right and bottom borders too
2323 wxSize size
= GetSize();
2324 outside
= x
>= size
.x
|| y
>= size
.y
;
2327 return outside
? wxHT_WINDOW_OUTSIDE
: wxHT_WINDOW_INSIDE
;
2330 // ----------------------------------------------------------------------------
2332 // ----------------------------------------------------------------------------
2334 struct WXDLLEXPORT wxWindowNext
2338 } *wxWindowBase::ms_winCaptureNext
= NULL
;
2340 void wxWindowBase::CaptureMouse()
2342 wxLogTrace(_T("mousecapture"), _T("CaptureMouse(%p)"), this);
2344 wxWindow
*winOld
= GetCapture();
2347 ((wxWindowBase
*) winOld
)->DoReleaseMouse();
2350 wxWindowNext
*item
= new wxWindowNext
;
2352 item
->next
= ms_winCaptureNext
;
2353 ms_winCaptureNext
= item
;
2355 //else: no mouse capture to save
2360 void wxWindowBase::ReleaseMouse()
2362 wxLogTrace(_T("mousecapture"), _T("ReleaseMouse(%p)"), this);
2364 wxASSERT_MSG( GetCapture() == this, wxT("attempt to release mouse, but this window hasn't captured it") );
2368 if ( ms_winCaptureNext
)
2370 ((wxWindowBase
*)ms_winCaptureNext
->win
)->DoCaptureMouse();
2372 wxWindowNext
*item
= ms_winCaptureNext
;
2373 ms_winCaptureNext
= item
->next
;
2376 //else: stack is empty, no previous capture
2378 wxLogTrace(_T("mousecapture"),
2379 (const wxChar
*) _T("After ReleaseMouse() mouse is captured by %p"),
2386 wxWindowBase::RegisterHotKey(int WXUNUSED(hotkeyId
),
2387 int WXUNUSED(modifiers
),
2388 int WXUNUSED(keycode
))
2394 bool wxWindowBase::UnregisterHotKey(int WXUNUSED(hotkeyId
))
2400 #endif // wxUSE_HOTKEY
2402 void wxWindowBase::SendDestroyEvent()
2404 wxWindowDestroyEvent event
;
2405 event
.SetEventObject(this);
2406 event
.SetId(GetId());
2407 GetEventHandler()->ProcessEvent(event
);
2410 // ----------------------------------------------------------------------------
2412 // ----------------------------------------------------------------------------
2414 bool wxWindowBase::TryValidator(wxEvent
& wxVALIDATOR_PARAM(event
))
2416 #if wxUSE_VALIDATORS
2417 // Can only use the validator of the window which
2418 // is receiving the event
2419 if ( event
.GetEventObject() == this )
2421 wxValidator
*validator
= GetValidator();
2422 if ( validator
&& validator
->ProcessEvent(event
) )
2427 #endif // wxUSE_VALIDATORS
2432 bool wxWindowBase::TryParent(wxEvent
& event
)
2434 // carry on up the parent-child hierarchy if the propgation count hasn't
2436 if ( event
.ShouldPropagate() )
2438 // honour the requests to stop propagation at this window: this is
2439 // used by the dialogs, for example, to prevent processing the events
2440 // from the dialog controls in the parent frame which rarely, if ever,
2442 if ( !(GetExtraStyle() & wxWS_EX_BLOCK_EVENTS
) )
2444 wxWindow
*parent
= GetParent();
2445 if ( parent
&& !parent
->IsBeingDeleted() )
2447 wxPropagateOnce
propagateOnce(event
);
2449 return parent
->GetEventHandler()->ProcessEvent(event
);
2454 return wxEvtHandler::TryParent(event
);
2457 // ----------------------------------------------------------------------------
2458 // keyboard navigation
2459 // ----------------------------------------------------------------------------
2461 // Navigates in the specified direction.
2462 bool wxWindowBase::Navigate(int flags
)
2464 wxNavigationKeyEvent eventNav
;
2465 eventNav
.SetFlags(flags
);
2466 eventNav
.SetEventObject(this);
2467 if ( GetParent()->GetEventHandler()->ProcessEvent(eventNav
) )
2474 void wxWindowBase::DoMoveInTabOrder(wxWindow
*win
, MoveKind move
)
2476 // check that we're not a top level window
2477 wxCHECK_RET( GetParent(),
2478 _T("MoveBefore/AfterInTabOrder() don't work for TLWs!") );
2480 // detect the special case when we have nothing to do anyhow and when the
2481 // code below wouldn't work
2485 // find the target window in the siblings list
2486 wxWindowList
& siblings
= GetParent()->GetChildren();
2487 wxWindowList::compatibility_iterator i
= siblings
.Find(win
);
2488 wxCHECK_RET( i
, _T("MoveBefore/AfterInTabOrder(): win is not a sibling") );
2490 // unfortunately, when wxUSE_STL == 1 DetachNode() is not implemented so we
2491 // can't just move the node around
2492 wxWindow
*self
= (wxWindow
*)this;
2493 siblings
.DeleteObject(self
);
2494 if ( move
== MoveAfter
)
2501 siblings
.Insert(i
, self
);
2503 else // MoveAfter and win was the last sibling
2505 siblings
.Append(self
);
2509 // ----------------------------------------------------------------------------
2511 // ----------------------------------------------------------------------------
2513 /*static*/ wxWindow
* wxWindowBase::FindFocus()
2515 wxWindowBase
*win
= DoFindFocus();
2516 return win
? win
->GetMainWindowOfCompositeControl() : NULL
;
2519 // ----------------------------------------------------------------------------
2521 // ----------------------------------------------------------------------------
2523 wxWindow
* wxGetTopLevelParent(wxWindow
*win
)
2525 while ( win
&& !win
->IsTopLevel() )
2526 win
= win
->GetParent();
2531 #if wxUSE_ACCESSIBILITY
2532 // ----------------------------------------------------------------------------
2533 // accessible object for windows
2534 // ----------------------------------------------------------------------------
2536 // Can return either a child object, or an integer
2537 // representing the child element, starting from 1.
2538 wxAccStatus
wxWindowAccessible::HitTest(const wxPoint
& WXUNUSED(pt
), int* WXUNUSED(childId
), wxAccessible
** WXUNUSED(childObject
))
2540 wxASSERT( GetWindow() != NULL
);
2544 return wxACC_NOT_IMPLEMENTED
;
2547 // Returns the rectangle for this object (id = 0) or a child element (id > 0).
2548 wxAccStatus
wxWindowAccessible::GetLocation(wxRect
& rect
, int elementId
)
2550 wxASSERT( GetWindow() != NULL
);
2554 wxWindow
* win
= NULL
;
2561 if (elementId
<= (int) GetWindow()->GetChildren().GetCount())
2563 win
= GetWindow()->GetChildren().Item(elementId
-1)->GetData();
2570 rect
= win
->GetRect();
2571 if (win
->GetParent() && !win
->IsKindOf(CLASSINFO(wxTopLevelWindow
)))
2572 rect
.SetPosition(win
->GetParent()->ClientToScreen(rect
.GetPosition()));
2576 return wxACC_NOT_IMPLEMENTED
;
2579 // Navigates from fromId to toId/toObject.
2580 wxAccStatus
wxWindowAccessible::Navigate(wxNavDir navDir
, int fromId
,
2581 int* WXUNUSED(toId
), wxAccessible
** toObject
)
2583 wxASSERT( GetWindow() != NULL
);
2589 case wxNAVDIR_FIRSTCHILD
:
2591 if (GetWindow()->GetChildren().GetCount() == 0)
2593 wxWindow
* childWindow
= (wxWindow
*) GetWindow()->GetChildren().GetFirst()->GetData();
2594 *toObject
= childWindow
->GetOrCreateAccessible();
2598 case wxNAVDIR_LASTCHILD
:
2600 if (GetWindow()->GetChildren().GetCount() == 0)
2602 wxWindow
* childWindow
= (wxWindow
*) GetWindow()->GetChildren().GetLast()->GetData();
2603 *toObject
= childWindow
->GetOrCreateAccessible();
2607 case wxNAVDIR_RIGHT
:
2611 wxWindowList::compatibility_iterator node
=
2612 wxWindowList::compatibility_iterator();
2615 // Can't navigate to sibling of this window
2616 // if we're a top-level window.
2617 if (!GetWindow()->GetParent())
2618 return wxACC_NOT_IMPLEMENTED
;
2620 node
= GetWindow()->GetParent()->GetChildren().Find(GetWindow());
2624 if (fromId
<= (int) GetWindow()->GetChildren().GetCount())
2625 node
= GetWindow()->GetChildren().Item(fromId
-1);
2628 if (node
&& node
->GetNext())
2630 wxWindow
* nextWindow
= node
->GetNext()->GetData();
2631 *toObject
= nextWindow
->GetOrCreateAccessible();
2639 case wxNAVDIR_PREVIOUS
:
2641 wxWindowList::compatibility_iterator node
=
2642 wxWindowList::compatibility_iterator();
2645 // Can't navigate to sibling of this window
2646 // if we're a top-level window.
2647 if (!GetWindow()->GetParent())
2648 return wxACC_NOT_IMPLEMENTED
;
2650 node
= GetWindow()->GetParent()->GetChildren().Find(GetWindow());
2654 if (fromId
<= (int) GetWindow()->GetChildren().GetCount())
2655 node
= GetWindow()->GetChildren().Item(fromId
-1);
2658 if (node
&& node
->GetPrevious())
2660 wxWindow
* previousWindow
= node
->GetPrevious()->GetData();
2661 *toObject
= previousWindow
->GetOrCreateAccessible();
2669 return wxACC_NOT_IMPLEMENTED
;
2672 // Gets the name of the specified object.
2673 wxAccStatus
wxWindowAccessible::GetName(int childId
, wxString
* name
)
2675 wxASSERT( GetWindow() != NULL
);
2681 // If a child, leave wxWidgets to call the function on the actual
2684 return wxACC_NOT_IMPLEMENTED
;
2686 // This will eventually be replaced by specialised
2687 // accessible classes, one for each kind of wxWidgets
2688 // control or window.
2690 if (GetWindow()->IsKindOf(CLASSINFO(wxButton
)))
2691 title
= ((wxButton
*) GetWindow())->GetLabel();
2694 title
= GetWindow()->GetName();
2696 if (!title
.IsEmpty())
2702 return wxACC_NOT_IMPLEMENTED
;
2705 // Gets the number of children.
2706 wxAccStatus
wxWindowAccessible::GetChildCount(int* childId
)
2708 wxASSERT( GetWindow() != NULL
);
2712 *childId
= (int) GetWindow()->GetChildren().GetCount();
2716 // Gets the specified child (starting from 1).
2717 // If *child is NULL and return value is wxACC_OK,
2718 // this means that the child is a simple element and
2719 // not an accessible object.
2720 wxAccStatus
wxWindowAccessible::GetChild(int childId
, wxAccessible
** child
)
2722 wxASSERT( GetWindow() != NULL
);
2732 if (childId
> (int) GetWindow()->GetChildren().GetCount())
2735 wxWindow
* childWindow
= GetWindow()->GetChildren().Item(childId
-1)->GetData();
2736 *child
= childWindow
->GetOrCreateAccessible();
2743 // Gets the parent, or NULL.
2744 wxAccStatus
wxWindowAccessible::GetParent(wxAccessible
** parent
)
2746 wxASSERT( GetWindow() != NULL
);
2750 wxWindow
* parentWindow
= GetWindow()->GetParent();
2758 *parent
= parentWindow
->GetOrCreateAccessible();
2766 // Performs the default action. childId is 0 (the action for this object)
2767 // or > 0 (the action for a child).
2768 // Return wxACC_NOT_SUPPORTED if there is no default action for this
2769 // window (e.g. an edit control).
2770 wxAccStatus
wxWindowAccessible::DoDefaultAction(int WXUNUSED(childId
))
2772 wxASSERT( GetWindow() != NULL
);
2776 return wxACC_NOT_IMPLEMENTED
;
2779 // Gets the default action for this object (0) or > 0 (the action for a child).
2780 // Return wxACC_OK even if there is no action. actionName is the action, or the empty
2781 // string if there is no action.
2782 // The retrieved string describes the action that is performed on an object,
2783 // not what the object does as a result. For example, a toolbar button that prints
2784 // a document has a default action of "Press" rather than "Prints the current document."
2785 wxAccStatus
wxWindowAccessible::GetDefaultAction(int WXUNUSED(childId
), wxString
* WXUNUSED(actionName
))
2787 wxASSERT( GetWindow() != NULL
);
2791 return wxACC_NOT_IMPLEMENTED
;
2794 // Returns the description for this object or a child.
2795 wxAccStatus
wxWindowAccessible::GetDescription(int WXUNUSED(childId
), wxString
* description
)
2797 wxASSERT( GetWindow() != NULL
);
2801 wxString
ht(GetWindow()->GetHelpText());
2807 return wxACC_NOT_IMPLEMENTED
;
2810 // Returns help text for this object or a child, similar to tooltip text.
2811 wxAccStatus
wxWindowAccessible::GetHelpText(int WXUNUSED(childId
), wxString
* helpText
)
2813 wxASSERT( GetWindow() != NULL
);
2817 wxString
ht(GetWindow()->GetHelpText());
2823 return wxACC_NOT_IMPLEMENTED
;
2826 // Returns the keyboard shortcut for this object or child.
2827 // Return e.g. ALT+K
2828 wxAccStatus
wxWindowAccessible::GetKeyboardShortcut(int WXUNUSED(childId
), wxString
* WXUNUSED(shortcut
))
2830 wxASSERT( GetWindow() != NULL
);
2834 return wxACC_NOT_IMPLEMENTED
;
2837 // Returns a role constant.
2838 wxAccStatus
wxWindowAccessible::GetRole(int childId
, wxAccRole
* role
)
2840 wxASSERT( GetWindow() != NULL
);
2844 // If a child, leave wxWidgets to call the function on the actual
2847 return wxACC_NOT_IMPLEMENTED
;
2849 if (GetWindow()->IsKindOf(CLASSINFO(wxControl
)))
2850 return wxACC_NOT_IMPLEMENTED
;
2852 if (GetWindow()->IsKindOf(CLASSINFO(wxStatusBar
)))
2853 return wxACC_NOT_IMPLEMENTED
;
2856 if (GetWindow()->IsKindOf(CLASSINFO(wxToolBar
)))
2857 return wxACC_NOT_IMPLEMENTED
;
2860 //*role = wxROLE_SYSTEM_CLIENT;
2861 *role
= wxROLE_SYSTEM_CLIENT
;
2865 return wxACC_NOT_IMPLEMENTED
;
2869 // Returns a state constant.
2870 wxAccStatus
wxWindowAccessible::GetState(int childId
, long* state
)
2872 wxASSERT( GetWindow() != NULL
);
2876 // If a child, leave wxWidgets to call the function on the actual
2879 return wxACC_NOT_IMPLEMENTED
;
2881 if (GetWindow()->IsKindOf(CLASSINFO(wxControl
)))
2882 return wxACC_NOT_IMPLEMENTED
;
2885 if (GetWindow()->IsKindOf(CLASSINFO(wxStatusBar
)))
2886 return wxACC_NOT_IMPLEMENTED
;
2889 if (GetWindow()->IsKindOf(CLASSINFO(wxToolBar
)))
2890 return wxACC_NOT_IMPLEMENTED
;
2897 return wxACC_NOT_IMPLEMENTED
;
2901 // Returns a localized string representing the value for the object
2903 wxAccStatus
wxWindowAccessible::GetValue(int WXUNUSED(childId
), wxString
* WXUNUSED(strValue
))
2905 wxASSERT( GetWindow() != NULL
);
2909 return wxACC_NOT_IMPLEMENTED
;
2912 // Selects the object or child.
2913 wxAccStatus
wxWindowAccessible::Select(int WXUNUSED(childId
), wxAccSelectionFlags
WXUNUSED(selectFlags
))
2915 wxASSERT( GetWindow() != NULL
);
2919 return wxACC_NOT_IMPLEMENTED
;
2922 // Gets the window with the keyboard focus.
2923 // If childId is 0 and child is NULL, no object in
2924 // this subhierarchy has the focus.
2925 // If this object has the focus, child should be 'this'.
2926 wxAccStatus
wxWindowAccessible::GetFocus(int* WXUNUSED(childId
), wxAccessible
** WXUNUSED(child
))
2928 wxASSERT( GetWindow() != NULL
);
2932 return wxACC_NOT_IMPLEMENTED
;
2935 // Gets a variant representing the selected children
2937 // Acceptable values:
2938 // - a null variant (IsNull() returns true)
2939 // - a list variant (GetType() == wxT("list")
2940 // - an integer representing the selected child element,
2941 // or 0 if this object is selected (GetType() == wxT("long")
2942 // - a "void*" pointer to a wxAccessible child object
2943 wxAccStatus
wxWindowAccessible::GetSelections(wxVariant
* WXUNUSED(selections
))
2945 wxASSERT( GetWindow() != NULL
);
2949 return wxACC_NOT_IMPLEMENTED
;
2952 #endif // wxUSE_ACCESSIBILITY