class MyApp: public wxApp
{
public:
+ MyApp() { m_startupProgressStyle = -1; }
+
virtual bool OnInit();
+#if wxUSE_CMDLINE_PARSER
+ virtual void OnInitCmdLine(wxCmdLineParser& parser);
+ virtual bool OnCmdLineParsed(wxCmdLineParser& parser);
+#endif // wxUSE_CMDLINE_PARSER
+
protected:
#if wxUSE_LOG
virtual wxAppTraits *CreateTraits() { return new MyAppTraits; }
#endif // wxUSE_LOG
+
+private:
+ // Flag set to a valid value if command line option "progress" is used,
+ // this allows testing of wxProgressDialog before the main event loop is
+ // started. If this option is not specified it is set to -1 by default
+ // meaning that progress dialog shouldn't be shown at all.
+ long m_startupProgressStyle;
};
#if USE_MODAL_PRESENTATION
bool Create();
protected:
+ wxString GetBoxTitle() { return m_textTitle->GetValue(); }
wxString GetMessage() { return m_textMsg->GetValue(); }
long GetStyle();
Btn_No,
Btn_Ok,
Btn_Cancel,
+ Btn_Help,
Btn_Max
};
MsgDlgIcon_Max
};
- wxTextCtrl *m_textMsg,
+ wxTextCtrl *m_textTitle,
+ *m_textMsg,
*m_textExtMsg;
wxCheckBox *m_buttons[Btn_Max];
TestDefaultActionDialog( wxWindow *parent );
void OnListBoxDClick(wxCommandEvent& event);
+ void OnDisableOK(wxCommandEvent& event);
+ void OnDisableCancel(wxCommandEvent& event);
void OnCatchListBoxDClick(wxCommandEvent& event);
+ void OnTextEnter(wxCommandEvent& event);
private:
bool m_catchListBoxDClick;
void Rearrange(wxCommandEvent& event);
#if wxUSE_TEXTDLG
+ void LineEntry(wxCommandEvent& event);
void TextEntry(wxCommandEvent& event);
void PasswordEntry(wxCommandEvent& event);
#endif // wxUSE_TEXTDLG
void OnNotifMsgHide(wxCommandEvent& event);
#endif // wxUSE_NOTIFICATION_MESSAGE
+#if wxUSE_RICHTOOLTIP
+ void OnRichTipDialog(wxCommandEvent& event);
+#endif // wxUSE_RICHTOOLTIP
+
void OnStandardButtonsSizerDialog(wxCommandEvent& event);
void OnTestDefaultActionDialog(wxCommandEvent& event);
DIALOGS_SINGLE_CHOICE,
DIALOGS_MULTI_CHOICE,
DIALOGS_REARRANGE,
+ DIALOGS_LINE_ENTRY,
DIALOGS_TEXT_ENTRY,
DIALOGS_PASSWORD_ENTRY,
DIALOGS_FILE_OPEN,
DIALOGS_NOTIFY_AUTO,
DIALOGS_NOTIFY_SHOW,
DIALOGS_NOTIFY_HIDE,
+ DIALOGS_RICHTIP_DIALOG,
DIALOGS_PROPERTY_SHEET,
DIALOGS_PROPERTY_SHEET_TOOLBOOK,
DIALOGS_PROPERTY_SHEET_BUTTONTOOLBOOK,