fEventsC.h 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. //---------------------------------------------------------------------------
  2. #ifndef fEventsCH
  3. #define fEventsCH
  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. #include <Vcl.ComCtrls.hpp>
  21. //---------------------------------------------------------------------------
  22. class TFormEvents : public TForm
  23. {
  24. __published: // IDE-managed Components
  25. TGLSceneViewer *GLSceneViewer1;
  26. TGLScene *GLScene1;
  27. TGLDummyCube *DummyCube1;
  28. TGLCube *Cube1;
  29. TGLCube *Cube2;
  30. TGLCube *Cube3;
  31. TGLCamera *Camera1;
  32. TTimer *Timer1;
  33. TGLCadencer *GLCadencer1;
  34. TGLTimeEventsMGR *GLTimeEventsMGR1;
  35. TStatusBar *StatusBar;
  36. void __fastcall Timer1Timer(TObject *Sender);
  37. void __fastcall GLTimeEventsMGR1Events0Event(TTimeEvent *event);
  38. void __fastcall GLTimeEventsMGR1Events1Event(TTimeEvent *event);
  39. void __fastcall GLTimeEventsMGR1Events2Event(TTimeEvent *event);
  40. void __fastcall GLTimeEventsMGR1Events3Event(TTimeEvent *event);
  41. void __fastcall GLTimeEventsMGR1Events4Event(TTimeEvent *event);
  42. void __fastcall GLTimeEventsMGR1Events5Event(TTimeEvent *event);
  43. private: // User declarations
  44. public: // User declarations
  45. __fastcall TFormEvents(TComponent* Owner);
  46. };
  47. //---------------------------------------------------------------------------
  48. extern PACKAGE TFormEvents *FormEvents;
  49. //---------------------------------------------------------------------------
  50. #endif