File: SettingsGuidingInterface.h

package info (click to toggle)
wxastrocapture 1.8.1%2Bgit20140821.796e1a1%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 42,024 kB
  • sloc: cpp: 43,426; sh: 733; perl: 246; makefile: 14
file content (54 lines) | stat: -rw-r--r-- 1,122 bytes parent folder | download | duplicates (4)
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
45
46
47
48
49
50
51
52
53
54
#ifndef SETTINGSGUIDINGINTERFACE_H
#define SETTINGSGUIDINGINTERFACE_H

//(*Headers(SettingsGuidingInterface)
#include <wx/sizer.h>
#include <wx/panel.h>
#include <wx/choice.h>
//*)

#include "wxcustom/wxPropertyPage.h"

class	SettingsGuidingInterfacePort;
class	SettingsGuidingInterfaceFile;
class SettingsGuidingInterfaceBridge;


class SettingsGuidingInterface: public wxPropertyPage
{
	public:

		SettingsGuidingInterface(wxWindow* parent,wxWindowID id = -1);
		virtual ~SettingsGuidingInterface();

		void Init();
		bool OnApply();

		void ShowParams(int type);

		//(*Identifiers(SettingsGuidingInterface)
		static const long ID_CHOICE1;
		//*)

	protected:

		//(*Handlers(SettingsGuidingInterface)
		void OnInterfaceChoiceSelect(wxCommandEvent& event);
		//*)

		//(*Declarations(SettingsGuidingInterface)
		wxBoxSizer* BoxSizerParameters;
		wxBoxSizer* BoxSizer1;
		wxChoice* InterfaceChoice;
		//*)

	private:

   	SettingsGuidingInterfacePort* m_portParams;
   	SettingsGuidingInterfaceFile* m_fileParams;
   	SettingsGuidingInterfaceBridge* m_bridgeParams;

		DECLARE_EVENT_TABLE()
};

#endif