| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351 |
- //---------------------------------------------------------------------------
- #include <vcl.h>
- #pragma hdrstop
- #include <Common.h>
- #include <WinInterface.h>
- #include <ScpMain.h>
- #include <TextsWin.h>
- #include <VCLCommon.h>
- #include <CustomWinConfiguration.h>
- #include "Copy.h"
- //---------------------------------------------------------------------------
- #pragma package(smart_init)
- #pragma link "MoreButton"
- #pragma link "Rights"
- #pragma link "CopyParams"
- #pragma link "HistoryComboBox"
- #pragma resource "*.dfm"
- //---------------------------------------------------------------------------
- bool __fastcall DoCopyDialog(bool ToRemote,
- bool Move, bool DragDrop, TStrings * FileList,
- bool AllowTransferMode, AnsiString & TargetDirectory,
- TCopyParamType * Params, bool AllowDirectory)
- {
- bool Result;
- TCopyDialog *CopyDialog = new TCopyDialog(Application);
- try
- {
- if (!AllowTransferMode)
- {
- // If local and remote EOL types are the same, there is no need
- // for ASCII (or Automatic) mode
- CopyDialog->AllowTransferMode = false; // Default is true
- Params->TransferMode = tmBinary;
- }
- CopyDialog->ToRemote = ToRemote;
- CopyDialog->DragDrop = DragDrop && !ToRemote;
- if (!CopyDialog->DragDrop) CopyDialog->Directory = TargetDirectory;
- CopyDialog->FileList = FileList;
- CopyDialog->Params = *Params;
- CopyDialog->Move = Move;
- CopyDialog->AllowDirectory = AllowDirectory;
- Result = CopyDialog->Execute();
- if (Result)
- {
- if (!CopyDialog->DragDrop) TargetDirectory = CopyDialog->Directory;
- Params->Assign(CopyDialog->Params);
- }
- }
- __finally
- {
- delete CopyDialog;
- }
- return Result;
- }
- //---------------------------------------------------------------------------
- __fastcall TCopyDialog::TCopyDialog(TComponent* Owner)
- : TForm(Owner)
- {
- // on start set different value than we want to allow property-setter to proceed
- FToRemote = false;
- FMove = true;
- ToRemote = true;
- Move = false;
- AllowTransferMode = true;
- AllowDirectory = true;
- UseSystemSettings(this);
- }
- //---------------------------------------------------------------------------
- void __fastcall TCopyDialog::SetToRemote(bool value)
- {
- if (FToRemote != value)
- {
- AnsiString ADirectory = DirectoryEdit->Text;
- FToRemote = value;
- DirectoryEdit->Text = ADirectory;
- RemoteDirectoryEdit->Visible = false;
- LocalDirectoryEdit->Visible = false;
- DirectoryEdit->Visible = !DragDrop;
- DirectoryEdit->Enabled = AllowDirectory;
- DirectoryLabel->FocusControl = DirectoryEdit;
- UpdateControls();
- CopyParamsFrame->Direction = !ToRemote ? pdToLocal : pdToRemote;
- }
- }
- //---------------------------------------------------------------------------
- void __fastcall TCopyDialog::SetAllowDirectory(bool value)
- {
- if (AllowDirectory != value)
- {
- FAllowDirectory = value;
- DirectoryEdit->Enabled = AllowDirectory;
- }
- }
- //---------------------------------------------------------------------------
- THistoryComboBox * __fastcall TCopyDialog::GetDirectoryEdit()
- {
- return ToRemote ? RemoteDirectoryEdit : LocalDirectoryEdit;
- }
- //---------------------------------------------------------------------------
- void __fastcall TCopyDialog::SetFileMask(const AnsiString value)
- {
- if (!DragDrop)
- {
- DirectoryEdit->Text = Directory + value;
- }
- else
- {
- FFileMask = value;
- }
- }
- //---------------------------------------------------------------------------
- AnsiString __fastcall TCopyDialog::GetFileMask()
- {
- if (!DragDrop)
- {
- return ToRemote ? UnixExtractFileName(DirectoryEdit->Text) :
- ExtractFileName(DirectoryEdit->Text);
- }
- else
- {
- return FFileMask;
- }
- }
- //---------------------------------------------------------------------------
- void __fastcall TCopyDialog::SetParams(TCopyParamType value)
- {
- CopyParamsFrame->Params = value;
- SetFileMask(value.FileMask);
- }
- //---------------------------------------------------------------------------
- TCopyParamType __fastcall TCopyDialog::GetParams()
- {
- TCopyParamType Params = CopyParamsFrame->Params;
- Params.FileMask = GetFileMask();
- return Params;
- }
- //---------------------------------------------------------------------------
- void __fastcall TCopyDialog::SetDirectory(AnsiString value)
- {
- value = ToRemote ? UnixIncludeTrailingBackslash(value) :
- IncludeTrailingBackslash(value);
- DirectoryEdit->Text = value + GetFileMask();
- }
- //---------------------------------------------------------------------------
- AnsiString __fastcall TCopyDialog::GetDirectory()
- {
- assert(DirectoryEdit && !DragDrop);
- AnsiString Result = DirectoryEdit->Text;
- if (ToRemote)
- {
- Result = UnixIncludeTrailingBackslash(UnixExtractFilePath(Result));
- }
- else
- {
- Result = IncludeTrailingBackslash(ExtractFilePath(Result));
- }
- return Result;
- }
- //---------------------------------------------------------------------------
- void __fastcall TCopyDialog::SetFileList(TStrings * value)
- {
- if (FFileList != value)
- {
- FFileList = value;
- UpdateControls();
- }
- }
- //---------------------------------------------------------------------------
- void __fastcall TCopyDialog::UpdateControls()
- {
- if (FileList && FileList->Count)
- {
- AnsiString TransferStr = LoadStr(!Move ? COPY_COPY : COPY_MOVE);
- AnsiString DirectionStr =
- LoadStr((DragDrop ? COPY_TODROP : (!ToRemote ? COPY_TOLOCAL : COPY_TOREMOTE)));
- if (FileList->Count == 1)
- {
- AnsiString FileName;
- if (!ToRemote) FileName = UnixExtractFileName(FFileList->Strings[0]);
- else FileName = ExtractFileName(FFileList->Strings[0]);
- DirectoryLabel->Caption = FMTLOAD(COPY_FILE,
- (TransferStr, FileName, DirectionStr));
- }
- else
- {
- DirectoryLabel->Caption = FMTLOAD(COPY_FILES,
- (TransferStr, FFileList->Count, DirectionStr));
- }
- }
- if (!Move)
- {
- Caption = LoadStr(COPY_COPY_CAPTION);
- CopyButton->Caption = LoadStr(COPY_COPY_BUTTON);
- }
- else
- {
- Caption = LoadStr(COPY_MOVE_CAPTION);
- CopyButton->Caption = LoadStr(COPY_MOVE_BUTTON);
- }
-
- LocalDirectoryBrowseButton->Visible = !ToRemote && !DragDrop && AllowDirectory;
- }
- //---------------------------------------------------------------------------
- void __fastcall TCopyDialog::SetDragDrop(Boolean value)
- {
- if (DragDrop != value)
- {
- FDragDrop = value;
- if (value)
- {
- ToRemote = false;
- DirectoryEdit->Text = "";
- }
- DirectoryEdit->Visible = !value || ToRemote;
- UpdateControls();
- }
- }
- //---------------------------------------------------------------------------
- void __fastcall TCopyDialog::SetMove(bool value)
- {
- if (Move != value)
- {
- FMove = value;
- UpdateControls();
- }
- }
- //---------------------------------------------------------------------------
- void __fastcall TCopyDialog::FormShow(TObject * /*Sender*/)
- {
- assert(FileList && (FileList->Count > 0) && (!ToRemote || !DragDrop));
- if (!DragDrop && AllowDirectory) DirectoryEdit->SetFocus();
- else
- if (MoreButton->Expanded) MorePanel->SetFocus();
- else CopyButton->SetFocus();
- }
- //---------------------------------------------------------------------------
- bool __fastcall TCopyDialog::Execute()
- {
- DirectoryEdit->Items = CustomWinConfiguration->History[
- ToRemote ? "RemoteTarget" : "LocalTarget"];
- SaveSettingsCheck->Checked = false;
- MoreButton->Expanded = GUIConfiguration->CopyParamDialogExpanded;
- CopyParamsFrame->BeforeExecute();
- bool Result = (ShowModal() == mrOk);
- if (Result)
- {
- CopyParamsFrame->AfterExecute();
- Configuration->BeginUpdate();
- try
- {
- GUIConfiguration->CopyParamDialogExpanded = MoreButton->Expanded;
- if (SaveSettingsCheck->Checked)
- {
- Configuration->CopyParam = Params;
- }
- DirectoryEdit->SaveToHistory();
- CustomWinConfiguration->History[ToRemote ?
- "RemoteTarget" : "LocalTarget"] = DirectoryEdit->Items;
- }
- __finally
- {
- Configuration->EndUpdate();
- }
- }
- return Result;
- }
- //---------------------------------------------------------------------------
- void __fastcall TCopyDialog::FormCloseQuery(TObject * /*Sender*/,
- bool &CanClose)
- {
- if (ModalResult != mrCancel)
- {
- if (!ToRemote && !DragDrop)
- {
- AnsiString Dir = Directory;
- AnsiString Drive = ExtractFileDrive(Dir);
- if (Drive.IsEmpty() || (Drive.Length() != 2) || (Drive[2] != ':'))
- {
- SimpleErrorDialog(LoadStr(ABSOLUTE_PATH_REQUIRED));
- CanClose = false;
- }
- else if (!DirectoryExists(Dir))
- {
- if (MessageDialog(FMTLOAD(CREATE_LOCAL_DIRECTORY, (Dir)),
- qtConfirmation, qaOK | qaCancel, 0) != qaCancel)
- {
- if (!ForceDirectories(Dir))
- {
- SimpleErrorDialog(FMTLOAD(CREATE_LOCAL_DIR_ERROR, (Dir)));
- CanClose = false;
- }
- }
- else
- {
- CanClose = False;
- }
- }
- if (!CanClose)
- {
- DirectoryEdit->SelectAll();
- DirectoryEdit->SetFocus();
- }
- };
- if (CanClose && (Params.TransferMode == tmAutomatic))
- {
- TFileMasks Masks = CopyParamsFrame->AsciiFileMask;
- int Start, Length;
- if (!Masks.IsValid(Start, Length))
- {
- MoreButton->Expanded = true;
- CanClose = false;
- SimpleErrorDialog(FMTLOAD(MASK_ERROR, (Masks.Masks.SubString(Start+1, Length))));
- // After closing dialog whole text is selected, we want to select only invalid mask
- CopyParamsFrame->SelectMask(Start, Length);
- }
- }
- }
- }
- //---------------------------------------------------------------------------
- void __fastcall TCopyDialog::SetAllowTransferMode(Boolean value)
- {
- CopyParamsFrame->AllowTransferMode = value;
- }
- //---------------------------------------------------------------------------
- bool __fastcall TCopyDialog::GetAllowTransferMode()
- {
- return CopyParamsFrame->AllowTransferMode;
- }
- //---------------------------------------------------------------------------
- void __fastcall TCopyDialog::LocalDirectoryBrowseButtonClick(
- TObject * /*Sender*/)
- {
- assert(!ToRemote);
- AnsiString Directory = LocalDirectoryEdit->Text;
- if (SelectDirectory(Directory, LoadStr(SELECT_LOCAL_DIRECTORY), true))
- {
- LocalDirectoryEdit->Text = Directory;
- }
- }
- //---------------------------------------------------------------------------
|