home *** CD-ROM | disk | FTP | other *** search
/ Chip 1999 March / Chip_1999-03_cd.bin / zkuste / delphi / D / MATEM.ARJ / RCHART.ZIP / exmpl-6 / cpp3 / fifomain.h < prev    next >
Encoding:
C/C++ Source or Header  |  1997-05-23  |  1.1 KB  |  31 lines

  1. //---------------------------------------------------------------------------
  2. #ifndef fifomainH
  3. #define fifomainH
  4. //---------------------------------------------------------------------------
  5. #include <vcl\Classes.hpp>
  6. #include <vcl\Controls.hpp>
  7. #include <vcl\StdCtrls.hpp>
  8. #include <vcl\Forms.hpp>
  9. #include "RChart.hpp"
  10. #include <vcl\Buttons.hpp>
  11. //---------------------------------------------------------------------------
  12. class TForm1 : public TForm
  13. {
  14. __published:    // IDE-managed Components
  15.     TRChart *RChart1;
  16.     TBitBtn *BButExit;
  17.     TBitBtn *BButStart;
  18.     TBitBtn *BButStop;
  19.     void __fastcall BButExitClick(TObject *Sender);
  20.     void __fastcall BButStartClick(TObject *Sender);
  21.     void __fastcall BButStopClick(TObject *Sender);
  22.     void __fastcall FormMouseMove(TObject *Sender, TShiftState Shift, int X, int Y);
  23. private:    // User declarations
  24. public:        // User declarations
  25.     __fastcall TForm1(TComponent* Owner);
  26. };
  27. //---------------------------------------------------------------------------
  28. extern TForm1 *Form1;
  29. //---------------------------------------------------------------------------
  30. #endif
  31.