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