X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/c399c2de41f84c3ecb6b9a3125af7cce2a26b22e..9c9f40d0223f7767fd0c5d425a9019fd49ef6e06:/include/wx/msw/tooltip.h diff --git a/include/wx/msw/tooltip.h b/include/wx/msw/tooltip.h index 41855799d9..135e87116e 100644 --- a/include/wx/msw/tooltip.h +++ b/include/wx/msw/tooltip.h @@ -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 }; +