//--------------------------------------------------------------------------- #ifndef Unit1H #define Unit1H //--------------------------------------------------------------------------- #include #include #include #include #include #include #include #include //--------------------------------------------------------------------------- class TForm1 : public TForm { __published: // IDE 管理のコンポーネント TComboBox *ComboBox1; TLabel *Label1; TComboBox *ComboBox2; TLabel *Label2; TLabel *Label3; TLabel *Label4; TLabel *Label5; TTimer *Timer1; TButton *Button1; TButton *Button2; TButton *Button3; TButton *Button4; TBevel *Bevel1; TImage *Image1; TRadioButton *RadioButton1; TRadioButton *RadioButton2; TRadioButton *RadioButton3; TRadioButton *RadioButton4; TRadioButton *RadioButton5; TLabel *Label8; TRadioButton *RadioButton6; TButton *Button5; TSaveDialog *SaveDialog1; void __fastcall ComboBox1Change(TObject *Sender); void __fastcall ComboBox2Change(TObject *Sender); void __fastcall FormCreate(TObject *Sender); void __fastcall Button1Click(TObject *Sender); void __fastcall Button2Click(TObject *Sender); void __fastcall Timer1Timer(TObject *Sender); void __fastcall Button3Click(TObject *Sender); void __fastcall Button4Click(TObject *Sender); void __fastcall Button5Click(TObject *Sender); private: // ユーザー宣言 public: // ユーザー宣言 int i,k,j,dt; float y,X,Y; float datax[300],datay[300],XD[300],YD[300]; FILE *fp; __fastcall TForm1(TComponent* Owner); }; //--------------------------------------------------------------------------- extern PACKAGE TForm1 *Form1; //--------------------------------------------------------------------------- #endif