]> git.saurik.com Git - wxWidgets.git/blame - include/wx/os2/tooltip.h
Don't infinitely recurse when setting the child focus. Without
[wxWidgets.git] / include / wx / os2 / tooltip.h
CommitLineData
0e320a79
DW
1///////////////////////////////////////////////////////////////////////////////
2// Name: msw/tooltip.h
3// Purpose: wxToolTip class - tooltip control
d90895ac 4// Author: David Webster
0e320a79 5// Modified by:
d90895ac 6// Created: 10/17/99
0e320a79 7// RCS-ID: $Id$
d90895ac 8// Copyright: (c) David Webster
371a5b4e 9// Licence: wxWindows licence
0e320a79
DW
10///////////////////////////////////////////////////////////////////////////////
11
12class wxToolTip : public wxObject
13{
14public:
15 // ctor & dtor
05facebb 16 wxToolTip(const wxString &rsTip);
0e320a79
DW
17 virtual ~wxToolTip();
18
05facebb
DW
19 //
20 // Accessors
21 //
22 inline const wxString& GetTip(void) const { return m_sText; }
23 inline wxWindow* GetWindow(void) const { return m_pWindow; }
0e320a79 24
05facebb
DW
25 void SetTip(const wxString& rsTip);
26 inline void SetWindow(wxWindow* pWin) { m_pWindow = pWin; }
0e320a79 27
7cdc9c61
SN
28 // controlling tooltip behaviour: globally change tooltip parameters
29 // enable or disable the tooltips globally
30 static void Enable(bool flag) {}
31 // set the delay after which the tooltip appears
32 static void SetDelay(long milliseconds) {}
33
05facebb
DW
34 //
35 // Implementation
36 //
37 void DisplayToolTipWindow(const wxPoint& rPos);
38 void HideToolTipWindow(void);
0e320a79
DW
39
40private:
05facebb 41 void Create(const wxString &rsTip);
0e320a79 42
05facebb
DW
43 HWND m_hWnd;
44 wxString m_sText; // tooltip text
45 wxWindow* m_pWindow; // window we're associated with
46}; // end of CLASS wxToolTip
0e320a79 47