#define USE_SETTINGS_DIALOG 0
#endif
+#if wxUSE_LOG
+
+// Custom application traits class which we use to override the default log
+// target creation
+class MyAppTraits : public wxGUIAppTraits
+{
+public:
+ virtual wxLog *CreateLogTarget();
+};
+
+#endif // wxUSE_LOG
// Define a new application type
class MyApp: public wxApp
{
public:
- bool OnInit();
+ virtual bool OnInit();
wxFont m_canvasFont;
wxColour m_canvasTextColour;
+
+protected:
+#if wxUSE_LOG
+ virtual wxAppTraits *CreateTraits() { return new MyAppTraits; }
+#endif // wxUSE_LOG
};
#if USE_MODAL_PRESENTATION
struct BtnInfo
{
int flag;
- wxString name;
+ const char *name;
};
- static BtnInfo ms_btnInfo[Btn_Max];
+ static const BtnInfo ms_btnInfo[Btn_Max];
wxTextCtrl *m_textMsg,
*m_textExtMsg;
*m_chkCentre;
DECLARE_EVENT_TABLE()
- DECLARE_NO_COPY_CLASS(TestMessageBoxDialog)
+ wxDECLARE_NO_COPY_CLASS(TestMessageBoxDialog);
};
class TestDefaultActionDialog: public wxDialog
void MultiChoice(wxCommandEvent& event);
#endif // wxUSE_CHOICEDLG
+ void Rearrange(wxCommandEvent& event);
+
#if wxUSE_TEXTDLG
void TextEntry(wxCommandEvent& event);
void PasswordEntry(wxCommandEvent& event);
DIALOGS_MESSAGE_BOX_WXINFO,
DIALOGS_SINGLE_CHOICE,
DIALOGS_MULTI_CHOICE,
+ DIALOGS_REARRANGE,
DIALOGS_TEXT_ENTRY,
DIALOGS_PASSWORD_ENTRY,
DIALOGS_FILE_OPEN,