| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889 |
- //---------------------------------------------------------------------------
- #ifndef CopyH
- #define CopyH
- //---------------------------------------------------------------------------
- #include <Classes.hpp>
- #include <Controls.hpp>
- #include <StdCtrls.hpp>
- #include <Forms.hpp>
- #include <Mask.hpp>
- #include <MoreButton.hpp>
- #include <ExtCtrls.hpp>
- #include <HistoryComboBox.hpp>
- #include "Rights.h"
- #include "CopyParams.h"
- #include <Menus.hpp>
- //---------------------------------------------------------------------------
- class TCopyDialog : public TForm
- {
- __published:
- TLabel *DirectoryLabel;
- THistoryComboBox *LocalDirectoryEdit;
- THistoryComboBox *RemoteDirectoryEdit;
- TMoreButton *MoreButton;
- TButton *CopyButton;
- TButton *CancelButton;
- TPanel *MorePanel;
- TCheckBox *SaveSettingsCheck;
- TCopyParamsFrame *CopyParamsFrame;
- TButton *LocalDirectoryBrowseButton;
- TCheckBox *QueueCheck;
- TCheckBox *QueueNoConfirmationCheck;
- TCheckBox *NewerOnlyCheck;
- TButton *PresetsButton;
- TButton *HelpButton;
- TCheckBox *NeverShowAgainCheck;
- void __fastcall FormShow(TObject *Sender);
- void __fastcall FormCloseQuery(TObject *Sender, bool &CanClose);
- void __fastcall LocalDirectoryBrowseButtonClick(TObject *Sender);
- void __fastcall ControlChange(TObject *Sender);
- void __fastcall PresetsButtonClick(TObject *Sender);
- void __fastcall HelpButtonClick(TObject *Sender);
- private:
- bool FDefaultToRemote;
- bool FToRemote;
- TStrings * FFileList;
- bool FMove;
- int FOptions;
- int FOutputOptions;
- TGUICopyParamType FParams;
- TPopupMenu * FPresetsMenu;
- AnsiString FPreset;
- AnsiString __fastcall GetDirectory();
- void __fastcall SetToRemote(bool value);
- THistoryComboBox * __fastcall GetDirectoryEdit();
- void __fastcall SetParams(const TGUICopyParamType & value);
- TGUICopyParamType __fastcall GetParams();
- void __fastcall SetDirectory(AnsiString value);
- void __fastcall SetFileList(TStrings * value);
- void __fastcall SetMove(bool value);
- AnsiString __fastcall GetFileMask();
- void __fastcall SetOptions(int value);
- void __fastcall SetOutputOptions(int value);
- int __fastcall GetOutputOptions();
- void __fastcall SetCopyParamAttrs(int value);
- int __fastcall GetCopyParamAttrs();
- void __fastcall CopyParamClick(TObject * Sender);
- protected:
- void __fastcall UpdateControls();
- void __fastcall AdjustControls();
- void __fastcall AdjustTransferControls();
- bool __fastcall RemotePaths();
- public:
- __fastcall TCopyDialog(TComponent* Owner);
- virtual __fastcall ~TCopyDialog();
- bool __fastcall Execute();
- __property bool ToRemote = { read = FToRemote, write = SetToRemote };
- __property AnsiString Directory = { read = GetDirectory, write = SetDirectory };
- __property THistoryComboBox * DirectoryEdit = { read = GetDirectoryEdit };
- __property TStrings * FileList = { read = FFileList, write = SetFileList };
- __property TGUICopyParamType Params = { read = GetParams, write = SetParams };
- __property bool Move = { read = FMove, write = SetMove };
- __property int Options = { read = FOptions, write = SetOptions };
- __property int CopyParamAttrs = { read = GetCopyParamAttrs, write = SetCopyParamAttrs };
- __property int OutputOptions = { read = GetOutputOptions, write = SetOutputOptions };
- };
- //---------------------------------------------------------------------------
- #endif
|