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.
|