1 /////////////////////////////////////////////////////////////////////////////
2 // Name: src/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 // For compilers that support precompilation, includes "wx.h".
21 #include "wx/wxprec.h"
28 #include "wx/string.h"
32 #include "wx/window.h"
33 #include "wx/control.h"
34 #include "wx/checkbox.h"
35 #include "wx/radiobut.h"
36 #include "wx/statbox.h"
37 #include "wx/textctrl.h"
38 #include "wx/settings.h"
39 #include "wx/dialog.h"
40 #include "wx/msgdlg.h"
41 #include "wx/statusbr.h"
42 #include "wx/toolbar.h"
43 #include "wx/dcclient.h"
44 #include "wx/scrolbar.h"
45 #include "wx/layout.h"
49 #if wxUSE_DRAG_AND_DROP
51 #endif // wxUSE_DRAG_AND_DROP
53 #if wxUSE_ACCESSIBILITY
54 #include "wx/access.h"
58 #include "wx/cshelp.h"
62 #include "wx/tooltip.h"
63 #endif // wxUSE_TOOLTIPS
69 #if wxUSE_SYSTEM_OPTIONS
70 #include "wx/sysopt.h"
73 // For reporting compile- and runtime version of GTK+ in the ctrl+alt+mclick dialog.
74 // The gtk includes don't pull any other headers in, at least not on my system - MR
77 #include <gtk/gtkversion.h>
79 #include <gtk/gtkfeatures.h>
81 extern const unsigned int gtk_major_version
;
82 extern const unsigned int gtk_minor_version
;
83 extern const unsigned int gtk_micro_version
;
87 WXDLLIMPEXP_DATA_CORE(wxWindowList
) wxTopLevelWindows
;
89 // ----------------------------------------------------------------------------
91 // ----------------------------------------------------------------------------
93 #if defined(__WXPALMOS__)
94 int wxWindowBase::ms_lastControlId
= 32767;
95 #elif defined(__WXPM__)
96 int wxWindowBase::ms_lastControlId
= 2000;
98 int wxWindowBase::ms_lastControlId
= -200;
101 IMPLEMENT_ABSTRACT_CLASS(wxWindowBase
, wxEvtHandler
)
103 // ----------------------------------------------------------------------------
105 // ----------------------------------------------------------------------------
107 BEGIN_EVENT_TABLE(wxWindowBase
, wxEvtHandler
)
108 EVT_SYS_COLOUR_CHANGED(wxWindowBase::OnSysColourChanged
)
109 EVT_INIT_DIALOG(wxWindowBase::OnInitDialog
)
110 EVT_MIDDLE_DOWN(wxWindowBase::OnMiddleClick
)
113 EVT_HELP(wxID_ANY
, wxWindowBase::OnHelp
)
118 // ============================================================================
119 // implementation of the common functionality of the wxWindow class
120 // ============================================================================
122 // ----------------------------------------------------------------------------
124 // ----------------------------------------------------------------------------
126 // the default initialization
127 wxWindowBase::wxWindowBase()
129 // no window yet, no parent nor children
130 m_parent
= (wxWindow
*)NULL
;
131 m_windowId
= wxID_ANY
;
133 // no constraints on the minimal window size
135 m_maxWidth
= wxDefaultCoord
;
137 m_maxHeight
= wxDefaultCoord
;
139 // invalidiated cache value
140 m_bestSizeCache
= wxDefaultSize
;
142 // window are created enabled and visible by default
146 // the default event handler is just this window
147 m_eventHandler
= this;
151 m_windowValidator
= (wxValidator
*) NULL
;
152 #endif // wxUSE_VALIDATORS
154 // the colours/fonts are default for now, so leave m_font,
155 // m_backgroundColour and m_foregroundColour uninitialized and set those
161 m_inheritFont
= false;
167 m_backgroundStyle
= wxBG_STYLE_SYSTEM
;
169 #if wxUSE_CONSTRAINTS
170 // no constraints whatsoever
171 m_constraints
= (wxLayoutConstraints
*) NULL
;
172 m_constraintsInvolvedIn
= (wxWindowList
*) NULL
;
173 #endif // wxUSE_CONSTRAINTS
175 m_windowSizer
= (wxSizer
*) NULL
;
176 m_containingSizer
= (wxSizer
*) NULL
;
177 m_autoLayout
= false;
179 #if wxUSE_DRAG_AND_DROP
180 m_dropTarget
= (wxDropTarget
*)NULL
;
181 #endif // wxUSE_DRAG_AND_DROP
184 m_tooltip
= (wxToolTip
*)NULL
;
185 #endif // wxUSE_TOOLTIPS
188 m_caret
= (wxCaret
*)NULL
;
189 #endif // wxUSE_CARET
192 m_hasCustomPalette
= false;
193 #endif // wxUSE_PALETTE
195 #if wxUSE_ACCESSIBILITY
199 m_virtualSize
= wxDefaultSize
;
202 m_maxVirtualWidth
= wxDefaultCoord
;
204 m_maxVirtualHeight
= wxDefaultCoord
;
206 m_windowVariant
= wxWINDOW_VARIANT_NORMAL
;
207 #if wxUSE_SYSTEM_OPTIONS
208 if ( wxSystemOptions::HasOption(wxWINDOW_DEFAULT_VARIANT
) )
210 m_windowVariant
= (wxWindowVariant
) wxSystemOptions::GetOptionInt( wxWINDOW_DEFAULT_VARIANT
) ;
214 // Whether we're using the current theme for this window (wxGTK only for now)
215 m_themeEnabled
= false;
217 // VZ: this one shouldn't exist...
218 m_isBeingDeleted
= false;
221 // common part of window creation process
222 bool wxWindowBase::CreateBase(wxWindowBase
*parent
,
224 const wxPoint
& WXUNUSED(pos
),
225 const wxSize
& WXUNUSED(size
),
227 const wxValidator
& wxVALIDATOR_PARAM(validator
),
228 const wxString
& name
)
231 // wxGTK doesn't allow to create controls with static box as the parent so
232 // this will result in a crash when the program is ported to wxGTK so warn
235 // if you get this assert, the correct solution is to create the controls
236 // as siblings of the static box
237 wxASSERT_MSG( !parent
|| !wxDynamicCast(parent
, wxStaticBox
),
238 _T("wxStaticBox can't be used as a window parent!") );
239 #endif // wxUSE_STATBOX
241 // ids are limited to 16 bits under MSW so if you care about portability,
242 // it's not a good idea to use ids out of this range (and negative ids are
243 // reserved for wxWidgets own usage)
244 wxASSERT_MSG( id
== wxID_ANY
|| (id
>= 0 && id
< 32767),
245 _T("invalid id value") );
247 // generate a new id if the user doesn't care about it
248 m_windowId
= id
== wxID_ANY
? NewControlId() : id
;
251 SetWindowStyleFlag(style
);
255 SetValidator(validator
);
256 #endif // wxUSE_VALIDATORS
258 // if the parent window has wxWS_EX_VALIDATE_RECURSIVELY set, we want to
259 // have it too - like this it's possible to set it only in the top level
260 // dialog/frame and all children will inherit it by defult
261 if ( parent
&& (parent
->GetExtraStyle() & wxWS_EX_VALIDATE_RECURSIVELY
) )
263 SetExtraStyle(GetExtraStyle() | wxWS_EX_VALIDATE_RECURSIVELY
);
269 // ----------------------------------------------------------------------------
271 // ----------------------------------------------------------------------------
274 wxWindowBase::~wxWindowBase()
276 wxASSERT_MSG( GetCapture() != this, wxT("attempt to destroy window with mouse capture") );
278 // FIXME if these 2 cases result from programming errors in the user code
279 // we should probably assert here instead of silently fixing them
281 // Just in case the window has been Closed, but we're then deleting
282 // immediately: don't leave dangling pointers.
283 wxPendingDelete
.DeleteObject(this);
285 // Just in case we've loaded a top-level window via LoadNativeDialog but
286 // we weren't a dialog class
287 wxTopLevelWindows
.DeleteObject((wxWindow
*)this);
289 wxASSERT_MSG( GetChildren().GetCount() == 0, wxT("children not destroyed") );
291 // reset the dangling pointer our parent window may keep to us
294 if ( m_parent
->GetDefaultItem() == this )
296 m_parent
->SetDefaultItem(NULL
);
299 m_parent
->RemoveChild(this);
304 #endif // wxUSE_CARET
307 delete m_windowValidator
;
308 #endif // wxUSE_VALIDATORS
310 #if wxUSE_CONSTRAINTS
311 // Have to delete constraints/sizer FIRST otherwise sizers may try to look
312 // at deleted windows as they delete themselves.
313 DeleteRelatedConstraints();
317 // This removes any dangling pointers to this window in other windows'
318 // constraintsInvolvedIn lists.
319 UnsetConstraints(m_constraints
);
320 delete m_constraints
;
321 m_constraints
= NULL
;
323 #endif // wxUSE_CONSTRAINTS
325 if ( m_containingSizer
)
326 m_containingSizer
->Detach( (wxWindow
*)this );
328 delete m_windowSizer
;
330 #if wxUSE_DRAG_AND_DROP
332 #endif // wxUSE_DRAG_AND_DROP
336 #endif // wxUSE_TOOLTIPS
338 #if wxUSE_ACCESSIBILITY
343 bool wxWindowBase::Destroy()
350 bool wxWindowBase::Close(bool force
)
352 wxCloseEvent
event(wxEVT_CLOSE_WINDOW
, m_windowId
);
353 event
.SetEventObject(this);
354 event
.SetCanVeto(!force
);
356 // return false if window wasn't closed because the application vetoed the
358 return GetEventHandler()->ProcessEvent(event
) && !event
.GetVeto();
361 bool wxWindowBase::DestroyChildren()
363 wxWindowList::compatibility_iterator node
;
366 // we iterate until the list becomes empty
367 node
= GetChildren().GetFirst();
371 wxWindow
*child
= node
->GetData();
373 // note that we really want to call delete and not ->Destroy() here
374 // because we want to delete the child immediately, before we are
375 // deleted, and delayed deletion would result in problems as our (top
376 // level) child could outlive its parent
379 wxASSERT_MSG( !GetChildren().Find(child
),
380 wxT("child didn't remove itself using RemoveChild()") );
386 // ----------------------------------------------------------------------------
387 // size/position related methods
388 // ----------------------------------------------------------------------------
390 // centre the window with respect to its parent in either (or both) directions
391 void wxWindowBase::DoCentre(int dir
)
393 wxCHECK_RET( !(dir
& wxCENTRE_ON_SCREEN
) && GetParent(),
394 _T("this method only implements centering child windows") );
396 SetSize(GetRect().CentreIn(GetParent()->GetClientSize(), dir
));
399 // fits the window around the children
400 void wxWindowBase::Fit()
402 if ( !GetChildren().empty() )
404 SetClientSize(GetBestSize());
406 //else: do nothing if we have no children
409 // fits virtual size (ie. scrolled area etc.) around children
410 void wxWindowBase::FitInside()
412 if ( GetChildren().GetCount() > 0 )
414 SetVirtualSize( GetBestVirtualSize() );
418 // On Mac, scrollbars are explicitly children.
420 static bool wxHasRealChildren(const wxWindowBase
* win
)
422 int realChildCount
= 0;
424 for ( wxWindowList::compatibility_iterator node
= win
->GetChildren().GetFirst();
426 node
= node
->GetNext() )
428 wxWindow
*win
= node
->GetData();
429 if ( !win
->IsTopLevel() && win
->IsShown() && !win
->IsKindOf(CLASSINFO(wxScrollBar
)))
432 return (realChildCount
> 0);
436 void wxWindowBase::InvalidateBestSize()
438 m_bestSizeCache
= wxDefaultSize
;
440 // parent's best size calculation may depend on its children's
441 // as long as child window we are in is not top level window itself
442 // (because the TLW size is never resized automatically)
443 // so let's invalidate it as well to be safe:
444 if (m_parent
&& !IsTopLevel())
445 m_parent
->InvalidateBestSize();
448 // return the size best suited for the current window
449 wxSize
wxWindowBase::DoGetBestSize() const
455 best
= GetWindowSizeForVirtualSize(m_windowSizer
->GetMinSize());
457 #if wxUSE_CONSTRAINTS
458 else if ( m_constraints
)
460 wxConstCast(this, wxWindowBase
)->SatisfyConstraints();
462 // our minimal acceptable size is such that all our windows fit inside
466 for ( wxWindowList::compatibility_iterator node
= GetChildren().GetFirst();
468 node
= node
->GetNext() )
470 wxLayoutConstraints
*c
= node
->GetData()->GetConstraints();
473 // it's not normal that we have an unconstrained child, but
474 // what can we do about it?
478 int x
= c
->right
.GetValue(),
479 y
= c
->bottom
.GetValue();
487 // TODO: we must calculate the overlaps somehow, otherwise we
488 // will never return a size bigger than the current one :-(
491 best
= wxSize(maxX
, maxY
);
493 #endif // wxUSE_CONSTRAINTS
494 else if ( !GetChildren().empty()
496 && wxHasRealChildren(this)
500 // our minimal acceptable size is such that all our visible child windows fit inside
504 for ( wxWindowList::compatibility_iterator node
= GetChildren().GetFirst();
506 node
= node
->GetNext() )
508 wxWindow
*win
= node
->GetData();
509 if ( win
->IsTopLevel() || ( ! win
->IsShown() )
511 || wxDynamicCast(win
, wxStatusBar
)
512 #endif // wxUSE_STATUSBAR
515 // dialogs and frames lie in different top level windows -
516 // don't deal with them here; as for the status bars, they
517 // don't lie in the client area at all
522 win
->GetPosition(&wx
, &wy
);
524 // if the window hadn't been positioned yet, assume that it is in
526 if ( wx
== wxDefaultCoord
)
528 if ( wy
== wxDefaultCoord
)
531 win
->GetSize(&ww
, &wh
);
532 if ( wx
+ ww
> maxX
)
534 if ( wy
+ wh
> maxY
)
538 // for compatibility with the old versions and because it really looks
539 // slightly more pretty like this, add a pad
543 best
= wxSize(maxX
, maxY
);
545 else // ! has children
547 // for a generic window there is no natural best size so, if the
548 // minimal size is not set, use the current size but take care to
549 // remember it as minimal size for the next time because our best size
550 // should be constant: otherwise we could get into a situation when the
551 // window is initially at some size, then expanded to a larger size and
552 // then, when the containing window is shrunk back (because our initial
553 // best size had been used for computing the parent min size), we can't
554 // be shrunk back any more because our best size is now bigger
555 wxSize size
= GetMinSize();
556 if ( !size
.IsFullySpecified() )
558 size
.SetDefaults(GetSize());
559 wxConstCast(this, wxWindowBase
)->SetMinSize(size
);
562 // return as-is, unadjusted by the client size difference.
566 // Add any difference between size and client size
567 wxSize diff
= GetSize() - GetClientSize();
568 best
.x
+= wxMax(0, diff
.x
);
569 best
.y
+= wxMax(0, diff
.y
);
575 wxSize
wxWindowBase::GetBestFittingSize() const
577 // merge the best size with the min size, giving priority to the min size
578 wxSize min
= GetMinSize();
579 if (min
.x
== wxDefaultCoord
|| min
.y
== wxDefaultCoord
)
581 wxSize best
= GetBestSize();
582 if (min
.x
== wxDefaultCoord
) min
.x
= best
.x
;
583 if (min
.y
== wxDefaultCoord
) min
.y
= best
.y
;
589 void wxWindowBase::SetBestFittingSize(const wxSize
& size
)
591 // Set the min size to the size passed in. This will usually either be
592 // wxDefaultSize or the size passed to this window's ctor/Create function.
595 // Merge the size with the best size if needed
596 wxSize best
= GetBestFittingSize();
598 // If the current size doesn't match then change it
599 if (GetSize() != best
)
604 // by default the origin is not shifted
605 wxPoint
wxWindowBase::GetClientAreaOrigin() const
610 // set the min/max size of the window
611 void wxWindowBase::DoSetSizeHints(int minW
, int minH
,
613 int WXUNUSED(incW
), int WXUNUSED(incH
))
615 // setting min width greater than max width leads to infinite loops under
616 // X11 and generally doesn't make any sense, so don't allow it
617 wxCHECK_RET( (minW
== wxDefaultCoord
|| maxW
== wxDefaultCoord
|| minW
<= maxW
) &&
618 (minH
== wxDefaultCoord
|| maxH
== wxDefaultCoord
|| minH
<= maxH
),
619 _T("min width/height must be less than max width/height!") );
627 void wxWindowBase::SetWindowVariant( wxWindowVariant variant
)
629 if ( m_windowVariant
!= variant
)
631 m_windowVariant
= variant
;
633 DoSetWindowVariant(variant
);
637 void wxWindowBase::DoSetWindowVariant( wxWindowVariant variant
)
639 // adjust the font height to correspond to our new variant (notice that
640 // we're only called if something really changed)
641 wxFont font
= GetFont();
642 int size
= font
.GetPointSize();
645 case wxWINDOW_VARIANT_NORMAL
:
648 case wxWINDOW_VARIANT_SMALL
:
653 case wxWINDOW_VARIANT_MINI
:
658 case wxWINDOW_VARIANT_LARGE
:
664 wxFAIL_MSG(_T("unexpected window variant"));
668 font
.SetPointSize(size
);
672 void wxWindowBase::SetVirtualSizeHints( int minW
, int minH
,
675 m_minVirtualWidth
= minW
;
676 m_maxVirtualWidth
= maxW
;
677 m_minVirtualHeight
= minH
;
678 m_maxVirtualHeight
= maxH
;
681 void wxWindowBase::DoSetVirtualSize( int x
, int y
)
683 if ( m_minVirtualWidth
!= wxDefaultCoord
&& m_minVirtualWidth
> x
)
684 x
= m_minVirtualWidth
;
685 if ( m_maxVirtualWidth
!= wxDefaultCoord
&& m_maxVirtualWidth
< x
)
686 x
= m_maxVirtualWidth
;
687 if ( m_minVirtualHeight
!= wxDefaultCoord
&& m_minVirtualHeight
> y
)
688 y
= m_minVirtualHeight
;
689 if ( m_maxVirtualHeight
!= wxDefaultCoord
&& m_maxVirtualHeight
< y
)
690 y
= m_maxVirtualHeight
;
692 m_virtualSize
= wxSize(x
, y
);
695 wxSize
wxWindowBase::DoGetVirtualSize() const
697 // we should use the entire client area so if it is greater than our
698 // virtual size, expand it to fit (otherwise if the window is big enough we
699 // wouldn't be using parts of it)
700 wxSize size
= GetClientSize();
701 if ( m_virtualSize
.x
> size
.x
)
702 size
.x
= m_virtualSize
.x
;
704 if ( m_virtualSize
.y
>= size
.y
)
705 size
.y
= m_virtualSize
.y
;
710 void wxWindowBase::DoGetScreenPosition(int *x
, int *y
) const
712 // screen position is the same as (0, 0) in client coords for non TLWs (and
713 // TLWs override this method)
719 ClientToScreen(x
, y
);
722 // ----------------------------------------------------------------------------
723 // show/hide/enable/disable the window
724 // ----------------------------------------------------------------------------
726 bool wxWindowBase::Show(bool show
)
728 if ( show
!= m_isShown
)
740 bool wxWindowBase::Enable(bool enable
)
742 if ( enable
!= m_isEnabled
)
744 m_isEnabled
= enable
;
753 // ----------------------------------------------------------------------------
755 // ----------------------------------------------------------------------------
757 bool wxWindowBase::IsTopLevel() const
762 // ----------------------------------------------------------------------------
763 // reparenting the window
764 // ----------------------------------------------------------------------------
766 void wxWindowBase::AddChild(wxWindowBase
*child
)
768 wxCHECK_RET( child
, wxT("can't add a NULL child") );
770 // this should never happen and it will lead to a crash later if it does
771 // because RemoveChild() will remove only one node from the children list
772 // and the other(s) one(s) will be left with dangling pointers in them
773 wxASSERT_MSG( !GetChildren().Find((wxWindow
*)child
), _T("AddChild() called twice") );
775 GetChildren().Append((wxWindow
*)child
);
776 child
->SetParent(this);
779 void wxWindowBase::RemoveChild(wxWindowBase
*child
)
781 wxCHECK_RET( child
, wxT("can't remove a NULL child") );
783 GetChildren().DeleteObject((wxWindow
*)child
);
784 child
->SetParent(NULL
);
787 bool wxWindowBase::Reparent(wxWindowBase
*newParent
)
789 wxWindow
*oldParent
= GetParent();
790 if ( newParent
== oldParent
)
796 // unlink this window from the existing parent.
799 oldParent
->RemoveChild(this);
803 wxTopLevelWindows
.DeleteObject((wxWindow
*)this);
806 // add it to the new one
809 newParent
->AddChild(this);
813 wxTopLevelWindows
.Append((wxWindow
*)this);
819 // ----------------------------------------------------------------------------
820 // event handler stuff
821 // ----------------------------------------------------------------------------
823 void wxWindowBase::PushEventHandler(wxEvtHandler
*handler
)
825 wxEvtHandler
*handlerOld
= GetEventHandler();
827 handler
->SetNextHandler(handlerOld
);
830 GetEventHandler()->SetPreviousHandler(handler
);
832 SetEventHandler(handler
);
835 wxEvtHandler
*wxWindowBase::PopEventHandler(bool deleteHandler
)
837 wxEvtHandler
*handlerA
= GetEventHandler();
840 wxEvtHandler
*handlerB
= handlerA
->GetNextHandler();
841 handlerA
->SetNextHandler((wxEvtHandler
*)NULL
);
844 handlerB
->SetPreviousHandler((wxEvtHandler
*)NULL
);
845 SetEventHandler(handlerB
);
850 handlerA
= (wxEvtHandler
*)NULL
;
857 bool wxWindowBase::RemoveEventHandler(wxEvtHandler
*handler
)
859 wxCHECK_MSG( handler
, false, _T("RemoveEventHandler(NULL) called") );
861 wxEvtHandler
*handlerPrev
= NULL
,
862 *handlerCur
= GetEventHandler();
865 wxEvtHandler
*handlerNext
= handlerCur
->GetNextHandler();
867 if ( handlerCur
== handler
)
871 handlerPrev
->SetNextHandler(handlerNext
);
875 SetEventHandler(handlerNext
);
880 handlerNext
->SetPreviousHandler ( handlerPrev
);
883 handler
->SetNextHandler(NULL
);
884 handler
->SetPreviousHandler(NULL
);
889 handlerPrev
= handlerCur
;
890 handlerCur
= handlerNext
;
893 wxFAIL_MSG( _T("where has the event handler gone?") );
898 // ----------------------------------------------------------------------------
900 // ----------------------------------------------------------------------------
902 void wxWindowBase::InheritAttributes()
904 const wxWindowBase
* const parent
= GetParent();
908 // we only inherit attributes which had been explicitly set for the parent
909 // which ensures that this only happens if the user really wants it and
910 // not by default which wouldn't make any sense in modern GUIs where the
911 // controls don't all use the same fonts (nor colours)
912 if ( parent
->m_inheritFont
&& !m_hasFont
)
913 SetFont(parent
->GetFont());
915 // in addition, there is a possibility to explicitly forbid inheriting
916 // colours at each class level by overriding ShouldInheritColours()
917 if ( ShouldInheritColours() )
919 if ( parent
->m_inheritFgCol
&& !m_hasFgCol
)
920 SetForegroundColour(parent
->GetForegroundColour());
922 // inheriting (solid) background colour is wrong as it totally breaks
923 // any kind of themed backgrounds
925 // instead, the controls should use the same background as their parent
926 // (ideally by not drawing it at all)
928 if ( parent
->m_inheritBgCol
&& !m_hasBgCol
)
929 SetBackgroundColour(parent
->GetBackgroundColour());
934 /* static */ wxVisualAttributes
935 wxWindowBase::GetClassDefaultAttributes(wxWindowVariant
WXUNUSED(variant
))
937 // it is important to return valid values for all attributes from here,
938 // GetXXX() below rely on this
939 wxVisualAttributes attrs
;
940 attrs
.font
= wxSystemSettings::GetFont(wxSYS_DEFAULT_GUI_FONT
);
941 attrs
.colFg
= wxSystemSettings::GetColour(wxSYS_COLOUR_WINDOWTEXT
);
943 // On Smartphone/PocketPC, wxSYS_COLOUR_WINDOW is a better reflection of
944 // the usual background colour than wxSYS_COLOUR_BTNFACE.
945 // It's a pity that wxSYS_COLOUR_WINDOW isn't always a suitable background
946 // colour on other platforms.
948 #if defined(__WXWINCE__) && (defined(__SMARTPHONE__) || defined(__POCKETPC__))
949 attrs
.colBg
= wxSystemSettings::GetColour(wxSYS_COLOUR_WINDOW
);
951 attrs
.colBg
= wxSystemSettings::GetColour(wxSYS_COLOUR_BTNFACE
);
956 wxColour
wxWindowBase::GetBackgroundColour() const
958 if ( !m_backgroundColour
.Ok() )
960 wxASSERT_MSG( !m_hasBgCol
, _T("we have invalid explicit bg colour?") );
962 // get our default background colour
963 wxColour colBg
= GetDefaultAttributes().colBg
;
965 // we must return some valid colour to avoid redoing this every time
966 // and also to avoid surprizing the applications written for older
967 // wxWidgets versions where GetBackgroundColour() always returned
968 // something -- so give them something even if it doesn't make sense
969 // for this window (e.g. it has a themed background)
971 colBg
= GetClassDefaultAttributes().colBg
;
976 return m_backgroundColour
;
979 wxColour
wxWindowBase::GetForegroundColour() const
981 // logic is the same as above
982 if ( !m_hasFgCol
&& !m_foregroundColour
.Ok() )
984 wxASSERT_MSG( !m_hasFgCol
, _T("we have invalid explicit fg colour?") );
986 wxColour colFg
= GetDefaultAttributes().colFg
;
989 colFg
= GetClassDefaultAttributes().colFg
;
994 return m_foregroundColour
;
997 bool wxWindowBase::SetBackgroundColour( const wxColour
&colour
)
999 if ( colour
== m_backgroundColour
)
1002 m_hasBgCol
= colour
.Ok();
1003 if ( m_backgroundStyle
!= wxBG_STYLE_CUSTOM
)
1004 m_backgroundStyle
= m_hasBgCol
? wxBG_STYLE_COLOUR
: wxBG_STYLE_SYSTEM
;
1006 m_inheritBgCol
= m_hasBgCol
;
1007 m_backgroundColour
= colour
;
1008 SetThemeEnabled( !m_hasBgCol
&& !m_foregroundColour
.Ok() );
1012 bool wxWindowBase::SetForegroundColour( const wxColour
&colour
)
1014 if (colour
== m_foregroundColour
)
1017 m_hasFgCol
= colour
.Ok();
1018 m_inheritFgCol
= m_hasFgCol
;
1019 m_foregroundColour
= colour
;
1020 SetThemeEnabled( !m_hasFgCol
&& !m_backgroundColour
.Ok() );
1024 bool wxWindowBase::SetCursor(const wxCursor
& cursor
)
1026 // setting an invalid cursor is ok, it means that we don't have any special
1028 if ( m_cursor
== cursor
)
1039 wxFont
wxWindowBase::GetFont() const
1041 // logic is the same as in GetBackgroundColour()
1044 wxASSERT_MSG( !m_hasFont
, _T("we have invalid explicit font?") );
1046 wxFont font
= GetDefaultAttributes().font
;
1048 font
= GetClassDefaultAttributes().font
;
1056 bool wxWindowBase::SetFont(const wxFont
& font
)
1058 if ( font
== m_font
)
1065 m_hasFont
= font
.Ok();
1066 m_inheritFont
= m_hasFont
;
1068 InvalidateBestSize();
1075 void wxWindowBase::SetPalette(const wxPalette
& pal
)
1077 m_hasCustomPalette
= true;
1080 // VZ: can anyone explain me what do we do here?
1081 wxWindowDC
d((wxWindow
*) this);
1085 wxWindow
*wxWindowBase::GetAncestorWithCustomPalette() const
1087 wxWindow
*win
= (wxWindow
*)this;
1088 while ( win
&& !win
->HasCustomPalette() )
1090 win
= win
->GetParent();
1096 #endif // wxUSE_PALETTE
1099 void wxWindowBase::SetCaret(wxCaret
*caret
)
1110 wxASSERT_MSG( m_caret
->GetWindow() == this,
1111 wxT("caret should be created associated to this window") );
1114 #endif // wxUSE_CARET
1116 #if wxUSE_VALIDATORS
1117 // ----------------------------------------------------------------------------
1119 // ----------------------------------------------------------------------------
1121 void wxWindowBase::SetValidator(const wxValidator
& validator
)
1123 if ( m_windowValidator
)
1124 delete m_windowValidator
;
1126 m_windowValidator
= (wxValidator
*)validator
.Clone();
1128 if ( m_windowValidator
)
1129 m_windowValidator
->SetWindow(this);
1131 #endif // wxUSE_VALIDATORS
1133 // ----------------------------------------------------------------------------
1134 // update region stuff
1135 // ----------------------------------------------------------------------------
1137 wxRect
wxWindowBase::GetUpdateClientRect() const
1139 wxRegion rgnUpdate
= GetUpdateRegion();
1140 rgnUpdate
.Intersect(GetClientRect());
1141 wxRect rectUpdate
= rgnUpdate
.GetBox();
1142 wxPoint ptOrigin
= GetClientAreaOrigin();
1143 rectUpdate
.x
-= ptOrigin
.x
;
1144 rectUpdate
.y
-= ptOrigin
.y
;
1149 bool wxWindowBase::IsExposed(int x
, int y
) const
1151 return m_updateRegion
.Contains(x
, y
) != wxOutRegion
;
1154 bool wxWindowBase::IsExposed(int x
, int y
, int w
, int h
) const
1156 return m_updateRegion
.Contains(x
, y
, w
, h
) != wxOutRegion
;
1159 void wxWindowBase::ClearBackground()
1161 // wxGTK uses its own version, no need to add never used code
1163 wxClientDC
dc((wxWindow
*)this);
1164 wxBrush
brush(GetBackgroundColour(), wxSOLID
);
1165 dc
.SetBackground(brush
);
1170 // ----------------------------------------------------------------------------
1171 // find child window by id or name
1172 // ----------------------------------------------------------------------------
1174 wxWindow
*wxWindowBase::FindWindow(long id
) const
1176 if ( id
== m_windowId
)
1177 return (wxWindow
*)this;
1179 wxWindowBase
*res
= (wxWindow
*)NULL
;
1180 wxWindowList::compatibility_iterator node
;
1181 for ( node
= m_children
.GetFirst(); node
&& !res
; node
= node
->GetNext() )
1183 wxWindowBase
*child
= node
->GetData();
1184 res
= child
->FindWindow( id
);
1187 return (wxWindow
*)res
;
1190 wxWindow
*wxWindowBase::FindWindow(const wxString
& name
) const
1192 if ( name
== m_windowName
)
1193 return (wxWindow
*)this;
1195 wxWindowBase
*res
= (wxWindow
*)NULL
;
1196 wxWindowList::compatibility_iterator node
;
1197 for ( node
= m_children
.GetFirst(); node
&& !res
; node
= node
->GetNext() )
1199 wxWindow
*child
= node
->GetData();
1200 res
= child
->FindWindow(name
);
1203 return (wxWindow
*)res
;
1207 // find any window by id or name or label: If parent is non-NULL, look through
1208 // children for a label or title matching the specified string. If NULL, look
1209 // through all top-level windows.
1211 // to avoid duplicating code we reuse the same helper function but with
1212 // different comparators
1214 typedef bool (*wxFindWindowCmp
)(const wxWindow
*win
,
1215 const wxString
& label
, long id
);
1218 bool wxFindWindowCmpLabels(const wxWindow
*win
, const wxString
& label
,
1221 return win
->GetLabel() == label
;
1225 bool wxFindWindowCmpNames(const wxWindow
*win
, const wxString
& label
,
1228 return win
->GetName() == label
;
1232 bool wxFindWindowCmpIds(const wxWindow
*win
, const wxString
& WXUNUSED(label
),
1235 return win
->GetId() == id
;
1238 // recursive helper for the FindWindowByXXX() functions
1240 wxWindow
*wxFindWindowRecursively(const wxWindow
*parent
,
1241 const wxString
& label
,
1243 wxFindWindowCmp cmp
)
1247 // see if this is the one we're looking for
1248 if ( (*cmp
)(parent
, label
, id
) )
1249 return (wxWindow
*)parent
;
1251 // It wasn't, so check all its children
1252 for ( wxWindowList::compatibility_iterator node
= parent
->GetChildren().GetFirst();
1254 node
= node
->GetNext() )
1256 // recursively check each child
1257 wxWindow
*win
= (wxWindow
*)node
->GetData();
1258 wxWindow
*retwin
= wxFindWindowRecursively(win
, label
, id
, cmp
);
1268 // helper for FindWindowByXXX()
1270 wxWindow
*wxFindWindowHelper(const wxWindow
*parent
,
1271 const wxString
& label
,
1273 wxFindWindowCmp cmp
)
1277 // just check parent and all its children
1278 return wxFindWindowRecursively(parent
, label
, id
, cmp
);
1281 // start at very top of wx's windows
1282 for ( wxWindowList::compatibility_iterator node
= wxTopLevelWindows
.GetFirst();
1284 node
= node
->GetNext() )
1286 // recursively check each window & its children
1287 wxWindow
*win
= node
->GetData();
1288 wxWindow
*retwin
= wxFindWindowRecursively(win
, label
, id
, cmp
);
1298 wxWindowBase::FindWindowByLabel(const wxString
& title
, const wxWindow
*parent
)
1300 return wxFindWindowHelper(parent
, title
, 0, wxFindWindowCmpLabels
);
1305 wxWindowBase::FindWindowByName(const wxString
& title
, const wxWindow
*parent
)
1307 wxWindow
*win
= wxFindWindowHelper(parent
, title
, 0, wxFindWindowCmpNames
);
1311 // fall back to the label
1312 win
= FindWindowByLabel(title
, parent
);
1320 wxWindowBase::FindWindowById( long id
, const wxWindow
* parent
)
1322 return wxFindWindowHelper(parent
, wxEmptyString
, id
, wxFindWindowCmpIds
);
1325 // ----------------------------------------------------------------------------
1326 // dialog oriented functions
1327 // ----------------------------------------------------------------------------
1329 void wxWindowBase::MakeModal(bool modal
)
1331 // Disable all other windows
1334 wxWindowList::compatibility_iterator node
= wxTopLevelWindows
.GetFirst();
1337 wxWindow
*win
= node
->GetData();
1339 win
->Enable(!modal
);
1341 node
= node
->GetNext();
1346 bool wxWindowBase::Validate()
1348 #if wxUSE_VALIDATORS
1349 bool recurse
= (GetExtraStyle() & wxWS_EX_VALIDATE_RECURSIVELY
) != 0;
1351 wxWindowList::compatibility_iterator node
;
1352 for ( node
= m_children
.GetFirst(); node
; node
= node
->GetNext() )
1354 wxWindowBase
*child
= node
->GetData();
1355 wxValidator
*validator
= child
->GetValidator();
1356 if ( validator
&& !validator
->Validate((wxWindow
*)this) )
1361 if ( recurse
&& !child
->Validate() )
1366 #endif // wxUSE_VALIDATORS
1371 bool wxWindowBase::TransferDataToWindow()
1373 #if wxUSE_VALIDATORS
1374 bool recurse
= (GetExtraStyle() & wxWS_EX_VALIDATE_RECURSIVELY
) != 0;
1376 wxWindowList::compatibility_iterator node
;
1377 for ( node
= m_children
.GetFirst(); node
; node
= node
->GetNext() )
1379 wxWindowBase
*child
= node
->GetData();
1380 wxValidator
*validator
= child
->GetValidator();
1381 if ( validator
&& !validator
->TransferToWindow() )
1383 wxLogWarning(_("Could not transfer data to window"));
1385 wxLog::FlushActive();
1393 if ( !child
->TransferDataToWindow() )
1395 // warning already given
1400 #endif // wxUSE_VALIDATORS
1405 bool wxWindowBase::TransferDataFromWindow()
1407 #if wxUSE_VALIDATORS
1408 bool recurse
= (GetExtraStyle() & wxWS_EX_VALIDATE_RECURSIVELY
) != 0;
1410 wxWindowList::compatibility_iterator node
;
1411 for ( node
= m_children
.GetFirst(); node
; node
= node
->GetNext() )
1413 wxWindow
*child
= node
->GetData();
1414 wxValidator
*validator
= child
->GetValidator();
1415 if ( validator
&& !validator
->TransferFromWindow() )
1417 // nop warning here because the application is supposed to give
1418 // one itself - we don't know here what might have gone wrongly
1425 if ( !child
->TransferDataFromWindow() )
1427 // warning already given
1432 #endif // wxUSE_VALIDATORS
1437 void wxWindowBase::InitDialog()
1439 wxInitDialogEvent
event(GetId());
1440 event
.SetEventObject( this );
1441 GetEventHandler()->ProcessEvent(event
);
1444 // ----------------------------------------------------------------------------
1445 // context-sensitive help support
1446 // ----------------------------------------------------------------------------
1450 // associate this help text with this window
1451 void wxWindowBase::SetHelpText(const wxString
& text
)
1453 wxHelpProvider
*helpProvider
= wxHelpProvider::Get();
1456 helpProvider
->AddHelp(this, text
);
1460 // associate this help text with all windows with the same id as this
1462 void wxWindowBase::SetHelpTextForId(const wxString
& text
)
1464 wxHelpProvider
*helpProvider
= wxHelpProvider::Get();
1467 helpProvider
->AddHelp(GetId(), text
);
1471 // get the help string associated with this window (may be empty)
1472 wxString
wxWindowBase::GetHelpText() const
1475 wxHelpProvider
*helpProvider
= wxHelpProvider::Get();
1478 text
= helpProvider
->GetHelp(this);
1484 // show help for this window
1485 void wxWindowBase::OnHelp(wxHelpEvent
& event
)
1487 wxHelpProvider
*helpProvider
= wxHelpProvider::Get();
1490 if ( helpProvider
->ShowHelp(this) )
1492 // skip the event.Skip() below
1500 #endif // wxUSE_HELP
1502 // ----------------------------------------------------------------------------
1503 // tooltipsroot.Replace("\\", "/");
1504 // ----------------------------------------------------------------------------
1508 void wxWindowBase::SetToolTip( const wxString
&tip
)
1510 // don't create the new tooltip if we already have one
1513 m_tooltip
->SetTip( tip
);
1517 SetToolTip( new wxToolTip( tip
) );
1520 // setting empty tooltip text does not remove the tooltip any more - use
1521 // SetToolTip((wxToolTip *)NULL) for this
1524 void wxWindowBase::DoSetToolTip(wxToolTip
*tooltip
)
1526 if ( m_tooltip
!= tooltip
)
1531 m_tooltip
= tooltip
;
1535 #endif // wxUSE_TOOLTIPS
1537 // ----------------------------------------------------------------------------
1538 // constraints and sizers
1539 // ----------------------------------------------------------------------------
1541 #if wxUSE_CONSTRAINTS
1543 void wxWindowBase::SetConstraints( wxLayoutConstraints
*constraints
)
1545 if ( m_constraints
)
1547 UnsetConstraints(m_constraints
);
1548 delete m_constraints
;
1550 m_constraints
= constraints
;
1551 if ( m_constraints
)
1553 // Make sure other windows know they're part of a 'meaningful relationship'
1554 if ( m_constraints
->left
.GetOtherWindow() && (m_constraints
->left
.GetOtherWindow() != this) )
1555 m_constraints
->left
.GetOtherWindow()->AddConstraintReference(this);
1556 if ( m_constraints
->top
.GetOtherWindow() && (m_constraints
->top
.GetOtherWindow() != this) )
1557 m_constraints
->top
.GetOtherWindow()->AddConstraintReference(this);
1558 if ( m_constraints
->right
.GetOtherWindow() && (m_constraints
->right
.GetOtherWindow() != this) )
1559 m_constraints
->right
.GetOtherWindow()->AddConstraintReference(this);
1560 if ( m_constraints
->bottom
.GetOtherWindow() && (m_constraints
->bottom
.GetOtherWindow() != this) )
1561 m_constraints
->bottom
.GetOtherWindow()->AddConstraintReference(this);
1562 if ( m_constraints
->width
.GetOtherWindow() && (m_constraints
->width
.GetOtherWindow() != this) )
1563 m_constraints
->width
.GetOtherWindow()->AddConstraintReference(this);
1564 if ( m_constraints
->height
.GetOtherWindow() && (m_constraints
->height
.GetOtherWindow() != this) )
1565 m_constraints
->height
.GetOtherWindow()->AddConstraintReference(this);
1566 if ( m_constraints
->centreX
.GetOtherWindow() && (m_constraints
->centreX
.GetOtherWindow() != this) )
1567 m_constraints
->centreX
.GetOtherWindow()->AddConstraintReference(this);
1568 if ( m_constraints
->centreY
.GetOtherWindow() && (m_constraints
->centreY
.GetOtherWindow() != this) )
1569 m_constraints
->centreY
.GetOtherWindow()->AddConstraintReference(this);
1573 // This removes any dangling pointers to this window in other windows'
1574 // constraintsInvolvedIn lists.
1575 void wxWindowBase::UnsetConstraints(wxLayoutConstraints
*c
)
1579 if ( c
->left
.GetOtherWindow() && (c
->top
.GetOtherWindow() != this) )
1580 c
->left
.GetOtherWindow()->RemoveConstraintReference(this);
1581 if ( c
->top
.GetOtherWindow() && (c
->top
.GetOtherWindow() != this) )
1582 c
->top
.GetOtherWindow()->RemoveConstraintReference(this);
1583 if ( c
->right
.GetOtherWindow() && (c
->right
.GetOtherWindow() != this) )
1584 c
->right
.GetOtherWindow()->RemoveConstraintReference(this);
1585 if ( c
->bottom
.GetOtherWindow() && (c
->bottom
.GetOtherWindow() != this) )
1586 c
->bottom
.GetOtherWindow()->RemoveConstraintReference(this);
1587 if ( c
->width
.GetOtherWindow() && (c
->width
.GetOtherWindow() != this) )
1588 c
->width
.GetOtherWindow()->RemoveConstraintReference(this);
1589 if ( c
->height
.GetOtherWindow() && (c
->height
.GetOtherWindow() != this) )
1590 c
->height
.GetOtherWindow()->RemoveConstraintReference(this);
1591 if ( c
->centreX
.GetOtherWindow() && (c
->centreX
.GetOtherWindow() != this) )
1592 c
->centreX
.GetOtherWindow()->RemoveConstraintReference(this);
1593 if ( c
->centreY
.GetOtherWindow() && (c
->centreY
.GetOtherWindow() != this) )
1594 c
->centreY
.GetOtherWindow()->RemoveConstraintReference(this);
1598 // Back-pointer to other windows we're involved with, so if we delete this
1599 // window, we must delete any constraints we're involved with.
1600 void wxWindowBase::AddConstraintReference(wxWindowBase
*otherWin
)
1602 if ( !m_constraintsInvolvedIn
)
1603 m_constraintsInvolvedIn
= new wxWindowList
;
1604 if ( !m_constraintsInvolvedIn
->Find((wxWindow
*)otherWin
) )
1605 m_constraintsInvolvedIn
->Append((wxWindow
*)otherWin
);
1608 // REMOVE back-pointer to other windows we're involved with.
1609 void wxWindowBase::RemoveConstraintReference(wxWindowBase
*otherWin
)
1611 if ( m_constraintsInvolvedIn
)
1612 m_constraintsInvolvedIn
->DeleteObject((wxWindow
*)otherWin
);
1615 // Reset any constraints that mention this window
1616 void wxWindowBase::DeleteRelatedConstraints()
1618 if ( m_constraintsInvolvedIn
)
1620 wxWindowList::compatibility_iterator node
= m_constraintsInvolvedIn
->GetFirst();
1623 wxWindow
*win
= node
->GetData();
1624 wxLayoutConstraints
*constr
= win
->GetConstraints();
1626 // Reset any constraints involving this window
1629 constr
->left
.ResetIfWin(this);
1630 constr
->top
.ResetIfWin(this);
1631 constr
->right
.ResetIfWin(this);
1632 constr
->bottom
.ResetIfWin(this);
1633 constr
->width
.ResetIfWin(this);
1634 constr
->height
.ResetIfWin(this);
1635 constr
->centreX
.ResetIfWin(this);
1636 constr
->centreY
.ResetIfWin(this);
1639 wxWindowList::compatibility_iterator next
= node
->GetNext();
1640 m_constraintsInvolvedIn
->Erase(node
);
1644 delete m_constraintsInvolvedIn
;
1645 m_constraintsInvolvedIn
= (wxWindowList
*) NULL
;
1649 #endif // wxUSE_CONSTRAINTS
1651 void wxWindowBase::SetSizer(wxSizer
*sizer
, bool deleteOld
)
1653 if ( sizer
== m_windowSizer
)
1657 delete m_windowSizer
;
1659 m_windowSizer
= sizer
;
1661 SetAutoLayout( sizer
!= NULL
);
1664 void wxWindowBase::SetSizerAndFit(wxSizer
*sizer
, bool deleteOld
)
1666 SetSizer( sizer
, deleteOld
);
1667 sizer
->SetSizeHints( (wxWindow
*) this );
1671 void wxWindowBase::SetContainingSizer(wxSizer
* sizer
)
1673 // adding a window to a sizer twice is going to result in fatal and
1674 // hard to debug problems later because when deleting the second
1675 // associated wxSizerItem we're going to dereference a dangling
1676 // pointer; so try to detect this as early as possible
1677 wxASSERT_MSG( !sizer
|| m_containingSizer
!= sizer
,
1678 _T("Adding a window to the same sizer twice?") );
1680 m_containingSizer
= sizer
;
1683 #if wxUSE_CONSTRAINTS
1685 void wxWindowBase::SatisfyConstraints()
1687 wxLayoutConstraints
*constr
= GetConstraints();
1688 bool wasOk
= constr
&& constr
->AreSatisfied();
1690 ResetConstraints(); // Mark all constraints as unevaluated
1694 // if we're a top level panel (i.e. our parent is frame/dialog), our
1695 // own constraints will never be satisfied any more unless we do it
1699 while ( noChanges
> 0 )
1701 LayoutPhase1(&noChanges
);
1705 LayoutPhase2(&noChanges
);
1708 #endif // wxUSE_CONSTRAINTS
1710 bool wxWindowBase::Layout()
1712 // If there is a sizer, use it instead of the constraints
1716 GetVirtualSize(&w
, &h
);
1717 GetSizer()->SetDimension( 0, 0, w
, h
);
1719 #if wxUSE_CONSTRAINTS
1722 SatisfyConstraints(); // Find the right constraints values
1723 SetConstraintSizes(); // Recursively set the real window sizes
1730 #if wxUSE_CONSTRAINTS
1732 // first phase of the constraints evaluation: set our own constraints
1733 bool wxWindowBase::LayoutPhase1(int *noChanges
)
1735 wxLayoutConstraints
*constr
= GetConstraints();
1737 return !constr
|| constr
->SatisfyConstraints(this, noChanges
);
1740 // second phase: set the constraints for our children
1741 bool wxWindowBase::LayoutPhase2(int *noChanges
)
1748 // Layout grand children
1754 // Do a phase of evaluating child constraints
1755 bool wxWindowBase::DoPhase(int phase
)
1757 // the list containing the children for which the constraints are already
1759 wxWindowList succeeded
;
1761 // the max number of iterations we loop before concluding that we can't set
1763 static const int maxIterations
= 500;
1765 for ( int noIterations
= 0; noIterations
< maxIterations
; noIterations
++ )
1769 // loop over all children setting their constraints
1770 for ( wxWindowList::compatibility_iterator node
= GetChildren().GetFirst();
1772 node
= node
->GetNext() )
1774 wxWindow
*child
= node
->GetData();
1775 if ( child
->IsTopLevel() )
1777 // top level children are not inside our client area
1781 if ( !child
->GetConstraints() || succeeded
.Find(child
) )
1783 // this one is either already ok or nothing we can do about it
1787 int tempNoChanges
= 0;
1788 bool success
= phase
== 1 ? child
->LayoutPhase1(&tempNoChanges
)
1789 : child
->LayoutPhase2(&tempNoChanges
);
1790 noChanges
+= tempNoChanges
;
1794 succeeded
.Append(child
);
1800 // constraints are set
1808 void wxWindowBase::ResetConstraints()
1810 wxLayoutConstraints
*constr
= GetConstraints();
1813 constr
->left
.SetDone(false);
1814 constr
->top
.SetDone(false);
1815 constr
->right
.SetDone(false);
1816 constr
->bottom
.SetDone(false);
1817 constr
->width
.SetDone(false);
1818 constr
->height
.SetDone(false);
1819 constr
->centreX
.SetDone(false);
1820 constr
->centreY
.SetDone(false);
1823 wxWindowList::compatibility_iterator node
= GetChildren().GetFirst();
1826 wxWindow
*win
= node
->GetData();
1827 if ( !win
->IsTopLevel() )
1828 win
->ResetConstraints();
1829 node
= node
->GetNext();
1833 // Need to distinguish between setting the 'fake' size for windows and sizers,
1834 // and setting the real values.
1835 void wxWindowBase::SetConstraintSizes(bool recurse
)
1837 wxLayoutConstraints
*constr
= GetConstraints();
1838 if ( constr
&& constr
->AreSatisfied() )
1840 int x
= constr
->left
.GetValue();
1841 int y
= constr
->top
.GetValue();
1842 int w
= constr
->width
.GetValue();
1843 int h
= constr
->height
.GetValue();
1845 if ( (constr
->width
.GetRelationship() != wxAsIs
) ||
1846 (constr
->height
.GetRelationship() != wxAsIs
) )
1848 SetSize(x
, y
, w
, h
);
1852 // If we don't want to resize this window, just move it...
1858 wxLogDebug(wxT("Constraints not satisfied for %s named '%s'."),
1859 GetClassInfo()->GetClassName(),
1865 wxWindowList::compatibility_iterator node
= GetChildren().GetFirst();
1868 wxWindow
*win
= node
->GetData();
1869 if ( !win
->IsTopLevel() && win
->GetConstraints() )
1870 win
->SetConstraintSizes();
1871 node
= node
->GetNext();
1876 // Only set the size/position of the constraint (if any)
1877 void wxWindowBase::SetSizeConstraint(int x
, int y
, int w
, int h
)
1879 wxLayoutConstraints
*constr
= GetConstraints();
1882 if ( x
!= wxDefaultCoord
)
1884 constr
->left
.SetValue(x
);
1885 constr
->left
.SetDone(true);
1887 if ( y
!= wxDefaultCoord
)
1889 constr
->top
.SetValue(y
);
1890 constr
->top
.SetDone(true);
1892 if ( w
!= wxDefaultCoord
)
1894 constr
->width
.SetValue(w
);
1895 constr
->width
.SetDone(true);
1897 if ( h
!= wxDefaultCoord
)
1899 constr
->height
.SetValue(h
);
1900 constr
->height
.SetDone(true);
1905 void wxWindowBase::MoveConstraint(int x
, int y
)
1907 wxLayoutConstraints
*constr
= GetConstraints();
1910 if ( x
!= wxDefaultCoord
)
1912 constr
->left
.SetValue(x
);
1913 constr
->left
.SetDone(true);
1915 if ( y
!= wxDefaultCoord
)
1917 constr
->top
.SetValue(y
);
1918 constr
->top
.SetDone(true);
1923 void wxWindowBase::GetSizeConstraint(int *w
, int *h
) const
1925 wxLayoutConstraints
*constr
= GetConstraints();
1928 *w
= constr
->width
.GetValue();
1929 *h
= constr
->height
.GetValue();
1935 void wxWindowBase::GetClientSizeConstraint(int *w
, int *h
) const
1937 wxLayoutConstraints
*constr
= GetConstraints();
1940 *w
= constr
->width
.GetValue();
1941 *h
= constr
->height
.GetValue();
1944 GetClientSize(w
, h
);
1947 void wxWindowBase::GetPositionConstraint(int *x
, int *y
) const
1949 wxLayoutConstraints
*constr
= GetConstraints();
1952 *x
= constr
->left
.GetValue();
1953 *y
= constr
->top
.GetValue();
1959 #endif // wxUSE_CONSTRAINTS
1961 void wxWindowBase::AdjustForParentClientOrigin(int& x
, int& y
, int sizeFlags
) const
1963 // don't do it for the dialogs/frames - they float independently of their
1965 if ( !IsTopLevel() )
1967 wxWindow
*parent
= GetParent();
1968 if ( !(sizeFlags
& wxSIZE_NO_ADJUSTMENTS
) && parent
)
1970 wxPoint
pt(parent
->GetClientAreaOrigin());
1977 // ----------------------------------------------------------------------------
1978 // do Update UI processing for child controls
1979 // ----------------------------------------------------------------------------
1981 void wxWindowBase::UpdateWindowUI(long flags
)
1983 wxUpdateUIEvent
event(GetId());
1984 event
.SetEventObject(this);
1986 if ( GetEventHandler()->ProcessEvent(event
) )
1988 DoUpdateWindowUI(event
);
1991 if (flags
& wxUPDATE_UI_RECURSE
)
1993 wxWindowList::compatibility_iterator node
= GetChildren().GetFirst();
1996 wxWindow
* child
= (wxWindow
*) node
->GetData();
1997 child
->UpdateWindowUI(flags
);
1998 node
= node
->GetNext();
2003 // do the window-specific processing after processing the update event
2004 void wxWindowBase::DoUpdateWindowUI(wxUpdateUIEvent
& event
)
2006 if ( event
.GetSetEnabled() )
2007 Enable(event
.GetEnabled());
2009 if ( event
.GetSetShown() )
2010 Show(event
.GetShown());
2014 // call internal idle recursively
2015 // may be obsolete (wait until OnIdle scheme stabilises)
2016 void wxWindowBase::ProcessInternalIdle()
2020 wxWindowList::compatibility_iterator node
= GetChildren().GetFirst();
2023 wxWindow
*child
= node
->GetData();
2024 child
->ProcessInternalIdle();
2025 node
= node
->GetNext();
2030 // ----------------------------------------------------------------------------
2031 // dialog units translations
2032 // ----------------------------------------------------------------------------
2034 wxPoint
wxWindowBase::ConvertPixelsToDialog(const wxPoint
& pt
)
2036 int charWidth
= GetCharWidth();
2037 int charHeight
= GetCharHeight();
2038 wxPoint pt2
= wxDefaultPosition
;
2039 if (pt
.x
!= wxDefaultCoord
)
2040 pt2
.x
= (int) ((pt
.x
* 4) / charWidth
);
2041 if (pt
.y
!= wxDefaultCoord
)
2042 pt2
.y
= (int) ((pt
.y
* 8) / charHeight
);
2047 wxPoint
wxWindowBase::ConvertDialogToPixels(const wxPoint
& pt
)
2049 int charWidth
= GetCharWidth();
2050 int charHeight
= GetCharHeight();
2051 wxPoint pt2
= wxDefaultPosition
;
2052 if (pt
.x
!= wxDefaultCoord
)
2053 pt2
.x
= (int) ((pt
.x
* charWidth
) / 4);
2054 if (pt
.y
!= wxDefaultCoord
)
2055 pt2
.y
= (int) ((pt
.y
* charHeight
) / 8);
2060 // ----------------------------------------------------------------------------
2062 // ----------------------------------------------------------------------------
2064 // propagate the colour change event to the subwindows
2065 void wxWindowBase::OnSysColourChanged(wxSysColourChangedEvent
& event
)
2067 wxWindowList::compatibility_iterator node
= GetChildren().GetFirst();
2070 // Only propagate to non-top-level windows
2071 wxWindow
*win
= node
->GetData();
2072 if ( !win
->IsTopLevel() )
2074 wxSysColourChangedEvent event2
;
2075 event
.SetEventObject(win
);
2076 win
->GetEventHandler()->ProcessEvent(event2
);
2079 node
= node
->GetNext();
2085 // the default action is to populate dialog with data when it's created,
2086 // and nudge the UI into displaying itself correctly in case
2087 // we've turned the wxUpdateUIEvents frequency down low.
2088 void wxWindowBase::OnInitDialog( wxInitDialogEvent
&WXUNUSED(event
) )
2090 TransferDataToWindow();
2092 // Update the UI at this point
2093 UpdateWindowUI(wxUPDATE_UI_RECURSE
);
2096 // methods for drawing the sizers in a visible way
2099 static void DrawSizers(wxWindowBase
*win
);
2101 static void DrawBorder(wxWindowBase
*win
, const wxRect
& rect
, bool fill
= false)
2103 wxClientDC
dc((wxWindow
*)win
);
2104 dc
.SetPen(*wxRED_PEN
);
2105 dc
.SetBrush(fill
? wxBrush(*wxRED
, wxCROSSDIAG_HATCH
): *wxTRANSPARENT_BRUSH
);
2106 dc
.DrawRectangle(rect
.Deflate(1, 1));
2109 static void DrawSizer(wxWindowBase
*win
, wxSizer
*sizer
)
2111 const wxSizerItemList
& items
= sizer
->GetChildren();
2112 for ( wxSizerItemList::const_iterator i
= items
.begin(),
2117 wxSizerItem
*item
= *i
;
2118 if ( item
->IsSizer() )
2120 DrawBorder(win
, item
->GetRect().Deflate(2));
2121 DrawSizer(win
, item
->GetSizer());
2123 else if ( item
->IsSpacer() )
2125 DrawBorder(win
, item
->GetRect().Deflate(2), true);
2127 else if ( item
->IsWindow() )
2129 DrawSizers(item
->GetWindow());
2134 static void DrawSizers(wxWindowBase
*win
)
2136 wxSizer
*sizer
= win
->GetSizer();
2139 DrawBorder(win
, win
->GetClientSize());
2140 DrawSizer(win
, sizer
);
2142 else // no sizer, still recurse into the children
2144 const wxWindowList
& children
= win
->GetChildren();
2145 for ( wxWindowList::const_iterator i
= children
.begin(),
2146 end
= children
.end();
2155 #endif // __WXDEBUG__
2157 // process special middle clicks
2158 void wxWindowBase::OnMiddleClick( wxMouseEvent
& event
)
2160 if ( event
.ControlDown() && event
.AltDown() )
2163 // Ctrl-Alt-Shift-mclick makes the sizers visible in debug builds
2164 if ( event
.ShiftDown() )
2169 #endif // __WXDEBUG__
2172 // don't translate these strings
2175 #ifdef __WXUNIVERSAL__
2177 #endif // __WXUNIVERSAL__
2179 switch ( wxGetOsVersion() )
2181 case wxMOTIF_X
: port
+= _T("Motif"); break;
2183 case wxMAC_DARWIN
: port
+= _T("Mac"); break;
2184 case wxBEOS
: port
+= _T("BeOS"); break;
2188 case wxGTK_BEOS
: port
+= _T("GTK"); break;
2194 case wxWIN386
: port
+= _T("MS Windows"); break;
2198 case wxMGL_OS2
: port
+= _T("MGL"); break;
2200 case wxOS2_PM
: port
+= _T("OS/2"); break;
2201 case wxPALMOS
: port
+= _T("Palm OS"); break;
2202 case wxWINDOWS_CE
: port
+= _T("Windows CE (generic)"); break;
2203 case wxWINDOWS_POCKETPC
: port
+= _T("Windows CE PocketPC"); break;
2204 case wxWINDOWS_SMARTPHONE
: port
+= _T("Windows CE Smartphone"); break;
2205 default: port
+= _T("unknown"); break;
2208 wxMessageBox(wxString::Format(
2210 " wxWidgets Library (%s port)\nVersion %d.%d.%d%s%s, compiled at %s %s%s\n Copyright (c) 1995-2006 wxWidgets team"
2229 wxString::Format(_T("\nagainst GTK+ %d.%d.%d. Runtime GTK+ version: %d.%d.%d"), GTK_MAJOR_VERSION
, GTK_MINOR_VERSION
, GTK_MICRO_VERSION
, gtk_major_version
, gtk_minor_version
, gtk_micro_version
).c_str()
2234 _T("wxWidgets information"),
2235 wxICON_INFORMATION
| wxOK
,
2239 #endif // wxUSE_MSGDLG
2245 // ----------------------------------------------------------------------------
2247 // ----------------------------------------------------------------------------
2249 #if wxUSE_ACCESSIBILITY
2250 void wxWindowBase::SetAccessible(wxAccessible
* accessible
)
2252 if (m_accessible
&& (accessible
!= m_accessible
))
2253 delete m_accessible
;
2254 m_accessible
= accessible
;
2256 m_accessible
->SetWindow((wxWindow
*) this);
2259 // Returns the accessible object, creating if necessary.
2260 wxAccessible
* wxWindowBase::GetOrCreateAccessible()
2263 m_accessible
= CreateAccessible();
2264 return m_accessible
;
2267 // Override to create a specific accessible object.
2268 wxAccessible
* wxWindowBase::CreateAccessible()
2270 return new wxWindowAccessible((wxWindow
*) this);
2275 // ----------------------------------------------------------------------------
2276 // list classes implementation
2277 // ----------------------------------------------------------------------------
2281 #include "wx/listimpl.cpp"
2282 WX_DEFINE_LIST(wxWindowList
)
2286 void wxWindowListNode::DeleteData()
2288 delete (wxWindow
*)GetData();
2293 // ----------------------------------------------------------------------------
2295 // ----------------------------------------------------------------------------
2297 wxBorder
wxWindowBase::GetBorder(long flags
) const
2299 wxBorder border
= (wxBorder
)(flags
& wxBORDER_MASK
);
2300 if ( border
== wxBORDER_DEFAULT
)
2302 border
= GetDefaultBorder();
2308 wxBorder
wxWindowBase::GetDefaultBorder() const
2310 return wxBORDER_NONE
;
2313 // ----------------------------------------------------------------------------
2315 // ----------------------------------------------------------------------------
2317 wxHitTest
wxWindowBase::DoHitTest(wxCoord x
, wxCoord y
) const
2319 // here we just check if the point is inside the window or not
2321 // check the top and left border first
2322 bool outside
= x
< 0 || y
< 0;
2325 // check the right and bottom borders too
2326 wxSize size
= GetSize();
2327 outside
= x
>= size
.x
|| y
>= size
.y
;
2330 return outside
? wxHT_WINDOW_OUTSIDE
: wxHT_WINDOW_INSIDE
;
2333 // ----------------------------------------------------------------------------
2335 // ----------------------------------------------------------------------------
2337 struct WXDLLEXPORT wxWindowNext
2341 } *wxWindowBase::ms_winCaptureNext
= NULL
;
2343 void wxWindowBase::CaptureMouse()
2345 wxLogTrace(_T("mousecapture"), _T("CaptureMouse(%p)"), this);
2347 wxWindow
*winOld
= GetCapture();
2350 ((wxWindowBase
*) winOld
)->DoReleaseMouse();
2353 wxWindowNext
*item
= new wxWindowNext
;
2355 item
->next
= ms_winCaptureNext
;
2356 ms_winCaptureNext
= item
;
2358 //else: no mouse capture to save
2363 void wxWindowBase::ReleaseMouse()
2365 wxLogTrace(_T("mousecapture"), _T("ReleaseMouse(%p)"), this);
2367 wxASSERT_MSG( GetCapture() == this, wxT("attempt to release mouse, but this window hasn't captured it") );
2371 if ( ms_winCaptureNext
)
2373 ((wxWindowBase
*)ms_winCaptureNext
->win
)->DoCaptureMouse();
2375 wxWindowNext
*item
= ms_winCaptureNext
;
2376 ms_winCaptureNext
= item
->next
;
2379 //else: stack is empty, no previous capture
2381 wxLogTrace(_T("mousecapture"),
2382 (const wxChar
*) _T("After ReleaseMouse() mouse is captured by %p"),
2389 wxWindowBase::RegisterHotKey(int WXUNUSED(hotkeyId
),
2390 int WXUNUSED(modifiers
),
2391 int WXUNUSED(keycode
))
2397 bool wxWindowBase::UnregisterHotKey(int WXUNUSED(hotkeyId
))
2403 #endif // wxUSE_HOTKEY
2405 void wxWindowBase::SendDestroyEvent()
2407 wxWindowDestroyEvent event
;
2408 event
.SetEventObject(this);
2409 event
.SetId(GetId());
2410 GetEventHandler()->ProcessEvent(event
);
2413 // ----------------------------------------------------------------------------
2415 // ----------------------------------------------------------------------------
2417 bool wxWindowBase::TryValidator(wxEvent
& wxVALIDATOR_PARAM(event
))
2419 #if wxUSE_VALIDATORS
2420 // Can only use the validator of the window which
2421 // is receiving the event
2422 if ( event
.GetEventObject() == this )
2424 wxValidator
*validator
= GetValidator();
2425 if ( validator
&& validator
->ProcessEvent(event
) )
2430 #endif // wxUSE_VALIDATORS
2435 bool wxWindowBase::TryParent(wxEvent
& event
)
2437 // carry on up the parent-child hierarchy if the propagation count hasn't
2439 if ( event
.ShouldPropagate() )
2441 // honour the requests to stop propagation at this window: this is
2442 // used by the dialogs, for example, to prevent processing the events
2443 // from the dialog controls in the parent frame which rarely, if ever,
2445 if ( !(GetExtraStyle() & wxWS_EX_BLOCK_EVENTS
) )
2447 wxWindow
*parent
= GetParent();
2448 if ( parent
&& !parent
->IsBeingDeleted() )
2450 wxPropagateOnce
propagateOnce(event
);
2452 return parent
->GetEventHandler()->ProcessEvent(event
);
2457 return wxEvtHandler::TryParent(event
);
2460 // ----------------------------------------------------------------------------
2461 // keyboard navigation
2462 // ----------------------------------------------------------------------------
2464 // Navigates in the specified direction.
2465 bool wxWindowBase::Navigate(int flags
)
2467 wxNavigationKeyEvent eventNav
;
2468 eventNav
.SetFlags(flags
);
2469 eventNav
.SetEventObject(this);
2470 if ( GetParent()->GetEventHandler()->ProcessEvent(eventNav
) )
2477 void wxWindowBase::DoMoveInTabOrder(wxWindow
*win
, MoveKind move
)
2479 // check that we're not a top level window
2480 wxCHECK_RET( GetParent(),
2481 _T("MoveBefore/AfterInTabOrder() don't work for TLWs!") );
2483 // detect the special case when we have nothing to do anyhow and when the
2484 // code below wouldn't work
2488 // find the target window in the siblings list
2489 wxWindowList
& siblings
= GetParent()->GetChildren();
2490 wxWindowList::compatibility_iterator i
= siblings
.Find(win
);
2491 wxCHECK_RET( i
, _T("MoveBefore/AfterInTabOrder(): win is not a sibling") );
2493 // unfortunately, when wxUSE_STL == 1 DetachNode() is not implemented so we
2494 // can't just move the node around
2495 wxWindow
*self
= (wxWindow
*)this;
2496 siblings
.DeleteObject(self
);
2497 if ( move
== MoveAfter
)
2504 siblings
.Insert(i
, self
);
2506 else // MoveAfter and win was the last sibling
2508 siblings
.Append(self
);
2512 // ----------------------------------------------------------------------------
2514 // ----------------------------------------------------------------------------
2516 /*static*/ wxWindow
* wxWindowBase::FindFocus()
2518 wxWindowBase
*win
= DoFindFocus();
2519 return win
? win
->GetMainWindowOfCompositeControl() : NULL
;
2522 // ----------------------------------------------------------------------------
2524 // ----------------------------------------------------------------------------
2526 wxWindow
* wxGetTopLevelParent(wxWindow
*win
)
2528 while ( win
&& !win
->IsTopLevel() )
2529 win
= win
->GetParent();
2534 #if wxUSE_ACCESSIBILITY
2535 // ----------------------------------------------------------------------------
2536 // accessible object for windows
2537 // ----------------------------------------------------------------------------
2539 // Can return either a child object, or an integer
2540 // representing the child element, starting from 1.
2541 wxAccStatus
wxWindowAccessible::HitTest(const wxPoint
& WXUNUSED(pt
), int* WXUNUSED(childId
), wxAccessible
** WXUNUSED(childObject
))
2543 wxASSERT( GetWindow() != NULL
);
2547 return wxACC_NOT_IMPLEMENTED
;
2550 // Returns the rectangle for this object (id = 0) or a child element (id > 0).
2551 wxAccStatus
wxWindowAccessible::GetLocation(wxRect
& rect
, int elementId
)
2553 wxASSERT( GetWindow() != NULL
);
2557 wxWindow
* win
= NULL
;
2564 if (elementId
<= (int) GetWindow()->GetChildren().GetCount())
2566 win
= GetWindow()->GetChildren().Item(elementId
-1)->GetData();
2573 rect
= win
->GetRect();
2574 if (win
->GetParent() && !win
->IsKindOf(CLASSINFO(wxTopLevelWindow
)))
2575 rect
.SetPosition(win
->GetParent()->ClientToScreen(rect
.GetPosition()));
2579 return wxACC_NOT_IMPLEMENTED
;
2582 // Navigates from fromId to toId/toObject.
2583 wxAccStatus
wxWindowAccessible::Navigate(wxNavDir navDir
, int fromId
,
2584 int* WXUNUSED(toId
), wxAccessible
** toObject
)
2586 wxASSERT( GetWindow() != NULL
);
2592 case wxNAVDIR_FIRSTCHILD
:
2594 if (GetWindow()->GetChildren().GetCount() == 0)
2596 wxWindow
* childWindow
= (wxWindow
*) GetWindow()->GetChildren().GetFirst()->GetData();
2597 *toObject
= childWindow
->GetOrCreateAccessible();
2601 case wxNAVDIR_LASTCHILD
:
2603 if (GetWindow()->GetChildren().GetCount() == 0)
2605 wxWindow
* childWindow
= (wxWindow
*) GetWindow()->GetChildren().GetLast()->GetData();
2606 *toObject
= childWindow
->GetOrCreateAccessible();
2610 case wxNAVDIR_RIGHT
:
2614 wxWindowList::compatibility_iterator node
=
2615 wxWindowList::compatibility_iterator();
2618 // Can't navigate to sibling of this window
2619 // if we're a top-level window.
2620 if (!GetWindow()->GetParent())
2621 return wxACC_NOT_IMPLEMENTED
;
2623 node
= GetWindow()->GetParent()->GetChildren().Find(GetWindow());
2627 if (fromId
<= (int) GetWindow()->GetChildren().GetCount())
2628 node
= GetWindow()->GetChildren().Item(fromId
-1);
2631 if (node
&& node
->GetNext())
2633 wxWindow
* nextWindow
= node
->GetNext()->GetData();
2634 *toObject
= nextWindow
->GetOrCreateAccessible();
2642 case wxNAVDIR_PREVIOUS
:
2644 wxWindowList::compatibility_iterator node
=
2645 wxWindowList::compatibility_iterator();
2648 // Can't navigate to sibling of this window
2649 // if we're a top-level window.
2650 if (!GetWindow()->GetParent())
2651 return wxACC_NOT_IMPLEMENTED
;
2653 node
= GetWindow()->GetParent()->GetChildren().Find(GetWindow());
2657 if (fromId
<= (int) GetWindow()->GetChildren().GetCount())
2658 node
= GetWindow()->GetChildren().Item(fromId
-1);
2661 if (node
&& node
->GetPrevious())
2663 wxWindow
* previousWindow
= node
->GetPrevious()->GetData();
2664 *toObject
= previousWindow
->GetOrCreateAccessible();
2672 return wxACC_NOT_IMPLEMENTED
;
2675 // Gets the name of the specified object.
2676 wxAccStatus
wxWindowAccessible::GetName(int childId
, wxString
* name
)
2678 wxASSERT( GetWindow() != NULL
);
2684 // If a child, leave wxWidgets to call the function on the actual
2687 return wxACC_NOT_IMPLEMENTED
;
2689 // This will eventually be replaced by specialised
2690 // accessible classes, one for each kind of wxWidgets
2691 // control or window.
2693 if (GetWindow()->IsKindOf(CLASSINFO(wxButton
)))
2694 title
= ((wxButton
*) GetWindow())->GetLabel();
2697 title
= GetWindow()->GetName();
2705 return wxACC_NOT_IMPLEMENTED
;
2708 // Gets the number of children.
2709 wxAccStatus
wxWindowAccessible::GetChildCount(int* childId
)
2711 wxASSERT( GetWindow() != NULL
);
2715 *childId
= (int) GetWindow()->GetChildren().GetCount();
2719 // Gets the specified child (starting from 1).
2720 // If *child is NULL and return value is wxACC_OK,
2721 // this means that the child is a simple element and
2722 // not an accessible object.
2723 wxAccStatus
wxWindowAccessible::GetChild(int childId
, wxAccessible
** child
)
2725 wxASSERT( GetWindow() != NULL
);
2735 if (childId
> (int) GetWindow()->GetChildren().GetCount())
2738 wxWindow
* childWindow
= GetWindow()->GetChildren().Item(childId
-1)->GetData();
2739 *child
= childWindow
->GetOrCreateAccessible();
2746 // Gets the parent, or NULL.
2747 wxAccStatus
wxWindowAccessible::GetParent(wxAccessible
** parent
)
2749 wxASSERT( GetWindow() != NULL
);
2753 wxWindow
* parentWindow
= GetWindow()->GetParent();
2761 *parent
= parentWindow
->GetOrCreateAccessible();
2769 // Performs the default action. childId is 0 (the action for this object)
2770 // or > 0 (the action for a child).
2771 // Return wxACC_NOT_SUPPORTED if there is no default action for this
2772 // window (e.g. an edit control).
2773 wxAccStatus
wxWindowAccessible::DoDefaultAction(int WXUNUSED(childId
))
2775 wxASSERT( GetWindow() != NULL
);
2779 return wxACC_NOT_IMPLEMENTED
;
2782 // Gets the default action for this object (0) or > 0 (the action for a child).
2783 // Return wxACC_OK even if there is no action. actionName is the action, or the empty
2784 // string if there is no action.
2785 // The retrieved string describes the action that is performed on an object,
2786 // not what the object does as a result. For example, a toolbar button that prints
2787 // a document has a default action of "Press" rather than "Prints the current document."
2788 wxAccStatus
wxWindowAccessible::GetDefaultAction(int WXUNUSED(childId
), wxString
* WXUNUSED(actionName
))
2790 wxASSERT( GetWindow() != NULL
);
2794 return wxACC_NOT_IMPLEMENTED
;
2797 // Returns the description for this object or a child.
2798 wxAccStatus
wxWindowAccessible::GetDescription(int WXUNUSED(childId
), wxString
* description
)
2800 wxASSERT( GetWindow() != NULL
);
2804 wxString
ht(GetWindow()->GetHelpText());
2810 return wxACC_NOT_IMPLEMENTED
;
2813 // Returns help text for this object or a child, similar to tooltip text.
2814 wxAccStatus
wxWindowAccessible::GetHelpText(int WXUNUSED(childId
), wxString
* helpText
)
2816 wxASSERT( GetWindow() != NULL
);
2820 wxString
ht(GetWindow()->GetHelpText());
2826 return wxACC_NOT_IMPLEMENTED
;
2829 // Returns the keyboard shortcut for this object or child.
2830 // Return e.g. ALT+K
2831 wxAccStatus
wxWindowAccessible::GetKeyboardShortcut(int WXUNUSED(childId
), wxString
* WXUNUSED(shortcut
))
2833 wxASSERT( GetWindow() != NULL
);
2837 return wxACC_NOT_IMPLEMENTED
;
2840 // Returns a role constant.
2841 wxAccStatus
wxWindowAccessible::GetRole(int childId
, wxAccRole
* role
)
2843 wxASSERT( GetWindow() != NULL
);
2847 // If a child, leave wxWidgets to call the function on the actual
2850 return wxACC_NOT_IMPLEMENTED
;
2852 if (GetWindow()->IsKindOf(CLASSINFO(wxControl
)))
2853 return wxACC_NOT_IMPLEMENTED
;
2855 if (GetWindow()->IsKindOf(CLASSINFO(wxStatusBar
)))
2856 return wxACC_NOT_IMPLEMENTED
;
2859 if (GetWindow()->IsKindOf(CLASSINFO(wxToolBar
)))
2860 return wxACC_NOT_IMPLEMENTED
;
2863 //*role = wxROLE_SYSTEM_CLIENT;
2864 *role
= wxROLE_SYSTEM_CLIENT
;
2868 return wxACC_NOT_IMPLEMENTED
;
2872 // Returns a state constant.
2873 wxAccStatus
wxWindowAccessible::GetState(int childId
, long* state
)
2875 wxASSERT( GetWindow() != NULL
);
2879 // If a child, leave wxWidgets to call the function on the actual
2882 return wxACC_NOT_IMPLEMENTED
;
2884 if (GetWindow()->IsKindOf(CLASSINFO(wxControl
)))
2885 return wxACC_NOT_IMPLEMENTED
;
2888 if (GetWindow()->IsKindOf(CLASSINFO(wxStatusBar
)))
2889 return wxACC_NOT_IMPLEMENTED
;
2892 if (GetWindow()->IsKindOf(CLASSINFO(wxToolBar
)))
2893 return wxACC_NOT_IMPLEMENTED
;
2900 return wxACC_NOT_IMPLEMENTED
;
2904 // Returns a localized string representing the value for the object
2906 wxAccStatus
wxWindowAccessible::GetValue(int WXUNUSED(childId
), wxString
* WXUNUSED(strValue
))
2908 wxASSERT( GetWindow() != NULL
);
2912 return wxACC_NOT_IMPLEMENTED
;
2915 // Selects the object or child.
2916 wxAccStatus
wxWindowAccessible::Select(int WXUNUSED(childId
), wxAccSelectionFlags
WXUNUSED(selectFlags
))
2918 wxASSERT( GetWindow() != NULL
);
2922 return wxACC_NOT_IMPLEMENTED
;
2925 // Gets the window with the keyboard focus.
2926 // If childId is 0 and child is NULL, no object in
2927 // this subhierarchy has the focus.
2928 // If this object has the focus, child should be 'this'.
2929 wxAccStatus
wxWindowAccessible::GetFocus(int* WXUNUSED(childId
), wxAccessible
** WXUNUSED(child
))
2931 wxASSERT( GetWindow() != NULL
);
2935 return wxACC_NOT_IMPLEMENTED
;
2938 // Gets a variant representing the selected children
2940 // Acceptable values:
2941 // - a null variant (IsNull() returns true)
2942 // - a list variant (GetType() == wxT("list")
2943 // - an integer representing the selected child element,
2944 // or 0 if this object is selected (GetType() == wxT("long")
2945 // - a "void*" pointer to a wxAccessible child object
2946 wxAccStatus
wxWindowAccessible::GetSelections(wxVariant
* WXUNUSED(selections
))
2948 wxASSERT( GetWindow() != NULL
);
2952 return wxACC_NOT_IMPLEMENTED
;
2955 #endif // wxUSE_ACCESSIBILITY