home *** CD-ROM | disk | FTP | other *** search
- //---------------------------------------------------------------------------
- #ifndef frmfftH
- #define frmfftH
- //---------------------------------------------------------------------------
- #include <vcl\Classes.hpp>
- #include <vcl\Controls.hpp>
- #include <vcl\StdCtrls.hpp>
- #include <vcl\Forms.hpp>
- #include "Fourier.hpp"
- #include <vcl\Buttons.hpp>
- #include "RChart.hpp"
- //---------------------------------------------------------------------------
- class TForm1 : public TForm
- {
- __published: // IDE-managed Components
- TLabel *Label1;
- TLabel *Label2;
- TScrollBar *SBFreq1;
- TScrollBar *ScrollBar1;
- TFastFourier *FFT1;
- TLabel *Label3;
- TComboBox *CBoxWind;
- TCheckBox *CBLogY;
- TBitBtn *BButExit;
- TRChart *RChart2;
- TRChart *RChart1;
- void __fastcall BButExitClick(TObject *Sender);
- void __fastcall CBoxWindChange(TObject *Sender);
- void __fastcall ScrollBar1Change(TObject *Sender);
- void __fastcall SBFreq1Change(TObject *Sender);
- void __fastcall FormActivate(TObject *Sender);
- void __fastcall CBLogYClick(TObject *Sender);
- private: // User declarations
- void __fastcall StartFFT();
- public: // User declarations
- __fastcall TForm1(TComponent* Owner);
- };
- //---------------------------------------------------------------------------
- extern TForm1 *Form1;
- //---------------------------------------------------------------------------
- #endif
-