]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/msw/tooltip.h
Added a constructor that allows creation of independent wxControl
[wxWidgets.git] / include / wx / msw / tooltip.h
index 41855799d924f2682b76adc0efa99738fc8b2788..135e87116e987fb769d2e802904872ad0b023a24 100644 (file)
@@ -35,14 +35,18 @@ public:
     void RelayEvent(WXMSG *msg);
 
 private:
-    static HWND hwndTT;
-    // create the tooltip ctrl for our parent frame if it doesn't exist yet
-    // and return its window handle
+    static WXHWND ms_hwndTT;
+
+    // create the tooltip ctrl if it doesn't exist yet and return its HWND
     WXHWND GetToolTipCtrl();
 
     // remove this tooltip from the tooltip control
     void Remove();
 
+    // add a window to the tooltip control
+    void Add(WXHWND hwnd);
+
     wxString  m_text;           // tooltip text
     wxWindow *m_window;         // window we're associated with
 };
+