CopyParamCustom.h 979 B

123456789101112131415161718192021222324252627282930
  1. //---------------------------------------------------------------------------
  2. #ifndef CopyParamCustomH
  3. #define CopyParamCustomH
  4. //---------------------------------------------------------------------------
  5. #include <Classes.hpp>
  6. #include <Controls.hpp>
  7. #include <StdCtrls.hpp>
  8. #include <Forms.hpp>
  9. #include "CopyParams.h"
  10. //---------------------------------------------------------------------------
  11. class TCopyParamCustomDialog : public TForm
  12. {
  13. __published:
  14. TButton *OkButton;
  15. TButton *CancelButton;
  16. TCopyParamsFrame *CopyParamsFrame;
  17. TButton *HelpButton;
  18. void __fastcall FormCloseQuery(TObject * Sender, bool & CanClose);
  19. void __fastcall HelpButtonClick(TObject *Sender);
  20. public:
  21. __fastcall TCopyParamCustomDialog(TComponent * Owner, int Options, int Dummy);
  22. bool __fastcall Execute(TCopyParamType & CopyParam);
  23. protected:
  24. INTERFACE_HOOK
  25. };
  26. //---------------------------------------------------------------------------
  27. #endif