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

  1. //---------------------------------------------------------------------------
  2. #ifndef mainfrmH
  3. #define mainfrmH
  4. //---------------------------------------------------------------------------
  5. #include <vcl\Classes.hpp>
  6. #include <vcl\Controls.hpp>
  7. #include <vcl\StdCtrls.hpp>
  8. #include <vcl\Forms.hpp>
  9. #include <vcl\Buttons.hpp>
  10. #include "RChart.hpp"
  11. #include "Fourier.hpp"
  12. //---------------------------------------------------------------------------
  13. class TForm1 : public TForm
  14. {
  15. __published:    // IDE-managed Components
  16.     TScrollBar *ScrollBar1;
  17.     TScrollBar *ScrollBar2;
  18.     TScrollBar *ScrollBar3;
  19.     TScrollBar *ScrollBar4;
  20.     TScrollBar *ScrollBar5;
  21.     TScrollBar *ScrollBar6;
  22.     TScrollBar *ScrollBar7;
  23.     TScrollBar *ScrollBar8;
  24.     TScrollBar *ScrollBar9;
  25.     TScrollBar *ScrollBar10;
  26.     TScrollBar *ScrollBar11;
  27.     TScrollBar *ScrollBar12;
  28.     TScrollBar *ScrollBar13;
  29.     TScrollBar *ScrollBar14;
  30.     TScrollBar *ScrollBar15;
  31.     TScrollBar *ScrollBar16;
  32.     TLabel *Label1;
  33.     TBitBtn *BButSquare;
  34.     TBitBtn *BButHalfSine;
  35.     TBitBtn *BButTriangle;
  36.     TBitBtn *BButSaw;
  37.     TBitBtn *BButExit;
  38.     TBitBtn *BButReset;
  39.     TRChart *RChart1;
  40.     TFastFourier *FastFourier1;
  41.     void __fastcall ScrollBar1Change(TObject *Sender);
  42.     void __fastcall BButResetClick(TObject *Sender);
  43.     void __fastcall FormCreate(TObject *Sender);
  44.     void __fastcall BButSquareClick(TObject *Sender);
  45.     void __fastcall BButSawClick(TObject *Sender);
  46.     void __fastcall BButExitClick(TObject *Sender);
  47.     void __fastcall BButHalfSineClick(TObject *Sender);
  48.     void __fastcall BButTriangleClick(TObject *Sender);
  49. private:    // User declarations
  50. public:        // User declarations
  51.     __fastcall TForm1(TComponent* Owner);
  52. };
  53. //---------------------------------------------------------------------------
  54. extern TForm1 *Form1;
  55. //---------------------------------------------------------------------------
  56. #endif
  57.