]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/msw/tooltip.h
made wxTree/ListCtrl::HitTest() const
[wxWidgets.git] / include / wx / msw / tooltip.h
index c5fbe836a067fca7375205345332f963130730f4..667e6eec3e1e464816610e26ff39310d87c153e6 100644 (file)
@@ -12,6 +12,8 @@
 #ifndef _WX_MSW_TOOLTIP_H_
 #define _WX_MSW_TOOLTIP_H_
 
+#include "wx/object.h"
+
 class WXDLLEXPORT wxToolTip : public wxObject
 {
 public:
@@ -38,11 +40,14 @@ public:
     // -------------------------------
 
     // should be called in responde to WM_MOUSEMOVE
-    void RelayEvent(WXMSG *msg);
+    static void RelayEvent(WXMSG *msg);
 
     // add a window to the tooltip control
     void Add(WXHWND hwnd);
 
+    // remove any tooltip from the window
+    static void Remove(WXHWND hwnd);
+
 private:
     // the one and only one tooltip control we use - never access it directly
     // but use GetToolTipCtrl() which will create it when needed