Unit1.h 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  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.Behaviours.hpp"
  11. #include "GLS.Cadencer.hpp"
  12. #include "GLS.Coordinates.hpp"
  13. #include "GLS.FireFX.hpp"
  14. #include "GLS.GeomObjects.hpp"
  15. #include "GLS.Objects.hpp"
  16. #include "GLS.Scene.hpp"
  17. #include "GLS.SceneViewer.hpp"
  18. #include <Vcl.ExtCtrls.hpp>
  19. //---------------------------------------------------------------------------
  20. class TForm1 : public TForm
  21. {
  22. __published: // IDE-managed Components
  23. TGLSceneViewer *GLSceneViewer1;
  24. TGLScene *GLScene1;
  25. TGLTorus *Torus1;
  26. TGLSphere *Sphere1;
  27. TGLLightSource *GLLightSource2;
  28. TGLCamera *GLCamera1;
  29. TGLCadencer *GLCadencer1;
  30. TGLFireFXManager *GLFireFXManager1;
  31. TTimer *Timer1;
  32. void __fastcall FormMouseWheel(TObject *Sender, TShiftState Shift, int WheelDelta,
  33. TPoint &MousePos, bool &Handled);
  34. void __fastcall Timer1Timer(TObject *Sender);
  35. void __fastcall GLSceneViewer1MouseMove(TObject *Sender, TShiftState Shift, int X,
  36. int Y);
  37. void __fastcall GLSceneViewer1MouseDown(TObject *Sender, TMouseButton Button, TShiftState Shift,
  38. int X, int Y);
  39. private: // User declarations
  40. public: // User declarations
  41. __fastcall TForm1(TComponent* Owner);
  42. };
  43. //---------------------------------------------------------------------------
  44. extern PACKAGE TForm1 *Form1;
  45. //---------------------------------------------------------------------------
  46. #endif