fFontColorC.h 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. //---------------------------------------------------------------------------
  2. #ifndef fFontColorCH
  3. #define fFontColorCH
  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.BitmapFont.hpp"
  11. #include "GLS.Cadencer.hpp"
  12. #include "GLS.Coordinates.hpp"
  13. #include "GLS.HUDObjects.hpp"
  14. #include "GLS.Scene.hpp"
  15. #include "GLS.GeomObjects.hpp"
  16. #include "GLS.TimeEventsMgr.hpp"
  17. #include "GLS.SceneViewer.hpp"
  18. #include "GLS.Utils.hpp"
  19. //---------------------------------------------------------------------------
  20. class TForm1 : public TForm
  21. {
  22. __published: // IDE-managed Components
  23. TGLSceneViewer *GLSceneViewer1;
  24. TGLScene *GLScene1;
  25. TGLLightSource *GLLightSource1;
  26. TGLTeapot *Teapot1;
  27. TGLHUDText *HUDText1;
  28. TGLHUDText *HUDText2;
  29. TGLHUDText *HUDText3;
  30. TGLHUDText *HUDText4;
  31. TGLCamera *GLCamera1;
  32. TGLBitmapFont *BitmapFont;
  33. TGLTimeEventsMGR *GLTimeEventsMGR1;
  34. TGLCadencer *GLCadencer1;
  35. void __fastcall FormCreate(TObject *Sender);
  36. void __fastcall GLTimeEventsMGR1Events0Event(TTimeEvent *event);
  37. void __fastcall GLTimeEventsMGR1Events1Event(TTimeEvent *event);
  38. void __fastcall GLTimeEventsMGR1Events2Event(TTimeEvent *event);
  39. private: // User declarations
  40. int FadeOutCount;
  41. int FadeInCount;
  42. TVector4f OriginalColor;
  43. public: // User declarations
  44. __fastcall TForm1(TComponent* Owner);
  45. };
  46. //---------------------------------------------------------------------------
  47. extern PACKAGE TForm1 *Form1;
  48. //---------------------------------------------------------------------------
  49. #endif