]>
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
)) {}
36 // set the delay after which the tooltip disappears or how long the tooltip remains visible
37 static void SetAutoPop(long WXUNUSED(milliseconds
)) {}
38 // set the delay between subsequent tooltips to appear
39 static void SetReshow(long WXUNUSED(milliseconds
)) {}
44 void DisplayToolTipWindow(const wxPoint
& rPos
);
45 void HideToolTipWindow(void);
48 void Create(const wxString
&rsTip
);
51 wxString m_sText
; // tooltip text
52 wxWindow
* m_pWindow
; // window we're associated with
53 }; // end of CLASS wxToolTip
55 #endif // _WX_OS2_TOOLTIP_H_