File: wxGuidingInterfaceBridge.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 (50 lines) | stat: -rw-r--r-- 1,120 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
#ifndef WXGUIDINGINTERFACEBRIDGE_H
#define WXGUIDINGINTERFACEBRIDGE_H

//(*Headers(wxGuidingInterfaceBridge)
#include <wx/sizer.h>
#include <wx/stattext.h>
#include <wx/textctrl.h>
#include <wx/panel.h>
//*)

#include "wxNoteBookPageEx.h"

class wxGuidingInterfaceBridge :  public wxNoteBookPageEx
{
	public:

		wxGuidingInterfaceBridge(wxWindow* parent,wxWindowID id=wxID_ANY,const wxPoint& pos=wxDefaultPosition,const wxSize& size=wxDefaultSize);
		virtual ~wxGuidingInterfaceBridge();

   	void Init();
      void InitBridgeParameters();

      /// On apply is called whenever the current page values should be applied
      virtual void OnApply();

		//(*Declarations(wxGuidingInterfaceBridge)
		wxPanel* Panel1;
		wxTextCtrl* TextCtrlHost;
		wxTextCtrl* TextCtrlPort;
		//*)

	protected:

		//(*Identifiers(wxGuidingInterfaceBridge)
		static const long ID_STATICTEXT1;
		static const long ID_TEXTCTRL1;
		static const long ID_STATICTEXT2;
		static const long ID_TEXTCTRL2;
		static const long ID_PANEL1;
		//*)

	private:

		//(*Handlers(wxGuidingInterfaceBridge)
		//*)

		DECLARE_EVENT_TABLE()
};

#endif