X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/e3603065fde28c28ee64cecd9e6e224dfcd09782..449d48f9e15e1430805aed3b33e55000754ad926:/samples/text/text.cpp diff --git a/samples/text/text.cpp b/samples/text/text.cpp index 30a3dc55df..f5ac96136b 100644 --- a/samples/text/text.cpp +++ b/samples/text/text.cpp @@ -36,6 +36,8 @@ #include "wx/tooltip.h" #endif + #include "wx/progdlg.h" + // We test for wxUSE_DRAG_AND_DROP also, because data objects may not be // implemented for compilers that can't cope with the OLE parts in // wxUSE_DRAG_AND_DROP. @@ -224,8 +226,14 @@ private: if ( freeze ) text->Freeze(); + text->Clear(); + + wxProgressDialog dlg(_T("Wait..."), _T("Updating"), 100, this); for ( int i = 0; i < 100; i++ ) + { + dlg.Update(i); text->AppendText(wxString::Format(wxT("Line %i\n"), i)); + } text->SetInsertionPoint(0);