//--------------------------------------------------------------------------- #ifndef f8254UnitH #define f8254UnitH //--------------------------------------------------------------------------- #include #include #include #include #include //--------------------------------------------------------------------------- class Tf8254Form : public TForm { __published: // IDE-managed Components TPanel *FreqOutPanel; TLabel *FreqOutLabel; TLabel *RealLabel; TEdit *FreqOutEdit; TEdit *RealEdit; TPanel *EventCountPanel; TLabel *EventCountLabel; TButton *EventTestButton; TButton *SinceLastButton; TEdit *EventCountEdit; TButton *SinceFirstButton; TPanel *PulseWidthPanel; TLabel *PulseLabel; TEdit *PulseEdit; TPanel *FreqInPanel; TLabel *FreqInLabel; TEdit *FreqInEdit; TGroupBox *ISAPanel; TLabel *HexLabel; TEdit *BaseEdit; TButton *StartButton; TButton *ExitButton; TRadioGroup *FeatureGroup; TMemo *Instructions; TTimer *FreqInTimer; TTimer *PulseWidthTimer; void __fastcall FeatureGroupClick(TObject *Sender); void __fastcall FreqInTimerTimer(TObject *Sender); void __fastcall SinceFirstButtonClick(TObject *Sender); void __fastcall SinceLastButtonClick(TObject *Sender); void __fastcall EventTestButtonClick(TObject *Sender); void __fastcall PulseWidthTimerTimer(TObject *Sender); void __fastcall StartButtonClick(TObject *Sender); void __fastcall ExitButtonClick(TObject *Sender); void __fastcall FormClose(TObject *Sender, TCloseAction &Action); void __fastcall FormCreate(TObject *Sender); private: // User declarations public: // User declarations __fastcall Tf8254Form(TComponent* Owner); }; //--------------------------------------------------------------------------- extern PACKAGE Tf8254Form *f8254Form; //--------------------------------------------------------------------------- #endif