-
Notifications
You must be signed in to change notification settings - Fork 2
/
CFortranIndentConfigDlg.h
40 lines (30 loc) · 1.2 KB
/
CFortranIndentConfigDlg.h
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
/***************************************************************
* Name: CFortranIndentConfigDlg.h
* Purpose: declaration of CFortranIndentConfigDlg class
* Author: YWX ([email protected])
* Created: 2012-4-25
* Copyright: (c) YWX <[email protected]>
* Licence: GNU General Public License, version 3
**************************************************************/
#ifndef _MY_WX_CFortranIndentConfigDlg_H_
#define _MY_WX_CFortranIndentConfigDlg_H_
#include <wx/intl.h>
#include "configurationpanel.h"
class CFortranIndentConfigDlg : public cbConfigurationPanel
{
public:
CFortranIndentConfigDlg(wxWindow* parent);
virtual ~CFortranIndentConfigDlg();
protected:
virtual wxString GetTitle() const { return _("Fortran Indent"); }
virtual wxString GetBitmapBaseName() const { return _T("FormatFortranIndentPlugin"); }
virtual void OnApply(){ SaveSettings(); }
virtual void OnCancel(){}
void LoadSettings();
void SaveSettings();
void OnIsSameAsEditorClick(wxCommandEvent& event);
void OnIsUseTabClick(wxCommandEvent& event);
private:
DECLARE_EVENT_TABLE()
};
#endif // _MY_WX_CFortranIndentConfigDlg_H_