fManualC.h 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. //---------------------------------------------------------------------------
  2. #ifndef fManualCH
  3. #define fManualCH
  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. TStaticText *StaticText1;
  27. TGLScene *GLScene1;
  28. TGLCube *Cube1;
  29. TGLCube *Cube2;
  30. TGLCube *Cube3;
  31. TGLLightSource *GLLightSource1;
  32. TGLCamera *GLCamera1;
  33. TGLCadencer *GLCadencer1;
  34. void __fastcall TrackBarChange(TObject *Sender);
  35. void __fastcall GLCadencer1Progress(TObject *Sender, const double deltaTime, const double newTime);
  36. void __fastcall FormResize(TObject *Sender);
  37. private: // User declarations
  38. public: // User declarations
  39. __fastcall TForm1(TComponent* Owner);
  40. };
  41. //---------------------------------------------------------------------------
  42. extern PACKAGE TForm1 *Form1;
  43. //---------------------------------------------------------------------------
  44. #endif