fTorqueC.h 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. //---------------------------------------------------------------------------
  2. #ifndef fTorqueCH
  3. #define fTorqueCH
  4. //---------------------------------------------------------------------------
  5. #include <tchar.h>
  6. #include <System.Classes.hpp>
  7. #include <System.SysUtils.hpp>
  8. #include <Vcl.Controls.hpp>
  9. #include <Vcl.StdCtrls.hpp>
  10. #include <Vcl.Forms.hpp>
  11. #include <Vcl.ExtCtrls.hpp>
  12. #include "GLS.BaseClasses.hpp"
  13. #include "GLS.Cadencer.hpp"
  14. #include "GLS.Coordinates.hpp"
  15. #include "GLS.Objects.hpp"
  16. #include "GLS.GeomObjects.hpp"
  17. #include "GLS.Scene.hpp"
  18. #include "GLS.SceneViewer.hpp"
  19. #include "GLS.Behaviours.hpp"
  20. #include "GLS.VectorFileObjects.hpp"
  21. #include "GLS.BitmapFont.hpp"
  22. #include "GLS.HUDObjects.hpp"
  23. //---------------------------------------------------------------------------
  24. class TFormTorqueC : public TForm
  25. {
  26. __published: // IDE-managed Components
  27. TGLSceneViewer *GLSceneViewer1;
  28. TGLCamera *GLCamera1;
  29. TGLScene *GLScene1;
  30. TGLCadencer *GLCadencer1;
  31. TGLLightSource *GLLightSource1;
  32. TGLDummyCube *DummyCube1;
  33. TPanel *Panel1;
  34. TPanel *PanelBottom;
  35. TCheckBox *CheckBox1;
  36. TGLBitmapFont *GLBitmapFont1;
  37. TLabel *lHexahedron;
  38. TLabel *lDodecahedron;
  39. TLabel *lOctagedron;
  40. TLabel *lTetrahedron;
  41. TLabel *lIcosahedron;
  42. TGLTetrahedron *Tetrahedron;
  43. TGLOctahedron *Octahedron;
  44. TGLHexahedron *Hexahedron;
  45. TGLDodecahedron *Dodecahedron;
  46. TGLIcosahedron *Icosahedron;
  47. void __fastcall FormCreate(TObject *Sender);
  48. void __fastcall GLSceneViewer1MouseMove(TObject *Sender, TShiftState Shift, int X,
  49. int Y);
  50. void __fastcall GLCadencer1Progress(TObject *Sender, const double deltaTime, const double newTime);
  51. void __fastcall CheckBox1Click(TObject *Sender);
  52. private: // User declarations
  53. double lastTime;
  54. TGLBaseSceneObject *pickedObject;
  55. public: // User declarations
  56. __fastcall TFormTorqueC(TComponent* Owner);
  57. };
  58. //---------------------------------------------------------------------------
  59. extern PACKAGE TFormTorqueC *FormTorqueC;
  60. //---------------------------------------------------------------------------
  61. #endif