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 "GLBaseClasses.hpp"
  10. #include "GLBitmapFont.hpp"
  11. #include "GLCadencer.hpp"
  12. #include "GLCoordinates.hpp"
  13. #include "GLCrossPlatform.hpp"
  14. #include "GLGeomObjects.hpp"
  15. #include "GLHUDObjects.hpp"
  16. #include "GLObjects.hpp"
  17. #include "GLODEManager.hpp"
  18. #include "GLScene.hpp"
  19. #include "GLWin32Viewer.hpp"
  20. #include "GLWindowsFont.hpp"
  21. //---------------------------------------------------------------------------
  22. class TForm1 : public TForm
  23. {
  24. __published: // IDE-managed Components
  25. TGLSceneViewer *GLSceneViewer1;
  26. TGLScene *GLScene1;
  27. TGLDummyCube *GLDummyCube1;
  28. TGLCamera *GLCamera1;
  29. TGLLightSource *GLLightSource1;
  30. TGLDummyCube *Machine;
  31. TGLCylinder *Wheel;
  32. TGLCylinder *Axle;
  33. TGLCylinder *Pin1;
  34. TGLCube *Arm;
  35. TGLCylinder *Pin2;
  36. TGLCube *Slider;
  37. TGLRenderPoint *ODERenderPoint;
  38. TGLHUDText *GLHUDText1;
  39. TGLODEManager *GLODEManager1;
  40. TGLODEJointList *GLODEJointList1;
  41. TGLCadencer *GLCadencer1;
  42. TGLWindowsBitmapFont *GLWindowsBitmapFont1;
  43. void __fastcall GLSceneViewer1MouseDown(TObject *Sender, TMouseButton Button, TShiftState Shift,
  44. int X, int Y);
  45. void __fastcall GLSceneViewer1MouseMove(TObject *Sender, TShiftState Shift, int X,
  46. int Y);
  47. void __fastcall GLCadencer1Progress(TObject *Sender, const double deltaTime, const double newTime);
  48. private: // User declarations
  49. int my, mx;
  50. public: // User declarations
  51. __fastcall TForm1(TComponent* Owner);
  52. };
  53. //---------------------------------------------------------------------------
  54. extern PACKAGE TForm1 *Form1;
  55. //---------------------------------------------------------------------------
  56. #endif