fTexFormatC.h 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. //---------------------------------------------------------------------------
  2. #ifndef fTexFormatCH
  3. #define fTexFormatCH
  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.Coordinates.hpp"
  11. #include "GLS.HUDObjects.hpp"
  12. #include "GLS.Objects.hpp"
  13. #include "GLS.Scene.hpp"
  14. #include "GLS.SceneViewer.hpp"
  15. #include <Vcl.ExtCtrls.hpp>
  16. //---------------------------------------------------------------------------
  17. class TForm1 : public TForm
  18. {
  19. __published: // IDE-managed Components
  20. TGLSceneViewer *GLSceneViewer1;
  21. TPanel *Panel1;
  22. TLabel *Label2;
  23. TLabel *Label3;
  24. TLabel *Label4;
  25. TLabel *LAPicSize;
  26. TLabel *Label5;
  27. TLabel *LAUsedMemory;
  28. TLabel *LARGB32;
  29. TLabel *LACompression;
  30. TComboBox *CBFormat;
  31. TComboBox *CBCompression;
  32. TComboBox *CBImage;
  33. TRadioButton *RBDefault;
  34. TRadioButton *RBDouble;
  35. TRadioButton *RBQuad;
  36. TGLScene *GLScene1;
  37. TGLHUDSprite *HUDSprite1;
  38. TGLCamera *GLCamera1;
  39. void __fastcall FormCreate(TObject *Sender);
  40. void __fastcall CBImageChange(TObject *Sender);
  41. void __fastcall FormResize(TObject *Sender);
  42. void __fastcall GLSceneViewer1AfterRender(TObject *Sender);
  43. void __fastcall RBDefaultClick(TObject *Sender);
  44. void __fastcall RBDoubleClick(TObject *Sender);
  45. void __fastcall RBQuadClick(TObject *Sender);
  46. void __fastcall CBCompressionChange(TObject *Sender);
  47. void __fastcall CBFormatChange(TObject *Sender);
  48. private: // User declarations
  49. public: // User declarations
  50. __fastcall TForm1(TComponent* Owner);
  51. bool newSelection;
  52. };
  53. //---------------------------------------------------------------------------
  54. extern PACKAGE TForm1 *Form1;
  55. //---------------------------------------------------------------------------
  56. #endif