From: Włodzimierz Skiba Date: Tue, 14 Jun 2005 17:46:54 +0000 (+0000) Subject: Allow multiline tooltip testing. X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/bd018e7e31361bc2112a386f18663908a0559d58 Allow multiline tooltip testing. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@34649 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/samples/widgets/widgets.cpp b/samples/widgets/widgets.cpp index 4365d243e4..c93a10a1d6 100644 --- a/samples/widgets/widgets.cpp +++ b/samples/widgets/widgets.cpp @@ -37,6 +37,7 @@ #include "wx/statbox.h" #include "wx/stattext.h" #include "wx/textctrl.h" + #include "wx/msgdlg.h" #endif #include "wx/sysopt.h" @@ -462,8 +463,19 @@ void WidgetsFrame::OnSetTooltip(wxCommandEvent& WXUNUSED(event)) if ( s.empty() ) return; + s_tip = s; + + if( wxMessageBox( _T("Test multiline tooltip text?"), + _T("Widgets sample"), + wxYES_NO, + this + ) == wxYES ) + { + s = _T("#1 ") + s_tip + _T("\n") + _T("#2 ") + s_tip; + } + WidgetsPage *page = wxStaticCast(m_book->GetCurrentPage(), WidgetsPage); - page->GetWidget()->SetToolTip(s_tip = s); + page->GetWidget()->SetToolTip(s); wxControl *ctrl2 = page->GetWidget2(); if ( ctrl2 )