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 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163
|
//---------------------------------------------------------------------------
#ifndef plotoptH
#define plotoptH
//---------------------------------------------------------------------------
#include <Classes.hpp>
#include <Controls.hpp>
#include <StdCtrls.hpp>
#include <Forms.hpp>
#include <Dialogs.hpp>
#include <ExtCtrls.hpp>
#include <ComCtrls.hpp>
#include "plotmain.h"
#include <Vcl.Buttons.hpp>
//---------------------------------------------------------------------------
class TPlotOptDialog : public TForm
{
__published:
TButton *BtnCancel;
TButton *BtnOK;
TComboBox *PlotStyle;
TComboBox *Origin;
TLabel *Label1;
TLabel *Label2;
TLabel *Label3;
TLabel *Label4;
TComboBox *ShowArrow;
TPanel *Panel2;
TColorDialog *ColorDialog;
TPanel *Color1;
TButton *BtnColor1;
TLabel *Label5;
TPanel *Color2;
TButton *BtnColor2;
TLabel *Label6;
TPanel *Color3;
TButton *BtnColor3;
TLabel *Label7;
TPanel *Color4;
TButton *BtnColor4;
TLabel *Label9;
TComboBox *ShowStats;
TLabel *Label8;
TLabel *Label10;
TLabel *Label12;
TComboBox *TimeLabel;
TLabel *Label13;
TComboBox *AutoScale;
TPanel *MColor1;
TLabel *Label14;
TPanel *MColor2;
TPanel *MColor3;
TPanel *MColor4;
TPanel *MColor5;
TButton *BtnFont;
TFontDialog *FontDialog;
TLabel *Msg;
TLabel *Label17;
TComboBox *ShowSlip;
TLabel *Label18;
TLabel *Label19;
TComboBox *ShowErr;
TComboBox *MarkSize;
TLabel *Label16;
TComboBox *ShowHalfC;
TComboBox *YRange;
TLabel *Label20;
TComboBox *ShowLabel;
TLabel *Label21;
TComboBox *ShowGLabel;
TLabel *Label22;
TComboBox *ShowScale;
TLabel *Label23;
TComboBox *ShowCompass;
TLabel *Label24;
TComboBox *ShowEph;
TGroupBox *GroupBox1;
TCheckBox *NavSys1;
TCheckBox *NavSys2;
TCheckBox *NavSys5;
TCheckBox *NavSys3;
TCheckBox *NavSys4;
TComboBox *ElMask;
TLabel *Label11;
TComboBox *AnimCycle;
TLabel *Label25;
TComboBox *HideLowSat;
TPanel *Panel1;
TLabel *FontLabel;
TLabel *LabelFont;
TLabel *Label26;
TComboBox *ElMaskP;
TLabel *LabelRefPos;
TEdit *RefPos1;
TEdit *RefPos2;
TEdit *RefPos3;
TButton *BtnRefPos;
TLabel *LabelExSats;
TEdit *ExSats;
TLabel *Label28;
TComboBox *MaxDop;
TEdit *BuffSize;
TLabel *Label29;
TOpenDialog *OpenDialog;
TLabel *Label27;
TEdit *RefCycle;
TPanel *MColor6;
TCheckBox *NavSys6;
TEdit *QcCmd;
TLabel *Label30;
TLabel *Label31;
TComboBox *RcvPos;
TLabel *Label32;
TPanel *MColor7;
TPanel *MColor8;
TPanel *MColor9;
TPanel *MColor10;
TPanel *MColor11;
TPanel *MColor12;
TLabel *Label15;
TComboBox *LatLonFmt;
TLabel *Label33;
TEdit *RnxOpts;
TLabel *Label34;
TEdit *TLEFile;
TButton *BtnTLEFile;
TLabel *Label35;
TEdit *TLESatFile;
TButton *BtnTLESatFile;
TLabel *Label36;
TSpeedButton *BtnTLEView;
TSpeedButton *BtnTLESatView;
TLabel *Label37;
TComboBox *MaxMP;
void __fastcall BtnOKClick(TObject *Sender);
void __fastcall FormShow(TObject *Sender);
void __fastcall BtnColor1Click(TObject *Sender);
void __fastcall BtnColor2Click(TObject *Sender);
void __fastcall BtnColor3Click(TObject *Sender);
void __fastcall BtnColor4Click(TObject *Sender);
void __fastcall BtnRefPosClick(TObject *Sender);
void __fastcall OriginChange(TObject *Sender);
void __fastcall AutoScaleChange(TObject *Sender);
void __fastcall MColorClick(TObject *Sender);
void __fastcall BtnFontClick(TObject *Sender);
void __fastcall RcvPosChange(TObject *Sender);
void __fastcall BtnTLEFileClick(TObject *Sender);
void __fastcall BtnQcCmdClick(TObject *Sender);
void __fastcall BtnTLESatFileClick(TObject *Sender);
void __fastcall BtnTLEViewClick(TObject *Sender);
void __fastcall BtnTLESatViewClick(TObject *Sender);
private:
TFont *FontOpt;
void __fastcall UpdateFont(void);
void __fastcall UpdateEnable(void);
public:
TPlot *Plot;
__fastcall TPlotOptDialog(TComponent* Owner);
};
//---------------------------------------------------------------------------
extern PACKAGE TPlotOptDialog *PlotOptDialog;
//---------------------------------------------------------------------------
#endif
|