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 "GLBaseClasses.hpp"
  13. #include "GLCadencer.hpp"
  14. #include "GLCoordinates.hpp"
  15. #include "GLCrossPlatform.hpp"
  16. #include "GLObjects.hpp"
  17. #include "GLScene.hpp"
  18. #include "GLTimeEventsMgr.hpp"
  19. #include "GLWin32Viewer.hpp"
  20. #include <Vcl.ExtCtrls.hpp>
  21. //---------------------------------------------------------------------------
  22. class TForm1 : 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. void __fastcall Timer1Timer(TObject *Sender);
  36. void __fastcall GLTimeEventsMGR1Events0Event(TTimeEvent *event);
  37. void __fastcall GLTimeEventsMGR1Events1Event(TTimeEvent *event);
  38. void __fastcall GLTimeEventsMGR1Events2Event(TTimeEvent *event);
  39. void __fastcall GLTimeEventsMGR1Events3Event(TTimeEvent *event);
  40. void __fastcall GLTimeEventsMGR1Events4Event(TTimeEvent *event);
  41. void __fastcall GLTimeEventsMGR1Events5Event(TTimeEvent *event);
  42. private: // User declarations
  43. public: // User declarations
  44. __fastcall TForm1(TComponent* Owner);
  45. };
  46. //---------------------------------------------------------------------------
  47. extern PACKAGE TForm1 *Form1;
  48. //---------------------------------------------------------------------------
  49. #endif