123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961 |
- //---------------------------------------------------------------------
- #include <vcl.h>
- #pragma hdrstop
- #include <StrUtils.hpp>
- #include <Common.h>
- #include <math.h>
- #include "Preferences.h"
- #include "Custom.h"
- #include <CoreMain.h>
- #include <Terminal.h>
- #include <Bookmarks.h>
- #include "VCLCommon.h"
- #include "GUITools.h"
- #include "Tools.h"
- #include "TextsCore.h"
- #include "TextsWin.h"
- #include "HelpWin.h"
- #include "WinInterface.h"
- #include "WinConfiguration.h"
- #include "Setup.h"
- #include "ProgParams.h"
- #include "Http.h"
- #include "TerminalManager.h"
- //---------------------------------------------------------------------
- #pragma link "CopyParams"
- #pragma link "UpDownEdit"
- #pragma link "ComboEdit"
- #pragma link "HistoryComboBox"
- #pragma link "PathLabel"
- #ifndef NO_RESOURCES
- #pragma resource "*.dfm"
- #endif
- //---------------------------------------------------------------------
- const int BelowNormalLogLevels = 1;
- //---------------------------------------------------------------------
- bool __fastcall DoPreferencesDialog(TPreferencesMode APreferencesMode,
- TPreferencesDialogData * DialogData)
- {
- bool Result;
- TPreferencesDialog * PreferencesDialog =
- new TPreferencesDialog(GetFormOwner(), APreferencesMode);
- try
- {
- Result = PreferencesDialog->Execute(DialogData);
- if (Result)
- {
- CheckConfigurationForceSave();
- Configuration->SaveExplicit();
- }
- }
- __finally
- {
- delete PreferencesDialog;
- }
- return Result;
- }
- //---------------------------------------------------------------------
- __fastcall TPreferencesDialog::TPreferencesDialog(
- TComponent* AOwner, TPreferencesMode PreferencesMode)
- : TForm(AOwner)
- {
- SetCorrectFormParent(this);
- FNoUpdate = 0;
- FPreferencesMode = PreferencesMode;
- FEditorFont.reset(new TFont());
- FEditorFont->Color = clWindowText;
- FPanelFont.reset(new TFont());
- FPanelFont->Color = clWindowText;
- // currently useless
- FAfterFilenameEditDialog = false;
- FCustomCommandList = new TCustomCommandList();
- FCustomCommandChanging = false;
- FExtensionList = new TCustomCommandList();
- FListViewDragDest = -1;
- FCopyParamList = new TCopyParamList();
- FEditorList = new TEditorList();
- FAutomaticUpdatesPossible = IsInstalled();
- FCustomCommandsHintItem = NULL;
- FAddedExtensions.reset(CreateSortedStringList());
- FCustomCommandOptions.reset(new TStringList());
- UseSystemSettings(this);
- FCustomCommandsScrollOnDragOver = new TListViewScrollOnDragOver(CustomCommandsView, true);
- FixListColumnWidth(CustomCommandsView, -1);
- FCopyParamScrollOnDragOver = new TListViewScrollOnDragOver(CopyParamListView, true);
- FixListColumnWidth(CopyParamListView, -1);
- FEditorScrollOnDragOver = new TListViewScrollOnDragOver(EditorListView3, true);
- FixListColumnWidth(EditorListView3, -1);
- FOrigCustomCommandsViewWindowProc = CustomCommandsView->WindowProc;
- CustomCommandsView->WindowProc = CustomCommandsViewWindowProc;
- ComboAutoSwitchInitialize(UpdatesBetaVersionsCombo);
- EnableControl(UpdatesBetaVersionsCombo, !WinConfiguration->IsBeta && !IsUWP());
- EnableControl(UpdatesBetaVersionsLabel, UpdatesBetaVersionsCombo->Enabled);
- HintLabel(LogFileNameHintText, LoadStr(LOG_FILE_HINT3));
- HintLabel(ActionsLogFileNameHintText, LoadStr(LOG_FILE_HINT3));
- HintLabel(ShellIconsText2);
- HotTrackLabel(CopyParamLabel);
- HintLabel(PuttyPathHintText, LoadStr(PUTTY_PATTERNS_HINT2));
- EditorEncodingCombo->Items->Add(DefaultEncodingName());
- EditorEncodingCombo->Items->Add(LoadStr(UTF8_NAME));
- std::unique_ptr<TStrings> Workspaces(StoredSessions->GetWorkspaces());
- AutoWorkspaceCombo->Items->AddStrings(Workspaces.get());
- AutoSaveWorkspacePasswordsCheck->Caption = LoadStr(SAVE_WORKSPACE_PASSWORDS);
- PuttyRegistryStorageKeyEdit->Items->Add(OriginalPuttyRegistryStorageKey);
- PuttyRegistryStorageKeyEdit->Items->Add(KittyRegistryStorageKey);
- MenuButton(RegisterAsUrlHandlersButton);
- MenuButton(EditorFontColorButton);
- MenuButton(EditorBackgroundColorButton);
- LoadDialogImage(CommanderInterfacePicture, L"Commander");
- LoadDialogImage(ExplorerInterfacePicture, L"Explorer");
- LinkLabel(UpdatesLink);
- LinkAppLabel(BackgroundConfirmationsLink);
- AutomaticIniFileStorageLabel->Caption = ExpandEnvironmentVariables(Configuration->GetAutomaticIniFileStorageName(false));
- HideComponentsPanel(this);
- }
- //---------------------------------------------------------------------------
- __fastcall TPreferencesDialog::~TPreferencesDialog()
- {
- SAFE_DESTROY(FEditorScrollOnDragOver);
- SAFE_DESTROY(FCopyParamScrollOnDragOver);
- SAFE_DESTROY(FCustomCommandsScrollOnDragOver);
- delete FCustomCommandList;
- FCustomCommandList = NULL;
- delete FExtensionList;
- FExtensionList = NULL;
- delete FCopyParamList;
- FCopyParamList = NULL;
- delete FEditorList;
- FEditorList = NULL;
- }
- //---------------------------------------------------------------------
- bool __fastcall TPreferencesDialog::Execute(TPreferencesDialogData * DialogData)
- {
- PuttyPathEdit->Items = CustomWinConfiguration->History[L"PuttyPath"];
- FDialogData = DialogData;
- bool Result = (ShowModal() == DefaultResult(this));
- if (Result)
- {
- SaveConfiguration();
- CustomWinConfiguration->History[L"PuttyPath"] = PuttyPathEdit->Items;
- }
- else
- {
- for (int Index = 0; Index < FAddedExtensions->Count; Index++)
- {
- DeleteFile(ApiPath(FAddedExtensions->Strings[Index]));
- }
- }
- return Result;
- }
- //---------------------------------------------------------------------------
- void __fastcall TPreferencesDialog::LoadLanguages()
- {
- if (!FLanguagesLoaded)
- {
- LanguagesView->Items->Clear();
- LCID Locale = GUIConfiguration->Locale;
- if (Locale == NULL)
- {
- DebugAssert(GUIConfiguration->AppliedLocale == WinConfiguration->DefaultLocale);
- Locale = WinConfiguration->DefaultLocale;
- }
- TObjectList * Locales = GUIConfiguration->Locales;
- for (int Index = 0; Index < Locales->Count; Index++)
- {
- TListItem * Item = LanguagesView->Items->Add();
- TLocaleInfo * LocaleInfo = DebugNotNull(dynamic_cast<TLocaleInfo *>(Locales->Items[Index]));
- Item->Caption = LocaleInfo->Name;
- Item->Data = LocaleInfo;
- Item->Focused = (LocaleInfo->Locale == Locale);
- Item->Selected = Item->Focused;
- }
- AutoSizeListColumnsWidth(LanguagesView);
- FLanguagesLoaded = true;
- }
- }
- //---------------------------------------------------------------------------
- TTabSheet * __fastcall TPreferencesDialog::FindPageForTreeNode(TTreeNode * Node)
- {
- for (int pi = 0; pi < PageControl->PageCount; pi++)
- {
- TTabSheet * Sheet = PageControl->Pages[pi];
- if (Sheet->Tag == Node->SelectedIndex)
- {
- return Sheet;
- }
- }
- DebugFail();
- return NULL;
- }
- //---------------------------------------------------------------------------
- void __fastcall TPreferencesDialog::PrepareNavigationTree(TTreeView * Tree)
- {
- Tree->FullExpand();
- int i = 0;
- while (i < Tree->Items->Count)
- {
- TTreeNode * Node = Tree->Items->Item[i];
- TTabSheet * Sheet = FindPageForTreeNode(Node);
- if (DebugNotNull(Sheet))
- {
- if (Sheet->Enabled)
- {
- // gets called multiple times occasionally
- // (e.g. when called from upload dialog invoked by /upload)
- if (!Sheet->Caption.IsEmpty())
- {
- Node->Text = Sheet->Caption;
- Sheet->Caption = L"";
- }
- }
- else
- {
- Tree->Items->Delete(Node);
- i--;
- }
- }
- i++;
- }
- }
- //---------------------------------------------------------------------------
- void __fastcall TPreferencesDialog::LoadConfiguration()
- {
- FNoUpdate++;
- try
- {
- #define BOOLPROP(PROP) PROP ## Check->Checked = WinConfiguration->PROP;
- BOOLPROP(DefaultDirIsHome);
- BOOLPROP(PreservePanelState);
- BOOLPROP(DeleteToRecycleBin);
- BOOLPROP(DDWarnLackOfTempSpace);
- BOOLPROP(ShowHiddenFiles);
- BOOLPROP(RenameWholeName);
- BOOLPROP(ShowInaccesibleDirectories);
- BOOLPROP(CopyOnDoubleClickConfirmation);
- BOOLPROP(ConfirmTransferring);
- BOOLPROP(ConfirmOverwriting);
- BOOLPROP(ConfirmResume);
- BOOLPROP(ConfirmDeleting);
- BOOLPROP(ConfirmRecycling);
- BOOLPROP(ConfirmExitOnCompletion);
- BOOLPROP(ConfirmCommandSession);
- BOOLPROP(ContinueOnError);
- BOOLPROP(SynchronizeSummary);
- BOOLPROP(DDAllowMoveInit);
- BOOLPROP(BeepOnFinish);
- BOOLPROP(TemporaryDirectoryAppendSession);
- BOOLPROP(TemporaryDirectoryAppendPath);
- BOOLPROP(TemporaryDirectoryDeterministic);
- BOOLPROP(TemporaryDirectoryCleanup);
- BOOLPROP(ConfirmTemporaryDirectoryCleanup);
- BOOLPROP(FullRowSelect);
- BOOLPROP(NaturalOrderNumericalSorting);
- ConfirmClosingSessionCheck2->Checked = WinConfiguration->ConfirmClosingSession;
- if (WinConfiguration->DDTransferConfirmation == asAuto)
- {
- // allow grayed state only initially,
- // once the off state is confirmed, never allow returning
- // to the undefined state
- DDTransferConfirmationCheck->AllowGrayed = true;
- }
- CheckBoxAutoSwitchLoad(DDTransferConfirmationCheck, WinConfiguration->DDTransferConfirmation);
- BeepOnFinishAfterEdit->AsInteger =
- int(static_cast<double>(GUIConfiguration->BeepOnFinishAfter) * SecsPerDay);
- BOOLPROP(BalloonNotifications);
- DDFakeFileEnabledButton->Checked = WinConfiguration->DDFakeFile;
- DDFakeFileDisabledButton->Checked = !DDFakeFileEnabledButton->Checked;
- DDWarnOnMoveCheck->Checked = !WinConfiguration->DDAllowMove;
- if (WinConfiguration->DDTemporaryDirectory.IsEmpty())
- {
- DDSystemTemporaryDirectoryButton->Checked = true;
- DDTemporaryDirectoryEdit->Text = SystemTemporaryDirectory();
- }
- else
- {
- DDCustomTemporaryDirectoryButton->Checked = true;
- DDTemporaryDirectoryEdit->Text = WinConfiguration->DDTemporaryDirectory;
- }
- // Commander
- if (WinConfiguration->ScpCommander.NortonLikeMode == nlOff)
- {
- NortonLikeModeCombo->ItemIndex = 2;
- }
- else if (WinConfiguration->ScpCommander.NortonLikeMode == nlKeyboard)
- {
- NortonLikeModeCombo->ItemIndex = 1;
- }
- else
- {
- NortonLikeModeCombo->ItemIndex = 0;
- }
- SwappedPanelsCheck->Checked =
- WinConfiguration->ScpCommander.SwappedPanels;
- TreeOnLeftCheck->Checked = WinConfiguration->ScpCommander.TreeOnLeft;
- ExplorerKeyboardShortcutsCombo->ItemIndex =
- WinConfiguration->ScpCommander.ExplorerKeyboardShortcuts ? 1 : 0;
- BOOLPROP(UseLocationProfiles);
- CompareByTimeCheck->Checked = WinConfiguration->ScpCommander.CompareByTime;
- CompareBySizeCheck->Checked = WinConfiguration->ScpCommander.CompareBySize;
- // Local panel
- PreserveLocalDirectoryCheck->Checked =
- WinConfiguration->ScpCommander.PreserveLocalDirectory;
- SystemContextMenuCheck->Checked =
- WinConfiguration->ScpCommander.SystemContextMenu;
- // Explorer
- ShowFullAddressCheck->Checked =
- WinConfiguration->ScpExplorer.ShowFullAddress;
- // select none when stNul
- RegistryStorageButton->Checked = (Configuration->Storage == stRegistry);
- AutomaticIniFileStorageButton->Checked = (Configuration->Storage == stIniFile) && Configuration->CustomIniFileStorageName.IsEmpty();
- CustomIniFileStorageButton->Checked = (Configuration->Storage == stIniFile) && !Configuration->CustomIniFileStorageName.IsEmpty();
- CustomIniFileStorageEdit->Text = Configuration->CustomIniFileStorageName;
- if (Configuration->CustomIniFileStorageName.IsEmpty())
- {
- CustomIniFileStorageEdit->Text = Configuration->GetDefaultIniFileExportPath();
- }
- else
- {
- CustomIniFileStorageEdit->Text = Configuration->CustomIniFileStorageName;
- }
- FCustomIniFileStorageName = GetCustomIniFileStorageName();
- RandomSeedFileEdit->Text = Configuration->RandomSeedFile;
- // editor
- EditorWordWrapCheck->Checked = WinConfiguration->Editor.WordWrap;
- EditorTabSizeEdit->AsInteger = WinConfiguration->Editor.TabSize;
- if (WinConfiguration->Editor.Encoding == CP_UTF8)
- {
- EditorEncodingCombo->ItemIndex = 1;
- }
- else
- {
- EditorEncodingCombo->ItemIndex = 0;
- }
- TWinConfiguration::RestoreFont(WinConfiguration->Editor.Font, FEditorFont.get());
- FEditorFont->Color = WinConfiguration->Editor.FontColor;
- FEditorBackgroundColor = WinConfiguration->Editor.BackgroundColor;
- (*FEditorList) = *WinConfiguration->EditorList;
- UpdateEditorListView();
- FCopyParams = GUIConfiguration->DefaultCopyParam;
- ResumeOnButton->Checked = GUIConfiguration->DefaultCopyParam.ResumeSupport == rsOn;
- ResumeSmartButton->Checked = GUIConfiguration->DefaultCopyParam.ResumeSupport == rsSmart;
- ResumeOffButton->Checked = GUIConfiguration->DefaultCopyParam.ResumeSupport == rsOff;
- ResumeThresholdEdit->Value = GUIConfiguration->DefaultCopyParam.ResumeThreshold / 1024;
- SessionReopenAutoCheck->Checked = (Configuration->SessionReopenAuto > 0);
- SessionReopenAutoEdit->Value = (Configuration->SessionReopenAuto > 0 ?
- (Configuration->SessionReopenAuto / MSecsPerSec) : 5);
- SessionReopenAutoIdleCheck->Checked = (GUIConfiguration->SessionReopenAutoIdle > 0);
- SessionReopenAutoIdleEdit->Value = (GUIConfiguration->SessionReopenAutoIdle > 0 ?
- (GUIConfiguration->SessionReopenAutoIdle / MSecsPerSec) : 5);
- SessionReopenAutoStallCheck->Checked = (Configuration->SessionReopenAutoStall > 0);
- SessionReopenAutoStallEdit->Value = (Configuration->SessionReopenAutoStall > 0 ?
- (Configuration->SessionReopenAutoStall / MSecsPerSec) : SecsPerMin);
- SessionReopenTimeoutEdit->Value = (Configuration->SessionReopenTimeout / MSecsPerSec);
- GeneralSheet->Enabled = WinConfiguration->ExpertMode;
- ExplorerSheet->Enabled = WinConfiguration->ExpertMode;
- CommanderSheet->Enabled = WinConfiguration->ExpertMode;
- EditorSheet->Enabled = WinConfiguration->ExpertMode && !WinConfiguration->DisableOpenEdit;
- StorageGroup->Visible = WinConfiguration->ExpertMode;
- RandomSeedFileLabel->Visible = WinConfiguration->ExpertMode;
- RandomSeedFileEdit->Visible = WinConfiguration->ExpertMode;
- FCustomCommandList->Assign(WinConfiguration->CustomCommandList);
- FExtensionList->Assign(WinConfiguration->ExtensionList);
- UpdateCustomCommandsView();
- FCustomCommandOptions->Assign(WinConfiguration->CustomCommandOptions);
- PuttyPathEdit->Text = GUIConfiguration->PuttyPath;
- PuttyPasswordCheck2->Checked = GUIConfiguration->PuttyPassword;
- AutoOpenInPuttyCheck->Checked = WinConfiguration->AutoOpenInPutty;
- TelnetForFtpInPuttyCheck->Checked = WinConfiguration->TelnetForFtpInPutty;
- SelectPuttyRegistryStorageKey(GUIConfiguration->PuttyRegistryStorageKey);
- // Queue
- QueueTransferLimitEdit->AsInteger = GUIConfiguration->QueueTransfersLimit;
- EnableQueueByDefaultCheck->Checked = WinConfiguration->EnableQueueByDefault;
- QueueAutoPopupCheck->Checked = GUIConfiguration->QueueAutoPopup;
- QueueCheck->Checked = GUIConfiguration->DefaultCopyParam.Queue;
- QueueParallelCheck->Checked = GUIConfiguration->DefaultCopyParam.QueueParallel;
- QueueNoConfirmationCheck->Checked = GUIConfiguration->DefaultCopyParam.QueueNoConfirmation;
- if (!GUIConfiguration->QueueKeepDoneItems)
- {
- QueueKeepDoneItemsForCombo->ItemIndex = 0;
- }
- else if (GUIConfiguration->QueueKeepDoneItemsFor < 0)
- {
- QueueKeepDoneItemsForCombo->ItemIndex = 5;
- }
- else if (GUIConfiguration->QueueKeepDoneItemsFor <= 15)
- {
- QueueKeepDoneItemsForCombo->ItemIndex = 1;
- }
- else if (GUIConfiguration->QueueKeepDoneItemsFor <= 60)
- {
- QueueKeepDoneItemsForCombo->ItemIndex = 2;
- }
- else if (GUIConfiguration->QueueKeepDoneItemsFor <= 15 * 60)
- {
- QueueKeepDoneItemsForCombo->ItemIndex = 3;
- }
- else if (GUIConfiguration->QueueKeepDoneItemsFor <= 60 * 60)
- {
- QueueKeepDoneItemsForCombo->ItemIndex = 4;
- }
- if (WinConfiguration->QueueView.Show == qvShow)
- {
- QueueViewShowButton->Checked = true;
- }
- else if (WinConfiguration->QueueView.Show == qvHideWhenEmpty)
- {
- QueueViewHideWhenEmptyButton->Checked = true;
- }
- else
- {
- QueueViewHideButton->Checked = true;
- }
- // window
- AutoSaveWorkspaceCheck->Checked = WinConfiguration->AutoSaveWorkspace;
- AutoWorkspaceCombo->Text =
- DefaultStr(WinConfiguration->AutoWorkspace,
- // It will rarely happen that LastWorkspace is set, while AutoWorkspace not.
- // It can happen only when user saved workspace before opening the Preferences
- // dialog for the first time
- DefaultStr(WinConfiguration->LastWorkspace, LoadStr(NEW_WORKSPACE)));
- AutoSaveWorkspacePasswordsCheck->Checked = WinConfiguration->AutoSaveWorkspacePasswords;
- if (WinConfiguration->PathInCaption == picFull)
- {
- PathInCaptionFullButton->Checked = true;
- }
- else if (WinConfiguration->PathInCaption == picShort)
- {
- PathInCaptionShortButton->Checked = true;
- }
- else
- {
- PathInCaptionNoneButton->Checked = true;
- }
- BOOLPROP(MinimizeToTray);
- BOOLPROP(ExternalSessionInExistingInstance);
- BOOLPROP(KeepOpenWhenNoSession);
- BOOLPROP(ShowTips);
- // panels
- DoubleClickActionCombo->ItemIndex = WinConfiguration->DoubleClickAction;
- BOOLPROP(AutoReadDirectoryAfterOp);
- BOOLPROP(RefreshRemotePanel);
- RefreshRemotePanelIntervalEdit->Value =
- int(static_cast<double>(WinConfiguration->RefreshRemotePanelInterval) * SecsPerDay);
- switch (WinConfiguration->FormatSizeBytes)
- {
- case fbNone:
- FormatSizeBytesCombo->ItemIndex = 0;
- break;
- case fbKilobytes:
- FormatSizeBytesCombo->ItemIndex = 1;
- break;
- case fbShort:
- FormatSizeBytesCombo->ItemIndex = 2;
- break;
- default:
- DebugFail();
- }
- bool CustomPanelFont = !WinConfiguration->PanelFont.FontName.IsEmpty();
- PanelFontCheck->Checked = CustomPanelFont;
- if (CustomPanelFont)
- {
- TWinConfiguration::RestoreFont(WinConfiguration->PanelFont, FPanelFont.get());
- }
- else
- {
- // Default to system icon font, when starting customization
- FPanelFont->Assign(Screen->IconFont);
- }
- // updates
- TUpdatesConfiguration Updates = WinConfiguration->Updates;
- if (int(Updates.Period) <= 0)
- {
- UpdatesPeriodCombo->ItemIndex = 0;
- }
- else if (int(Updates.Period) <= 1)
- {
- UpdatesPeriodCombo->ItemIndex = 1;
- }
- else if (int(Updates.Period) <= 7)
- {
- UpdatesPeriodCombo->ItemIndex = 2;
- }
- else
- {
- UpdatesPeriodCombo->ItemIndex = 3;
- }
- UpdatesShowOnStartup->Checked = Updates.ShowOnStartup;
- UpdatesAuthenticationEmailEdit->Text = Updates.AuthenticationEmail;
- FVerifiedUpdatesAuthenticationEmail = UpdatesAuthenticationEmailEdit->Text;
- CollectUsageCheck->Checked = Configuration->CollectUsage;
- ComboAutoSwitchLoad(UpdatesBetaVersionsCombo, Updates.BetaVersions);
- switch (Updates.ConnectionType)
- {
- case ctDirect:
- default:
- UpdatesDirectCheck->Checked = true;
- break;
- case ctAuto:
- UpdatesAutoCheck->Checked = true;
- break;
- case ctProxy:
- UpdatesProxyCheck->Checked = true;
- break;
- }
- UpdatesProxyHostEdit->Text = Updates.ProxyHost;
- UpdatesProxyPortEdit->AsInteger = Updates.ProxyPort;
- // presets
- (*FCopyParamList) = *WinConfiguration->CopyParamList;
- UpdateCopyParamListView();
- CopyParamListView->ItemIndex = 0;
- BOOLPROP(CopyParamAutoSelectNotice);
- // interface
- switch (CustomWinConfiguration->Interface)
- {
- case ifCommander:
- CommanderInterfaceButton2->Checked = true;
- break;
- case ifExplorer:
- ExplorerInterfaceButton2->Checked = true;
- break;
- default:
- DebugFail();
- break;
- }
- // security
- UseMasterPasswordCheck->Checked = WinConfiguration->UseMasterPassword;
- SessionRememberPasswordCheck->Checked = GUIConfiguration->SessionRememberPassword;
- // network
- RetrieveExternalIpAddressButton->Checked = Configuration->ExternalIpAddress.IsEmpty();
- CustomExternalIpAddressButton->Checked = !RetrieveExternalIpAddressButton->Checked;
- CustomExternalIpAddressEdit->Text = Configuration->ExternalIpAddress;
- TryFtpWhenSshFailsCheck->Checked = Configuration->TryFtpWhenSshFails;
- // logging
- EnableLoggingCheck->Checked = Configuration->Logging;
- LogProtocolCombo->ItemIndex = Configuration->LogProtocol + BelowNormalLogLevels;
- LogFileNameEdit3->Text =
- !Configuration->LogFileName.IsEmpty() ? Configuration->LogFileName : Configuration->DefaultLogFileName;
- if (Configuration->LogFileAppend)
- {
- LogFileAppendButton->Checked = true;
- }
- else
- {
- LogFileOverwriteButton->Checked = true;
- }
- LogMaxSizeCheck->Checked = (Configuration->LogMaxSize > 0);
- LogMaxSizeCombo->Text = SizeToStr((Configuration->LogMaxSize > 0) ? Configuration->LogMaxSize : (1 * 1024 * 1024));
- LogMaxSizeCountCheck->Checked = (Configuration->LogMaxCount > 0);
- LogMaxSizeCountEdit->AsInteger = ((Configuration->LogMaxCount > 0) ? Configuration->LogMaxCount : 5);
- BOOLPROP(LogSensitive);
- EnableActionsLoggingCheck->Checked = Configuration->LogActions;
- ActionsLogFileNameEdit->Text = Configuration->ActionsLogFileName;
- #undef BOOLPROP
- }
- __finally
- {
- FNoUpdate--;
- }
- UpdateControls();
- }
- //---------------------------------------------------------------------------
- void __fastcall TPreferencesDialog::SaveConfiguration()
- {
- Configuration->BeginUpdate();
- try
- {
- TGUICopyParamType CopyParam = GUIConfiguration->DefaultCopyParam;
- #define BOOLPROP(PROP) WinConfiguration->PROP = PROP ## Check->Checked
- BOOLPROP(DefaultDirIsHome);
- BOOLPROP(PreservePanelState);
- BOOLPROP(DeleteToRecycleBin);
- BOOLPROP(DDWarnLackOfTempSpace);
- BOOLPROP(ShowHiddenFiles);
- BOOLPROP(RenameWholeName);
- BOOLPROP(ShowInaccesibleDirectories);
- BOOLPROP(CopyOnDoubleClickConfirmation);
- BOOLPROP(ConfirmTransferring);
- BOOLPROP(ConfirmOverwriting);
- BOOLPROP(ConfirmResume);
- BOOLPROP(ConfirmDeleting);
- BOOLPROP(ConfirmRecycling);
- BOOLPROP(ConfirmExitOnCompletion);
- BOOLPROP(ConfirmCommandSession);
- BOOLPROP(ContinueOnError);
- BOOLPROP(SynchronizeSummary);
- BOOLPROP(DDAllowMoveInit);
- BOOLPROP(BeepOnFinish);
- BOOLPROP(TemporaryDirectoryAppendSession);
- BOOLPROP(TemporaryDirectoryAppendPath);
- BOOLPROP(TemporaryDirectoryDeterministic);
- BOOLPROP(TemporaryDirectoryCleanup);
- BOOLPROP(ConfirmTemporaryDirectoryCleanup);
- BOOLPROP(FullRowSelect);
- BOOLPROP(NaturalOrderNumericalSorting);
- WinConfiguration->ConfirmClosingSession = ConfirmClosingSessionCheck2->Checked;
- WinConfiguration->DDTransferConfirmation =
- CheckBoxAutoSwitchSave(DDTransferConfirmationCheck);
- GUIConfiguration->BeepOnFinishAfter =
- static_cast<double>(BeepOnFinishAfterEdit->Value / SecsPerDay);
- BOOLPROP(BalloonNotifications);
- WinConfiguration->DDAllowMove = !DDWarnOnMoveCheck->Checked;
- WinConfiguration->DDFakeFile = DDFakeFileEnabledButton->Checked;
- if (DDSystemTemporaryDirectoryButton->Checked)
- {
- WinConfiguration->DDTemporaryDirectory = L"";
- }
- else
- {
- WinConfiguration->DDTemporaryDirectory = DDTemporaryDirectoryEdit->Text;
- }
- // Commander
- TScpCommanderConfiguration ScpCommander = WinConfiguration->ScpCommander;
- if (NortonLikeModeCombo->ItemIndex == 2)
- {
- ScpCommander.NortonLikeMode = nlOff;
- }
- else if (NortonLikeModeCombo->ItemIndex == 1)
- {
- ScpCommander.NortonLikeMode = nlKeyboard;
- }
- else
- {
- ScpCommander.NortonLikeMode = nlOn;
- }
- ScpCommander.SwappedPanels = SwappedPanelsCheck->Checked;
- ScpCommander.TreeOnLeft = TreeOnLeftCheck->Checked;
- ScpCommander.ExplorerKeyboardShortcuts =
- (ExplorerKeyboardShortcutsCombo->ItemIndex != 0);
- BOOLPROP(UseLocationProfiles);
- ScpCommander.CompareByTime = CompareByTimeCheck->Checked;
- ScpCommander.CompareBySize = CompareBySizeCheck->Checked;
- // Local panel
- ScpCommander.PreserveLocalDirectory = PreserveLocalDirectoryCheck->Checked;
- ScpCommander.SystemContextMenu = SystemContextMenuCheck->Checked;
- WinConfiguration->ScpCommander = ScpCommander;
- // Explorer
- TScpExplorerConfiguration ScpExplorer = WinConfiguration->ScpExplorer;
- ScpExplorer.ShowFullAddress = ShowFullAddressCheck->Checked;
- WinConfiguration->ScpExplorer = ScpExplorer;
- Configuration->RandomSeedFile = RandomSeedFileEdit->Text;
- // editor
- WinConfiguration->Editor.WordWrap = EditorWordWrapCheck->Checked;
- WinConfiguration->Editor.TabSize = EditorTabSizeEdit->AsInteger;
- switch (EditorEncodingCombo->ItemIndex)
- {
- case 1:
- WinConfiguration->Editor.Encoding = CP_UTF8;
- break;
- default:
- WinConfiguration->Editor.Encoding = CP_ACP;
- break;
- }
- TWinConfiguration::StoreFont(FEditorFont.get(), WinConfiguration->Editor.Font);
- WinConfiguration->Editor.FontColor = FEditorFont->Color;
- WinConfiguration->Editor.BackgroundColor = FEditorBackgroundColor;
- WinConfiguration->EditorList = FEditorList;
- // overwrites only TCopyParamType fields
- CopyParam = FCopyParams;
- if (ResumeOnButton->Checked) CopyParam.ResumeSupport = rsOn;
- if (ResumeSmartButton->Checked) CopyParam.ResumeSupport = rsSmart;
- if (ResumeOffButton->Checked) CopyParam.ResumeSupport = rsOff;
- CopyParam.ResumeThreshold = ResumeThresholdEdit->AsInteger * 1024;
- Configuration->SessionReopenAuto =
- (SessionReopenAutoCheck->Checked ? (SessionReopenAutoEdit->AsInteger * MSecsPerSec) : 0);
- GUIConfiguration->SessionReopenAutoIdle =
- (SessionReopenAutoIdleCheck->Checked ? (SessionReopenAutoIdleEdit->AsInteger * MSecsPerSec) : 0);
- Configuration->SessionReopenAutoStall =
- (SessionReopenAutoStallCheck->Checked ? (SessionReopenAutoStallEdit->AsInteger * MSecsPerSec) : 0);
- Configuration->SessionReopenTimeout = (SessionReopenTimeoutEdit->AsInteger * MSecsPerSec);
- WinConfiguration->CustomCommandList = FCustomCommandList;
- WinConfiguration->ExtensionList = FExtensionList;
- WinConfiguration->CustomCommandOptions = FCustomCommandOptions.get();
- GUIConfiguration->PuttyPath = PuttyPathEdit->Text;
- GUIConfiguration->PuttyPassword = PuttyPasswordCheck2->Checked;
- WinConfiguration->AutoOpenInPutty = AutoOpenInPuttyCheck->Checked;
- WinConfiguration->TelnetForFtpInPutty = TelnetForFtpInPuttyCheck->Checked;
- // do not overwrite custom keys
- if (PuttyRegistryStorageKeyEdit->ItemIndex >= 0)
- {
- GUIConfiguration->PuttyRegistryStorageKey = PuttyRegistryStorageKeyEdit->Text;
- }
- // Queue
- GUIConfiguration->QueueTransfersLimit = QueueTransferLimitEdit->AsInteger;
- WinConfiguration->EnableQueueByDefault = EnableQueueByDefaultCheck->Checked;
- GUIConfiguration->QueueAutoPopup = QueueAutoPopupCheck->Checked;
- CopyParam.Queue = QueueCheck->Checked;
- CopyParam.QueueParallel = QueueParallelCheck->Checked;
- CopyParam.QueueNoConfirmation = QueueNoConfirmationCheck->Checked;
- GUIConfiguration->QueueKeepDoneItems = (QueueKeepDoneItemsForCombo->ItemIndex != 0);
- switch (QueueKeepDoneItemsForCombo->ItemIndex)
- {
- case 0:
- GUIConfiguration->QueueKeepDoneItemsFor = 0;
- break;
- case 1:
- GUIConfiguration->QueueKeepDoneItemsFor = 15;
- break;
- case 2:
- GUIConfiguration->QueueKeepDoneItemsFor = 60;
- break;
- case 3:
- GUIConfiguration->QueueKeepDoneItemsFor = 15 * 60;
- break;
- case 4:
- GUIConfiguration->QueueKeepDoneItemsFor = 60 * 60;
- break;
- default:
- GUIConfiguration->QueueKeepDoneItemsFor = -1;
- break;
- }
- if (QueueViewShowButton->Checked)
- {
- WinConfiguration->QueueView.Show = qvShow;
- }
- else if (QueueViewHideWhenEmptyButton->Checked)
- {
- WinConfiguration->QueueView.Show = qvHideWhenEmpty;
- }
- else
- {
- WinConfiguration->QueueView.Show = qvHide;
- }
- GUIConfiguration->DefaultCopyParam = CopyParam;
- // window
- WinConfiguration->AutoSaveWorkspace =
- !AutoWorkspaceCombo->Text.IsEmpty() &&
- AutoSaveWorkspaceCheck->Checked;
- if (!AutoWorkspaceCombo->Text.IsEmpty())
- {
- WinConfiguration->AutoWorkspace = AutoWorkspaceCombo->Text;
- }
- WinConfiguration->AutoSaveWorkspacePasswords = AutoSaveWorkspacePasswordsCheck->Checked;
- if (PathInCaptionFullButton->Checked)
- {
- WinConfiguration->PathInCaption = picFull;
- }
- else if (PathInCaptionShortButton->Checked)
- {
- WinConfiguration->PathInCaption = picShort;
- }
- else
- {
- WinConfiguration->PathInCaption = picNone;
- }
- BOOLPROP(MinimizeToTray);
- BOOLPROP(ExternalSessionInExistingInstance);
- BOOLPROP(KeepOpenWhenNoSession);
- BOOLPROP(ShowTips);
- // panels
- WinConfiguration->DoubleClickAction = (TDoubleClickAction)DoubleClickActionCombo->ItemIndex;
- BOOLPROP(AutoReadDirectoryAfterOp);
- BOOLPROP(RefreshRemotePanel);
- WinConfiguration->RefreshRemotePanelInterval =
- static_cast<double>(RefreshRemotePanelIntervalEdit->Value / SecsPerDay);
- switch (FormatSizeBytesCombo->ItemIndex)
- {
- case 0:
- WinConfiguration->FormatSizeBytes = fbNone;
- break;
- case 1:
- WinConfiguration->FormatSizeBytes = fbKilobytes;
- break;
- case 2:
- WinConfiguration->FormatSizeBytes = fbShort;
- break;
- default:
- DebugFail();
- }
- TFontConfiguration PanelFontConfiguration;
- if (PanelFontCheck->Checked)
- {
- TWinConfiguration::StoreFont(FPanelFont.get(), PanelFontConfiguration);
- }
- WinConfiguration->PanelFont = PanelFontConfiguration;
- // updates
- WinConfiguration->Updates = SaveUpdates();
- Configuration->CollectUsage = CollectUsageCheck->Checked;
- // presets
- WinConfiguration->CopyParamList = FCopyParamList;
- BOOLPROP(CopyParamAutoSelectNotice);
- // interface
- if (GetInterface() != CustomWinConfiguration->Interface)
- {
- Configuration->Usage->Inc(L"InterfaceChanges");
- }
- CustomWinConfiguration->Interface = GetInterface();
- // network
- Configuration->ExternalIpAddress =
- (CustomExternalIpAddressButton->Checked ? CustomExternalIpAddressEdit->Text : UnicodeString());
- Configuration->TryFtpWhenSshFails = TryFtpWhenSshFailsCheck->Checked;
- // security
- GUIConfiguration->SessionRememberPassword = SessionRememberPasswordCheck->Checked;
- // logging
- Configuration->Logging = EnableLoggingCheck->Checked && !LogFileNameEdit3->Text.IsEmpty();
- Configuration->LogProtocol = LogProtocolCombo->ItemIndex - BelowNormalLogLevels;
- Configuration->LogFileName = LogFileNameEdit3->Text;
- Configuration->LogFileAppend = LogFileAppendButton->Checked;
- __int64 LogMaxSize;
- if (LogMaxSizeCheck->Checked && DebugAlwaysTrue(TryStrToSize(LogMaxSizeCombo->Text, LogMaxSize)))
- {
- Configuration->LogMaxSize = LogMaxSize;
- }
- else
- {
- Configuration->LogMaxSize = 0;
- }
- Configuration->LogMaxCount = (LogMaxSizeCountCheck->Checked ? LogMaxSizeCountEdit->AsInteger : 0);
- BOOLPROP(LogSensitive);
- Configuration->LogActions = EnableActionsLoggingCheck->Checked;
- Configuration->ActionsLogFileName = ActionsLogFileNameEdit->Text;
- // languages
- if (LanguagesView->ItemFocused != NULL)
- {
- TLocaleInfo * LocaleInfo = static_cast<TLocaleInfo *>(LanguagesView->ItemFocused->Data);
- LCID Locale;
- // Do not change the locale settings, unless changed explicitly by user
- // to allow an automatic upgrade to new translation once the UI language translation
- // becomes available
- if (LocaleInfo->Locale == WinConfiguration->DefaultLocale)
- {
- Locale = NULL;
- }
- else
- {
- Locale = LocaleInfo->Locale;
- }
- GUIConfiguration->Locale = Locale;
- }
- #undef BOOLPROP
- }
- __finally
- {
- Configuration->EndUpdate();
- }
- bool MoveStorage = true;
- TStorage Storage;
- if (RegistryStorageButton->Checked)
- {
- Storage = stRegistry;
- }
- else if (AutomaticIniFileStorageButton->Checked)
- {
- Storage = stIniFile;
- }
- else if (CustomIniFileStorageButton->Checked)
- {
- Storage = stIniFile;
- }
- else
- {
- MoveStorage = false;
- }
- if (MoveStorage)
- {
- Configuration->MoveStorage(Storage, GetCustomIniFileStorageName());
- }
- }
- //---------------------------------------------------------------------------
- TUpdatesConfiguration __fastcall TPreferencesDialog::SaveUpdates()
- {
- TUpdatesConfiguration Updates = WinConfiguration->Updates;
- if (UpdatesPeriodCombo->ItemIndex == 0)
- {
- Updates.Period = 0;
- }
- else if (UpdatesPeriodCombo->ItemIndex == 1)
- {
- Updates.Period = 1;
- }
- else if (UpdatesPeriodCombo->ItemIndex == 2)
- {
- Updates.Period = 7;
- }
- else
- {
- Updates.Period = 30;
- }
- Updates.ShowOnStartup = UpdatesShowOnStartup->Checked;
- Updates.AuthenticationEmail = UpdatesAuthenticationEmailEdit->Text;
- Updates.BetaVersions = ComboAutoSwitchSave(UpdatesBetaVersionsCombo);
- if (UpdatesDirectCheck->Checked)
- {
- Updates.ConnectionType = ctDirect;
- }
- else if (UpdatesAutoCheck->Checked)
- {
- Updates.ConnectionType = ctAuto;
- }
- else if (UpdatesProxyCheck->Checked)
- {
- if (!UpdatesProxyHostEdit->Text.IsEmpty())
- {
- Updates.ConnectionType = ctProxy;
- }
- else
- {
- Updates.ConnectionType = ctDirect;
- }
- }
- Updates.ProxyHost = UpdatesProxyHostEdit->Text;
- Updates.ProxyPort = UpdatesProxyPortEdit->AsInteger;
- return Updates;
- }
- //---------------------------------------------------------------------------
- TInterface __fastcall TPreferencesDialog::GetInterface()
- {
- return CommanderInterfaceButton2->Checked ? ifCommander : ifExplorer;
- }
- //---------------------------------------------------------------------------
- void __fastcall TPreferencesDialog::FormShow(TObject * /*Sender*/)
- {
- // Load only now, particularly so that we have handles allocated already.
- // If called before ShowModal, we end up recreating the handles,
- // what causes flicker of the currently focused window
- LoadConfiguration();
- InstallPathWordBreakProc(RandomSeedFileEdit);
- InstallPathWordBreakProc(DDTemporaryDirectoryEdit);
- InstallPathWordBreakProc(PuttyPathEdit);
- InstallPathWordBreakProc(LogFileNameEdit3);
- InstallPathWordBreakProc(ActionsLogFileNameEdit);
- ListView_SetExtendedListViewStyle(CustomCommandsView->Handle, (ListView_GetExtendedListViewStyle(CustomCommandsView->Handle) & ~LVS_EX_INFOTIP));
- PrepareNavigationTree(NavigationTree);
- switch (FPreferencesMode) {
- case pmEditor: PageControl->ActivePage = EditorSheet; break;
- case pmCustomCommands: PageControl->ActivePage = CustomCommandsSheet; break;
- case pmQueue: PageControl->ActivePage = QueueSheet; break;
- case pmLogging: PageControl->ActivePage = LogSheet; break;
- case pmUpdates: PageControl->ActivePage = UpdatesSheet; break;
- case pmPresets: PageControl->ActivePage = CopyParamListSheet; break;
- case pmEditors: PageControl->ActivePage = EditorSheet; break;
- case pmCommander: PageControl->ActivePage = CommanderSheet; break;
- case pmEditorInternal: PageControl->ActivePage = EditorInternalSheet; break;
- default: PageControl->ActivePage = PreferencesSheet; break;
- }
- PageControlChange(NULL);
- ActiveControl = NavigationTree;
- }
- //---------------------------------------------------------------------------
- void __fastcall TPreferencesDialog::ControlChange(TObject * /*Sender*/)
- {
- UpdateControls();
- }
- //---------------------------------------------------------------------------
- UnicodeString __fastcall TPreferencesDialog::TabSample(UnicodeString Values)
- {
- UnicodeString Result;
- for (int Index = 1; Index <= Values.Length(); Index++)
- {
- if (Index > 1)
- {
- Result += L' ';
- if (EditorTabSizeEdit->AsInteger > 2)
- {
- Result += UnicodeString::StringOfChar(L' ', EditorTabSizeEdit->AsInteger - 2);
- }
- }
- Result += Values[Index];
- }
- return Result;
- }
- //---------------------------------------------------------------------------
- TCustomCommandList * __fastcall TPreferencesDialog::GetCommandList(int Index)
- {
- if (Index < FCustomCommandList->Count)
- {
- return FCustomCommandList;
- }
- else
- {
- return FExtensionList;
- }
- }
- //---------------------------------------------------------------------------
- int __fastcall TPreferencesDialog::GetCommandIndex(int Index)
- {
- if (Index >= FCustomCommandList->Count)
- {
- Index -= FCustomCommandList->Count;
- }
- return Index;
- }
- //---------------------------------------------------------------------------
- int __fastcall TPreferencesDialog::GetListCommandIndex(TCustomCommandList * List)
- {
- int Index;
- if (GetCommandList(CustomCommandsView->ItemIndex) == List)
- {
- Index = GetCommandIndex(CustomCommandsView->ItemIndex);
- }
- else
- {
- Index = -1;
- }
- return Index;
- }
- //---------------------------------------------------------------------------
- int __fastcall TPreferencesDialog::GetCommandListIndex(TCustomCommandList * List, int Index)
- {
- if (List == FExtensionList)
- {
- Index += FCustomCommandList->Count;
- }
- return Index;
- }
- //---------------------------------------------------------------------------
- void __fastcall TPreferencesDialog::UpdateControls()
- {
- if (FNoUpdate == 0)
- {
- EnableControl(BeepOnFinishAfterEdit, BeepOnFinishCheck->Checked);
- EnableControl(BeepOnFinishAfterText, BeepOnFinishCheck->Checked);
- EnableControl(ResumeThresholdEdit, ResumeSmartButton->Checked);
- EnableControl(ResumeThresholdUnitLabel2, ResumeThresholdEdit->Enabled);
- EnableControl(SessionReopenAutoEdit, SessionReopenAutoCheck->Checked);
- EnableControl(SessionReopenAutoLabel, SessionReopenAutoEdit->Enabled);
- EnableControl(SessionReopenAutoSecLabel, SessionReopenAutoEdit->Enabled);
- EnableControl(SessionReopenAutoIdleEdit, SessionReopenAutoIdleCheck->Checked);
- EnableControl(SessionReopenAutoIdleLabel, SessionReopenAutoIdleEdit->Enabled);
- EnableControl(SessionReopenAutoIdleSecLabel, SessionReopenAutoIdleEdit->Enabled);
- EnableControl(SessionReopenAutoStallEdit, SessionReopenAutoStallCheck->Checked);
- EnableControl(SessionReopenAutoStallLabel, SessionReopenAutoStallEdit->Enabled);
- EnableControl(SessionReopenAutoStallSecLabel, SessionReopenAutoStallEdit->Enabled);
- EnableControl(SessionReopenTimeoutEdit,
- SessionReopenAutoEdit->Enabled || SessionReopenAutoStallCheck->Checked);
- EnableControl(SessionReopenTimeoutLabel, SessionReopenTimeoutEdit->Enabled);
- EnableControl(SessionReopenTimeoutSecLabel,SessionReopenTimeoutEdit->Enabled);
- EnableControl(CopyOnDoubleClickConfirmationCheck,
- (DoubleClickActionCombo->ItemIndex == 1) && ConfirmTransferringCheck->Checked);
- TFont * ActualPanelFont = PanelFontCheck->Checked ? FPanelFont.get() : Screen->IconFont;
- std::unique_ptr<TFont> PanelFont(new TFont());
- PanelFont->Assign(ActualPanelFont);
- if (PanelFontCheck->Checked)
- {
- PanelFont->Height = ScaleByPixelsPerInchFromSystem(PanelFont->Height, this);
- }
- else
- {
- PanelFont->Height = ScaleByPixelsPerInchFromSystem(PanelFont->Height, this);
- }
- UnicodeString PanelFontLabelText;
- PanelFontLabelText = FMTLOAD(EDITOR_FONT_FMT,
- (ActualPanelFont->Name, ActualPanelFont->Size));
- PanelFontLabel->Caption = PanelFontLabelText;
- if (!SameFont(PanelFontLabel->Font, PanelFont.get()))
- {
- PanelFontLabel->Font = PanelFont.get();
- }
- EnableControl(RefreshRemotePanelIntervalEdit, RefreshRemotePanelCheck->Checked);
- EnableControl(RefreshRemoteDirectoryUnitLabel, RefreshRemotePanelCheck->Checked);
- UnicodeString EditorFontLabelText;
- EditorFontLabelText = FMTLOAD(EDITOR_FONT_FMT,
- (FEditorFont->Name, FEditorFont->Size)) + L"\n\n";
- EditorFontLabelText += TabSample(L"ABCD") + L"\n";
- EditorFontLabelText += TabSample(L"1234");
- EditorFontLabel->Caption = EditorFontLabelText;
- std::unique_ptr<TFont> EditorFont(new TFont());
- EditorFont->Assign(FEditorFont.get());
- EditorFont->Color = GetWindowTextColor(FEditorFont->Color);
- EditorFont->Size = ScaleByPixelsPerInchFromSystem(FEditorFont->Size, this);
- if (!SameFont(EditorFontLabel->Font, EditorFont.get()) ||
- (EditorFontLabel->Font->Color != EditorFont->Color))
- {
- EditorFontLabel->Font = EditorFont.get();
- }
- EditorFontLabel->Color = GetWindowColor(FEditorBackgroundColor);
- TCustomCommandList * CommandList = GetCommandList(CustomCommandsView->ItemIndex);
- int CommandIndex = GetCommandIndex(CustomCommandsView->ItemIndex);
- bool CommandSelected = (CustomCommandsView->Selected != NULL);
- bool CustomCommandSelected = CommandSelected && (CommandList == FCustomCommandList);
- bool ExtensionSelected = CommandSelected && (CommandList == FExtensionList);
- EnableControl(EditCommandButton, CustomCommandSelected);
- EditCommandButton->Visible = !ExtensionSelected;
- EnableControl(ConfigureCommandButton, ExtensionSelected);
- ConfigureCommandButton->Visible = ExtensionSelected;
- EnableControl(RemoveCommandButton, CommandSelected);
- EnableControl(UpCommandButton, CommandSelected && (CommandIndex > 0));
- EnableControl(DownCommandButton, CommandSelected && (CommandIndex < CommandList->Count - 1));
- bool CopyParamSelected = (CopyParamListView->Selected != NULL);
- EnableControl(EditCopyParamButton, CopyParamSelected);
- EnableControl(DuplicateCopyParamButton, CopyParamSelected);
- EnableControl(RemoveCopyParamButton,
- CopyParamSelected && (CopyParamListView->ItemIndex >= 1));
- EnableControl(UpCopyParamButton,
- CopyParamSelected && (CopyParamListView->ItemIndex > 1));
- EnableControl(DownCopyParamButton,
- CopyParamSelected &&
- (CopyParamListView->ItemIndex >= 1) &&
- (CopyParamListView->ItemIndex < CopyParamListView->Items->Count - 1));
- EnableControl(CopyParamAutoSelectNoticeCheck, FCopyParamList->AnyRule);
- UnicodeString InfoStr;
- if (CopyParamSelected)
- {
- const TCopyParamType * SelectedCopyParam = GetCopyParam(CopyParamListView->ItemIndex);
- InfoStr = SelectedCopyParam->GetInfoStr(L"; ", 0);
- if (CopyParamListView->ItemIndex >= 1)
- {
- const TCopyParamRule * Rule = FCopyParamList->Rules[CopyParamListView->ItemIndex - 1];
- if (Rule != NULL)
- {
- InfoStr += L"\n" + FORMAT(ReplaceStr(LoadStr(COPY_PARAM_RULE), L"\n", L" "), (Rule->GetInfoStr(L"; ")));
- }
- }
- }
- SetLabelHintPopup(CopyParamLabel, InfoStr);
- if (!WinConfiguration->DDExtInstalled)
- {
- DragExtStatusLabel->Caption = LoadStr(PREFERENCES_DRAGEXT_NOT_INSTALLED);
- DragExtStatusLabel->Enabled = false;
- DragExtStatusLabel->Font->Color = clWindowText;
- }
- else if (!WinConfiguration->IsDDExtRunning())
- {
- DragExtStatusLabel->Caption = LoadStr(PREFERENCES_DRAGEXT_NOT_RUNNING);
- DragExtStatusLabel->Enabled = true;
- DragExtStatusLabel->Font->Color = clGrayText;
- }
- else
- {
- DragExtStatusLabel->Caption = LoadStr(PREFERENCES_DRAGEXT_RUNNING);
- DragExtStatusLabel->Enabled = true;
- DragExtStatusLabel->Font->Color = clWindowText;
- }
- EnableControl(DDFakeFileDisabledPanel, DDFakeFileDisabledButton->Checked);
- EnableControl(DDTemporaryDirectoryEdit, DDCustomTemporaryDirectoryButton->Enabled &&
- DDCustomTemporaryDirectoryButton->Checked);
- EnableControl(DDWarnOnMoveCheck, DDFakeFileDisabledButton->Checked && DDAllowMoveInitCheck->Checked);
- EnableControl(ConfirmTemporaryDirectoryCleanupCheck,
- TemporaryDirectoryCleanupCheck->Checked);
- // allow only when some of the known storages is selected,
- // and particularly do not allow switching storage, when we start with stNul,
- // as that would destroy the stored configuration
- EnableControl(StorageGroup,
- RegistryStorageButton->Checked || AutomaticIniFileStorageButton->Checked || CustomIniFileStorageButton->Checked);
- AutomaticIniFileStorageLabel->UpdateStatus();
- EnableControl(CustomIniFileStorageEdit, CustomIniFileStorageButton->Checked);
- EditorFontLabel->WordWrap = EditorWordWrapCheck->Checked;
- bool EditorSelected = (EditorListView3->Selected != NULL);
- EnableControl(EditEditorButton, EditorSelected);
- EnableControl(RemoveEditorButton, EditorSelected);
- EnableControl(UpEditorButton, EditorSelected &&
- (EditorListView3->ItemIndex > 0));
- EnableControl(DownEditorButton, EditorSelected &&
- (EditorListView3->ItemIndex < EditorListView3->Items->Count - 1));
- // updates
- EnableControl(UpdatesAuthenticationEmailEdit, FAutomaticUpdatesPossible);
- EnableControl(UpdatesAuthenticationEmailLabel, UpdatesAuthenticationEmailEdit->Enabled);
- EnableControl(UpdatesShowOnStartup, !IsUWP());
- EnableControl(UsageViewButton, CollectUsageCheck->Checked);
- EnableControl(UpdatesProxyHostEdit, UpdatesProxyCheck->Checked);
- EnableControl(UpdatesProxyHostLabel, UpdatesProxyHostEdit->Enabled);
- EnableControl(UpdatesProxyPortEdit, UpdatesProxyCheck->Checked);
- EnableControl(UpdatesProxyPortLabel, UpdatesProxyPortEdit->Enabled);
- bool IsSiteCommand = false;
- bool IsPasswordCommand = false;
- try
- {
- TRemoteCustomCommand RemoteCustomCommand;
- TInteractiveCustomCommand InteractiveCustomCommand(&RemoteCustomCommand);
- UnicodeString PuttyPath = PuttyPathEdit->Text;
- PuttyPath = InteractiveCustomCommand.Complete(PuttyPath, false);
- IsSiteCommand = RemoteCustomCommand.IsSiteCommand(PuttyPath);
- IsPasswordCommand = RemoteCustomCommand.IsPasswordCommand(PuttyPath);
- }
- catch (...)
- {
- // noop
- }
- bool AnyPuttyPath = !PuttyPathEdit->Text.IsEmpty();
- EnableControl(PuttyPasswordCheck2, AnyPuttyPath && !IsPasswordCommand);
- EnableControl(AutoOpenInPuttyCheck, AnyPuttyPath);
- EnableControl(TelnetForFtpInPuttyCheck,
- AnyPuttyPath && !IsSiteCommand);
- EnableControl(PuttyRegistryStorageKeyEdit,
- AnyPuttyPath && !IsSiteCommand && !IsUWP());
- EnableControl(PuttyRegistryStorageKeyLabel, PuttyRegistryStorageKeyEdit->Enabled);
- EnableControl(SetMasterPasswordButton, WinConfiguration->UseMasterPassword);
- // network
- EnableControl(CustomExternalIpAddressEdit, CustomExternalIpAddressButton->Checked);
- // window
- EnableControl(AutoWorkspaceCombo, AutoSaveWorkspaceCheck->Checked);
- EnableControl(AutoWorkspaceLabel, AutoWorkspaceCombo->Enabled);
- EnableControl(AutoSaveWorkspacePasswordsCheck,
- !Configuration->DisablePasswordStoring &&
- AutoWorkspaceCombo->Enabled);
- // integration
- EnableControl(ShellIconsGroup, !IsUWP());
- // There's no quick launch in Windows 7
- EnableControl(QuickLaunchIconButton, ShellIconsGroup->Enabled && !IsWin7());
- MakeDefaultHandlerItem->Visible = IsWinVista();
- // languages
- LanguageChangeLabel->Visible =
- DebugAlwaysTrue(!GUIConfiguration->CanApplyLocaleImmediately) &&
- (LanguagesView->ItemFocused != NULL) &&
- (static_cast<TLocaleInfo *>(LanguagesView->ItemFocused->Data)->Locale != GUIConfiguration->AppliedLocale);
- // logging
- EnableControl(LogProtocolCombo, EnableLoggingCheck->Checked);
- EnableControl(LogFileNameEdit3, LogProtocolCombo->Enabled);
- EnableControl(LogFileNameHintText, LogFileNameEdit3->Enabled);
- EnableControl(LogFileAppendButton, LogFileNameEdit3->Enabled);
- EnableControl(LogFileOverwriteButton, LogFileNameEdit3->Enabled);
- EnableControl(LogMaxSizeCheck, LogFileNameEdit3->Enabled);
- EnableControl(LogMaxSizeCombo, LogMaxSizeCheck->Enabled && LogMaxSizeCheck->Checked);
- EnableControl(LogMaxSizeCountCheck, LogMaxSizeCombo->Enabled);
- EnableControl(LogMaxSizeCountEdit, LogMaxSizeCountCheck->Enabled && LogMaxSizeCountCheck->Checked);
- EnableControl(LogMaxSizeCountFilesLabel, LogMaxSizeCountEdit->Enabled);
- EnableControl(LogSensitiveCheck, LogProtocolCombo->Enabled);
- EnableControl(ActionsLogFileNameEdit, EnableActionsLoggingCheck->Checked);
- EnableControl(ActionsLogFileNameHintText, ActionsLogFileNameEdit->Enabled);
- // interface
- InterfaceChangeLabel->Visible =
- !CustomWinConfiguration->CanApplyInterfaceImmediately &&
- (GetInterface() != CustomWinConfiguration->AppliedInterface);
- }
- }
- //---------------------------------------------------------------------------
- void __fastcall TPreferencesDialog::EditorFontButtonClick(TObject * /*Sender*/)
- {
- if (FontDialog(FEditorFont.get()))
- {
- UpdateControls();
- }
- }
- //---------------------------------------------------------------------------
- void __fastcall TPreferencesDialog::EditorFontColorChange(TColor Color)
- {
- FEditorFont->Color = Color;
- UpdateControls();
- }
- //---------------------------------------------------------------------------
- void __fastcall TPreferencesDialog::EditorFontColorButtonClick(TObject * /*Sender*/)
- {
- // WORKAROUND: Compiler keeps crashing randomly (but frequently) with
- // "internal error" when passing menu directly to unique_ptr.
- // Splitting it to two statements seems to help.
- // The same hack exists in TSiteAdvancedDialog::ColorButtonClick and TOpenLocalPathHandler::Open
- TPopupMenu * Menu = CreateColorPopupMenu(FEditorFont->Color, EditorFontColorChange);
- // Popup menu has to survive the popup as TBX calls click handler asynchronously (post).
- FColorPopupMenu.reset(Menu);
- MenuPopup(Menu, EditorFontColorButton);
- }
- //---------------------------------------------------------------------------
- void __fastcall TPreferencesDialog::EditorBackgroundColorChange(TColor Color)
- {
- FEditorBackgroundColor = Color;
- UpdateControls();
- }
- //---------------------------------------------------------------------------
- void __fastcall TPreferencesDialog::EditorBackgroundColorButtonClick(TObject * /*Sender*/)
- {
- // See comment in EditorFontColorButtonClick.
- // We are using session color (contrary to editor text color) for background
- // for a consistency with color selection menu on editor toolbar.
- TTBXPopupMenu * PopupMenu = new TTBXPopupMenu(Application);
- FColorPopupMenu.reset(PopupMenu);
- CreateEditorBackgroundColorMenu(PopupMenu->Items, FEditorBackgroundColor, EditorBackgroundColorChange);
- MenuPopup(FColorPopupMenu.get(), EditorBackgroundColorButton);
- }
- //---------------------------------------------------------------------------
- void __fastcall TPreferencesDialog::PanelFontButtonClick(TObject * /*Sender*/)
- {
- if (FontDialog(FPanelFont.get()))
- {
- PanelFontCheck->Checked = true;
- UpdateControls();
- }
- }
- //---------------------------------------------------------------------------
- void __fastcall TPreferencesDialog::FormCloseQuery(TObject * /*Sender*/,
- bool & /*CanClose*/)
- {
- if (ModalResult == DefaultResult(this))
- {
- ExitActiveControl(this);
- }
- }
- //---------------------------------------------------------------------------
- void __fastcall TPreferencesDialog::IconButtonClick(TObject *Sender)
- {
- UnicodeString IconName, Params;
- int SpecialFolder;
- if (Sender == DesktopIconButton)
- {
- IconName = AppName;
- int Result =
- MessageDialog(LoadStr(CREATE_DESKTOP_ICON2), qtConfirmation,
- qaYes | qaNo | qaCancel, HELP_CREATE_ICON);
- switch (Result)
- {
- case qaYes:
- SpecialFolder = CSIDL_COMMON_DESKTOPDIRECTORY;
- break;
- case qaNo:
- SpecialFolder = CSIDL_DESKTOPDIRECTORY;
- break;
- default:
- Abort();
- break;
- }
- }
- else
- {
- if (MessageDialog(MainInstructions(LoadStr(CONFIRM_CREATE_ICON)),
- qtConfirmation, qaYes | qaNo, HELP_CREATE_ICON) == qaYes)
- {
- if (Sender == SendToHookButton)
- {
- IconName = FMTLOAD(SENDTO_HOOK_NAME2, (AppName));
- SpecialFolder = CSIDL_SENDTO;
- Params = TProgramParams::FormatSwitch(UPLOAD_SWITCH);
- }
- else if (Sender == QuickLaunchIconButton)
- {
- IconName = L"Microsoft\\Internet Explorer\\Quick Launch\\" +
- AppName;
- SpecialFolder = CSIDL_APPDATA;
- }
- }
- else
- {
- Abort();
- }
- }
- TInstantOperationVisualizer Visualizer;
- CreateDesktopShortCut(IconName,
- Application->ExeName, Params, L"", SpecialFolder);
- }
- //---------------------------------------------------------------------------
- void __fastcall TPreferencesDialog::CustomCommandsViewData(TObject * /*Sender*/,
- TListItem * Item)
- {
- // WORKAROUND We get here on Wine after destructor is called
- if ((FCustomCommandList != NULL) && (FExtensionList != NULL))
- {
- int Index = Item->Index;
- const TCustomCommandType * Command = GetCommandList(Index)->Commands[GetCommandIndex(Index)];
- UnicodeString Caption = StripHotkey(Command->Name);
- Item->Caption = Caption;
- DebugAssert(!Item->SubItems->Count);
- Item->SubItems->Add(Command->Command);
- Item->SubItems->Add(LoadStr(
- FLAGSET(Command->Params, ccLocal) ? CUSTOM_COMMAND_LOCAL : CUSTOM_COMMAND_REMOTE));
- }
- }
- //---------------------------------------------------------------------------
- void __fastcall TPreferencesDialog::ListViewSelectItem(
- TObject * /*Sender*/, TListItem * /*Item*/, bool /*Selected*/)
- {
- UpdateControls();
- }
- //---------------------------------------------------------------------------
- void __fastcall TPreferencesDialog::UpdateCustomCommandsView()
- {
- CustomCommandsView->Items->Count = FCustomCommandList->Count + FExtensionList->Count;
- AutoSizeListColumnsWidth(CustomCommandsView, 1);
- CustomCommandsView->Invalidate();
- // particularly after command is edited/configured, make sure the hint is updated,
- // even if we manage to display a hint for the same command as before the change
- FCustomCommandsHintItem = NULL;
- }
- //---------------------------------------------------------------------------
- void __fastcall TPreferencesDialog::CustomCommandsViewKeyDown(
- TObject * /*Sender*/, WORD & Key, TShiftState /*Shift*/)
- {
- if (RemoveCommandButton->Enabled && (Key == VK_DELETE))
- {
- RemoveCommandButtonClick(NULL);
- }
- if (AddCommandButton->Enabled && (Key == VK_INSERT))
- {
- AddEditCommand(false);
- }
- }
- //---------------------------------------------------------------------------
- void __fastcall TPreferencesDialog::CustomCommandsViewDblClick(
- TObject * /*Sender*/)
- {
- if (EditCommandButton->Enabled)
- {
- AddEditCommand(true);
- }
- else if (ConfigureCommandButton->Enabled)
- {
- ConfigureCommand();
- }
- }
- //---------------------------------------------------------------------------
- static int __fastcall AddCommandToList(TCustomCommandList * List, int Index, TCustomCommandType * Command)
- {
- if (Index >= 0)
- {
- List->Insert(Index, Command);
- }
- else
- {
- List->Add(Command);
- Index = List->Count - 1;
- }
- return Index;
- }
- //---------------------------------------------------------------------------
- TShortCuts __fastcall TPreferencesDialog::GetShortCuts()
- {
- TShortCuts ShortCuts;
- if (WinConfiguration->SharedBookmarks != NULL)
- {
- WinConfiguration->SharedBookmarks->ShortCuts(ShortCuts);
- }
- FCustomCommandList->ShortCuts(ShortCuts);
- FExtensionList->ShortCuts(ShortCuts);
- return ShortCuts;
- }
- //---------------------------------------------------------------------------
- void __fastcall TPreferencesDialog::AddEditCommand(bool Edit)
- {
- TCustomCommandType Command;
- if (Edit)
- {
- int Index = CustomCommandsView->ItemIndex;
- DebugAssert(GetCommandList(Index) == FCustomCommandList);
- Command = *FCustomCommandList->Commands[GetCommandIndex(Index)];
- }
- TShortCuts ShortCuts = GetShortCuts();
- if (DoCustomCommandDialog(Command, FCustomCommandList,
- (Edit ? ccmEdit : ccmAdd), 0, NULL, &ShortCuts))
- {
- int Index = GetListCommandIndex(FCustomCommandList);
- TCustomCommandType * ACommand = new TCustomCommandType(Command);
- if (Edit)
- {
- DebugAssert(Index < FCustomCommandList->Count);
- FCustomCommandList->Change(Index, ACommand);
- }
- else
- {
- Index = AddCommandToList(FCustomCommandList, Index, ACommand);
- }
- UpdateCustomCommandsView();
- CustomCommandsView->ItemIndex = GetCommandListIndex(FCustomCommandList, Index);
- CustomCommandsView->ItemFocused->MakeVisible(false);
- UpdateControls();
- }
- }
- //---------------------------------------------------------------------------
- void __fastcall TPreferencesDialog::RemoveCommandButtonClick(
- TObject * /*Sender*/)
- {
- TCustomCommandList * List = GetCommandList(CustomCommandsView->ItemIndex);
- int Index = GetCommandIndex(CustomCommandsView->ItemIndex);
- if (List == FExtensionList)
- {
- const TCustomCommandType * CustomComand = List->Commands[Index];
- // If the extension was added in this "preferences session", remove the file
- int PathIndex = FAddedExtensions->IndexOf(CustomComand->FileName);
- if (PathIndex >= 0)
- {
- FAddedExtensions->Delete(PathIndex);
- DeleteFile(ApiPath(CustomComand->FileName));
- }
- }
- List->Delete(Index);
- UpdateCustomCommandsView();
- UpdateControls();
- }
- //---------------------------------------------------------------------------
- void __fastcall TPreferencesDialog::CustomCommandMove(int Source, int Dest)
- {
- TCustomCommandList * List = GetCommandList(CustomCommandsView->ItemIndex);
- int SourceIndex = GetCommandIndex(Source);
- int DestIndex = GetCommandIndex(Dest);
- List->Move(SourceIndex, DestIndex);
- // workaround for bug in VCL
- CustomCommandsView->ItemIndex = -1;
- CustomCommandsView->ItemFocused = CustomCommandsView->Selected;
- CustomCommandsView->ItemIndex = Dest;
- UpdateCustomCommandsView();
- UpdateControls();
- }
- //---------------------------------------------------------------------------
- void __fastcall TPreferencesDialog::UpDownCommandButtonClick(TObject * Sender)
- {
- CustomCommandMove(CustomCommandsView->ItemIndex,
- CustomCommandsView->ItemIndex + (Sender == UpCommandButton ? -1 : 1));
- }
- //---------------------------------------------------------------------------
- TListViewScrollOnDragOver * __fastcall TPreferencesDialog::ScrollOnDragOver(TObject * ListView)
- {
- if (ListView == CopyParamListView)
- {
- return FCopyParamScrollOnDragOver;
- }
- else if (ListView == CustomCommandsView)
- {
- return FCustomCommandsScrollOnDragOver;
- }
- else if (ListView == EditorListView3)
- {
- return FEditorScrollOnDragOver;
- }
- else
- {
- DebugFail();
- return NULL;
- }
- }
- //---------------------------------------------------------------------------
- void __fastcall TPreferencesDialog::ListViewStartDrag(
- TObject * Sender, TDragObject *& /*DragObject*/)
- {
- FListViewDragSource = dynamic_cast<TListView*>(Sender)->ItemIndex;
- FListViewDragDest = -1;
- ScrollOnDragOver(Sender)->StartDrag();
- }
- //---------------------------------------------------------------------------
- static int __fastcall PointToListViewIndex(TObject * Sender, int X, int Y)
- {
- TListItem * Item = dynamic_cast<TListView*>(Sender)->GetItemAt(X, Y);
- return Item ? Item->Index : -1;
- }
- //---------------------------------------------------------------------------
- bool __fastcall TPreferencesDialog::AllowListViewDrag(TObject * Sender, int X, int Y)
- {
- FListViewDragDest = PointToListViewIndex(Sender, X, Y);
- return (FListViewDragDest >= 0) && (FListViewDragDest != FListViewDragSource);
- }
- //---------------------------------------------------------------------------
- void __fastcall TPreferencesDialog::CustomCommandsViewDragDrop(
- TObject * Sender, TObject * Source, int X, int Y)
- {
- if (Source == CustomCommandsView)
- {
- if (AllowListViewDrag(Sender, X, Y) &&
- (GetCommandList(FListViewDragSource) == GetCommandList(FListViewDragDest)))
- {
- CustomCommandMove(FListViewDragSource, FListViewDragDest);
- }
- }
- }
- //---------------------------------------------------------------------------
- void __fastcall TPreferencesDialog::CustomCommandsViewDragOver(
- TObject *Sender, TObject *Source, int X, int Y, TDragState State, bool & Accept)
- {
- ListViewDragOver(Sender, Source, X, Y, State, Accept);
- if (Source == Sender)
- {
- int Dest = PointToListViewIndex(Sender, X, Y);
- if (GetCommandList(FListViewDragSource) != GetCommandList(Dest))
- {
- Accept = false;
- }
- }
- }
- //---------------------------------------------------------------------------
- void __fastcall TPreferencesDialog::ListViewDragOver(
- TObject * Sender, TObject * Source, int X, int Y,
- TDragState /*State*/, bool & Accept)
- {
- if (Source == Sender)
- {
- // cannot use AllowListViewDrag(X, Y) because of bug in VCL
- // (when dropped on item itself, when it was dragged over another item before,
- // that another item remains highlighted forever)
- Accept = true;
- ScrollOnDragOver(Source)->DragOver(TPoint(X, Y));
- }
- }
- //---------------------------------------------------------------------------
- const TCopyParamType * TPreferencesDialog::GetCopyParam(int Index)
- {
- if (Index == 0)
- {
- return &FCopyParams;
- }
- else
- {
- return FCopyParamList->CopyParams[Index - 1];
- }
- }
- //---------------------------------------------------------------------------
- void __fastcall TPreferencesDialog::CopyParamMove(int Source, int Dest)
- {
- if (Source >= 1 && Source < (1 + FCopyParamList->Count) &&
- Dest >= 0 && Dest < (1 + FCopyParamList->Count))
- {
- if (Dest == 0)
- {
- Dest = 1;
- }
- FCopyParamList->Move(Source - 1, Dest - 1);
- // workaround for bug in VCL
- CopyParamListView->ItemIndex = -1;
- CopyParamListView->ItemFocused = CopyParamListView->Selected;
- CopyParamListView->ItemIndex = Dest;
- UpdateCopyParamListView();
- UpdateControls();
- }
- }
- //---------------------------------------------------------------------------
- void __fastcall TPreferencesDialog::CopyParamListViewDragDrop(
- TObject * Sender, TObject * Source, int X, int Y)
- {
- if (Source == CopyParamListView)
- {
- if (AllowListViewDrag(Sender, X, Y))
- {
- CopyParamMove(FListViewDragSource, FListViewDragDest);
- }
- }
- }
- //---------------------------------------------------------------------------
- void __fastcall TPreferencesDialog::UpDownCopyParamButtonClick(TObject * Sender)
- {
- CopyParamMove(CopyParamListView->ItemIndex,
- CopyParamListView->ItemIndex + (Sender == UpCopyParamButton ? -1 : 1));
- }
- //---------------------------------------------------------------------------
- void __fastcall TPreferencesDialog::RemoveCopyParamButtonClick(
- TObject * /*Sender*/)
- {
- DebugAssert(CopyParamListView->ItemIndex >= 1 &&
- CopyParamListView->ItemIndex < (1 + FCopyParamList->Count));
- FCopyParamList->Delete(CopyParamListView->ItemIndex - 1);
- UpdateCopyParamListView();
- UpdateControls();
- }
- //---------------------------------------------------------------------------
- void __fastcall TPreferencesDialog::AddEditCopyParam(TCopyParamPresetMode Mode)
- {
- int Index = CopyParamListView->ItemIndex;
- bool Result;
- if ((Index == 0) && (Mode == cpmEdit))
- {
- Result = DoCopyParamCustomDialog(FCopyParams, 0);
- }
- else
- {
- TCopyParamRuleData * CopyParamRuleData =
- (FDialogData != NULL ? FDialogData->CopyParamRuleData : NULL);
- // negative (when default is selected) means add to the end
- Index--;
- TCopyParamType DefaultCopyParams;
- // For cpmAdd use defaults.
- if (Mode == cpmDuplicate)
- {
- // Only used, when duplicating default settings (Index < 0)
- DefaultCopyParams = FCopyParams;
- }
- else if (Mode == cpmEdit)
- {
- // For cpmEdit, DefaultCopyParams is never used.
- DebugAssert(Index >= 0);
- }
- Result = DoCopyParamPresetDialog(FCopyParamList, Index, Mode, CopyParamRuleData, DefaultCopyParams);
- if (Result)
- {
- UpdateCopyParamListView();
- CopyParamListView->ItemIndex = Index + 1;
- // when using duplicate button, focus remains on original item
- CopyParamListView->ItemFocused = CopyParamListView->Selected;
- }
- }
- if (Result)
- {
- UpdateControls();
- }
- }
- //---------------------------------------------------------------------------
- void __fastcall TPreferencesDialog::AddCopyParamButtonClick(TObject * /*Sender*/)
- {
- AddEditCopyParam(cpmAdd);
- }
- //---------------------------------------------------------------------------
- void __fastcall TPreferencesDialog::EditCopyParamButtonClick(TObject * /*Sender*/)
- {
- AddEditCopyParam(cpmEdit);
- }
- //---------------------------------------------------------------------------
- void __fastcall TPreferencesDialog::DuplicateCopyParamButtonClick(TObject * /*Sender*/)
- {
- AddEditCopyParam(cpmDuplicate);
- }
- //---------------------------------------------------------------------------
- void __fastcall TPreferencesDialog::CopyParamListViewDblClick(
- TObject * /*Sender*/)
- {
- if (EditCopyParamButton->Enabled)
- {
- AddEditCopyParam(cpmEdit);
- }
- }
- //---------------------------------------------------------------------------
- void __fastcall TPreferencesDialog::CopyParamListViewKeyDown(
- TObject * /*Sender*/, WORD & Key, TShiftState /*Shift*/)
- {
- if (RemoveCopyParamButton->Enabled && (Key == VK_DELETE))
- {
- RemoveCopyParamButtonClick(NULL);
- }
- if (AddCopyParamButton->Enabled && (Key == VK_INSERT))
- {
- AddEditCopyParam(cpmAdd);
- }
- }
- //---------------------------------------------------------------------------
- void __fastcall TPreferencesDialog::EditorMove(int Source, int Dest)
- {
- if (Source >= 0 && Source < FEditorList->Count &&
- Dest >= 0 && Dest < FEditorList->Count)
- {
- FEditorList->Move(Source, Dest);
- // workaround for bug in VCL
- EditorListView3->ItemIndex = -1;
- EditorListView3->ItemFocused = EditorListView3->Selected;
- EditorListView3->ItemIndex = Dest;
- UpdateEditorListView();
- UpdateControls();
- }
- }
- //---------------------------------------------------------------------------
- void __fastcall TPreferencesDialog::EditorListView3DragDrop(TObject * Sender,
- TObject * Source, int X, int Y)
- {
- if (Source == EditorListView3)
- {
- if (AllowListViewDrag(Sender, X, Y))
- {
- EditorMove(FListViewDragSource, FListViewDragDest);
- }
- }
- }
- //---------------------------------------------------------------------------
- void __fastcall TPreferencesDialog::UpDownEditorButtonClick(TObject *Sender)
- {
- EditorMove(EditorListView3->ItemIndex,
- EditorListView3->ItemIndex + (Sender == UpEditorButton ? -1 : 1));
- }
- //---------------------------------------------------------------------------
- void __fastcall TPreferencesDialog::RemoveEditorButtonClick(
- TObject * /*Sender*/)
- {
- DebugAssert(EditorListView3->ItemIndex >= 0 &&
- EditorListView3->ItemIndex < FEditorList->Count);
- FEditorList->Delete(EditorListView3->ItemIndex);
- UpdateEditorListView();
- UpdateControls();
- }
- //---------------------------------------------------------------------------
- void __fastcall TPreferencesDialog::AddEditEditorButtonClick(TObject * Sender)
- {
- TEditorPreferencesMode Mode = (Sender == EditEditorButton ? epmEdit : epmAdd);
- int Index = EditorListView3->ItemIndex;
- TEditorPreferences * Editor;
- if (Mode == epmEdit)
- {
- Editor = new TEditorPreferences(*FEditorList->Editors[Index]);
- }
- else
- {
- Editor = new TEditorPreferences();
- }
- try
- {
- bool DummyRemember = false;
- if (DoEditorPreferencesDialog(Editor->GetData(), DummyRemember, Mode, true))
- {
- if (Mode == epmEdit)
- {
- FEditorList->Change(Index, Editor);
- }
- else
- {
- if (Index < 0)
- {
- Index = FEditorList->Count;
- FEditorList->Add(Editor);
- }
- else
- {
- FEditorList->Insert(Index, Editor);
- }
- }
- // ownership of the object lost
- Editor = NULL;
- UpdateEditorListView();
- EditorListView3->ItemIndex = Index;
- UpdateControls();
- }
- }
- __finally
- {
- delete Editor;
- }
- }
- //---------------------------------------------------------------------------
- void __fastcall TPreferencesDialog::EditorListView3DblClick(TObject * /*Sender*/)
- {
- if (EditEditorButton->Enabled)
- {
- AddEditEditorButtonClick(EditEditorButton);
- }
- }
- //---------------------------------------------------------------------------
- void __fastcall TPreferencesDialog::EditorListView3KeyDown(TObject * /*Sender*/,
- WORD & Key, TShiftState /*Shift*/)
- {
- if (RemoveEditorButton->Enabled && (Key == VK_DELETE))
- {
- RemoveEditorButtonClick(NULL);
- }
- if (AddEditorButton->Enabled && (Key == VK_INSERT))
- {
- AddEditEditorButtonClick(AddEditorButton);
- }
- }
- //---------------------------------------------------------------------------
- void __fastcall TPreferencesDialog::UpdateEditorListView()
- {
- EditorListView3->Items->Count = FEditorList->Count;
- AutoSizeListColumnsWidth(EditorListView3);
- EditorListView3->Invalidate();
- }
- //---------------------------------------------------------------------------
- void __fastcall TPreferencesDialog::EditorListView3Data(TObject * /*Sender*/,
- TListItem * Item)
- {
- // WORKAROUND We get here on Wine after destructor is called
- if (FEditorList != NULL)
- {
- int Index = Item->Index;
- DebugAssert(Index >= 0 && Index <= FEditorList->Count);
- const TEditorPreferences * Editor = FEditorList->Editors[Index];
- Item->Caption = Editor->Name;
- Item->SubItems->Add(Editor->Data->FileMask.Masks);
- if (Editor->Data->Editor == edExternal)
- {
- Item->SubItems->Add(BooleanToStr(Editor->Data->ExternalEditorText));
- }
- }
- }
- //---------------------------------------------------------------------------
- void __fastcall TPreferencesDialog::NavigationTreeChange(TObject * /*Sender*/,
- TTreeNode * Node)
- {
- if (DebugAlwaysTrue(Node->SelectedIndex > 0))
- {
- PageControl->ActivePage = DebugNotNull(FindPageForTreeNode(Node));
- // reshow the accelerators, etc
- ResetSystemSettings(this);
- // This is particularly here to enable EditCopyParamButton,
- // as for some reason CopyParamListView->Selected is NULL until
- // its page is shown for the first time
- UpdateControls();
- }
- }
- //---------------------------------------------------------------------------
- void __fastcall TPreferencesDialog::PageControlChange(TObject * /*Sender*/)
- {
- // this is probably only ever called from FormShow (explicitly)
- bool Found = false;
- if (DebugAlwaysTrue(PageControl->ActivePage->Tag > 0))
- {
- for (int Index = 0; Index < NavigationTree->Items->Count; Index++)
- {
- if (NavigationTree->Items->Item[Index]->SelectedIndex ==
- PageControl->ActivePage->Tag)
- {
- NavigationTree->Items->Item[Index]->Selected = true;
- Found = true;
- }
- }
- }
- if (DebugAlwaysTrue(Found))
- {
- UpdateControls();
- }
- }
- //---------------------------------------------------------------------------
- void __fastcall TPreferencesDialog::CMDialogKey(TWMKeyDown & Message)
- {
- if (Message.CharCode == VK_TAB)
- {
- TShiftState Shift = KeyDataToShiftState(Message.KeyData);
- if (Shift.Contains(ssCtrl))
- {
- TTreeNode * Node = NavigationTree->Selected;
- if (!Shift.Contains(ssShift))
- {
- Node = Node->GetNext();
- if (!Node) Node = NavigationTree->Items->GetFirstNode();
- }
- else
- {
- if (Node->GetPrev()) Node = Node->GetPrev();
- else
- while (Node->GetNext()) Node = Node->GetNext();
- }
- Node->Selected = True;
- Message.Result = 1;
- return;
- }
- }
- TForm::Dispatch(&Message);
- }
- //---------------------------------------------------------------------------
- void __fastcall TPreferencesDialog::WMHelp(TWMHelp & Message)
- {
- DebugAssert(Message.HelpInfo != NULL);
- if (Message.HelpInfo->iContextType == HELPINFO_WINDOW)
- {
- // invoke help for active page (not for whole form), regardless of focus
- // (e.g. even if focus is on control outside pagecontrol)
- Message.HelpInfo->hItemHandle = PageControl->ActivePage->Handle;
- }
- TForm::Dispatch(&Message);
- }
- //---------------------------------------------------------------------------
- void __fastcall TPreferencesDialog::CMDpiChanged(TMessage & Message)
- {
- // To update font sizes - Note that they get scaled automatically, but as we use our own algorithm,
- // we may end up using a slightly different size, so apply it straight away for consistency
- UpdateControls();
- TForm::Dispatch(&Message);
- }
- //---------------------------------------------------------------------------
- void __fastcall TPreferencesDialog::Dispatch(void *Message)
- {
- TMessage * M = reinterpret_cast<TMessage*>(Message);
- DebugAssert(M);
- if (M->Msg == CM_DIALOGKEY)
- {
- CMDialogKey(*((TWMKeyDown *)Message));
- }
- else if (M->Msg == CM_DPICHANGED)
- {
- CMDpiChanged(*M);
- }
- else if (M->Msg == WM_HELP)
- {
- WMHelp(*((TWMHelp *)Message));
- }
- else
- {
- TForm::Dispatch(Message);
- }
- }
- //---------------------------------------------------------------------------
- void __fastcall TPreferencesDialog::RegisterAsUrlHandlersButtonClick(
- TObject * /*Sender*/)
- {
- MenuPopup(RegisterAsUrlHandlerMenu, RegisterAsUrlHandlersButton);
- }
- //---------------------------------------------------------------------------
- void __fastcall TPreferencesDialog::RegisterAsUrlHandlerItemClick(TObject * /*Sender*/)
- {
- unsigned int Result =
- MessageDialog(MainInstructions(LoadStr(CONFIRM_REGISTER_URL2)),
- qtConfirmation, qaYes | qaNo, HELP_REGISTER_URL);
- if (Result == qaYes)
- {
- TInstantOperationVisualizer Visualizer;
- RegisterForDefaultProtocols();
- }
- }
- //---------------------------------------------------------------------------
- void __fastcall TPreferencesDialog::UnregisterForDefaultProtocolsItemClick(TObject * /*Sender*/)
- {
- unsigned int Result =
- MessageDialog(MainInstructions(LoadStr(CONFIRM_UNREGISTER_URL)),
- qtConfirmation, qaYes | qaNo, HELP_REGISTER_URL);
- if (Result == qaYes)
- {
- TInstantOperationVisualizer Visualizer;
- UnregisterForProtocols();
- }
- }
- //---------------------------------------------------------------------------
- void __fastcall TPreferencesDialog::MakeDefaultHandlerItemClick(TObject * /*Sender*/)
- {
- TOperationVisualizer Visualizer;
- LaunchAdvancedAssociationUI();
- }
- //---------------------------------------------------------------------------
- void __fastcall TPreferencesDialog::DDLabelClick(TObject * Sender)
- {
- ((Sender != DDFakeFileDisabledLabel) ? DDFakeFileEnabledButton : DDFakeFileDisabledButton)->SetFocus();
- }
- //---------------------------------------------------------------------------
- void __fastcall TPreferencesDialog::AddSearchPathButtonClick(
- TObject * /*Sender*/)
- {
- UnicodeString AppPath = ExtractFilePath(Application->ExeName);
- if (MessageDialog(MainInstructions(FMTLOAD(CONFIRM_ADD_SEARCH_PATH, (AppPath))),
- qtConfirmation, qaYes | qaNo, HELP_ADD_SEARCH_PATH) == qaYes)
- {
- TInstantOperationVisualizer Visualizer;
- AddSearchPath(AppPath);
- }
- }
- //---------------------------------------------------------------------------
- void __fastcall TPreferencesDialog::EditorFontLabelDblClick(
- TObject * Sender)
- {
- EditorFontButtonClick(Sender);
- }
- //---------------------------------------------------------------------------
- void __fastcall TPreferencesDialog::UpdateCopyParamListView()
- {
- CopyParamListView->Items->Count = 1 + FCopyParamList->Count;
- AutoSizeListColumnsWidth(CopyParamListView);
- CopyParamListView->Invalidate();
- }
- //---------------------------------------------------------------------------
- void __fastcall TPreferencesDialog::CopyParamListViewData(TObject * /*Sender*/,
- TListItem * Item)
- {
- // WORKAROUND We get here on Wine after destructor is called
- if (FCopyParamList != NULL)
- {
- UnicodeString Name;
- UnicodeString Rule;
- int Index = Item->Index;
- if (Index == 0)
- {
- Name = StripHotkey(LoadStr(COPY_PARAM_DEFAULT));
- }
- else
- {
- DebugAssert(Index >= 1 && Index <= 1 + FCopyParamList->Count);
- Name = StripHotkey(FCopyParamList->Names[Index - 1]);
- Rule = BooleanToStr(FCopyParamList->Rules[Index - 1] != NULL);
- }
- Item->Caption = Name;
- Item->SubItems->Add(Rule);
- }
- }
- //---------------------------------------------------------------------------
- void __fastcall TPreferencesDialog::HelpButtonClick(TObject * /*Sender*/)
- {
- FormHelp(this);
- }
- //---------------------------------------------------------------------------
- void __fastcall TPreferencesDialog::PuttyPathBrowseButtonClick(
- TObject * /*Sender*/)
- {
- UnicodeString Executables = FORMAT("%s;%s", (OriginalPuttyExecutable, KittyExecutable));
- BrowseForExecutable(PuttyPathEdit, LoadStr(PREFERENCES_SELECT_PUTTY2),
- FMTLOAD(PREFERENCES_PUTTY_FILTER2, (Executables)), false, false);
- }
- //---------------------------------------------------------------------------
- void __fastcall TPreferencesDialog::PathEditBeforeDialog(
- TObject * /*Sender*/, UnicodeString & Name, bool & /*Action*/)
- {
- FBeforeDialogPath = Name;
- Name = ExpandEnvironmentVariables(Name);
- }
- //---------------------------------------------------------------------------
- void __fastcall TPreferencesDialog::PathEditAfterDialog(
- TObject * /*Sender*/, UnicodeString & Name, bool & /*Action*/)
- {
- if (IsPathToSameFile(Name, ExpandEnvironmentVariables(FBeforeDialogPath)))
- {
- Name = FBeforeDialogPath;
- }
- }
- //---------------------------------------------------------------------------
- void __fastcall TPreferencesDialog::NavigationTreeCollapsing(
- TObject * /*Sender*/, TTreeNode * /*Node*/, bool & AllowCollapse)
- {
- AllowCollapse = false;
- }
- //---------------------------------------------------------------------------
- void __fastcall TPreferencesDialog::ListViewEndDrag(
- TObject * Sender, TObject * /*Target*/, int /*X*/, int /*Y*/)
- {
- ScrollOnDragOver(Sender)->EndDrag();
- }
- //---------------------------------------------------------------------------
- void __fastcall TPreferencesDialog::SessionReopenTimeoutEditSetValue(
- TObject * /*Sender*/, Extended Value, UnicodeString & Text, bool & Handled)
- {
- if (Value == 0)
- {
- Text = LoadStr(PREFERENCES_RECONNECT_TIMEOUT_UNLIMITED);
- Handled = true;
- }
- }
- //---------------------------------------------------------------------------
- void __fastcall TPreferencesDialog::SessionReopenTimeoutEditGetValue(
- TObject * /*Sender*/, UnicodeString Text, Extended & Value, bool & Handled)
- {
- if (AnsiSameText(Text, LoadStr(PREFERENCES_RECONNECT_TIMEOUT_UNLIMITED)))
- {
- Value = 0;
- Handled = true;
- }
- }
- //---------------------------------------------------------------------------
- bool __fastcall TPreferencesDialog::CanSetMasterPassword()
- {
- bool Result;
- bool Retry;
- do
- {
- Retry = false;
- Result = !AnyOtherInstanceOfSelf();
- if (!Result)
- {
- unsigned int Answer =
- MessageDialog(
- LoadStr(MASTER_PASSWORD_OTHER_INSTANCE),
- qtConfirmation, qaRetry | qaIgnore | qaCancel,
- HELP_MASTER_PASSWORD);
- switch (Answer)
- {
- case qaRetry:
- Retry = true;
- break;
- case qaIgnore:
- Result = true;
- break;
- case qaCancel:
- default:
- // noop
- break;
- }
- }
- }
- while (Retry && !Result);
- return Result;
- }
- //---------------------------------------------------------------------------
- void __fastcall TPreferencesDialog::MasterPasswordChanged(
- UnicodeString Message, TStrings * RecryptPasswordErrors)
- {
- // Save master password.
- // This is unlikely to fail, as storage is written explicitly already
- // when writing the recrypted passwords
- Configuration->SaveExplicit();
- TQueryType QueryType = qtInformation;
- if (RecryptPasswordErrors->Count > 0)
- {
- Message = FMTLOAD(MASTER_PASSWORD_RECRYPT_ERRORS, (Message));
- QueryType = qtWarning;
- }
- MoreMessageDialog(
- Message, RecryptPasswordErrors, QueryType, qaOK, HELP_MASTER_PASSWORD);
- }
- //---------------------------------------------------------------------------
- void __fastcall TPreferencesDialog::ChangeMasterPassword(UnicodeString Message)
- {
- UnicodeString NewPassword;
- if (DoChangeMasterPasswordDialog(NewPassword))
- {
- std::unique_ptr<TStrings> RecryptPasswordErrors(new TStringList());
- WinConfiguration->ChangeMasterPassword(NewPassword, RecryptPasswordErrors.get());
- MasterPasswordChanged(Message, RecryptPasswordErrors.get());
- }
- }
- //---------------------------------------------------------------------------
- void __fastcall TPreferencesDialog::UseMasterPasswordCheckClick(
- TObject * /*Sender*/)
- {
- if (UseMasterPasswordCheck->Checked != WinConfiguration->UseMasterPassword)
- {
- try
- {
- if (CanSetMasterPassword())
- {
- if (UseMasterPasswordCheck->Checked)
- {
- ChangeMasterPassword(LoadStr(MASTER_PASSWORD_SET2));
- }
- else
- {
- if (DoMasterPasswordDialog())
- {
- std::unique_ptr<TStrings> RecryptPasswordErrors(new TStringList());
- WinConfiguration->ClearMasterPassword(RecryptPasswordErrors.get());
- MasterPasswordChanged(LoadStr(MASTER_PASSWORD_CLEARED2), RecryptPasswordErrors.get());
- }
- }
- }
- }
- __finally
- {
- UseMasterPasswordCheck->Checked = WinConfiguration->UseMasterPassword;
- UpdateControls();
- }
- }
- }
- //---------------------------------------------------------------------------
- void __fastcall TPreferencesDialog::SetMasterPasswordButtonClick(
- TObject * /*Sender*/)
- {
- if (CanSetMasterPassword())
- {
- ChangeMasterPassword(MainInstructions(LoadStr(MASTER_PASSWORD_CHANGED)));
- }
- }
- //---------------------------------------------------------------------------
- void __fastcall TPreferencesDialog::UsageViewButtonClick(TObject * /*Sender*/)
- {
- DoUsageStatisticsDialog();
- }
- //---------------------------------------------------------------------------
- void __fastcall TPreferencesDialog::CopyParamLabelClick(TObject * /*Sender*/)
- {
- if (EditCopyParamButton->Enabled)
- {
- AddEditCopyParam(cpmEdit);
- }
- }
- //---------------------------------------------------------------------------
- void __fastcall TPreferencesDialog::CopyParamListViewCustomDrawItem(
- TCustomListView * Sender, TListItem * Item,
- TCustomDrawState /*State*/, bool & /*DefaultDraw*/)
- {
- if (Item->Index == 0)
- {
- Sender->Canvas->Font->Style = Sender->Canvas->Font->Style << fsBold;
- }
- }
- //---------------------------------------------------------------------------
- void __fastcall TPreferencesDialog::SelectPuttyRegistryStorageKey(const UnicodeString & Key)
- {
- PuttyRegistryStorageKeyEdit->ItemIndex =
- PuttyRegistryStorageKeyEdit->Items->IndexOf(Key);
- }
- //---------------------------------------------------------------------------
- void __fastcall TPreferencesDialog::PuttyPathEditChange(TObject * /*Sender*/)
- {
- UnicodeString PuttyPath = PuttyPathEdit->Text;
- if (ContainsText(PuttyPath, OriginalPuttyExecutable))
- {
- SelectPuttyRegistryStorageKey(OriginalPuttyRegistryStorageKey);
- }
- else if (ContainsText(PuttyPath, KittyExecutable))
- {
- SelectPuttyRegistryStorageKey(KittyRegistryStorageKey);
- }
- UpdateControls();
- }
- //---------------------------------------------------------------------------
- void __fastcall TPreferencesDialog::NavigationTreeChanging(TObject * /*Sender*/,
- TTreeNode * Node, bool & /*AllowChange*/)
- {
- TTabSheet * Sheet = FindPageForTreeNode(Node);
- // delay load as this can be time consuming
- if (Sheet == LanguagesSheet)
- {
- LoadLanguages();
- }
- }
- //---------------------------------------------------------------------------
- void __fastcall TPreferencesDialog::LanguagesGetMoreButtonClick(TObject * /*Sender*/)
- {
- OpenBrowser(ProgramUrl(LoadStr(LOCALES_URL)));
- }
- //---------------------------------------------------------------------------
- void __fastcall TPreferencesDialog::CommanderClick(TObject * /*Sender*/)
- {
- CommanderInterfaceButton2->SetFocus();
- }
- //---------------------------------------------------------------------------
- void __fastcall TPreferencesDialog::ExplorerClick(TObject * /*Sender*/)
- {
- ExplorerInterfaceButton2->SetFocus();
- }
- //---------------------------------------------------------------------------
- void __fastcall TPreferencesDialog::PanelFontLabelDblClick(TObject * Sender)
- {
- PanelFontButtonClick(Sender);
- }
- //---------------------------------------------------------------------------
- void __fastcall TPreferencesDialog::UpdatesAuthenticationEmailEditExit(TObject * /*Sender*/)
- {
- if (FVerifiedUpdatesAuthenticationEmail != UpdatesAuthenticationEmailEdit->Text)
- {
- if (!UpdatesAuthenticationEmailEdit->Text.IsEmpty())
- {
- TUpdatesConfiguration Updates = SaveUpdates();
- {
- TInstantOperationVisualizer Visualizer;
- QueryUpdates(Updates);
- }
- UnicodeString AuthenticationError = Updates.Results.AuthenticationError;
- if (!AuthenticationError.IsEmpty())
- {
- AuthenticationError = FormatUpdatesMessage(AuthenticationError);
- if (HasParagraphs(AuthenticationError))
- {
- AuthenticationError = MainInstructionsFirstParagraph(AuthenticationError);
- }
- else
- {
- AuthenticationError = MainInstructions(AuthenticationError);
- }
- UnicodeString HelpUrl = GetEnableAutomaticUpdatesUrl();
- unsigned int Result =
- MoreMessageDialog(AuthenticationError, NULL, qtError, qaIgnore | qaAbort, HelpUrl);
- if (Result == qaAbort)
- {
- Abort();
- }
- }
- }
- FVerifiedUpdatesAuthenticationEmail = UpdatesAuthenticationEmailEdit->Text;
- }
- }
- //---------------------------------------------------------------------------
- void __fastcall TPreferencesDialog::UpdatesLinkClick(TObject * /*Sender*/)
- {
- EnableAutomaticUpdates();
- }
- //---------------------------------------------------------------------------
- void __fastcall TPreferencesDialog::CustomCommandsViewWindowProc(TMessage & Message)
- {
- FOrigCustomCommandsViewWindowProc(Message);
- if (Message.Msg == CN_NOTIFY)
- {
- TWMNotify & NotifyMessage = reinterpret_cast<TWMNotify &>(Message);
- if (NotifyMessage.NMHdr->code == NM_CUSTOMDRAW)
- {
- // request CDDS_ITEMPOSTPAINT notification
- Message.Result |= CDRF_NOTIFYPOSTPAINT | CDRF_NOTIFYSUBITEMDRAW;
- TNMLVCustomDraw * CustomDraw = reinterpret_cast<TNMLVCustomDraw *>(NotifyMessage.NMHdr);
- int Index = CustomDraw->nmcd.dwItemSpec;
- int CommandIndex = GetCommandIndex(Index);
- TCustomCommandList * List = GetCommandList(Index);
- // after end of every list, except for the last last list
- if ((CommandIndex == List->Count - 1) && (Index < CustomCommandsView->Items->Count - 1) &&
- FLAGSET(CustomDraw->nmcd.dwDrawStage, CDDS_ITEMPOSTPAINT))
- {
- TRect Rect;
- Rect.Top = CustomDraw->iSubItem;
- Rect.Left = LVIR_BOUNDS;
- CustomCommandsView->Perform(LVM_GETSUBITEMRECT, CustomDraw->nmcd.dwItemSpec, reinterpret_cast<LPARAM>(&Rect));
- HDC DC = CustomDraw->nmcd.hdc;
- SelectObject(DC, GetStockObject(DC_PEN));
- SetDCPenColor(DC, ColorToRGB(clWindowFrame));
- MoveToEx(DC, Rect.Left, Rect.Bottom - 1, NULL);
- LineTo(DC, Rect.Right, Rect.Bottom - 1);
- }
- }
- }
- }
- //---------------------------------------------------------------------------
- void __fastcall TPreferencesDialog::ExtensionHttpError(THttp * /*Sender*/, int Status, const UnicodeString & Message)
- {
- if ((Status / 10) == 49)
- {
- // HTTP 49x indicate user-friendly error message from winscp.net, throw it without HTTP status code
- throw Exception(Message);
- }
- }
- //---------------------------------------------------------------------------
- void __fastcall TPreferencesDialog::AddExtension()
- {
- const UnicodeString HistoryKey(L"ExtensionPath");
- std::unique_ptr<TStrings> History(CloneStrings(CustomWinConfiguration->History[HistoryKey]));
- UnicodeString Path;
- if (InputDialog(LoadStr(ADD_EXTENSION_CAPTION), LoadStr(ADD_EXTENSION_PROMPT), Path,
- HELP_NONE, History.get(), true) &&
- !Path.IsEmpty())
- {
- CustomWinConfiguration->History[HistoryKey] = History.get();
- bool Trusted;
- bool Latest;
- UnicodeString FileName;
- UnicodeString ExtensionPath;
- std::unique_ptr<TStringList> Lines(new TStringList());
- std::unique_ptr<TCustomCommandType> CustomCommand;
- bool IsUrl = IsHttpOrHttpsUrl(Path);
- try
- {
- UnicodeString ProvisionaryId;
- if (IsUrl)
- {
- UnicodeString Url = Path;
- Url = SecureUrl(Url);
- bool WinSCPURL = IsWinSCPUrl(Url);
- if (WinSCPURL)
- {
- Url = ProgramUrl(Url);
- // The EncodeUrlString should not be necessary, but as we get the value from registry, let's be safe
- Url = AppendUrlParams(Url, FORMAT(L"netframework=%s", (EncodeUrlString(GetNetVersionStr()))));
- Url = AppendUrlParams(Url, FORMAT(L"powershell=%s", (EncodeUrlString(GetPowerShellVersionStr()))));
- Url = AppendUrlParams(Url, FORMAT(L"windows=%s", (EncodeUrlString(WindowsVersion()))));
- Url = CampaignUrl(Url);
- }
- TOperationVisualizer Visualizer;
- std::unique_ptr<THttp> Http(CreateHttp());
- Http->URL = Url;
- std::unique_ptr<TStrings> Headers(new TStringList());
- Headers->Values[L"Accept"] = L"text/winscpextension,text/plain";
- Http->RequestHeaders = Headers.get();
- Http->OnError = ExtensionHttpError;
- Http->Get();
- UnicodeString TrustedStr = Http->ResponseHeaders->Values[L"WinSCP-Extension-Trusted"];
- Trusted = WinSCPURL && (StrToIntDef(TrustedStr, 0) != 0);
- FileName = MakeValidFileName(Http->ResponseHeaders->Values[L"WinSCP-Extension-Id"]);
- if (FileName.IsEmpty())
- {
- FileName = MakeValidFileName(ExtractFileNameFromUrl(Path));
- }
- ProvisionaryId = WinConfiguration->GetProvisionaryExtensionId(FileName);
- Lines->Text = Http->Response;
- Latest = Http->ResponseHeaders->Values[L"WinSCP-Extension-Skipped"].Trim().IsEmpty();
- }
- else
- {
- if (!FileExists(ApiPath(Path)))
- {
- throw Exception(MainInstructions(FMTLOAD(FILE_NOT_EXISTS, (Path))));
- }
- Trusted = true;
- Latest = true;
- UnicodeString Id = WinConfiguration->GetExtensionId(Path);
- FileName = ExtractFileName(Path);
- if (!Id.IsEmpty())
- {
- ExtensionPath = Path;
- ProvisionaryId = Id;
- }
- else
- {
- ProvisionaryId = WinConfiguration->GetProvisionaryExtensionId(FileName);
- }
- LoadScriptFromFile(Path, Lines.get());
- }
- // validate syntax
- CustomCommand.reset(new TCustomCommandType());
- // Provisionary Id, just for the ExtensionStringTranslation, so that the test for EXTENSION_DUPLICATE below works
- CustomCommand->Id = ProvisionaryId;
- CustomCommand->LoadExtension(Lines.get(), FileName);
- }
- catch (Exception & E)
- {
- throw ExtException(&E, MainInstructions(FMTLOAD(EXTENSION_LOAD_ERROR, (Path))));
- }
- if (!ExtensionPath.IsEmpty())
- {
- int Index = FExtensionList->FindIndexByFileName(Path);
- if (Index >= 0)
- {
- CustomCommandsView->ItemIndex = GetCommandListIndex(FExtensionList, Index);
- CustomCommandsView->ItemFocused->MakeVisible(false);
- CustomCommandsView->SetFocus();
- throw Exception(MainInstructions(LoadStr(EXTENSION_INSTALLED_ALREADY)));
- }
- }
- if (FExtensionList->Find(CustomCommand->Name) != NULL)
- {
- throw Exception(MainInstructions(FMTLOAD(EXTENSION_DUPLICATE, (StripHotkey(CustomCommand->Name)))));
- }
- if (ExtensionPath.IsEmpty())
- {
- if (TCustomCommandType::GetExtensionId(FileName).IsEmpty())
- {
- UnicodeString FileNameOnly = ExtractFileNameOnly(FileName);
- if (FileNameOnly.IsEmpty())
- {
- FileName = MakeValidFileName(StripHotkey(CustomCommand->Name)) + WinSCPExtensionExt;
- }
- else
- {
- FileName = ExtractFileNameOnly(FileName) + WinSCPExtensionExt + ExtractFileExt(FileName);
- }
- }
- }
- if (Trusted ||
- (MessageDialog(MainInstructions(LoadStr(EXTENSION_UNTRUSTED)), qtWarning, qaOK | qaCancel) == qaOK))
- {
- if (ExtensionPath.IsEmpty())
- {
- UnicodeString UserExtensionsPath = WinConfiguration->GetUserExtensionsPath();
- if (!DirectoryExists(UserExtensionsPath) &&
- !ForceDirectories(UserExtensionsPath))
- {
- throw EOSExtException(MainInstructions(FMTLOAD(CREATE_LOCAL_DIR_ERROR, (UserExtensionsPath))));
- }
- ExtensionPath = IncludeTrailingBackslash(UserExtensionsPath) + FileName;
- int Counter = 1;
- UnicodeString OriginalExtensionPath = ExtensionPath;
- int P = Pos(UpperCase(WinSCPExtensionExt), UpperCase(OriginalExtensionPath));
- while (FileExists(ApiPath(ExtensionPath)))
- {
- Counter++;
- ExtensionPath = WinConfiguration->UniqueExtensionName(LeftStr(OriginalExtensionPath, P - 1), Counter) + RightStr(OriginalExtensionPath, OriginalExtensionPath.Length() - P + 1);
- }
- Lines->SaveToFile(ApiPath(ExtensionPath));
- FAddedExtensions->Add(ExtensionPath);
- }
- int Index = GetListCommandIndex(FExtensionList);
- std::unique_ptr<TCustomCommandType> CustomCommand(new TCustomCommandType());
- CustomCommand->Id = WinConfiguration->GetExtensionId(ExtensionPath);
- CustomCommand->LoadExtension(ExtensionPath);
- Index = AddCommandToList(FExtensionList, Index, CustomCommand.release());
- UpdateCustomCommandsView();
- CustomCommandsView->ItemIndex = GetCommandListIndex(FExtensionList, Index);
- CustomCommandsView->ItemFocused->MakeVisible(false);
- UpdateControls();
- if (!Latest)
- {
- MessageDialog(LoadStr(EXTENSION_NOT_LATEST), qtInformation, qaOK);
- }
- if (IsUrl)
- {
- Configuration->Usage->Inc(L"ExtensionAddsFromUrl");
- }
- else
- {
- Configuration->Usage->Inc(L"ExtensionAddsFromFile");
- }
- }
- }
- }
- //---------------------------------------------------------------------------
- void __fastcall TPreferencesDialog::AddCommandButtonClick(TObject * /*Sender*/)
- {
- if (GetCommandList(CustomCommandsView->ItemIndex) == FCustomCommandList)
- {
- AddEditCommand(false);
- }
- else
- {
- AddExtension();
- }
- }
- //---------------------------------------------------------------------------
- void __fastcall TPreferencesDialog::AddCustomCommandMenuItemClick(TObject * /*Sender*/)
- {
- AddEditCommand(false);
- }
- //---------------------------------------------------------------------------
- void __fastcall TPreferencesDialog::AddExtensionMenuItemClick(TObject * /*Sender*/)
- {
- AddExtension();
- }
- //---------------------------------------------------------------------------
- void __fastcall TPreferencesDialog::EditCommandButtonClick(TObject * /*Sender*/)
- {
- AddEditCommand(true);
- }
- //---------------------------------------------------------------------------
- void __fastcall TPreferencesDialog::AddCommandButtonDropDownClick(TObject * /*Sender*/)
- {
- AddCustomCommandMenuItem->Default = (GetCommandList(CustomCommandsView->ItemIndex) == FCustomCommandList);
- AddExtensionMenuItem->Default = (GetCommandList(CustomCommandsView->ItemIndex) == FExtensionList);
- MenuPopup(AddCommandMenu, AddCommandButton);
- }
- //---------------------------------------------------------------------------
- UnicodeString __fastcall TPreferencesDialog::GetSessionKey()
- {
- TTerminal * Terminal = TTerminalManager::Instance()->ActiveTerminal;
- UnicodeString Result;
- if (Terminal != NULL)
- {
- Result = Terminal->SessionData->SessionKey;
- }
- return Result;
- }
- //---------------------------------------------------------------------------
- void __fastcall TPreferencesDialog::CustomCommandsViewMouseMove(TObject * /*Sender*/, TShiftState /*Shift*/, int X, int Y)
- {
- TListItem * Item = CustomCommandsView->GetItemAt(X, Y);
- int Index = (Item != NULL) ? Item->Index : -1;
- if (Index != FCustomCommandsHintItem)
- {
- Application->CancelHint();
- UnicodeString Hint;
- if (Index >= 0)
- {
- TCustomCommandList * List = GetCommandList(Index);
- const TCustomCommandType * Command = List->Commands[GetCommandIndex(Index)];
- Hint = StripHotkey(Command->Name);
- if (Command->ShortCut != 0)
- {
- Hint = FORMAT(L"%s (%s)", (Hint, ShortCutToText(Command->ShortCut)));
- }
- if (!Command->Description.IsEmpty())
- {
- Hint += L"\n" + Command->Description;
- }
- Hint += L"\n" + Command->GetCommandWithExpandedOptions(FCustomCommandOptions.get(), GetSessionKey());
- if (List == FExtensionList)
- {
- Hint += L"\n" + Command->FileName;
- }
- }
- CustomCommandsView->Hint = Hint;
- FCustomCommandsHintItem = Index;
- }
- }
- //---------------------------------------------------------------------------
- void __fastcall TPreferencesDialog::BackgroundConfirmationsLinkClick(TObject * /*Sender*/)
- {
- PageControl->ActivePage = QueueSheet;
- PageControlChange(NULL);
- QueueNoConfirmationCheck->SetFocus();
- QueueNoConfirmationCheck->Perform(WM_CHANGEUISTATE, MAKEWPARAM(UIS_CLEAR, UISF_HIDEFOCUS), 0);
- }
- //---------------------------------------------------------------------------
- void __fastcall TPreferencesDialog::ConfigureCommandButtonClick(TObject * /*Sender*/)
- {
- ConfigureCommand();
- }
- //---------------------------------------------------------------------------
- void __fastcall TPreferencesDialog::ConfigureCommand()
- {
- int Index = CustomCommandsView->ItemIndex;
- TCustomCommandList * CommandList = GetCommandList(Index);
- int CommandIndex = GetCommandIndex(Index);
- const TCustomCommandType * Command = CommandList->Commands[CommandIndex];
- UnicodeString Site = GetSessionKey();
- if (Command->AnyOptionWithFlag(TCustomCommandType::ofSite) &&
- Site.IsEmpty())
- {
- throw Exception(LoadStr(NO_SITE_FOR_COMMAND));
- }
- TShortCut ShortCut = Command->ShortCut;
- TShortCuts ShortCuts = GetShortCuts();
- if (DoCustomCommandOptionsDialog(
- Command, FCustomCommandOptions.get(), &ShortCut, TCustomCommandType::ofConfig, NULL, GetSessionKey(), &ShortCuts))
- {
- TCustomCommandType * UpdatedCommand = new TCustomCommandType(*Command);
- UpdatedCommand->ShortCut = ShortCut;
- CommandList->Change(CommandIndex, UpdatedCommand);
- UpdateCustomCommandsView();
- }
- }
- //---------------------------------------------------------------------------
- void __fastcall TPreferencesDialog::LanguagesViewCustomDrawItem(
- TCustomListView * Sender, TListItem * Item, TCustomDrawState /*State*/, bool & /*DefaultDraw*/)
- {
- TLocaleInfo * LocaleInfo = static_cast<TLocaleInfo *>(Item->Data);
- if (LocaleInfo->Locale == WinConfiguration->DefaultLocale)
- {
- Sender->Canvas->Font->Style = Sender->Canvas->Font->Style << fsBold;
- }
- if (LocaleInfo->Completeness < 0)
- {
- Sender->Canvas->Font->Color = clRed;
- }
- else if (LocaleInfo->Completeness < 100)
- {
- Sender->Canvas->Font->Color = clGrayText;
- }
- }
- //---------------------------------------------------------------------------
- void __fastcall TPreferencesDialog::LogMaxSizeComboExit(TObject * /*Sender*/)
- {
- __int64 Size;
- if (!TryStrToSize(LogMaxSizeCombo->Text, Size))
- {
- LogMaxSizeCombo->SetFocus();
- throw Exception(FMTLOAD(SIZE_INVALID, (LogMaxSizeCombo->Text)));
- }
- else
- {
- LogMaxSizeCombo->Text = SizeToStr(Size);
- }
- }
- //---------------------------------------------------------------------------
- void __fastcall TPreferencesDialog::PuttyPathEditExit(TObject * /*Sender*/)
- {
- try
- {
- UnicodeString Program, AParams, Dir;
- SplitCommand(PuttyPathEdit->Text, Program, AParams, Dir);
- }
- catch(...)
- {
- PuttyPathEdit->SelectAll();
- PuttyPathEdit->SetFocus();
- throw;
- }
- }
- //---------------------------------------------------------------------------
- void __fastcall TPreferencesDialog::AutomaticIniFileStorageLabelGetStatus(TCustomPathLabel * /*Sender*/, bool & Active)
- {
- Active = AutomaticIniFileStorageButton->Checked;
- }
- //---------------------------------------------------------------------------
- UnicodeString __fastcall TPreferencesDialog::GetCustomIniFileStorageName()
- {
- UnicodeString Result;
- if (CustomIniFileStorageButton->Checked)
- {
- Result = CustomIniFileStorageEdit->Text;
- }
- return Result;
- }
- //---------------------------------------------------------------------------
- void __fastcall TPreferencesDialog::CustomIniFileStorageChanged()
- {
- UnicodeString CustomIniFileStorageName = GetCustomIniFileStorageName();
- if (!CustomIniFileStorageName.IsEmpty() &&
- !IsPathToSameFile(CustomIniFileStorageName, FCustomIniFileStorageName) &&
- FileExists(CustomIniFileStorageName))
- {
- UnicodeString Message = FORMAT(LoadStrPart(CUSTOM_INI_FILE_OVERWRITE, 1), (CustomIniFileStorageName));
- TMessageParams Params;
- TQueryButtonAlias Aliases[2];
- Aliases[0].Button = qaYes;
- Aliases[0].Alias = LoadStrPart(CUSTOM_INI_FILE_OVERWRITE, 2);
- Aliases[1].Button = qaNo;
- Aliases[1].Alias = LoadStrPart(CUSTOM_INI_FILE_OVERWRITE, 3);
- Params.Aliases = Aliases;
- Params.AliasesCount = 2;
- unsigned int Result = MessageDialog(Message, qtConfirmation, qaYes | qaNo | qaCancel, HELP_MOVE_CONFIGURATION, &Params);
- if (Result == qaYes)
- {
- // noop
- }
- else if (Result == qaNo)
- {
- Configuration->ScheduleCustomIniFileStorageUse(GetCustomIniFileStorageName());
- ExecuteNewInstance(L"");
- TerminateApplication();
- }
- else
- {
- Abort();
- }
- }
- FCustomIniFileStorageName = CustomIniFileStorageName;
- }
- //---------------------------------------------------------------------------
- void __fastcall TPreferencesDialog::CustomIniFileStorageEditExit(TObject * /*Sender*/)
- {
- CustomIniFileStorageChanged();
- }
- //---------------------------------------------------------------------------
- void __fastcall TPreferencesDialog::CustomIniFileStorageEditAfterDialog(TObject * Sender, UnicodeString & Name, bool & Action)
- {
- PathEditAfterDialog(Sender, Name, Action);
- if (Action)
- {
- CustomIniFileStorageEdit->Text = Name;
- CustomIniFileStorageChanged();
- }
- }
- //---------------------------------------------------------------------------
- void __fastcall TPreferencesDialog::CustomIniFileStorageButtonClick(TObject * /*Sender*/)
- {
- UpdateControls();
- // Handler is shown also when Checked is set from LoadConfiguration
- if (FNoUpdate == 0)
- {
- // Focus to force validation
- CustomIniFileStorageEdit->SetFocus();
- }
- }
- //---------------------------------------------------------------------------
|