123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763 |
- //---------------------------------------------------------------------------
- #include <vcl.h>
- #pragma hdrstop
- #include "VCLCommon.h"
- #include "GenerateUrl.h"
- #include "CoreMain.h"
- #include "WinConfiguration.h"
- #include <StrUtils.hpp>
- #include <Tools.h>
- #include <PuttyTools.h>
- #include <TextsWin.h>
- #include <ProgParams.h>
- //---------------------------------------------------------------------------
- #pragma package(smart_init)
- #ifndef NO_RESOURCES
- #pragma resource "*.dfm"
- #endif
- //---------------------------------------------------------------------------
- void __fastcall DoGenerateUrlDialog(TSessionData * Data, TStrings * Paths)
- {
- std::unique_ptr<TGenerateUrlDialog> Dialog(
- new TGenerateUrlDialog(GetFormOwner(), Data, fsList, Paths, false, false, false, 0, UnicodeString(), TCopyParamType()));
- Dialog->Execute();
- }
- //---------------------------------------------------------------------------
- void __fastcall DoGenerateTransferCodeDialog(
- bool ToRemote, bool Move, int CopyParamAttrs, TSessionData * Data, TFilesSelected FilesSelected, TStrings * FileList, const UnicodeString & Path,
- const TCopyParamType & CopyParam)
- {
- std::unique_ptr<TGenerateUrlDialog> Dialog(
- new TGenerateUrlDialog(GetFormOwner(), Data, FilesSelected, FileList, true, ToRemote, Move, CopyParamAttrs, Path, CopyParam));
- Dialog->Execute();
- }
- //---------------------------------------------------------------------------
- // Rich edit 4.1 supports "Friendly name hyperlinks"
- class TRichEdit41 : public TRichEdit
- {
- public:
- virtual __fastcall TRichEdit41(TComponent * AOwner);
- protected:
- virtual void __fastcall CreateWnd();
- virtual void __fastcall CreateParams(TCreateParams & Params);
- virtual void __fastcall DestroyWnd();
- void __fastcall Dispatch(void * Message);
- private:
- HINSTANCE FLibrary;
- };
- //---------------------------------------------------------------------------
- __fastcall TRichEdit41::TRichEdit41(TComponent * AOwner) :
- TRichEdit(AOwner),
- FLibrary(0)
- {
- }
- //---------------------------------------------------------------------------
- void __fastcall TRichEdit41::CreateParams(TCreateParams & Params)
- {
- UnicodeString RichEditModuleName(L"MSFTEDIT.DLL");
- long int OldError;
- OldError = SetErrorMode(SEM_NOOPENFILEERRORBOX);
- FLibrary = LoadLibrary(RichEditModuleName.c_str());
- SetErrorMode(OldError);
- TCustomMemo::CreateParams(Params);
- // Should not happen as
- if (FLibrary != 0)
- {
- // MSDN says that we should use MSFTEDIT_CLASS to load Rich Edit 4.1:
- // https://msdn.microsoft.com/en-us/library/windows/desktop/bb787873.aspx
- // But MSFTEDIT_CLASS is defined as "RICHEDIT50W",
- // so not sure what version we are loading.
- // Seem to work on Windows XP SP3.
- CreateSubClass(Params, MSFTEDIT_CLASS);
- }
- }
- //---------------------------------------------------------------------------
- void __fastcall TRichEdit41::CreateWnd()
- {
- TRichEdit::CreateWnd();
- int Mask = SendMessage(Handle, EM_GETEVENTMASK, 0, 0);
- SendMessage(Handle, EM_SETEVENTMASK, 0, Mask | ENM_LINK);
- }
- //---------------------------------------------------------------------------
- void __fastcall TRichEdit41::Dispatch(void * AMessage)
- {
- TMessage & Message = *reinterpret_cast<TMessage *>(AMessage);
- if (Message.Msg == CN_NOTIFY)
- {
- TWMNotify & WMNotify = *reinterpret_cast<TWMNotify *>(AMessage);
- if (WMNotify.NMHdr->code == EN_LINK)
- {
- TENLink & ENLink = *reinterpret_cast<TENLink *>(Message.LParam);
- if (ENLink.msg == WM_LBUTTONDOWN)
- {
- UnicodeString AText = Text;
- // The cpMin and cpMax refer to indexes in a script with a single-byte EOL,
- // while the Text (GetWindowText) uses two-byte EOL
- AText = ReplaceStr(AText, L"\r\n", L"\n");
- if (DebugAlwaysTrue(ENLink.chrg.cpMax < AText.Length()))
- {
- UnicodeString Url = AText.SubString(ENLink.chrg.cpMin + 1, ENLink.chrg.cpMax - ENLink.chrg.cpMin);
- ShowHelp(Url);
- }
- }
- }
- TRichEdit::Dispatch(AMessage);
- }
- else
- {
- TRichEdit::Dispatch(AMessage);
- }
- }
- //---------------------------------------------------------------------------
- void __fastcall TRichEdit41::DestroyWnd()
- {
- TRichEdit::DestroyWnd();
- if (FLibrary != 0)
- {
- FreeLibrary(FLibrary);
- }
- }
- //---------------------------------------------------------------------------
- //---------------------------------------------------------------------------
- __fastcall TGenerateUrlDialog::TGenerateUrlDialog(
- TComponent * Owner, TSessionData * Data, TFilesSelected FilesSelected, TStrings * Paths,
- bool Transfer, bool ToRemote, bool Move, int CopyParamAttrs, const UnicodeString & Path, const TCopyParamType & CopyParam)
- : TForm(Owner)
- {
- UseSystemSettings(this);
- FData = Data;
- if (Paths != NULL)
- {
- FPaths.reset(new TStringList());
- FPaths->AddStrings(Paths);
- }
- FTransfer = Transfer;
- FToRemote = ToRemote;
- FMove = Move;
- FCopyParamAttrs = CopyParamAttrs;
- FCopyParam = CopyParam;
- if (FTransfer)
- {
- DebugAssert(FPaths.get() != NULL);
- if (FToRemote)
- {
- UnicodeString FirstPath = Paths->Strings[0];
- FSourcePath = FToRemote ? ExcludeTrailingBackslash(ExtractFilePath(FirstPath)) : UnixExtractFilePath(FirstPath);
- for (int Index = 0; Index < FPaths->Count; Index++)
- {
- FPaths->Strings[Index] = ExtractFileName(FPaths->Strings[Index]);
- }
- }
- else
- {
- FSourcePath = Data->RemoteDirectory;
- // should be noop as we get only file names for remote files
- for (int Index = 0; Index < FPaths->Count; Index++)
- {
- FPaths->Strings[Index] = UnixExtractFileName(FPaths->Strings[Index]);
- }
- }
- }
- FPath = Path;
- FFilesSelected = FilesSelected;
- FChanging = false;
- FResultMemo41 = new TRichEdit41(this);
- FResultMemo41->Parent = ResultMemo->Parent;
- FResultMemo41->SetBounds(ResultMemo->Left, ResultMemo->Top, ResultMemo->Width, ResultMemo->Height);
- FResultMemo41->Anchors = ResultMemo->Anchors;
- FResultMemo41->BevelInner = ResultMemo->BevelInner;
- FResultMemo41->BevelOuter = ResultMemo->BevelOuter;
- FResultMemo41->BorderStyle = ResultMemo->BorderStyle;
- FResultMemo41->PopupMenu = ResultMemo->PopupMenu;
- FResultMemo41->TabOrder = ResultMemo->TabOrder;
- FResultMemo41->PlainText = false;
- ResultMemo->Visible = false;
- ReadOnlyControl(FResultMemo41);
- }
- //---------------------------------------------------------------------------
- bool __fastcall TGenerateUrlDialog::IsFileUrl()
- {
- return (FPaths.get() != NULL) && !FTransfer;
- }
- //---------------------------------------------------------------------------
- UnicodeString __fastcall TGenerateUrlDialog::GenerateUrl(UnicodeString Path)
- {
- UnicodeString Url =
- FData->GenerateSessionUrl(
- FLAGMASK(WinSCPSpecificCheck->Checked, sufSpecific) |
- FLAGMASK(UserNameCheck->Enabled && UserNameCheck->Checked, sufUserName) |
- FLAGMASK(PasswordCheck->Enabled && PasswordCheck->Checked, sufPassword) |
- FLAGMASK(HostKeyCheck->Enabled && HostKeyCheck->Checked, sufHostKey));
- if ((RemoteDirectoryCheck->Enabled && RemoteDirectoryCheck->Checked) ||
- IsFileUrl())
- {
- if (StartsStr(L"/", Path));
- {
- Path.Delete(1, 1);
- }
- Url += EncodeUrlPath(Path);
- }
- if (SaveExtensionCheck->Enabled && SaveExtensionCheck->Checked)
- {
- Url += UnicodeString(UrlParamSeparator) + UrlSaveParamName;
- }
- return Url;
- }
- //---------------------------------------------------------------------------
- static UnicodeString __fastcall RtfColorEntry(int Color)
- {
- return FORMAT(L"\\red%d\\green%d\\blue%d;", ((Color & 0xFF0000) >> 16, (Color & 0x00FF00) >> 8, (Color & 0x0000FF) >> 0));
- }
- //---------------------------------------------------------------------
- static UnicodeString __fastcall RtfScriptComment(const UnicodeString & Text)
- {
- return RtfColorItalicText(7, Text);
- }
- //---------------------------------------------------------------------
- static UnicodeString __fastcall RtfScriptPlaceholder(const UnicodeString & Text)
- {
- return RtfColorText(7, Text);
- }
- //---------------------------------------------------------------------
- static UnicodeString __fastcall RtfScriptCommand(const UnicodeString & Command)
- {
- return RtfLink(ScriptCommandLink(Command), RtfKeyword(Command));
- }
- //---------------------------------------------------------------------
- UnicodeString __fastcall RtfCommandlineSwitch(const UnicodeString & Switch, const UnicodeString & Anchor)
- {
- return RtfLink(L"commandline#" + Anchor, RtfParameter(TProgramParams::FormatSwitch(Switch.LowerCase())));
- }
- //---------------------------------------------------------------------------
- static UnicodeString __fastcall QuoteStringParam(UnicodeString S)
- {
- return AddQuotes(RtfEscapeParam(S));
- }
- //---------------------------------------------------------------------------
- // Keep in sync with .NET Session.EscapeFileMask
- static UnicodeString __fastcall EscapeFileMask(UnicodeString S)
- {
- return ReplaceStr(ReplaceStr(ReplaceStr(S, L"[", L"[[]"), L"*", L"[*]"), L"?", L"[?]");
- }
- //---------------------------------------------------------------------------
- void __fastcall TGenerateUrlDialog::UpdateControls()
- {
- if (!FChanging)
- {
- UnicodeString ExeName = Application->ExeName;
- int CaptionId;
- if (FTransfer)
- {
- CaptionId = GENERATE_URL_TRANSFER_TITLE;
- }
- else
- {
- CaptionId = IsFileUrl() ? GENERATE_URL_FILE_TITLE : GENERATE_URL_SESSION_TITLE;
- }
- Caption = LoadStr(CaptionId);
- UrlSheet->TabVisible = !FTransfer;
- ScriptSheet->TabVisible = !IsFileUrl();
- AssemblySheet->TabVisible = !IsFileUrl();
- bool HostKeyUnknown = FData->UsesSsh && FData->HostKey.IsEmpty();
- UnicodeString ResultGroupCaption;
- if (OptionsPageControl->ActivePage == UrlSheet)
- {
- ResultGroupCaption = LoadStr(GENERATE_URL_URL);
- }
- else if (OptionsPageControl->ActivePage == ScriptSheet)
- {
- if (ScriptFormatCombo->ItemIndex == sfCommandLine)
- {
- ResultGroupCaption = LoadStr(GENERATE_URL_COMMANDLINE_LABEL);
- }
- else
- {
- ResultGroupCaption = ScriptFormatCombo->Items->Strings[ScriptFormatCombo->ItemIndex];
- }
- }
- else if (DebugAlwaysTrue(OptionsPageControl->ActivePage == AssemblySheet))
- {
- ResultGroupCaption = LoadStr(GENERATE_URL_CODE);
- UnicodeString AssemblyDescription;
- if (HostKeyUnknown)
- {
- AssemblyDescription += LoadStr(GENERATE_URL_HOSTKEY_UNKNOWN) + L"\n";
- }
- AssemblyDescriptionLabel->Caption = AssemblyDescription;
- }
- ResultGroup->Caption = ResultGroupCaption;
- EnableControl(UserNameCheck, !FData->UserNameExpanded.IsEmpty());
- bool UserNameIncluded = UserNameCheck->Enabled && UserNameCheck->Checked;
- EnableControl(PasswordCheck, UserNameIncluded && FData->HasPassword());
- EnableControl(HostKeyCheck, UserNameIncluded && !FData->HostKey.IsEmpty());
- EnableControl(RemoteDirectoryCheck, !FData->RemoteDirectory.IsEmpty() && !IsFileUrl());
- EnableControl(SaveExtensionCheck, !IsFileUrl());
- UnicodeString Result;
- bool WordWrap = false;
- bool FixedWidth = false;
- if (OptionsPageControl->ActivePage == UrlSheet)
- {
- if (!IsFileUrl())
- {
- UnicodeString Path = FData->RemoteDirectory;
- if (!Path.IsEmpty() && !EndsStr(L"/", Path))
- {
- Path += L"/";
- }
- Result = RtfText(GenerateUrl(Path));
- }
- else
- {
- for (int Index = 0; Index < FPaths->Count; Index++)
- {
- UnicodeString Url = GenerateUrl(FPaths->Strings[Index]);
- Result += RtfText(Url) + RtfPara;
- }
- }
- WordWrap = true;
- }
- else if (OptionsPageControl->ActivePage == ScriptSheet)
- {
- UnicodeString BaseExeName = ExtractFileBaseName(ExeName);
- UnicodeString OpenCommand = FData->GenerateOpenCommandArgs();
- UnicodeString CommandPlaceholder1 = FMTLOAD(GENERATE_URL_COMMAND, (1));
- UnicodeString CommandPlaceholder2 = FMTLOAD(GENERATE_URL_COMMAND, (2));
- UnicodeString LogPath = LoadStr(GENERATE_URL_WRITABLE_PATH_TO_LOG) + RtfText(BaseExeName + L".log");
- UnicodeString LogParameter =
- RtfCommandlineSwitch(LOG_SWITCH, L"logging") + RtfText(L"=") +
- RtfScriptPlaceholder(L"\"" + LogPath + L"\"");
- UnicodeString IniParameter =
- RtfCommandlineSwitch(INI_SWITCH, L"configuration") + RtfText(UnicodeString(L"=") + INI_NUL);
- UnicodeString CommandParameter = RtfCommandlineSwitch(COMMAND_SWITCH, L"scripting");
- typedef std::vector<UnicodeString> TCommands;
- TCommands Commands;
- Commands.push_back(RtfScriptCommand(L"open") + L" " + OpenCommand);
- Commands.push_back(UnicodeString());
- bool NoArgs = false;
- if (FTransfer)
- {
- UnicodeString TransferCommand;
- if (FToRemote)
- {
- Commands.push_back(RtfScriptCommand(L"lcd") + L" " + RtfText(QuoteStringParam(FSourcePath)));
- Commands.push_back(RtfScriptCommand(L"cd") + L" " + RtfText(QuoteStringParam(UnixExcludeTrailingBackslash(FPath))));
- TransferCommand = L"put";
- }
- else
- {
- Commands.push_back(RtfScriptCommand(L"cd") + L" " + RtfText(QuoteStringParam(FSourcePath)));
- Commands.push_back(RtfScriptCommand(L"lcd") + L" " + RtfText(QuoteStringParam(ExcludeTrailingBackslash(FPath))));
- TransferCommand = L"get";
- }
- Commands.push_back(UnicodeString());
- UnicodeString TransferCommandLink = ScriptCommandLink(TransferCommand);
- UnicodeString TransferCommandArgs;
- if (FMove)
- {
- TransferCommandArgs += RtfSwitch(DELETE_SWITCH, TransferCommandLink);
- }
- TransferCommandArgs += FCopyParam.GenerateTransferCommandArgs(FCopyParamAttrs, TransferCommandLink, NoArgs);
- TransferCommand = RtfScriptCommand(TransferCommand) + TransferCommandArgs;
- if (FFilesSelected == fsList)
- {
- for (int Index = 0; Index < FPaths->Count; Index++)
- {
- Commands.push_back(TransferCommand + L" " + RtfText(QuoteStringParam(EscapeFileMask(FPaths->Strings[Index]))));
- }
- }
- else
- {
- Commands.push_back(TransferCommand + L" " + RtfText(QuoteStringParam(FSourcePath + L"*")));
- }
- }
- else
- {
- Commands.push_back(L"# " + CommandPlaceholder1);
- Commands.push_back(L"# " + CommandPlaceholder2);
- }
- Commands.push_back(UnicodeString());
- Commands.push_back(RtfScriptCommand(L"exit"));
- UnicodeString ScriptDescription;
- if (ScriptFormatCombo->ItemIndex == sfScriptFile)
- {
- for (TCommands::const_iterator I = Commands.begin(); I != Commands.end(); I++)
- {
- UnicodeString Command = *I;
- if (!Command.IsEmpty())
- {
- if (Command[1] == L'#')
- {
- Result += RtfScriptComment(Command);
- }
- else
- {
- Result += Command;
- }
- }
- Result += RtfPara;
- }
- UnicodeString ScriptCommandLine =
- FORMAT("\"%s\" /%s=\"%s\" /%s=%s /%s=\"%s\"",
- (ExeName, LowerCase(LOG_SWITCH), LogPath, LowerCase(INI_SWITCH), INI_NUL, LowerCase(SCRIPT_SWITCH), LoadStr(GENERATE_URL_PATH_TO_SCRIPT)));
- Result +=
- RtfPara +
- RtfScriptComment(L"# " + LoadStr(GENERATE_URL_SCRIPT_DESC)) + RtfPara +
- RtfScriptComment(L"# " + ScriptCommandLine) + RtfPara;
- WordWrap = false;
- FixedWidth = true;
- }
- else if (ScriptFormatCombo->ItemIndex == sfBatchFile)
- {
- UnicodeString ComExeName = ChangeFileExt(ExeName, L".com");
- Result =
- RtfScriptPlaceholder(L"@echo off") + RtfPara +
- RtfPara +
- RtfText(L"\"" + ComExeName + "\" ^") + RtfPara +
- RtfText(L" ") + LogParameter + L" " + IniParameter + RtfText(L" ^") + RtfPara +
- RtfText(L" ") + CommandParameter;
- for (TCommands::const_iterator I = Commands.begin(); I != Commands.end(); I++)
- {
- UnicodeString Command = *I;
- if (!Command.IsEmpty())
- {
- Result +=
- RtfText(L" ^") + RtfPara +
- RtfText(L" \"");
- if (Command[1] == L'#')
- {
- Command.Delete(1, 1);
- Result += RtfScriptPlaceholder(Command.TrimLeft());
- }
- else
- {
- Result += RtfEscapeParam(ReplaceStr(Command, L"%", L"%%"));
- }
- Result += L"\"";
- }
- }
- Result +=
- RtfPara +
- RtfPara +
- RtfKeyword(L"set") + RtfText(L" WINSCP_RESULT=%ERRORLEVEL%") + RtfPara +
- RtfKeyword(L"if") + RtfText(L" %WINSCP_RESULT% ") + RtfKeyword(L"equ") + RtfText(L" 0 (") + RtfPara +
- RtfText(L" ") + RtfKeyword(L"echo") + RtfText(L" Success") + RtfPara +
- RtfText(L") ") + RtfKeyword(L"else") + RtfText(L" (") + RtfPara +
- RtfText(L" ") + RtfKeyword(L"echo") + RtfText(L" Error") + RtfPara +
- RtfText(L")") + RtfPara +
- RtfPara +
- RtfKeyword(L"exit") + RtfText(L" /b %WINSCP_RESULT%") + RtfPara;
- WordWrap = false;
- FixedWidth = true;
- }
- else if (ScriptFormatCombo->ItemIndex == sfCommandLine)
- {
- Result =
- LogParameter + L" " +
- IniParameter + L" " +
- CommandParameter;
- for (TCommands::const_iterator I = Commands.begin(); I != Commands.end(); I++)
- {
- UnicodeString Command = *I;
- if (!Command.IsEmpty())
- {
- Result += RtfText(L" \"");
- if (Command[1] == L'#')
- {
- Command.Delete(1, 1);
- Result += RtfScriptPlaceholder(Command.TrimLeft());
- }
- else
- {
- Result += RtfEscapeParam(Command);
- }
- Result += L"\"";
- }
- }
- WordWrap = true;
- FixedWidth = false;
- ScriptDescription = FMTLOAD(GENERATE_URL_COMMANDLINE_DESC, (FORMAT("\"%s\"", (ExeName)))) + L"\n";
- }
- if (HostKeyUnknown)
- {
- ScriptDescription += LoadStr(GENERATE_URL_HOSTKEY_UNKNOWN) + L"\n";
- }
- if (NoArgs)
- {
- ScriptDescription += LoadStr(GENERATE_URL_COPY_PARAM_SCRIPT_REMAINING) + L"\n";
- }
- ScriptDescriptionLabel->Caption = ScriptDescription;
- }
- else if (DebugAlwaysTrue(OptionsPageControl->ActivePage == AssemblySheet))
- {
- Result = FData->GenerateAssemblyCode(static_cast<TAssemblyLanguage>(AssemblyLanguageCombo->ItemIndex));
- WordWrap = false;
- FixedWidth = true;
- }
- if (FixedWidth)
- {
- FResultMemo41->Font->Name = CustomWinConfiguration->DefaultFixedWidthFontName;
- }
- else
- {
- FResultMemo41->ParentFont = true;
- }
- Result =
- L"{\\rtf1\n"
- "{\\colortbl ;" +
- // The same RGB as on wiki
- RtfColorEntry(0x010101) + // near-black fake color to be used with no-style link to ovreride the default blue underline
- RtfColorEntry(0x008000) + // code comment (green)
- RtfColorEntry(0x008080) + // class (teal)
- RtfColorEntry(0x800000) + // string (maroon)
- RtfColorEntry(0x0000FF) + // keyword (blue)
- RtfColorEntry(0x993333) + // command-line argument (reddish)
- RtfColorEntry(0x808080) + // script command (gray)
- L"}\n"
- "{\\fonttbl{\\f0\\fnil\\fcharset0 " + FResultMemo41->Font->Name + L";}}\n"
- "\\f0\\fs" + IntToStr(FResultMemo41->Font->Size * 2) + L" " +
- Result +
- "}";
- FResultMemo41->WordWrap = WordWrap;
- FResultMemo41->ScrollBars = WordWrap ? ssVertical : ssBoth;
- std::unique_ptr<TMemoryStream> Stream(new TMemoryStream());
- UTF8String ResultUtf = Result;
- Stream->Write(ResultUtf.c_str(), ResultUtf.Length());
- Stream->Position = 0;
- FResultMemo41->Perform(WM_VSCROLL, SB_TOP, 0);
- FResultMemo41->Lines->LoadFromStream(Stream.get(), TEncoding::UTF8);
- }
- }
- //---------------------------------------------------------------------------
- void __fastcall TGenerateUrlDialog::Execute()
- {
- int Components = WinConfiguration->GenerateUrlComponents;
- if (Components < 0)
- {
- Components = UserNameCheck->Tag | RemoteDirectoryCheck->Tag;
- }
- TGenerateUrlCodeTarget Target = WinConfiguration->GenerateUrlCodeTarget;
- {
- TAutoFlag ChangingFlag(FChanging);
- if (IsFileUrl())
- {
- OptionsPageControl->ActivePage = UrlSheet;
- }
- else
- {
- switch (Target)
- {
- case guctUrl:
- OptionsPageControl->ActivePage = UrlSheet;
- break;
- case guctScript:
- OptionsPageControl->ActivePage = ScriptSheet;
- break;
- case guctAssembly:
- OptionsPageControl->ActivePage = AssemblySheet;
- break;
- default:
- DebugFail();
- }
- }
- for (int Index = 0; Index < UrlSheet->ControlCount; Index++)
- {
- TCheckBox * CheckBox = dynamic_cast<TCheckBox *>(UrlSheet->Controls[Index]);
- if (DebugAlwaysTrue((CheckBox != NULL) && (CheckBox->Tag != 0)))
- {
- CheckBox->Checked = FLAGSET(Components, CheckBox->Tag);
- }
- }
- ScriptFormatCombo->ItemIndex = WinConfiguration->GenerateUrlScriptFormat;
- AssemblyLanguageCombo->ItemIndex = WinConfiguration->GenerateUrlAssemblyLanguage;
- }
- UpdateControls();
- ShowModal();
- // Do not save the selection for files as the "URL" was selected implicitly
- if (!IsFileUrl())
- {
- if (OptionsPageControl->ActivePage == UrlSheet)
- {
- Target = guctUrl;
- }
- else if (OptionsPageControl->ActivePage == ScriptSheet)
- {
- Target = guctScript;
- }
- else if (OptionsPageControl->ActivePage == AssemblySheet)
- {
- Target = guctAssembly;
- }
- else
- {
- DebugFail();
- }
- WinConfiguration->GenerateUrlCodeTarget = Target;
- }
- if (Target == guctUrl)
- {
- Components = 0;
- for (int Index = 0; Index < UrlSheet->ControlCount; Index++)
- {
- TCheckBox * CheckBox = dynamic_cast<TCheckBox *>(UrlSheet->Controls[Index]);
- if (DebugAlwaysTrue((CheckBox != NULL) && (CheckBox->Tag != 0)) &&
- CheckBox->Checked)
- {
- Components |= CheckBox->Tag;
- }
- }
- WinConfiguration->GenerateUrlComponents = Components;
- }
- else if (Target == guctScript)
- {
- WinConfiguration->GenerateUrlScriptFormat = static_cast<TScriptFormat>(ScriptFormatCombo->ItemIndex);
- }
- else if (Target == guctAssembly)
- {
- WinConfiguration->GenerateUrlAssemblyLanguage = static_cast<TAssemblyLanguage>(AssemblyLanguageCombo->ItemIndex);
- }
- }
- //---------------------------------------------------------------------------
- void __fastcall TGenerateUrlDialog::ControlChange(TObject * /*Sender*/)
- {
- UpdateControls();
- }
- //---------------------------------------------------------------------------
- void __fastcall TGenerateUrlDialog::ClipboardButtonClick(TObject * /*Sender*/)
- {
- TInstantOperationVisualizer Visualizer;
- // Cannot read the text from FResultMemo41->Lines as TRichEdit (as opposite to TMemo)
- // breaks wrapped lines
- UnicodeString Text = FResultMemo41->Text;
- UnicodeString EOL = sLineBreak;
- int P = Pos(EOL, Text);
- // Trim the EOL of the only string, what CopyToClipbaord(FResultMemo41->Lines) would have done.
- // It probably never happens as rich edit does not return EOL on the last line.
- if (DebugAlwaysFalse(P == Text.Length() - EOL.Length() + 1))
- {
- Text.SetLength(Text.Length() - EOL.Length());
- }
- // Add trailing EOL, if there are multiple lines (see above)
- else if ((P > 0) && !EndsStr(EOL, Text))
- {
- Text += EOL;
- }
- Text = RtfRemoveHyperlinks(Text);
- CopyToClipboard(Text);
- }
- //---------------------------------------------------------------------------
- void __fastcall TGenerateUrlDialog::HelpButtonClick(TObject * /*Sender*/)
- {
- FormHelp(this);
- }
- //---------------------------------------------------------------------------
- void __fastcall TGenerateUrlDialog::WMNCCreate(TWMNCCreate & Message)
- {
- // bypass TForm::WMNCCreate to prevent disabling "resize"
- // (which is done for bsDialog, see comments in CreateParams)
- DefaultHandler(&Message);
- }
- //---------------------------------------------------------------------------
- void __fastcall TGenerateUrlDialog::Dispatch(void * AMessage)
- {
- TMessage & Message = *reinterpret_cast<TMessage *>(AMessage);
- if (Message.Msg == WM_NCCREATE)
- {
- WMNCCreate(*reinterpret_cast<TWMNCCreate *>(AMessage));
- }
- else
- {
- TForm::Dispatch(AMessage);
- }
- }
- //---------------------------------------------------------------------------
- void __fastcall TGenerateUrlDialog::CreateParams(TCreateParams & Params)
- {
- TForm::CreateParams(Params);
- // Allow resizing of the window, even if this is bsDialog.
- // This makes it more close to bsSizeable, but bsSizeable cannot for some
- // reason receive focus, if window is shown atop non-main window
- // (like editor)
- Params.Style = Params.Style | WS_THICKFRAME;
- }
- //---------------------------------------------------------------------------
- void __fastcall TGenerateUrlDialog::ResultMemoContextPopup(TObject * Sender,
- TPoint & MousePos, bool & Handled)
- {
- MenuPopup(Sender, MousePos, Handled);
- }
- //---------------------------------------------------------------------------
- void __fastcall TGenerateUrlDialog::FormShow(TObject * /*Sender*/)
- {
- UpdateControls();
- }
- //---------------------------------------------------------------------------
|