home *** CD-ROM | disk | FTP | other *** search
/ Chip 1999 March / Chip_1999-03_cd.bin / zkuste / delphi / D / MATEM.ARJ / RCHART.ZIP / exmpl-3 / cpp3 / twowind.h < prev   
Encoding:
C/C++ Source or Header  |  1997-05-20  |  1.2 KB  |  36 lines

  1. //---------------------------------------------------------------------------
  2. #ifndef twowindH
  3. #define twowindH
  4. //---------------------------------------------------------------------------
  5. #include <vcl\Classes.hpp>
  6. #include <vcl\Controls.hpp>
  7. #include <vcl\StdCtrls.hpp>
  8. #include <vcl\Forms.hpp>
  9. #include <vcl\ExtCtrls.hpp>
  10. #include "RChart.hpp"
  11. //---------------------------------------------------------------------------
  12. class TForm1 : public TForm
  13. {
  14. __published:    // IDE-managed Components
  15.     TBevel *Bevel1;
  16.     TPanel *Panel1;
  17.     TRChart *RChart1;
  18.     TRChart *RChart2;
  19.     TButton *Button1;
  20.     TButton *Button2;
  21.     TButton *Button4;
  22.     TButton *Button3;
  23.     void __fastcall Button1Click(TObject *Sender);
  24.     void __fastcall Button2Click(TObject *Sender);
  25.     void __fastcall Button4Click(TObject *Sender);
  26.     void __fastcall Button3Click(TObject *Sender);
  27. private:    // User declarations
  28.         bool ProgEnd;
  29. public:        // User declarations
  30.     __fastcall TForm1(TComponent* Owner);
  31. };
  32. //---------------------------------------------------------------------------
  33. extern TForm1 *Form1;
  34. //---------------------------------------------------------------------------
  35. #endif
  36.