]>
git.saurik.com Git - wxWidgets.git/blob - include/wx/os2/tooltip.h
1 ///////////////////////////////////////////////////////////////////////////////
3 // Purpose: wxToolTip class - tooltip control
4 // Author: David Webster
8 // Copyright: (c) David Webster
9 // Licence: wxWindows licence
10 ///////////////////////////////////////////////////////////////////////////////
12 #ifndef _WX_OS2_TOOLTIP_H_
13 #define _WX_OS2_TOOLTIP_H_
15 class wxToolTip
: public wxObject
19 wxToolTip(const wxString
&rsTip
);
25 inline const wxString
& GetTip(void) const { return m_sText
; }
26 inline wxWindow
* GetWindow(void) const { return m_pWindow
; }
28 void SetTip(const wxString
& rsTip
);
29 inline void SetWindow(wxWindow
* pWin
) { m_pWindow
= pWin
; }
31 // controlling tooltip behaviour: globally change tooltip parameters
32 // enable or disable the tooltips globally
33 static void Enable(bool WXUNUSED(flag
)) {}
34 // set the delay after which the tooltip appears
35 static void SetDelay(long WXUNUSED(milliseconds
)) {}
40 void DisplayToolTipWindow(const wxPoint
& rPos
);
41 void HideToolTipWindow(void);
44 void Create(const wxString
&rsTip
);
47 wxString m_sText
; // tooltip text
48 wxWindow
* m_pWindow
; // window we're associated with
49 }; // end of CLASS wxToolTip
51 #endif // _WX_OS2_TOOLTIP_H_