fSplitterC.h 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. //---------------------------------------------------------------------------
  2. #ifndef fSplitterCH
  3. #define fSplitterCH
  4. //---------------------------------------------------------------------------
  5. #include <Classes.hpp>
  6. #include <Controls.hpp>
  7. #include <StdCtrls.hpp>
  8. #include <Forms.hpp>
  9. #include <ComCtrls.hpp>
  10. #include <Vcl.Imaging.jpeg.hpp>
  11. #include <GLScene.Utils.hpp>
  12. //---------------------------------------------------------------------------
  13. class TForm1 : public TForm
  14. {
  15. __published: // IDE-managed Components
  16. TLabel* Label1;
  17. TLabel* LAAction;
  18. TEdit* EDFile;
  19. TButton* Button1;
  20. TEdit* EDTileSize;
  21. TEdit* EDMask;
  22. TProgressBar* ProgressBar;
  23. TRadioButton* RBFull;
  24. TRadioButton* RBHalf;
  25. TRadioButton* RBLow;
  26. void __fastcall Button1Click(TObject* Sender);
  27. private: // User declarations
  28. TFileName PathJpgIn;
  29. TFileName PathJpgOut;
  30. public: // User declarations
  31. __fastcall TForm1(TComponent* Owner);
  32. };
  33. //---------------------------------------------------------------------------
  34. extern PACKAGE TForm1* Form1;
  35. //---------------------------------------------------------------------------
  36. #endif