1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44
|
#ifndef REOPENEDITORCONFDLG_H
#define REOPENEDITORCONFDLG_H
#include <configurationpanel.h>
//(*Headers(ReopenEditorConfDLg)
#include <wx/panel.h>
class wxRadioBox;
//*)
class ReopenEditorConfDLg: public cbConfigurationPanel
{
public:
ReopenEditorConfDLg(wxWindow* parent);
virtual ~ReopenEditorConfDLg();
//(*Declarations(ReopenEditorConfDLg)
wxRadioBox* RadioBox1;
//*)
protected:
//(*Identifiers(ReopenEditorConfDLg)
//*)
private:
//(*Handlers(ReopenEditorConfDLg)
//*)
wxString GetTitle() const { return _("Reopen editor settings"); }
wxString GetBitmapBaseName() const { return _T("reopeneditor"); }
void OnApply() { SaveSettings(); }
void OnCancel() {}
void SaveSettings();
protected:
void BuildContent(wxWindow* parent);
DECLARE_EVENT_TABLE()
};
#endif
|