X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/d098a3572c1812d7a976582a59bf29e529c8a424..4afd752902ae7c44f4b3dc2edb11d7c24f95ed54:/include/wx/msw/tooltip.h?ds=sidebyside 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 };