fBlurC.h 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. //---------------------------------------------------------------------------
  2. #ifndef fBlurCH
  3. #define fBlurCH
  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.Cadencer.hpp"
  11. #include "GLS.Coordinates.hpp"
  12. #include "GLS.Material.hpp"
  13. #include "GLS.Objects.hpp"
  14. #include "GLS.Scene.hpp"
  15. #include "GLS.SceneViewer.hpp"
  16. #include <Vcl.ExtCtrls.hpp>
  17. #include "GLS.Blur.hpp"
  18. #include "JPeg.hpp"
  19. //---------------------------------------------------------------------------
  20. class TForm1 : public TForm
  21. {
  22. __published: // IDE-managed Components
  23. TGLSceneViewer *GLSceneViewer1;
  24. TPanel *Panel1;
  25. TLabel *Label1;
  26. TLabel *Label2;
  27. TLabel *LabelFPS;
  28. TComboBox *ComboBox1;
  29. TComboBox *ComboBox2;
  30. TGLScene *GLScene1;
  31. TGLLightSource *GLLightSource1;
  32. TGLCube *GLCube1;
  33. TGLSphere *GLSphere1;
  34. TGLDummyCube *GLDummyCube1;
  35. TGLCamera *GLCamera1;
  36. TGLMaterialLibrary *GLMaterialLibrary1;
  37. TGLCadencer *GLCadencer1;
  38. TTimer *Timer1;
  39. void __fastcall FormCreate(TObject *Sender);
  40. void __fastcall ComboBox1Change(TObject *Sender);
  41. void __fastcall GLCadencer1Progress(TObject *Sender, const double deltaTime, const double newTime);
  42. void __fastcall ComboBox2Change(TObject *Sender);
  43. void __fastcall Timer1Timer(TObject *Sender);
  44. void __fastcall GLSceneViewer1MouseMove(TObject *Sender, TShiftState Shift, int X,
  45. int Y);
  46. private: // User declarations
  47. int oldx, oldy;
  48. TGLBlur *B;
  49. public: // User declarations
  50. __fastcall TForm1(TComponent* Owner);
  51. };
  52. //---------------------------------------------------------------------------
  53. extern PACKAGE TForm1 *Form1;
  54. //---------------------------------------------------------------------------
  55. #endif