home *** CD-ROM | disk | FTP | other *** search
/ Chip 1998 March / Chip_1998-03_cd.bin / zkuste / matemat / Vyssi / FOURIER.ZIP / exmpl-1 / cpp / frmfft.h < prev   
Encoding:
C/C++ Source or Header  |  1997-07-11  |  1.4 KB  |  42 lines

  1. //---------------------------------------------------------------------------
  2. #ifndef frmfftH
  3. #define frmfftH
  4. //---------------------------------------------------------------------------
  5. #include <vcl\Classes.hpp>
  6. #include <vcl\Controls.hpp>
  7. #include <vcl\StdCtrls.hpp>
  8. #include <vcl\Forms.hpp>
  9. #include "Fourier.hpp"
  10. #include <vcl\Buttons.hpp>
  11. #include "RChart.hpp"
  12. //---------------------------------------------------------------------------
  13. class TForm1 : public TForm
  14. {
  15. __published:    // IDE-managed Components
  16.     TLabel *Label1;
  17.     TLabel *Label2;
  18.     TScrollBar *SBFreq1;
  19.     TScrollBar *ScrollBar1;
  20.     TFastFourier *FFT1;
  21.     TLabel *Label3;
  22.     TComboBox *CBoxWind;
  23.     TCheckBox *CBLogY;
  24.     TBitBtn *BButExit;
  25.     TRChart *RChart2;
  26.     TRChart *RChart1;
  27.     void __fastcall BButExitClick(TObject *Sender);
  28.     void __fastcall CBoxWindChange(TObject *Sender);
  29.     void __fastcall ScrollBar1Change(TObject *Sender);
  30.     void __fastcall SBFreq1Change(TObject *Sender);
  31.     void __fastcall FormActivate(TObject *Sender);
  32.     void __fastcall CBLogYClick(TObject *Sender);
  33. private:    // User declarations
  34.         void __fastcall StartFFT();
  35. public:        // User declarations
  36.     __fastcall TForm1(TComponent* Owner);
  37. };
  38. //---------------------------------------------------------------------------
  39. extern TForm1 *Form1;
  40. //---------------------------------------------------------------------------
  41. #endif
  42.