Unit1.h 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. //---------------------------------------------------------------------------
  2. #ifndef Unit1H
  3. #define Unit1H
  4. //---------------------------------------------------------------------------
  5. #include <System.Classes.hpp>
  6. #include <Vcl.Controls.hpp>
  7. #include <Vcl.StdCtrls.hpp>
  8. #include <Vcl.Forms.hpp>
  9. #include "GLS.BaseClasses.hpp"
  10. #include "GLS.Cadencer.hpp"
  11. #include "GLS.Coordinates.hpp"
  12. #include "GLS.HUDObjects.hpp"
  13. #include "GLS.NGDManager.hpp"
  14. #include "GLS.Objects.hpp"
  15. #include "GLS.Scene.hpp"
  16. #include "GLS.SimpleNavigation.hpp"
  17. #include "GLS.SceneViewer.hpp"
  18. #include "GLS.XCollection.hpp"
  19. #include <Vcl.ExtCtrls.hpp>
  20. //---------------------------------------------------------------------------
  21. class TForm1 : public TForm
  22. {
  23. __published: // IDE-managed Components
  24. TGLSceneViewer *GLSceneViewer1;
  25. TPanel *Panel1;
  26. TButton *Button1;
  27. TButton *Button2;
  28. TButton *Button3;
  29. TButton *Button4;
  30. TButton *Button5;
  31. TButton *Button6;
  32. TGLScene *GLScene1;
  33. TGLCamera *GLCamera1;
  34. TGLLightSource *GLLightSource1;
  35. TGLCube *Floor;
  36. TGLDummyCube *GLDummyCube1;
  37. TGLResolutionIndependantHUDText *GLResolutionIndependantHUDText1;
  38. TGLCadencer *GLCadencer1;
  39. TGLSimpleNavigation *GLSimpleNavigation1;
  40. TGLNGDManager *GLNGDManager1;
  41. void __fastcall Button1Click(TObject *Sender);
  42. void __fastcall GLCadencer1Progress(TObject *Sender, const double deltaTime, const double newTime);
  43. void __fastcall Button2Click(TObject *Sender);
  44. void __fastcall Button3Click(TObject *Sender);
  45. void __fastcall Button4Click(TObject *Sender);
  46. void __fastcall Button5Click(TObject *Sender);
  47. void __fastcall Button6Click(TObject *Sender);
  48. private: // User declarations
  49. public: // User declarations
  50. __fastcall TForm1(TComponent* Owner);
  51. };
  52. //---------------------------------------------------------------------------
  53. extern PACKAGE TForm1 *Form1;
  54. //---------------------------------------------------------------------------
  55. #endif