fTexFormatC.h 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  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 TFormFormats : 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. TFileName PathToData;
  50. public: // User declarations
  51. __fastcall TFormFormats(TComponent* Owner);
  52. bool newSelection;
  53. };
  54. //---------------------------------------------------------------------------
  55. extern PACKAGE TFormFormats *FormFormats;
  56. //---------------------------------------------------------------------------
  57. #endif