FSplitterMain.h 1.1 KB

12345678910111213141516171819202122232425262728293031323334
  1. //---------------------------------------------------------------------------
  2. #ifndef FSplitterMainH
  3. #define FSplitterMainH
  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. //---------------------------------------------------------------------------
  12. class TForm1 : public TForm
  13. {
  14. __published: // IDE-managed Components
  15. TLabel *Label1;
  16. TLabel *LAAction;
  17. TEdit *EDFile;
  18. TButton *Button1;
  19. TEdit *EDTileSize;
  20. TEdit *EDMask;
  21. TProgressBar *ProgressBar;
  22. TRadioButton *RBFull;
  23. TRadioButton *RBHalf;
  24. TRadioButton *RBLow;
  25. void __fastcall Button1Click(TObject *Sender);
  26. private: // User declarations
  27. public: // User declarations
  28. __fastcall TForm1(TComponent* Owner);
  29. };
  30. //---------------------------------------------------------------------------
  31. extern PACKAGE TForm1 *Form1;
  32. //---------------------------------------------------------------------------
  33. #endif