]> 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 d4a29c4f9cd4d5e394d99b4323e9f193583a5403..135e87116e987fb769d2e802904872ad0b023a24 100644 (file)
@@ -35,14 +35,17 @@ public:
     void RelayEvent(WXMSG *msg);
 
 private:
-    static WXHWND 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
 };