Unit1.h 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. //---------------------------------------------------------------------------
  2. #ifndef Unit1H
  3. #define Unit1H
  4. //---------------------------------------------------------------------------
  5. #include <vcl.h>
  6. #include <tchar.h>
  7. //---------------------------------------------------------------------------
  8. #include <System.Classes.hpp>
  9. #include <Vcl.Controls.hpp>
  10. #include <Vcl.StdCtrls.hpp>
  11. #include <Vcl.Forms.hpp>
  12. #include "GLS.BaseClasses.hpp"
  13. #include "GLS.Cadencer.hpp"
  14. #include "GLS.Coordinates.hpp"
  15. #include "GLS.Objects.hpp"
  16. #include "GLS.Scene.hpp"
  17. #include "GLS.TimeEventsMgr.hpp"
  18. #include "GLS.SceneViewer.hpp"
  19. #include <Vcl.ExtCtrls.hpp>
  20. //---------------------------------------------------------------------------
  21. class TForm1 : public TForm
  22. {
  23. __published: // IDE-managed Components
  24. TGLSceneViewer *GLSceneViewer1;
  25. TGLScene *GLScene1;
  26. TGLDummyCube *DummyCube1;
  27. TGLCube *Cube1;
  28. TGLCube *Cube2;
  29. TGLCube *Cube3;
  30. TGLCamera *Camera1;
  31. TTimer *Timer1;
  32. TGLCadencer *GLCadencer1;
  33. TGLTimeEventsMGR *GLTimeEventsMGR1;
  34. void __fastcall Timer1Timer(TObject *Sender);
  35. void __fastcall GLTimeEventsMGR1Events0Event(TTimeEvent *event);
  36. void __fastcall GLTimeEventsMGR1Events1Event(TTimeEvent *event);
  37. void __fastcall GLTimeEventsMGR1Events2Event(TTimeEvent *event);
  38. void __fastcall GLTimeEventsMGR1Events3Event(TTimeEvent *event);
  39. void __fastcall GLTimeEventsMGR1Events4Event(TTimeEvent *event);
  40. void __fastcall GLTimeEventsMGR1Events5Event(TTimeEvent *event);
  41. private: // User declarations
  42. public: // User declarations
  43. __fastcall TForm1(TComponent* Owner);
  44. };
  45. //---------------------------------------------------------------------------
  46. extern PACKAGE TForm1 *Form1;
  47. //---------------------------------------------------------------------------
  48. #endif