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