2
0

fWinfontC.h 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. //---------------------------------------------------------------------------
  2. #ifndef fWinfontCH
  3. #define fWinfontCH
  4. //---------------------------------------------------------------------------
  5. #include <System.Classes.hpp>
  6. #include <Vcl.Controls.hpp>
  7. #include <Vcl.StdCtrls.hpp>
  8. #include <Vcl.Forms.hpp>
  9. #include <Vcl.Dialogs.hpp>
  10. #include <Vcl.ExtCtrls.hpp>
  11. #include <Vcl.Menus.hpp>
  12. #include "GLS.BaseClasses.hpp"
  13. #include "GLS.BitmapFont.hpp"
  14. #include "GLS.Cadencer.hpp"
  15. #include "GLS.Coordinates.hpp"
  16. #include "GLS.HUDObjects.hpp"
  17. #include "GLS.Scene.hpp"
  18. #include "GLS.GeomObjects.hpp"
  19. #include "GLS.SceneViewer.hpp"
  20. #include "GLS.WindowsFont.hpp"
  21. #include "Unit2.h"
  22. //---------------------------------------------------------------------------
  23. class TForm1 : public TForm
  24. {
  25. __published: // IDE-managed Components
  26. TGLSceneViewer *GLSceneViewer1;
  27. TGLScene *GLScene1;
  28. TGLLightSource *GLLightSource1;
  29. TGLTeapot *Teapot1;
  30. TGLHUDText *HUDText1;
  31. TGLHUDText *HUDText2;
  32. TGLHUDText *HUDText3;
  33. TGLCamera *GLCamera1;
  34. TGLCadencer *GLCadencer1;
  35. TTimer *Timer1;
  36. TGLWindowsBitmapFont *WindowsBitmapFont1;
  37. TMainMenu *MainMenu1;
  38. TMenuItem *MIPickFont;
  39. TMenuItem *MIViewTexture;
  40. TMenuItem *MIFPS;
  41. TFontDialog *FontDialog1;
  42. void __fastcall FormCreate(TObject *Sender);
  43. void __fastcall MIPickFontClick(TObject *Sender);
  44. void __fastcall MIViewTextureClick(TObject *Sender);
  45. void __fastcall GLCadencer1Progress(TObject *Sender, const double deltaTime, const double newTime);
  46. void __fastcall Timer1Timer(TObject *Sender);
  47. void __fastcall GLSceneViewer1Click(TObject *Sender);
  48. private: // User declarations
  49. public: // User declarations
  50. __fastcall TForm1(TComponent* Owner);
  51. };
  52. //---------------------------------------------------------------------------
  53. extern PACKAGE TForm1 *Form1;
  54. //---------------------------------------------------------------------------
  55. #endif