fMainC.h 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. //---------------------------------------------------------------------------
  2. #ifndef fMainCH
  3. #define fMainCH
  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.ParticleFX.hpp"
  15. #include "GLS.Scene.hpp"
  16. #include "GLS.SceneViewer.hpp"
  17. #include <Vcl.ExtCtrls.hpp>
  18. //---------------------------------------------------------------------------
  19. class TForm1 : public TForm
  20. {
  21. __published: // IDE-managed Components
  22. TGLSceneViewer *GLSceneViewer1;
  23. TRadioGroup *RadioGroup1;
  24. TPanel *Panel1;
  25. TGLScene *GLScene1;
  26. TGLDummyCube *DCVolcano;
  27. TGLSphere *Sphere1;
  28. TGLParticleFXRenderer *PFXRenderer;
  29. TGLLightSource *GLLightSource1;
  30. TGLDummyCube *DCCamera;
  31. TGLCamera *GLCamera1;
  32. TGLPolygonPFXManager *PFXVolcano;
  33. TGLCadencer *GLCadencer1;
  34. TTimer *Timer1;
  35. TGLPolygonPFXManager *PFXBlue;
  36. void __fastcall FormCreate(TObject *Sender);
  37. void __fastcall RadioGroup1Click(TObject *Sender);
  38. void __fastcall GLCadencer1Progress(TObject *Sender, const double deltaTime, const double newTime);
  39. void __fastcall Timer1Timer(TObject *Sender);
  40. private: // User declarations
  41. public: // User declarations
  42. __fastcall TForm1(TComponent* Owner);
  43. };
  44. //---------------------------------------------------------------------------
  45. extern PACKAGE TForm1 *Form1;
  46. //---------------------------------------------------------------------------
  47. #endif