File: ReopenEditorConfDLg.h

package info (click to toggle)
codeblocks 20.03-3
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 76,656 kB
  • sloc: cpp: 599,440; ansic: 32,194; xml: 17,922; makefile: 7,754; sh: 6,002; asm: 3,827; f90: 1,446; pascal: 716; python: 527; perl: 261; sed: 16; java: 4
file content (44 lines) | stat: -rw-r--r-- 839 bytes parent folder | download | duplicates (6)
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