CopyParamCustom.h 1.0 KB

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 "XPThemes.hpp"
  10. #include "CopyParams.h"
  11. //---------------------------------------------------------------------------
  12. class TCustomCommands;
  13. //---------------------------------------------------------------------------
  14. class TCopyParamCustomDialog : public TForm
  15. {
  16. __published:
  17. TButton *OkButton;
  18. TButton *CancelButton;
  19. TCopyParamsFrame *CopyParamsFrame;
  20. TButton *HelpButton;
  21. void __fastcall FormCloseQuery(TObject * Sender, bool & CanClose);
  22. void __fastcall HelpButtonClick(TObject *Sender);
  23. public:
  24. __fastcall TCopyParamCustomDialog(TComponent * Owner, int Options, int Dummy);
  25. bool __fastcall Execute(TCopyParamType & CopyParam);
  26. };
  27. //---------------------------------------------------------------------------
  28. #endif