+
+void MyPanel::OnUpdateShowProgress( wxUpdateUIEvent& event )
+{
+ event.Enable( m_spinbutton->GetValue() > 0 );
+}
+
+void MyPanel::OnShowProgress( wxCommandEvent& WXUNUSED(event) )
+{
+ int max = m_spinbutton->GetValue();
+ wxProgressDialog dialog("Progress dialog example",
+ "An informative message",
+ max, // range
+ this, // parent
+ wxPD_CAN_ABORT | wxPD_APP_MODAL);
+
+
+ bool cont = TRUE;
+ for ( int i = 0; i < max && cont; i++ )
+ {
+ wxSleep(1);
+ if ( i == max - 1 )
+ {
+ cont = dialog.Update(i, "That's all, folks!");
+ }
+ else if ( i == max / 2 )
+ {
+ cont = dialog.Update(i, "Only a half left!");
+ }
+ else
+ {
+ cont = dialog.Update(i);
+ }
+ }
+
+ if ( !cont )
+ {
+ *m_text << "Progress dialog aborted!\n";
+ }
+ else
+ {
+ *m_text << "Countdown from " << max << " finished.\n";
+ }
+}
+
+#endif // wxUSE_SPINBUTTON