wxToolTipThis class holds information about a tooltip associated with a window (see wxWindow::SetToolTip). The two static methods, wxToolTip::Enable and wxToolTip::SetDelay can be used to globally alter tooltips behaviour. Derived from Include files <wx/tooltip.h> Members
wxToolTip::Enable
wxToolTip::Enablestatic void Enable(bool flag) Enable or disable tooltips globally. May not be supported on all platforms (eg. wxCocoa).
wxToolTip::SetDelaystatic void SetDelay(long msecs) Set the delay after which the tooltip appears. May not be supported on all platforms (eg. wxCocoa).
wxToolTip::wxToolTipwxToolTip(const wxString& tip) Constructor.
wxToolTip::SetTipvoid SetTip(const wxString& tip) Set the tooltip text.
wxToolTip::GetTipwxString GetTip() const Get the tooltip text.
wxToolTip::GetWindowwxWindow* GetWindow() const Get the associated window.
|