/////////////////////////////////////////////////////////////////////////// // C++ code generated with wxFormBuilder (version Aug 8 2018) // http://www.wxformbuilder.org/ // // PLEASE DO *NOT* EDIT THIS FILE! /////////////////////////////////////////////////////////////////////////// #ifndef __ACTIONDIALOGBASE_H__ #define __ACTIONDIALOGBASE_H__ #include #include #include #include #include #include #include #include #include #include #include #include #include #include /////////////////////////////////////////////////////////////////////////// /////////////////////////////////////////////////////////////////////////////// /// Class ActionDialogBase /////////////////////////////////////////////////////////////////////////////// class ActionDialogBase : public wxDialog { private: protected: wxStaticText* m_questionText; wxButton* m_cancelButton; wxButton* m_okButton; // Virtual event handlers, override them in your derived class virtual void onClickCancel( wxCommandEvent& event ) { event.Skip(); } virtual void onClickOK( wxCommandEvent& event ) { event.Skip(); } public: ActionDialogBase( wxWindow* parent, wxWindowID id = wxID_ANY, const wxString& title = wxT("QuestionTitle"), const wxPoint& pos = wxDefaultPosition, const wxSize& size = wxDefaultSize, long style = wxDEFAULT_DIALOG_STYLE ); ~ActionDialogBase(); }; #endif //__ACTIONDIALOGBASE_H__