X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/ca7adbf8bc5df4932deebb653060dc220ff4c06e..17b1d76b4add82305463d10b9f65668d06169363:/samples/dialogs/dialogs.cpp diff --git a/samples/dialogs/dialogs.cpp b/samples/dialogs/dialogs.cpp index 196636832d..1f41906e9d 100644 --- a/samples/dialogs/dialogs.cpp +++ b/samples/dialogs/dialogs.cpp @@ -51,6 +51,10 @@ #if wxUSE_ABOUTDLG #include "wx/aboutdlg.h" + + // these headers are only needed for custom about dialog + #include "wx/statline.h" + #include "wx/generic/aboutdlgg.h" #endif // wxUSE_ABOUTDLG #if wxUSE_BUSYINFO @@ -186,6 +190,8 @@ BEGIN_EVENT_TABLE(MyFrame, wxFrame) #if wxUSE_ABOUTDLG EVT_MENU(DIALOGS_ABOUTDLG_SIMPLE, MyFrame::ShowSimpleAboutDialog) EVT_MENU(DIALOGS_ABOUTDLG_FANCY, MyFrame::ShowFancyAboutDialog) + EVT_MENU(DIALOGS_ABOUTDLG_FULL, MyFrame::ShowFullAboutDialog) + EVT_MENU(DIALOGS_ABOUTDLG_CUSTOM, MyFrame::ShowCustomAboutDialog) #endif // wxUSE_ABOUTDLG #if wxUSE_BUSYINFO @@ -396,8 +402,10 @@ bool MyApp::OnInit() #if wxUSE_ABOUTDLG wxMenu *menuHelp = new wxMenu; - menuHelp->Append(DIALOGS_ABOUTDLG_SIMPLE, _T("&About (simple)...")); - menuHelp->Append(DIALOGS_ABOUTDLG_FANCY, _T("About (&fancy)...")); + menuHelp->Append(DIALOGS_ABOUTDLG_SIMPLE, _T("&About (simple)...\tF1")); + menuHelp->Append(DIALOGS_ABOUTDLG_FANCY, _T("About (&fancy)...\tShift-F1")); + menuHelp->Append(DIALOGS_ABOUTDLG_FULL, _T("About (f&ull)...\tCtrl-F1")); + menuHelp->Append(DIALOGS_ABOUTDLG_CUSTOM, _T("About (&custom)...\tCtrl-Shift-F1")); #endif // wxUSE_ABOUTDLG wxMenuBar *menubar = new wxMenuBar; @@ -1062,33 +1070,7 @@ void MyFrame::OnExit(wxCommandEvent& WXUNUSED(event) ) void MyFrame::ShowProgress( wxCommandEvent& WXUNUSED(event) ) { - #if wxUSE_STOPWATCH && wxUSE_LONGLONG - // check the performance - int countrandomnumbers = 0, count = 0; - wxTimeSpan tsTest(0,0,0,250); - wxDateTime DT2, DT1 = wxDateTime::UNow(); - srand(0); - while(1) - { - rand(); - ++countrandomnumbers; - if ( countrandomnumbers == 1000 ) - { - srand(0); - countrandomnumbers = 0; - ++count; - DT2 = wxDateTime::UNow(); - wxTimeSpan ts = DT2.Subtract( DT1 ); - if ( ts.IsLongerThan( tsTest ) ) - { - break; - } - } - } - const int max = 40 * count; - #else - static const int max = 10; - #endif // wxUSE_STOPWATCH && wxUSE_LONGLONG + static const int max = 100; wxProgressDialog dialog(_T("Progress dialog example"), _T("An informative message"), @@ -1100,53 +1082,48 @@ void MyFrame::ShowProgress( wxCommandEvent& WXUNUSED(event) ) // wxPD_AUTO_HIDE | -- try this as well wxPD_ELAPSED_TIME | wxPD_ESTIMATED_TIME | - wxPD_REMAINING_TIME | - wxPD_SMOOTH); + wxPD_REMAINING_TIME + | wxPD_SMOOTH // - makes indeterminate mode bar on WinXP very small + ); bool cont = true; - bool skip = false; - // each skip will move progress about quarter forward - for ( int i = 0; i <= max; i = wxMin(i+(skip?int(max/4):1), max+1), skip = false ) + for ( int i = 0; i <= max; i++ ) { - #if wxUSE_STOPWATCH && wxUSE_LONGLONG - // do (almost) the same operations as we did for the performance test - srand(0); - for ( int j = 0; j < 1000; j++ ) - { - rand(); - if ( j == 999 ) - { - DT2 = wxDateTime::UNow(); - wxTimeSpan ts = DT2.Subtract( DT1 ); - if ( ts.IsLongerThan( tsTest ) ) - { - // nothing to do - } - } - } - #else - wxSleep(1); - #endif + wxMilliSleep(200); wxString msg; + // test both modes of wxProgressDialog behaviour: start in + // indeterminate mode but switch to the determinate one later + const bool determinate = i > max/2; + if ( i == max ) { msg = _T("That's all, folks!"); } - else if ( i > max / 2 ) + else if ( !determinate ) + { + msg = _T("Testing indeterminate mode"); + } + else if ( determinate ) { - msg = _T("Only a half left (very long message)!"); + msg = _T("Now in standard determinate mode"); } -#if wxUSE_STOPWATCH && wxUSE_LONGLONG - if ( (i % (max/100)) == 0 ) // // only 100 updates, this makes it much faster + // will be set to true if "Skip" button was pressed + bool skip = false; + if ( determinate ) { cont = dialog.Update(i, msg, &skip); } -#else - cont = dialog.Update(i, msg, &skip); -#endif + else + { + cont = dialog.Pulse(msg, &skip); + } + + // each skip will move progress about quarter forward + if ( skip ) + i += max/4; if ( !cont ) { @@ -1174,18 +1151,59 @@ void MyFrame::ShowProgress( wxCommandEvent& WXUNUSED(event) ) #if wxUSE_ABOUTDLG -static void CommonAboutInfoInit(wxAboutDialogInfo& info) +static void InitAboutInfoMinimal(wxAboutDialogInfo& info) { info.SetName(_T("Dialogs Sample")); - info.SetVersion(wxVERSION_NUM_DOT_STRING); + info.SetVersion(wxVERSION_NUM_DOT_STRING_T); info.SetDescription(_T("This sample shows different wxWidgets dialogs")); - info.SetCopyright(_T("© 1998-2006 wxWidgets dev team")); + info.SetCopyright(_T("(C) 1998-2006 wxWidgets dev team")); + info.AddDeveloper(_T("Vadim Zeitlin")); +} + +static void InitAboutInfoWebsite(wxAboutDialogInfo& info) +{ + InitAboutInfoMinimal(info); + + info.SetWebSite(_T("http://www.wxwidgets.org/"), _T("wxWidgets web site")); +} + +static void InitAboutInfoAll(wxAboutDialogInfo& info) +{ + InitAboutInfoMinimal(info); + + // we can add a second developer + info.AddDeveloper(_T("A.N. Other")); + + // or we can add several persons at once like this + static const wxChar *docwriters[] = + { + _T("First D. Writer"), + _T("Second One"), + }; + + info.SetDocWriters(wxArrayString(WXSIZEOF(docwriters), docwriters)); + info.SetLicence(wxString::FromAscii( +" wxWindows Library Licence, Version 3.1\n" +" ======================================\n" +"\n" +" Copyright (c) 1998-2005 Julian Smart, Robert Roebling et al\n" +"\n" +" Everyone is permitted to copy and distribute verbatim copies\n" +" of this licence document, but changing it is not allowed.\n" +"\n" +" WXWINDOWS LIBRARY LICENCE\n" +" TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION\n" +"\n" +" ...and so on and so forth...\n" + )); + + info.AddTranslator(_T("Wun Ngo Wen (Martian)")); } void MyFrame::ShowSimpleAboutDialog(wxCommandEvent& WXUNUSED(event)) { wxAboutDialogInfo info; - CommonAboutInfoInit(info); + InitAboutInfoMinimal(info); wxAboutBox(info); } @@ -1193,12 +1211,45 @@ void MyFrame::ShowSimpleAboutDialog(wxCommandEvent& WXUNUSED(event)) void MyFrame::ShowFancyAboutDialog(wxCommandEvent& WXUNUSED(event)) { wxAboutDialogInfo info; - CommonAboutInfoInit(info); - info.SetWebSite(_T("http://www.wxwidgets.org/"), _T("wxWidgets web site")); + InitAboutInfoWebsite(info); wxAboutBox(info); } +void MyFrame::ShowFullAboutDialog(wxCommandEvent& WXUNUSED(event)) +{ + wxAboutDialogInfo info; + InitAboutInfoAll(info); + + wxAboutBox(info); +} + +void MyFrame::ShowCustomAboutDialog(wxCommandEvent& WXUNUSED(event)) +{ + class MyAboutDialog : public wxGenericAboutDialog + { + public: + MyAboutDialog(const wxAboutDialogInfo& info) + { + Create(info); + } + + // add some custom controls + virtual void DoAddCustomControls() + { + AddControl(new wxStaticLine(this), wxSizerFlags().Expand()); + AddText(_T("Some custom text")); + AddControl(new wxStaticLine(this), wxSizerFlags().Expand()); + } + }; + + wxAboutDialogInfo info; + InitAboutInfoAll(info); + + MyAboutDialog dlg(info); + dlg.ShowModal(); +} + #endif // wxUSE_ABOUTDLG #if wxUSE_BUSYINFO