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 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96
|
//---------------------------------------------------------------------------
#ifndef optdlgH
#define optdlgH
//---------------------------------------------------------------------------
#include <Classes.hpp>
#include <Controls.hpp>
#include <StdCtrls.hpp>
#include <Forms.hpp>
#include <ExtCtrls.hpp>
//---------------------------------------------------------------------------
class TConvOptDialog : public TForm
{
__published:
TButton *BtnOk;
TButton *BtnCancel;
TGroupBox *GroupBox1;
TLabel *Label1;
TEdit *Marker;
TLabel *Label2;
TEdit *RunBy;
TEdit *Name0;
TEdit *Name1;
TEdit *Rec2;
TEdit *Rec1;
TEdit *Rec0;
TLabel *Label4;
TLabel *Label5;
TEdit *Ant0;
TEdit *Ant1;
TEdit *Ant2;
TEdit *AppPos2;
TEdit *AntDel2;
TEdit *AppPos1;
TEdit *AntDel1;
TEdit *AppPos0;
TEdit *AntDel0;
TLabel *Label6;
TLabel *Label7;
TLabel *Label10;
TEdit *Comment0;
TEdit *Comment1;
TGroupBox *GroupBox2;
TCheckBox *Nav1;
TCheckBox *Nav2;
TCheckBox *Nav3;
TCheckBox *Nav4;
TGroupBox *GroupBox3;
TCheckBox *Obs2;
TCheckBox *Obs3;
TCheckBox *Obs4;
TGroupBox *GroupBox4;
TCheckBox *Freq1;
TCheckBox *Freq2;
TCheckBox *Freq3;
TCheckBox *Freq4;
TCheckBox *Obs1;
TCheckBox *Nav5;
TComboBox *TraceLevel;
TLabel *Label3;
TCheckBox *Freq5;
TLabel *Label8;
TEdit *RcvOption;
TLabel *Label9;
TComboBox *RnxVer;
TCheckBox *Nav6;
TEdit *MarkerType;
TEdit *MarkerNo;
TEdit *ExSats;
TLabel *Label11;
TCheckBox *Freq6;
TCheckBox *RnxFile;
TLabel *Label12;
TEdit *RnxCode;
TCheckBox *ScanObs;
TCheckBox *OutIono;
TCheckBox *OutTime;
TCheckBox *OutLeaps;
TCheckBox *AutoPos;
TButton *BtnMask;
void __fastcall FormShow(TObject *Sender);
void __fastcall BtnOkClick(TObject *Sender);
void __fastcall RnxFileClick(TObject *Sender);
void __fastcall BtnMaskClick(TObject *Sender);
void __fastcall RnxVerChange(TObject *Sender);
void __fastcall AutoPosClick(TObject *Sender);
private:
void __fastcall UpdateEnable(void);
public:
AnsiString CodeMask[6];
__fastcall TConvOptDialog(TComponent* Owner);
};
//---------------------------------------------------------------------------
extern PACKAGE TConvOptDialog *ConvOptDialog;
//---------------------------------------------------------------------------
#endif
|