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 55 56 57 58 59 60 61 62 63 64 65 66
|
#ifndef SETTINGSGUIDEPORTPARALLEL_H
#define SETTINGSGUIDEPORTPARALLEL_H
//(*Headers(SettingsGuidePortParallel)
#include <wx/sizer.h>
#include <wx/stattext.h>
#include <wx/panel.h>
//*)
#include "wxcustom/wxIoPortCtrl.h"
class SettingsGuidePortParallel: public wxPanel
{
public:
SettingsGuidePortParallel(wxWindow* parent,wxWindowID id = -1);
virtual ~SettingsGuidePortParallel();
void Init();
unsigned char GXmask() const; //
unsigned char GXinit() const; // init GX
unsigned char GXRA_pos() const; // RA+
unsigned char GXRA_neg() const; // RA-
unsigned char GXDEC_pos() const; // Dec+
unsigned char GXDEC_neg() const; // Dec-
//(*Identifiers(SettingsGuidePortParallel)
static const long ID_STATICTEXT1;
static const long ID_STATICTEXT7;
static const long ID_STATICTEXT6;
static const long ID_CUSTOM3;
static const long ID_STATICTEXT3;
static const long ID_CUSTOM4;
static const long ID_STATICTEXT4;
static const long ID_CUSTOM5;
static const long ID_STATICTEXT2;
static const long ID_CUSTOM6;
static const long ID_STATICTEXT9;
static const long ID_CUSTOM7;
static const long ID_STATICTEXT5;
static const long ID_CUSTOM1;
//*)
protected:
//(*Handlers(SettingsGuidePortParallel)
//*)
//(*Declarations(SettingsGuidePortParallel)
wxIoPortCtrl* GX_RA_neg;
wxIoPortCtrl* GX_init;
wxIoPortCtrl* GX_RA_pos;
wxIoPortCtrl* GX_DEC_pos;
wxStaticText* StaticText7;
wxIoPortCtrl* GX_DEC_neg;
wxFlexGridSizer* FlexGridSizer1;
wxIoPortCtrl* GX_mask;
//*)
private:
DECLARE_EVENT_TABLE()
};
#endif
|