| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687 |
- //---------------------------------------------------------------------------
- #ifndef CopyParamsH
- #define CopyParamsH
- //---------------------------------------------------------------------------
- #include <Classes.hpp>
- #include <Controls.hpp>
- #include <StdCtrls.hpp>
- #include <Forms.hpp>
- #include <ExtCtrls.hpp>
- #include <HistoryComboBox.hpp>
- #include <XPThemes.hpp>
- #include <WinInterface.h>
- #include "RightsExt.h"
- #include "ComboEdit.hpp"
- #include <Mask.hpp>
- //---------------------------------------------------------------------------
- class TCopyParamsFrame : public TFrame
- {
- __published:
- TXPGroupBox *TransferModeGroup;
- TLabel *AsciiFileMaskLabel;
- TRadioButton *TMTextButton;
- TRadioButton *TMBinaryButton;
- TRadioButton *TMAutomaticButton;
- THistoryComboBox *AsciiFileMaskCombo;
- TXPGroupBox *RemotePropertiesGroup;
- TCheckBox *RemotePreserveTimeCheck;
- TXPGroupBox *LocalPropertiesGroup;
- TCheckBox *PreserveReadOnlyCheck;
- TCheckBox *LocalPreserveTimeCheck;
- TCheckBox *PreserveRightsCheck;
- TXPGroupBox *ChangeCaseGroup;
- TRadioButton *CCNoChangeButton;
- TRadioButton *CCUpperCaseButton;
- TRadioButton *CCLowerCaseButton;
- TRadioButton *CCFirstUpperCaseButton;
- TXPGroupBox *CommonPropertiesGroup;
- TCheckBox *CommonPreserveTimestampCheck;
- TCheckBox *ReplaceInvalidCharsCheck;
- TCheckBox *CommonCalculateSizeCheck;
- TXPGroupBox *OtherGroup;
- TLabel *ExclusionFileMaskLabel;
- THistoryComboBox *ExcludeFileMaskCombo;
- TRadioButton *CCLowerCaseShortButton;
- TCheckBox *ClearArchiveCheck;
- TComboBox *NegativeExcludeCombo;
- TStaticText *ExcludeFileMaskHintText;
- TComboEdit *RightsEdit;
- TCheckBox *IgnorePermErrorsCheck;
- void __fastcall ControlChange(TObject *Sender);
- void __fastcall ValidateMaskComboExit(TObject *Sender);
- void __fastcall RightsEditButtonClick(TObject *Sender);
- void __fastcall RightsEditExit(TObject *Sender);
- private:
- TParamsForDirection FDirection;
- AnsiString FOrigMasks;
- TCopyParamType * FParams;
- int FCopyParamAttrs;
- TRightsExtFrame * FRightsFrame;
- AnsiString FAddXToDirectoriesSuffix;
- void __fastcall SetParams(TCopyParamType value);
- TCopyParamType __fastcall GetParams();
- void __fastcall SetDirection(TParamsForDirection value);
- TCheckBox * __fastcall GetPreserveTimeCheck();
- void __fastcall SetCopyParamAttrs(int value);
- void __fastcall RightsFrameChange(TObject * Sender);
- protected:
- void __fastcall UpdateControls();
- virtual void __fastcall SetEnabled(Boolean Value);
- void __fastcall UpdateRightsByStr();
- __property TCheckBox * PreserveTimeCheck = { read = GetPreserveTimeCheck };
- public:
- __fastcall TCopyParamsFrame(TComponent* Owner);
- __fastcall ~TCopyParamsFrame();
- void __fastcall BeforeExecute();
- void __fastcall AfterExecute();
- __property int CopyParamAttrs = { read = FCopyParamAttrs, write = SetCopyParamAttrs };
- __property TParamsForDirection Direction = { read = FDirection, write = SetDirection };
- __property TCopyParamType Params = { read = GetParams, write = SetParams };
- };
- //---------------------------------------------------------------------------
- #endif
|