fWhirlC.h 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. //---------------------------------------------------------------------------
  2. #ifndef fWhirlCH
  3. #define fWhirlCH
  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.Objects.hpp"
  14. #include "GLS.Particles.hpp"
  15. #include "GLS.Scene.hpp"
  16. #include "GLS.SceneViewer.hpp"
  17. #include <Vcl.ExtCtrls.hpp>
  18. //---------------------------------------------------------------------------
  19. class TFormWhirl : public TForm
  20. {
  21. __published: // IDE-managed Components
  22. TGLSceneViewer *GLSceneViewer1;
  23. TPanel *Panel1;
  24. TGLCadencer *GLCadencer1;
  25. TTimer *Timer1;
  26. TGLScene *GLScene1;
  27. TGLParticles *GLParticles1;
  28. TGLDummyCube *DummyCube1;
  29. TGLSprite *Sprite1;
  30. TGLCamera *GLCamera1;
  31. void __fastcall GLSceneViewer1MouseDown(TObject *Sender, TMouseButton Button, TShiftState Shift,
  32. int X, int Y);
  33. void __fastcall GLSceneViewer1MouseMove(TObject *Sender, TShiftState Shift, int X,
  34. int Y);
  35. void __fastcall GLDummyCube1Progress(TObject *Sender, const double deltaTime, const double newTime);
  36. void __fastcall GLCadencer1Progress(TObject *Sender, const double deltaTime, const double newTime);
  37. void __fastcall GLParticles1ActivateParticle(TObject *Sender, TGLBaseSceneObject *particle);
  38. void __fastcall Timer1Timer(TObject *Sender);
  39. private: // User declarations
  40. int mx, my;
  41. public: // User declarations
  42. __fastcall TFormWhirl(TComponent* Owner);
  43. };
  44. //---------------------------------------------------------------------------
  45. extern PACKAGE TFormWhirl *FormWhirl;
  46. //---------------------------------------------------------------------------
  47. #endif