Unit1.h 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  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.SceneViewer.hpp"
  18. #include <Vcl.ComCtrls.hpp>
  19. //---------------------------------------------------------------------------
  20. class TForm1 : public TForm
  21. {
  22. __published: // IDE-managed Components
  23. TGLSceneViewer *GLSceneViewer1;
  24. TTrackBar *TrackBar;
  25. TCheckBox *CBPlay;
  26. TGLScene *GLScene1;
  27. TGLCube *Cube1;
  28. TGLDummyCube *DummyCube1;
  29. TGLCube *Cube2;
  30. TGLDummyCube *DummyCube2;
  31. TGLCube *Cube3;
  32. TGLLightSource *GLLightSource1;
  33. TGLCamera *GLCamera1;
  34. TGLCadencer *GLCadencer1;
  35. void __fastcall TrackBarChange(TObject *Sender);
  36. void __fastcall GLCadencer1Progress(TObject *Sender, const double deltaTime, const double newTime);
  37. void __fastcall FormResize(TObject *Sender);
  38. void __fastcall FormCloseQuery(TObject *Sender, bool &CanClose);
  39. private: // User declarations
  40. public: // User declarations
  41. __fastcall TForm1(TComponent* Owner);
  42. };
  43. //---------------------------------------------------------------------------
  44. extern PACKAGE TForm1 *Form1;
  45. //---------------------------------------------------------------------------
  46. #endif