WinConfiguration.cpp 137 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029
  1. //---------------------------------------------------------------------------
  2. #include <vcl.h>
  3. #pragma hdrstop
  4. #include "Common.h"
  5. #include "WinConfiguration.h"
  6. #include "Exceptions.h"
  7. #include "Bookmarks.h"
  8. #include "Terminal.h"
  9. #include "TextsWin.h"
  10. #include "WinInterface.h"
  11. #include "GUITools.h"
  12. #include "Tools.h"
  13. #include "Setup.h"
  14. #include "Security.h"
  15. #include "TerminalManager.h"
  16. #include "Cryptography.h"
  17. #include <VCLCommon.h>
  18. #include <InitGUID.h>
  19. #include <DragExt.h>
  20. #include <Math.hpp>
  21. #include <StrUtils.hpp>
  22. #include <Generics.Defaults.hpp>
  23. #include <OperationWithTimeout.hpp>
  24. #include "FileInfo.h"
  25. #include "CoreMain.h"
  26. #include "DriveView.hpp"
  27. //---------------------------------------------------------------------------
  28. #pragma package(smart_init)
  29. //---------------------------------------------------------------------------
  30. TWinConfiguration * WinConfiguration = NULL;
  31. //---------------------------------------------------------------------------
  32. static UnicodeString NotepadName(L"notepad.exe");
  33. static UnicodeString ToolbarsLayoutKey(L"ToolbarsLayout2");
  34. static UnicodeString ToolbarsLayoutOldKey(L"ToolbarsLayout");
  35. TDateTime DefaultUpdatesPeriod(7);
  36. // WORKAROUND (the semicolon, see TCustomListViewColProperties.GetParamsStr, and see other instances below)
  37. const UnicodeString ScpExplorerDirViewParamsDefault =
  38. L"0;1;0|150,1;70,1;150,1;79,1;62,1;55,0;20,0;150,0;125,0;@" + SaveDefaultPixelsPerInch() + L"|6;7;8;0;1;2;3;4;5";
  39. const UnicodeString ScpCommanderRemotePanelDirViewParamsDefault = ScpExplorerDirViewParamsDefault;
  40. const UnicodeString ScpCommanderLocalPanelDirViewParamsDefault =
  41. L"0;1;0|150,1;70,1;120,1;150,1;55,0;55,0;@" + SaveDefaultPixelsPerInch() + L"|5;0;1;2;3;4";
  42. UnicodeString QueueViewLayoutDefault;
  43. //---------------------------------------------------------------------------
  44. static const wchar_t FileColorDataSeparator = L':';
  45. TFileColorData::TFileColorData() :
  46. Color(TColor())
  47. {
  48. }
  49. //---------------------------------------------------------------------------
  50. void TFileColorData::Load(const UnicodeString & S)
  51. {
  52. UnicodeString Buf(S);
  53. Color = RestoreColor(CutToChar(Buf, FileColorDataSeparator, true));
  54. FileMask = Buf;
  55. }
  56. //---------------------------------------------------------------------------
  57. UnicodeString TFileColorData::Save() const
  58. {
  59. UnicodeString Result = StoreColor(Color) + FileColorDataSeparator + FileMask.Masks;
  60. return Result;
  61. }
  62. //---------------------------------------------------------------------------
  63. void TFileColorData::LoadList(const UnicodeString & S, TList & List)
  64. {
  65. std::unique_ptr<TStringList> Strings(CommaTextToStringList(S));
  66. List.clear();
  67. for (int Index = 0; Index < Strings->Count; Index++)
  68. {
  69. TFileColorData FileColorData;
  70. FileColorData.Load(Strings->Strings[Index]);
  71. List.push_back(FileColorData);
  72. }
  73. }
  74. //---------------------------------------------------------------------------
  75. UnicodeString TFileColorData::SaveList(const TList & List)
  76. {
  77. std::unique_ptr<TStringList> Strings(new TStringList());
  78. for (TFileColorData::TList::const_iterator Iter = List.begin(); Iter != List.end(); Iter++)
  79. {
  80. Strings->Add((*Iter).Save());
  81. }
  82. return Strings->CommaText;
  83. }
  84. //---------------------------------------------------------------------------
  85. //---------------------------------------------------------------------------
  86. __fastcall TEditorData::TEditorData() :
  87. FileMask(AnyMask),
  88. Editor(edInternal),
  89. ExternalEditor(L""),
  90. ExternalEditorText(false),
  91. SDIExternalEditor(false),
  92. DetectMDIExternalEditor(false)
  93. {
  94. }
  95. //---------------------------------------------------------------------------
  96. __fastcall TEditorData::TEditorData(const TEditorData & Source) :
  97. FileMask(Source.FileMask),
  98. Editor(Source.Editor),
  99. ExternalEditor(Source.ExternalEditor),
  100. ExternalEditorText(Source.ExternalEditorText),
  101. SDIExternalEditor(Source.SDIExternalEditor),
  102. DetectMDIExternalEditor(Source.DetectMDIExternalEditor)
  103. {
  104. }
  105. //---------------------------------------------------------------------------
  106. #define C(Property) (Property == rhd.Property)
  107. bool __fastcall TEditorData::operator==(const TEditorData & rhd) const
  108. {
  109. return
  110. C(FileMask) &&
  111. C(Editor) &&
  112. C(ExternalEditor) &&
  113. C(ExternalEditorText) &&
  114. C(SDIExternalEditor) &&
  115. C(DetectMDIExternalEditor) &&
  116. true;
  117. }
  118. #undef C
  119. //---------------------------------------------------------------------------
  120. void __fastcall TEditorData::ExternalEditorOptionsAutodetect()
  121. {
  122. UnicodeString Command = ExternalEditor;
  123. ReformatFileNameCommand(Command);
  124. UnicodeString ProgramName = ExtractProgramName(Command);
  125. // We explicitly do not use TEditorPreferences::GetDefaultExternalEditor(),
  126. // as we need to explicitly refer to the Notepad, even if the default external
  127. // editor ever changes
  128. UnicodeString NotepadProgramName = ExtractProgramName(NotepadName);
  129. if (SameText(ProgramName, NotepadProgramName))
  130. {
  131. // By default we use default transfer mode (binary),
  132. // as all reasonable 3rd party editors support all EOL styles.
  133. // A notable exception is Windows Notepad before Windows 10 1809, so here's an exception for it.
  134. ExternalEditorText = !IsWin10Build(17763);
  135. SDIExternalEditor = true;
  136. }
  137. }
  138. //---------------------------------------------------------------------------
  139. __fastcall TEditorPreferences::TEditorPreferences()
  140. {
  141. }
  142. //---------------------------------------------------------------------------
  143. __fastcall TEditorPreferences::TEditorPreferences(const TEditorData & Data) :
  144. FData(Data)
  145. {
  146. }
  147. //---------------------------------------------------------------------------
  148. bool __fastcall TEditorPreferences::operator==(const TEditorPreferences & rhp) const
  149. {
  150. return (FData == rhp.FData);
  151. }
  152. #undef C
  153. //---------------------------------------------------------------------------
  154. bool __fastcall TEditorPreferences::Matches(const UnicodeString FileName,
  155. bool Local, const TFileMasks::TParams & Params) const
  156. {
  157. return FData.FileMask.Matches(FileName, Local, false, &Params);
  158. }
  159. //---------------------------------------------------------------------------
  160. UnicodeString __fastcall TEditorPreferences::GetDefaultExternalEditor()
  161. {
  162. return NotepadName;
  163. }
  164. //---------------------------------------------------------------------------
  165. void __fastcall TEditorPreferences::LegacyDefaults()
  166. {
  167. FData.ExternalEditor = GetDefaultExternalEditor();
  168. FData.ExternalEditorOptionsAutodetect();
  169. }
  170. //---------------------------------------------------------------------------
  171. UnicodeString __fastcall TEditorPreferences::ExtractExternalEditorName() const
  172. {
  173. DebugAssert(FData.Editor == edExternal);
  174. UnicodeString ExternalEditor = FData.ExternalEditor;
  175. ReformatFileNameCommand(ExternalEditor);
  176. // Trim is a workaround for unknown problem with "notepad " (2 trailing spaces)
  177. return ExtractProgramName(ExternalEditor).Trim();
  178. }
  179. //---------------------------------------------------------------------------
  180. void __fastcall TEditorPreferences::Load(THierarchicalStorage * Storage, bool Legacy)
  181. {
  182. if (!Legacy)
  183. {
  184. FData.FileMask = Storage->ReadString(L"FileMask", FData.FileMask.Masks);
  185. }
  186. FData.Editor = (TEditor)Storage->ReadInteger(L"Editor", FData.Editor);
  187. FData.ExternalEditor = Storage->ReadString(L"ExternalEditor", FData.ExternalEditor);
  188. FData.ExternalEditorText = Storage->ReadBool(L"ExternalEditorText", FData.ExternalEditorText);
  189. FData.SDIExternalEditor = Storage->ReadBool(L"SDIExternalEditor", FData.SDIExternalEditor);
  190. FData.DetectMDIExternalEditor = Storage->ReadBool(L"DetectMDIExternalEditor", FData.DetectMDIExternalEditor);
  191. }
  192. //---------------------------------------------------------------------------
  193. void __fastcall TEditorPreferences::Save(THierarchicalStorage * Storage) const
  194. {
  195. Storage->WriteString(L"FileMask", FData.FileMask.Masks);
  196. Storage->WriteInteger(L"Editor", FData.Editor);
  197. Storage->WriteString(L"ExternalEditor", FData.ExternalEditor);
  198. Storage->WriteBool(L"ExternalEditorText", FData.ExternalEditorText);
  199. Storage->WriteBool(L"SDIExternalEditor", FData.SDIExternalEditor);
  200. Storage->WriteBool(L"DetectMDIExternalEditor", FData.DetectMDIExternalEditor);
  201. }
  202. //---------------------------------------------------------------------------
  203. TEditorData * __fastcall TEditorPreferences::GetData()
  204. {
  205. // returning non-const data, possible data change, invalidate cached name
  206. FName = L"";
  207. return &FData;
  208. };
  209. //---------------------------------------------------------------------------
  210. UnicodeString __fastcall TEditorPreferences::GetName() const
  211. {
  212. if (FName.IsEmpty())
  213. {
  214. if (FData.Editor == edInternal)
  215. {
  216. // StripHotkey is relic from times when INTERNAL_EDITOR_NAME was used
  217. // also for the menu item caption
  218. FName = StripHotkey(LoadStr(INTERNAL_EDITOR_NAME));
  219. }
  220. else if (FData.Editor == edOpen)
  221. {
  222. FName = StripHotkey(LoadStr(OPEN_EDITOR_NAME));
  223. }
  224. else
  225. {
  226. UnicodeString Program, Params, Dir;
  227. UnicodeString ExternalEditor = FData.ExternalEditor;
  228. ReformatFileNameCommand(ExternalEditor);
  229. SplitCommand(ExternalEditor, Program, Params, Dir);
  230. FName = ExtractFileName(Program);
  231. int P = FName.LastDelimiter(L".");
  232. if (P > 0)
  233. {
  234. FName.SetLength(P - 1);
  235. }
  236. if (FName.ByteType(1) == mbSingleByte)
  237. {
  238. if (FName.UpperCase() == FName)
  239. {
  240. FName = FName.LowerCase();
  241. }
  242. if (FName.LowerCase() == FName)
  243. {
  244. FName = FName.SubString(1, 1).UpperCase() +
  245. FName.SubString(2, FName.Length() - 1);
  246. }
  247. }
  248. }
  249. }
  250. return FName;
  251. }
  252. //---------------------------------------------------------------------------
  253. //---------------------------------------------------------------------------
  254. __fastcall TEditorList::TEditorList()
  255. {
  256. Init();
  257. }
  258. //---------------------------------------------------------------------------
  259. void __fastcall TEditorList::Init()
  260. {
  261. FEditors = new TList();
  262. FModified = false;
  263. }
  264. //---------------------------------------------------------------------------
  265. __fastcall TEditorList::~TEditorList()
  266. {
  267. Clear();
  268. delete FEditors;
  269. }
  270. //---------------------------------------------------------------------
  271. void __fastcall TEditorList::Modify()
  272. {
  273. FModified = true;
  274. }
  275. //---------------------------------------------------------------------------
  276. void __fastcall TEditorList::Saved()
  277. {
  278. FModified = false;
  279. }
  280. //---------------------------------------------------------------------------
  281. TEditorList & __fastcall TEditorList::operator=(const TEditorList & rhl)
  282. {
  283. Clear();
  284. for (int Index = 0; Index < rhl.Count; Index++)
  285. {
  286. Add(new TEditorPreferences(*rhl.Editors[Index]));
  287. }
  288. // there should be comparison of with the assigned list, but we rely on caller
  289. // to do it instead (TWinConfiguration::SetEditorList)
  290. Modify();
  291. return *this;
  292. }
  293. //---------------------------------------------------------------------------
  294. bool __fastcall TEditorList::operator==(const TEditorList & rhl) const
  295. {
  296. bool Result = (Count == rhl.Count);
  297. if (Result)
  298. {
  299. int i = 0;
  300. while ((i < Count) && Result)
  301. {
  302. Result = (*Editors[i]) == (*rhl.Editors[i]);
  303. i++;
  304. }
  305. }
  306. return Result;
  307. }
  308. //---------------------------------------------------------------------------
  309. void __fastcall TEditorList::Clear()
  310. {
  311. for (int i = 0; i < Count; i++)
  312. {
  313. delete Editors[i];
  314. }
  315. FEditors->Clear();
  316. }
  317. //---------------------------------------------------------------------------
  318. void __fastcall TEditorList::Add(TEditorPreferences * Editor)
  319. {
  320. Insert(Count, Editor);
  321. }
  322. //---------------------------------------------------------------------------
  323. void __fastcall TEditorList::Insert(int Index, TEditorPreferences * Editor)
  324. {
  325. FEditors->Insert(Index, reinterpret_cast<TObject *>(Editor));
  326. Modify();
  327. }
  328. //---------------------------------------------------------------------------
  329. void __fastcall TEditorList::Change(int Index, TEditorPreferences * Editor)
  330. {
  331. if (!((*Editors[Index]) == *Editor))
  332. {
  333. delete Editors[Index];
  334. FEditors->Items[Index] = (reinterpret_cast<TObject *>(Editor));
  335. Modify();
  336. }
  337. else
  338. {
  339. delete Editor;
  340. }
  341. }
  342. //---------------------------------------------------------------------------
  343. void __fastcall TEditorList::Move(int CurIndex, int NewIndex)
  344. {
  345. if (CurIndex != NewIndex)
  346. {
  347. FEditors->Move(CurIndex, NewIndex);
  348. Modify();
  349. }
  350. }
  351. //---------------------------------------------------------------------------
  352. void __fastcall TEditorList::Delete(int Index)
  353. {
  354. DebugAssert((Index >= 0) && (Index < Count));
  355. delete Editors[Index];
  356. FEditors->Delete(Index);
  357. Modify();
  358. }
  359. //---------------------------------------------------------------------------
  360. const TEditorPreferences * __fastcall TEditorList::Find(
  361. const UnicodeString FileName, bool Local, const TFileMasks::TParams & Params) const
  362. {
  363. const TEditorPreferences * Result = NULL;
  364. int i = 0;
  365. while ((i < FEditors->Count) && (Result == NULL))
  366. {
  367. Result = Editors[i];
  368. if (!Result->Matches(FileName, Local, Params))
  369. {
  370. Result = NULL;
  371. }
  372. i++;
  373. }
  374. return Result;
  375. }
  376. //---------------------------------------------------------------------------
  377. void __fastcall TEditorList::Load(THierarchicalStorage * Storage)
  378. {
  379. int Index = 0;
  380. bool Next;
  381. do
  382. {
  383. UnicodeString Name = IntToStr(Index);
  384. TEditorPreferences * Editor = NULL;
  385. try
  386. {
  387. Next = Storage->OpenSubKey(Name, false);
  388. if (Next)
  389. {
  390. try
  391. {
  392. Editor = new TEditorPreferences();
  393. Editor->Load(Storage, false);
  394. }
  395. __finally
  396. {
  397. Storage->CloseSubKey();
  398. }
  399. }
  400. }
  401. catch(...)
  402. {
  403. delete Editor;
  404. throw;
  405. }
  406. if (Editor != NULL)
  407. {
  408. FEditors->Add(reinterpret_cast<TObject *>(Editor));
  409. }
  410. Index++;
  411. }
  412. while (Next);
  413. FModified = false;
  414. }
  415. //---------------------------------------------------------------------------
  416. void __fastcall TEditorList::Save(THierarchicalStorage * Storage) const
  417. {
  418. Storage->ClearSubKeys();
  419. for (int Index = 0; Index < Count; Index++)
  420. {
  421. if (Storage->OpenSubKey(IntToStr(Index), true))
  422. {
  423. try
  424. {
  425. Editors[Index]->Save(Storage);
  426. }
  427. __finally
  428. {
  429. Storage->CloseSubKey();
  430. }
  431. }
  432. }
  433. }
  434. //---------------------------------------------------------------------------
  435. int __fastcall TEditorList::GetCount() const
  436. {
  437. int X = FEditors->Count;
  438. return X;
  439. }
  440. //---------------------------------------------------------------------------
  441. const TEditorPreferences * __fastcall TEditorList::GetEditor(int Index) const
  442. {
  443. return reinterpret_cast<TEditorPreferences *>(FEditors->Items[Index]);
  444. }
  445. //---------------------------------------------------------------------------
  446. bool __fastcall TEditorList::IsDefaultList() const
  447. {
  448. bool Result = true;
  449. for (int Index = 0; Result && (Index < Count); Index++)
  450. {
  451. const TEditorPreferences * Editor = GetEditor(Index);
  452. if (Editor->Data->Editor == edInternal)
  453. {
  454. // noop (keeps Result true)
  455. }
  456. else if (Editor->Data->Editor == edExternal)
  457. {
  458. UnicodeString ExternalEditor = Editor->ExtractExternalEditorName();
  459. UnicodeString DefaultExternalEditor = ExtractProgramName(TEditorPreferences::GetDefaultExternalEditor());
  460. Result = SameText(ExternalEditor, DefaultExternalEditor);
  461. }
  462. else
  463. {
  464. Result = false;
  465. }
  466. }
  467. return Result;
  468. }
  469. //---------------------------------------------------------------------------
  470. //---------------------------------------------------------------------------
  471. __fastcall TWinConfiguration::TWinConfiguration(): TCustomWinConfiguration()
  472. {
  473. FInvalidDefaultTranslationMessage = L"";
  474. FDDExtInstalled = -1;
  475. FBookmarks = new TBookmarks();
  476. FCustomCommandList = new TCustomCommandList();
  477. FExtensionList = new TCustomCommandList();
  478. FEditorList = new TEditorList();
  479. FDefaultUpdatesPeriod = 0;
  480. FDontDecryptPasswords = 0;
  481. FMasterPasswordSession = 0;
  482. FMasterPasswordSessionAsked = false;
  483. FCustomCommandOptions.reset(new TStringList());
  484. FCustomCommandOptionsModified = false;
  485. FExtensionTranslations.reset(new TStringList());
  486. Default();
  487. // This matters only if the translations are in the executable folder and auto-loaded by VCL (System.Pas - DelayLoadResourceModule)
  488. try
  489. {
  490. UnicodeString ResourceModuleName = GetResourceModuleName(Application->Name, ModuleFileName().c_str());
  491. CheckTranslationVersion(ResourceModuleName, true);
  492. }
  493. catch(Exception & E)
  494. {
  495. FInvalidDefaultTranslationMessage = E.Message;
  496. }
  497. // Load complete locale according to the UI language
  498. SetLocaleInternal(NULL, true, true);
  499. FDefaultLocale = AppliedLocale;
  500. }
  501. //---------------------------------------------------------------------------
  502. __fastcall TWinConfiguration::~TWinConfiguration()
  503. {
  504. if (!FTemporarySessionFile.IsEmpty()) DeleteFile(ApiPath(FTemporarySessionFile));
  505. ClearTemporaryLoginData();
  506. ReleaseExtensionTranslations();
  507. delete FBookmarks;
  508. delete FCustomCommandList;
  509. delete FExtensionList;
  510. delete FEditorList;
  511. }
  512. //---------------------------------------------------------------------------
  513. void __fastcall TWinConfiguration::Default()
  514. {
  515. FCustomCommandsDefaults = true;
  516. FCustomCommandOptionsModified = false;
  517. TCustomWinConfiguration::Default();
  518. int WorkAreaWidthScaled = DimensionToDefaultPixelsPerInch(Screen->WorkAreaWidth);
  519. int WorkAreaHeightScaled = DimensionToDefaultPixelsPerInch(Screen->WorkAreaHeight);
  520. UnicodeString PixelsPerInchToolbarValue = "PixelsPerInch=" + SaveDefaultPixelsPerInch();
  521. FDDDisableMove = false;
  522. FDDTransferConfirmation = asAuto;
  523. FDDTemporaryDirectory = L"";
  524. FDDDrives = L"";
  525. FDDWarnLackOfTempSpace = true;
  526. FDDWarnLackOfTempSpaceRatio = 1.1;
  527. FDDFakeFile = true;
  528. FDDExtTimeout = MSecsPerSec;
  529. FDeleteToRecycleBin = true;
  530. FSelectDirectories = false;
  531. FSelectMask = AnyMask;
  532. FShowHiddenFiles = false;
  533. FFormatSizeBytes = fbKilobytes;
  534. FPanelSearch = isNameStartOnly;
  535. FShowInaccesibleDirectories = true;
  536. FConfirmTransferring = true;
  537. FConfirmDeleting = true;
  538. FConfirmRecycling = true;
  539. FConfirmClosingSession = true;
  540. FDoubleClickAction = dcaEdit;
  541. FCopyOnDoubleClickConfirmation = false;
  542. FAlwaysRespectDoubleClickAction = false;
  543. FDimmHiddenFiles = true;
  544. FRenameWholeName = false;
  545. FAutoStartSession = L"";
  546. FExpertMode = true;
  547. FUseLocationProfiles = false;
  548. FUseSharedBookmarks = false;
  549. FDefaultDirIsHome = true;
  550. FDDDeleteDelay = 120;
  551. FTemporaryDirectoryAppendSession = false;
  552. FTemporaryDirectoryDeterministic = false;
  553. FTemporaryDirectoryAppendPath = true;
  554. FTemporaryDirectoryCleanup = true;
  555. FConfirmTemporaryDirectoryCleanup = true;
  556. FPreservePanelState = true;
  557. FDarkTheme = asAuto;
  558. FLastStoredSession = L"";
  559. // deliberately not being saved, so that when saving ad-hoc workspace,
  560. // we do not offer to overwrite the last saved workspace, what may be undesirable
  561. FLastWorkspace = L"";
  562. FAutoSaveWorkspace = false;
  563. FAutoSaveWorkspacePasswords = false;
  564. FAutoWorkspace = L"";
  565. FPathInCaption = picShort;
  566. FSessionTabNameFormat = stnfShortPathTrunc;
  567. FMinimizeToTray = false;
  568. FBalloonNotifications = true;
  569. FNotificationsTimeout = 10;
  570. FNotificationsStickTime = 2;
  571. FCopyParamAutoSelectNotice = true;
  572. FLockToolbars = false;
  573. FSelectiveToolbarText = true;
  574. FAutoOpenInPutty = false;
  575. FRefreshRemotePanel = false;
  576. FRefreshRemotePanelInterval = TDateTime(0, 1, 0, 0);
  577. FPanelFont.FontName = L"";
  578. FPanelFont.FontSize = 0;
  579. FPanelFont.FontStyle = 0;
  580. FPanelFont.FontCharset = DEFAULT_CHARSET;
  581. FNaturalOrderNumericalSorting = true;
  582. FAlwaysSortDirectoriesByName = false;
  583. FFullRowSelect = false;
  584. FOfferedEditorAutoConfig = false;
  585. FVersionHistory = L"";
  586. AddVersionToHistory();
  587. FUseMasterPassword = false;
  588. FPlainMasterPasswordEncrypt = L"";
  589. FPlainMasterPasswordDecrypt = L"";
  590. FMasterPasswordVerifier = L"";
  591. FOpenedStoredSessionFolders = L"";
  592. FAutoImportedFromPuttyOrFilezilla = false;
  593. FGenerateUrlComponents = -1;
  594. FGenerateUrlCodeTarget = guctUrl;
  595. FGenerateUrlScriptFormat = sfScriptFile;
  596. FGenerateUrlAssemblyLanguage = alCSharp;
  597. FExternalSessionInExistingInstance = true;
  598. FShowLoginWhenNoSession = true;
  599. FKeepOpenWhenNoSession = true;
  600. FDefaultToNewRemoteTab = true;
  601. FLocalIconsByExt = false;
  602. FFlashTaskbar = true;
  603. FMaxSessions = 100;
  604. FBidiModeOverride = lfoLanguageIfRecommended;
  605. FFlipChildrenOverride = lfoLanguageIfRecommended;
  606. FShowTips = true;
  607. FTipsSeen = L"";
  608. FTipsShown = Now();
  609. FFileColors = L"";
  610. FRunsSinceLastTip = 0;
  611. FExtensionsDeleted = L"";
  612. FLockedInterface = false;
  613. HonorDrivePolicy = true;
  614. UseABDrives = true;
  615. TimeoutShellOperations = true;
  616. TimeoutShellIconRetrieval = false;
  617. UseIconUpdateThread = true;
  618. AllowWindowPrint = false;
  619. StoreTransition = stInit;
  620. QueueTransferLimitMax = 9;
  621. HiContrast = false;
  622. EditorCheckNotModified = false;
  623. SessionTabCaptionTruncation = true;
  624. LoadingTooLongLimit = 15;
  625. FirstRun = StandardDatestamp();
  626. FEditor.Font.FontName = DefaultFixedWidthFontName;
  627. FEditor.Font.FontSize = DefaultFixedWidthFontSize;
  628. FEditor.Font.FontStyle = 0;
  629. FEditor.Font.FontCharset = DEFAULT_CHARSET;
  630. FEditor.FontColor = TColor(0);
  631. FEditor.BackgroundColor = TColor(0);
  632. FEditor.WordWrap = false;
  633. FEditor.FindText = L"";
  634. FEditor.ReplaceText = L"";
  635. FEditor.FindMatchCase = false;
  636. FEditor.FindWholeWord = false;
  637. FEditor.FindDown = true;
  638. FEditor.TabSize = 8;
  639. FEditor.MaxEditors = 500;
  640. FEditor.EarlyClose = 2; // seconds
  641. FEditor.SDIShellEditor = false;
  642. FEditor.WindowParams = L"";
  643. FEditor.Encoding = CP_ACP;
  644. FEditor.WarnOnEncodingFallback = true;
  645. FEditor.WarnOrLargeFileSize = true;
  646. FEditor.AutoFont = true;
  647. FQueueView.Height = 140;
  648. FQueueView.HeightPixelsPerInch = USER_DEFAULT_SCREEN_DPI;
  649. if (QueueViewLayoutDefault.IsEmpty())
  650. {
  651. // with 1000 pixels wide screen, both interfaces are wide enough to fit wider queue
  652. QueueViewLayoutDefault =
  653. UnicodeString((WorkAreaWidthScaled > 1000) ? L"70,250,250,80,80,80,100" : L"70,160,160,80,80,80,100") +
  654. // WORKAROUND (the comma), see GetListViewStr
  655. L",;" + SaveDefaultPixelsPerInch();
  656. }
  657. FQueueView.Layout = QueueViewLayoutDefault;
  658. FQueueView.Show = qvHideWhenEmpty;
  659. FQueueView.LastHideShow = qvHideWhenEmpty;
  660. FQueueView.ToolBar = true;
  661. FQueueView.Label = true;
  662. FQueueView.FileList = false;
  663. FQueueView.FileListHeight = 90;
  664. FQueueView.FileListHeightPixelsPerInch = USER_DEFAULT_SCREEN_DPI;
  665. FEnableQueueByDefault = true;
  666. FUpdates.Period = FDefaultUpdatesPeriod;
  667. FUpdates.LastCheck = 0;
  668. FUpdates.HaveResults = false;
  669. FUpdates.ShownResults = false;
  670. FUpdates.BetaVersions = asAuto;
  671. FUpdates.ShowOnStartup = true;
  672. FUpdates.AuthenticationEmail = L"";
  673. FUpdates.Mode = EmptyStr;
  674. // for backward compatibility the default is decided based on value of ProxyHost
  675. FUpdates.ConnectionType = (TConnectionType)-1;
  676. FUpdates.ProxyHost = L""; // keep empty (see above)
  677. FUpdates.ProxyPort = 8080;
  678. FUpdates.Results.Reset();
  679. FUpdates.DotNetVersion = L"";
  680. FUpdates.ConsoleVersion = L"";
  681. int ExplorerWidth = Min(WorkAreaWidthScaled - 40, 960);
  682. int ExplorerHeight = Min(WorkAreaHeightScaled - 30, 720);
  683. FScpExplorer.WindowParams = FormatDefaultWindowParams(ExplorerWidth, ExplorerHeight);
  684. FScpExplorer.DirViewParams = ScpExplorerDirViewParamsDefault;
  685. FScpExplorer.ToolbarsLayout =
  686. UnicodeString(
  687. L"Queue=1::0+-1,"
  688. "Menu=1:TopDock:0+0,"
  689. "Buttons=1:TopDock:2+0,"
  690. "Selection=0:TopDock:3+0,"
  691. "Session=0:TopDock:6+0,"
  692. "Preferences=1:TopDock:4+0,"
  693. "Sort=0:TopDock:5+0,"
  694. "Address=1:TopDock:1+0,"
  695. "Updates=1:TopDock:4+393,"
  696. "Transfer=1:TopDock:4+171,"
  697. "CustomCommands=0:TopDock:7+0,") +
  698. PixelsPerInchToolbarValue;
  699. FScpExplorer.ToolbarsButtons = UnicodeString();
  700. FScpExplorer.SessionsTabs = true;
  701. FScpExplorer.StatusBar = true;
  702. FScpExplorer.LastLocalTargetDirectory = GetPersonalFolder();
  703. FScpExplorer.ViewStyle = 0; /* vsIcon */
  704. FScpExplorer.ShowFullAddress = true;
  705. FScpExplorer.DriveView = true;
  706. FScpExplorer.DriveViewWidth = 180;
  707. FScpExplorer.DriveViewWidthPixelsPerInch = USER_DEFAULT_SCREEN_DPI;
  708. int CommanderWidth = Min(WorkAreaWidthScaled - 40, 1090);
  709. int CommanderHeight = Min(WorkAreaHeightScaled - 30, 700);
  710. FScpCommander.WindowParams = FormatDefaultWindowParams(CommanderWidth, CommanderHeight);
  711. FScpCommander.LocalPanelWidth = 0.5;
  712. FScpCommander.SwappedPanels = false;
  713. FScpCommander.SessionsTabs = true;
  714. FScpCommander.StatusBar = true;
  715. FScpCommander.NortonLikeMode = nlKeyboard;
  716. FScpCommander.PreserveLocalDirectory = false;
  717. FScpCommander.ToolbarsLayout =
  718. UnicodeString(
  719. L"Queue=1::0+-1,"
  720. "Menu=1:TopDock:0+0,"
  721. "Preferences=1:TopDock:1+228,"
  722. "Session=0:TopDock:1+602,"
  723. "Sort=0:TopDock:2+0,"
  724. "Commands=1:TopDock:1+0,"
  725. "Updates=1:TopDock:1+596,"
  726. "Transfer=1:TopDock:1+341,"
  727. "CustomCommands=0:TopDock:3+0,"
  728. "RemoteHistory=1:RemoteTopDock:0+172,"
  729. "RemoteNavigation=1:RemoteTopDock:0+252,"
  730. "RemotePath=1:RemoteTopDock:0+0,"
  731. "RemoteFile=1:RemoteTopDock:1+0,"
  732. "RemoteSelection=1:RemoteTopDock:1+345,"
  733. "LocalHistory=1:LocalTopDock:0+207,"
  734. "LocalNavigation=1:LocalTopDock:0+287,"
  735. "LocalPath=1:LocalTopDock:0+0,"
  736. "LocalFile=1:LocalTopDock:1+0,"
  737. "LocalSelection=1:LocalTopDock:1+329,"
  738. "Toolbar2=0:BottomDock:1+0,"
  739. "CommandLine=0:BottomDock:0+0,") +
  740. PixelsPerInchToolbarValue;
  741. FScpCommander.ToolbarsButtons = UnicodeString();
  742. FScpCommander.CurrentPanel = osLocal;
  743. FScpCommander.CompareByTime = true;
  744. FScpCommander.CompareBySize = false;
  745. FScpCommander.TreeOnLeft = false;
  746. FScpCommander.ExplorerKeyboardShortcuts = false;
  747. FScpCommander.SystemContextMenu = false;
  748. FScpCommander.RemotePanel.DirViewParams = ScpCommanderRemotePanelDirViewParamsDefault;
  749. FScpCommander.RemotePanel.StatusBar = true;
  750. FScpCommander.RemotePanel.DriveView = false;
  751. FScpCommander.RemotePanel.DriveViewHeight = 100;
  752. FScpCommander.RemotePanel.DriveViewHeightPixelsPerInch = USER_DEFAULT_SCREEN_DPI;
  753. FScpCommander.RemotePanel.DriveViewWidth = 100;
  754. FScpCommander.RemotePanel.DriveViewWidthPixelsPerInch = USER_DEFAULT_SCREEN_DPI;
  755. FScpCommander.RemotePanel.LastPath = UnicodeString();
  756. FScpCommander.LocalPanel.DirViewParams = ScpCommanderLocalPanelDirViewParamsDefault;
  757. FScpCommander.LocalPanel.StatusBar = true;
  758. FScpCommander.LocalPanel.DriveView = false;
  759. FScpCommander.LocalPanel.DriveViewHeight = 100;
  760. FScpCommander.LocalPanel.DriveViewHeightPixelsPerInch = USER_DEFAULT_SCREEN_DPI;
  761. FScpCommander.LocalPanel.DriveViewWidth = 100;
  762. FScpCommander.LocalPanel.DriveViewWidthPixelsPerInch = USER_DEFAULT_SCREEN_DPI;
  763. FScpCommander.LocalPanel.LastPath = UnicodeString();
  764. FScpCommander.OtherLocalPanelDirViewParams = FScpCommander.LocalPanel.DirViewParams;
  765. FScpCommander.OtherLocalPanelLastPath = UnicodeString();
  766. FBookmarks->Clear();
  767. }
  768. //---------------------------------------------------------------------------
  769. void __fastcall TWinConfiguration::DefaultLocalized()
  770. {
  771. TGUIConfiguration::DefaultLocalized();
  772. if (FCustomCommandsDefaults)
  773. {
  774. FCustomCommandList->Clear();
  775. FCustomCommandList->Add(LoadStr(CUSTOM_COMMAND_EXECUTE), L"\"./!\"", 0);
  776. FCustomCommandList->Add(LoadStr(CUSTOM_COMMAND_TOUCH), L"touch \"!\"", ccApplyToDirectories | ccRecursive);
  777. FCustomCommandList->Add(LoadStr(CUSTOM_COMMAND_TAR),
  778. FORMAT(L"tar -cz -f \"!?%s?archive.tgz!\" !&",
  779. (LoadStr(CUSTOM_COMMAND_TAR_ARCHIVE))), ccApplyToDirectories);
  780. FCustomCommandList->Add(LoadStr(CUSTOM_COMMAND_UNTAR),
  781. FORMAT(L"tar -xz --directory=\"!?%s?.!\" -f \"!\"",
  782. (LoadStr(CUSTOM_COMMAND_UNTAR_DIRECTORY))), 0);
  783. FCustomCommandList->Add(LoadStr(CUSTOM_COMMAND_GREP),
  784. FORMAT(L"grep \"!?%s?!\" !&", (LoadStr(CUSTOM_COMMAND_GREP_PATTERN))),
  785. ccShowResults);
  786. FCustomCommandList->Add(LoadStr(CUSTOM_COMMAND_PRINT), L"notepad.exe /p \"!\"", ccLocal);
  787. FCustomCommandList->Reset();
  788. FCustomCommandsDefaults = true;
  789. }
  790. }
  791. //---------------------------------------------------------------------------
  792. bool __fastcall TWinConfiguration::DetectRegistryStorage(HKEY RootKey)
  793. {
  794. bool Result = false;
  795. TRegistryStorage * Storage = new TRegistryStorage(RegistryStorageKey, RootKey);
  796. try
  797. {
  798. if (Storage->OpenRootKey(false))
  799. {
  800. Result = true;
  801. Storage->CloseSubKey();
  802. }
  803. }
  804. __finally
  805. {
  806. delete Storage;
  807. }
  808. return Result;
  809. }
  810. //---------------------------------------------------------------------------
  811. bool __fastcall TWinConfiguration::CanWriteToStorage()
  812. {
  813. bool Result = false;
  814. try
  815. {
  816. THierarchicalStorage * Storage = CreateConfigStorage();
  817. try
  818. {
  819. Storage->AccessMode = smReadWrite;
  820. // This is actually not very good test, as we end up potentially with
  821. // the very same config, and TIniFileStorage file won't even try to
  822. // write the file then. Luckily, we use this for empty config only,
  823. // so we end up with at least an empty section.
  824. if (Storage->OpenSubKey(ConfigurationSubKey, true))
  825. {
  826. Storage->WriteBool(L"WriteTest", true);
  827. Storage->DeleteValue(L"WriteTest");
  828. }
  829. Storage->Flush();
  830. }
  831. __finally
  832. {
  833. delete Storage;
  834. }
  835. Result = true;
  836. }
  837. catch(...)
  838. {
  839. }
  840. return Result;
  841. }
  842. //---------------------------------------------------------------------------
  843. bool TWinConfiguration::DetectStorage(bool SafeOnly)
  844. {
  845. bool Result;
  846. UnicodeString IniFile = IniFileStorageNameForReading;
  847. if (FileExists(ApiPath(IniFile)))
  848. {
  849. Result = !SafeOnly;
  850. if (Result)
  851. {
  852. FStorage = stIniFile;
  853. AppLogFmt(L"Will use existing INI file %s for configuration", (IniFile));
  854. }
  855. }
  856. else
  857. {
  858. if (IsUWP() ||
  859. DetectRegistryStorage(HKEY_CURRENT_USER) ||
  860. DetectRegistryStorage(HKEY_LOCAL_MACHINE))
  861. {
  862. FStorage = stRegistry;
  863. if (IsUWP())
  864. {
  865. AppLog(L"Will use registry for configuration as this is store installation");
  866. }
  867. else
  868. {
  869. AppLog(L"Will use existing registry for configuration");
  870. }
  871. Result = true;
  872. }
  873. else
  874. {
  875. if (SafeOnly)
  876. {
  877. Result = false;
  878. AppLog(L"No configuration found");
  879. }
  880. else
  881. {
  882. FStorage = stIniFile;
  883. // As we fall back to user profile folder, when application folder
  884. // is not writtable, it is actually unlikely that the below test ever fails.
  885. if (!CanWriteToStorage())
  886. {
  887. FStorage = stRegistry;
  888. AppLog(L"Will use registry configuration as no configuration was found and default INI file location is not writtable");
  889. }
  890. else
  891. {
  892. AppLog(L"Will use (not yet existing) INI file for configuration");
  893. }
  894. // With !SafeOnly we always return true, so this result is actually never considered
  895. Result = true;
  896. }
  897. }
  898. }
  899. return Result;
  900. }
  901. //---------------------------------------------------------------------------
  902. TStorage __fastcall TWinConfiguration::GetStorage()
  903. {
  904. if (FStorage == stDetect)
  905. {
  906. if (FindResourceEx(NULL, RT_RCDATA, L"WINSCP_SESSION",
  907. MAKELANGID(LANG_NEUTRAL, SUBLANG_NEUTRAL)))
  908. {
  909. FTemporarySessionFile =
  910. IncludeTrailingBackslash(SystemTemporaryDirectory()) + L"winscps.tmp";
  911. DumpResourceToFile(L"WINSCP_SESSION", FTemporarySessionFile);
  912. FEmbeddedSessions = true;
  913. FTemporaryKeyFile =
  914. IncludeTrailingBackslash(SystemTemporaryDirectory()) + L"winscpk.tmp";
  915. if (!DumpResourceToFile(L"WINSCP_KEY", FTemporaryKeyFile))
  916. {
  917. FTemporaryKeyFile = L"";
  918. }
  919. }
  920. DebugCheck(DetectStorage(false));
  921. }
  922. // Meaning any inherited autodetection basically does not happen, so the below call returns FStorage
  923. DebugAssert(FStorage != stDetect);
  924. TStorage Result = TCustomWinConfiguration::GetStorage();
  925. return Result;
  926. }
  927. //---------------------------------------------------------------------------
  928. bool TWinConfiguration::TrySetSafeStorage()
  929. {
  930. return DetectStorage(true);
  931. }
  932. //---------------------------------------------------------------------------
  933. void __fastcall TWinConfiguration::Saved()
  934. {
  935. TCustomWinConfiguration::Saved();
  936. FBookmarks->ModifyAll(false);
  937. FCustomCommandList->Reset();
  938. FEditorList->Saved();
  939. }
  940. //---------------------------------------------------------------------------
  941. void __fastcall TWinConfiguration::RecryptPasswords(TStrings * RecryptPasswordErrors)
  942. {
  943. TCustomWinConfiguration::RecryptPasswords(RecryptPasswordErrors);
  944. try
  945. {
  946. TTerminalManager * Manager = TTerminalManager::Instance(false);
  947. DebugAssert(Manager != NULL);
  948. if (Manager != NULL)
  949. {
  950. Manager->RecryptPasswords();
  951. }
  952. }
  953. catch (Exception & E)
  954. {
  955. UnicodeString Message;
  956. if (ExceptionMessage(&E, Message))
  957. {
  958. // we do not expect this really to happen,
  959. // so we do not bother providing context
  960. RecryptPasswordErrors->Add(Message);
  961. }
  962. }
  963. }
  964. //---------------------------------------------------------------------------
  965. bool __fastcall TWinConfiguration::GetUseMasterPassword()
  966. {
  967. return FUseMasterPassword;
  968. }
  969. //---------------------------------------------------------------------------
  970. THierarchicalStorage * TWinConfiguration::CreateScpStorage(bool & SessionList)
  971. {
  972. // Detect embedded session, if not checked yet
  973. GetStorage();
  974. THierarchicalStorage * Result;
  975. if (SessionList && !FTemporarySessionFile.IsEmpty())
  976. {
  977. Result = TIniFileStorage::CreateFromPath(FTemporarySessionFile);
  978. // This is session-list specific store, so the only instance,
  979. // we do not reset the SessionList argument
  980. // (compare TConfiguration::CreateScpStorage)
  981. }
  982. else
  983. {
  984. Result = TCustomWinConfiguration::CreateScpStorage(SessionList);
  985. }
  986. return Result;
  987. }
  988. //---------------------------------------------------------------------------
  989. // duplicated from core\configuration.cpp
  990. #define BLOCK(KEY, CANCREATE, BLOCK) \
  991. if (Storage->OpenSubKeyPath(KEY, CANCREATE)) try { BLOCK } __finally { Storage->CloseSubKeyPath(); }
  992. #define KEY(TYPE, VAR) KEYEX(TYPE, VAR, PropertyToKey(TEXT(#VAR)))
  993. #define REGCONFIG(CANCREATE) \
  994. BLOCK(L"Interface", CANCREATE, \
  995. KEYEX(Integer,DoubleClickAction, L"CopyOnDoubleClick"); \
  996. KEY(Bool, CopyOnDoubleClickConfirmation); \
  997. KEY(Bool, AlwaysRespectDoubleClickAction); \
  998. KEY(Bool, DDDisableMove); \
  999. KEYEX(Integer, DDTransferConfirmation, L"DDTransferConfirmation2"); \
  1000. KEY(String, DDTemporaryDirectory); \
  1001. KEY(String, DDDrives); \
  1002. KEY(Bool, DDWarnLackOfTempSpace); \
  1003. KEY(Float, DDWarnLackOfTempSpaceRatio); \
  1004. KEY(Bool, DeleteToRecycleBin); \
  1005. KEY(Bool, DimmHiddenFiles); \
  1006. KEY(Bool, RenameWholeName); \
  1007. KEY(Bool, SelectDirectories); \
  1008. KEY(String, SelectMask); \
  1009. KEY(Bool, ShowHiddenFiles); \
  1010. KEY(Integer, FormatSizeBytes); \
  1011. KEY(Integer, PanelSearch); \
  1012. KEY(Bool, ShowInaccesibleDirectories); \
  1013. KEY(Bool, ConfirmTransferring); \
  1014. KEY(Bool, ConfirmDeleting); \
  1015. KEY(Bool, ConfirmRecycling); \
  1016. KEY(Bool, ConfirmClosingSession); \
  1017. KEY(String, AutoStartSession); \
  1018. KEY(Bool, UseLocationProfiles); \
  1019. KEY(Bool, UseSharedBookmarks); \
  1020. KEY(Integer, LocaleSafe); \
  1021. KEY(Bool, DDFakeFile); \
  1022. KEY(Integer, DDExtTimeout); \
  1023. KEY(Bool, DefaultDirIsHome); \
  1024. KEY(Bool, TemporaryDirectoryAppendSession); \
  1025. KEY(Bool, TemporaryDirectoryAppendPath); \
  1026. KEY(Bool, TemporaryDirectoryDeterministic); \
  1027. KEY(Bool, TemporaryDirectoryCleanup); \
  1028. KEY(Bool, ConfirmTemporaryDirectoryCleanup); \
  1029. KEY(Bool, PreservePanelState); \
  1030. KEY(Integer, DarkTheme); \
  1031. KEY(String, LastStoredSession); \
  1032. KEY(Bool, AutoSaveWorkspace); \
  1033. KEY(Bool, AutoSaveWorkspacePasswords); \
  1034. KEY(String, AutoWorkspace); \
  1035. KEY(Integer, PathInCaption); \
  1036. KEY(Integer, SessionTabNameFormat); \
  1037. KEY(Bool, MinimizeToTray); \
  1038. KEY(Bool, BalloonNotifications); \
  1039. KEY(Integer, NotificationsTimeout); \
  1040. KEY(Integer, NotificationsStickTime); \
  1041. KEY(Bool, CopyParamAutoSelectNotice); \
  1042. KEY(Bool, LockToolbars); \
  1043. KEY(Bool, SelectiveToolbarText); \
  1044. KEY(Bool, AutoOpenInPutty); \
  1045. KEY(Bool, RefreshRemotePanel); \
  1046. KEY(DateTime, RefreshRemotePanelInterval); \
  1047. KEYEX(String, PanelFont.FontName, L"PanelFontName"); \
  1048. KEYEX(Integer,PanelFont.FontSize, L"PanelFontSize"); \
  1049. KEYEX(Integer,PanelFont.FontStyle, L"PanelFontStyle"); \
  1050. KEYEX(Integer,PanelFont.FontCharset, L"PanelFontCharset"); \
  1051. KEY(Bool, NaturalOrderNumericalSorting); \
  1052. KEY(Bool, AlwaysSortDirectoriesByName); \
  1053. KEY(Bool, FullRowSelect); \
  1054. KEY(Bool, OfferedEditorAutoConfig); \
  1055. KEY(Integer, LastMonitor); \
  1056. KEY(String, VersionHistory); \
  1057. KEY(Bool, EnableQueueByDefault); \
  1058. KEY(String, OpenedStoredSessionFolders); \
  1059. KEY(Bool, AutoImportedFromPuttyOrFilezilla); \
  1060. KEY(Integer, GenerateUrlComponents); \
  1061. KEY(Integer, GenerateUrlCodeTarget); \
  1062. KEY(Integer, GenerateUrlScriptFormat); \
  1063. KEY(Integer, GenerateUrlAssemblyLanguage); \
  1064. KEY(Bool, ExternalSessionInExistingInstance); \
  1065. KEY(Bool, ShowLoginWhenNoSession); \
  1066. KEY(Bool, KeepOpenWhenNoSession); \
  1067. KEY(Bool, DefaultToNewRemoteTab); \
  1068. KEY(Bool, LocalIconsByExt); \
  1069. KEY(Bool, FlashTaskbar); \
  1070. KEY(Integer, MaxSessions); \
  1071. KEY(Integer, BidiModeOverride); \
  1072. KEY(Integer, FlipChildrenOverride); \
  1073. KEY(Bool, ShowTips); \
  1074. KEY(String, TipsSeen); \
  1075. KEY(DateTime, TipsShown); \
  1076. KEY(String, FileColors); \
  1077. KEY(Integer, RunsSinceLastTip); \
  1078. KEY(Bool, HonorDrivePolicy); \
  1079. KEY(Bool, UseABDrives); \
  1080. KEY(Integer, LastMachineInstallations); \
  1081. KEY(String, FExtensionsDeleted); \
  1082. KEY(String, FExtensionsOrder); \
  1083. KEY(String, FExtensionsShortCuts); \
  1084. KEY(Bool, TimeoutShellOperations); \
  1085. KEY(Bool, TimeoutShellIconRetrieval); \
  1086. KEY(Bool, UseIconUpdateThread); \
  1087. KEY(Bool, AllowWindowPrint); \
  1088. KEY(Integer, StoreTransition); \
  1089. KEY(Integer, QueueTransferLimitMax); \
  1090. KEY(Bool, HiContrast); \
  1091. KEY(Bool, EditorCheckNotModified); \
  1092. KEY(Bool, SessionTabCaptionTruncation); \
  1093. KEY(Integer, LoadingTooLongLimit); \
  1094. KEY(String, FirstRun); \
  1095. ); \
  1096. BLOCK(L"Interface\\Editor", CANCREATE, \
  1097. KEYEX(String, Editor.Font.FontName, L"FontName2"); \
  1098. KEY(Integer, Editor.Font.FontSize); \
  1099. KEY(Integer, Editor.Font.FontStyle); \
  1100. KEY(Integer, Editor.Font.FontCharset); \
  1101. KEY(Integer, Editor.FontColor); \
  1102. KEY(Integer, Editor.BackgroundColor); \
  1103. KEY(Bool, Editor.WordWrap); \
  1104. KEY(String, Editor.FindText); \
  1105. KEY(String, Editor.ReplaceText); \
  1106. KEY(Bool, Editor.FindMatchCase); \
  1107. KEY(Bool, Editor.FindWholeWord); \
  1108. KEY(Bool, Editor.FindDown); \
  1109. KEY(Integer, Editor.TabSize); \
  1110. KEY(Integer, Editor.MaxEditors); \
  1111. KEY(Integer, Editor.EarlyClose); \
  1112. KEY(Bool, Editor.SDIShellEditor); \
  1113. KEY(String, Editor.WindowParams); \
  1114. KEY(Integer, Editor.Encoding); \
  1115. KEY(Bool, Editor.WarnOnEncodingFallback); \
  1116. KEY(Bool, Editor.WarnOrLargeFileSize); \
  1117. KEY(Bool, Editor.AutoFont); \
  1118. ); \
  1119. BLOCK(L"Interface\\QueueView", CANCREATE, \
  1120. KEY(Integer, QueueView.Height); \
  1121. KEY(Integer, QueueView.HeightPixelsPerInch); \
  1122. KEY(String, QueueView.Layout); \
  1123. KEY(Integer, QueueView.Show); \
  1124. KEY(Integer, QueueView.LastHideShow); \
  1125. KEY(Bool, QueueView.ToolBar); \
  1126. KEY(Bool, QueueView.Label); \
  1127. KEY(Bool, QueueView.FileList); \
  1128. KEY(Integer, QueueView.FileListHeight); \
  1129. KEY(Integer, QueueView.FileListHeightPixelsPerInch); \
  1130. ); \
  1131. BLOCK(L"Interface\\Updates", CANCREATE, \
  1132. KEY(Integer, FUpdates.Period); \
  1133. KEY(DateTime, FUpdates.LastCheck); \
  1134. KEY(Integer, FUpdates.HaveResults); \
  1135. KEY(Integer, FUpdates.ShownResults); \
  1136. KEY(Integer, FUpdates.BetaVersions); \
  1137. KEY(Bool, FUpdates.ShowOnStartup); \
  1138. KEY(String, FUpdates.AuthenticationEmail); \
  1139. KEY(String, FUpdates.Mode); \
  1140. KEY(Integer, FUpdates.ConnectionType); \
  1141. KEY(String, FUpdates.ProxyHost); \
  1142. KEY(Integer, FUpdates.ProxyPort); \
  1143. KEY(Integer, FUpdates.Results.ForVersion); \
  1144. KEY(Integer, FUpdates.Results.Version); \
  1145. KEY(String, FUpdates.Results.Message); \
  1146. KEY(Integer, FUpdates.Results.Critical); \
  1147. KEY(String, FUpdates.Results.Release); \
  1148. KEY(Bool, FUpdates.Results.Disabled); \
  1149. KEY(String, FUpdates.Results.Url); \
  1150. KEY(String, FUpdates.Results.UrlButton); \
  1151. KEY(String, FUpdates.Results.NewsUrl); \
  1152. KEYEX(Integer,FUpdates.Results.NewsSize.Width, L"NewsWidth"); \
  1153. KEYEX(Integer,FUpdates.Results.NewsSize.Height, L"NewsHeight"); \
  1154. KEY(String, FUpdates.Results.DownloadUrl); \
  1155. KEY(Int64, FUpdates.Results.DownloadSize); \
  1156. KEY(String, FUpdates.Results.DownloadSha256); \
  1157. KEY(String, FUpdates.Results.AuthenticationError); \
  1158. KEY(Bool, FUpdates.Results.OpenGettingStarted); \
  1159. KEY(String, FUpdates.Results.DownloadingUrl); \
  1160. KEYEX(Integer,FUpdates.Results.TipsSize.Width, L"TipsWidth"); \
  1161. KEYEX(Integer,FUpdates.Results.TipsSize.Height, L"TipsHeight"); \
  1162. KEY(String, FUpdates.Results.TipsUrl); \
  1163. KEY(String, FUpdates.Results.Tips); \
  1164. KEY(Integer, FUpdates.Results.TipsIntervalDays); \
  1165. KEY(Integer, FUpdates.Results.TipsIntervalRuns); \
  1166. KEY(String, FUpdates.DotNetVersion); \
  1167. KEY(String, FUpdates.ConsoleVersion); \
  1168. ); \
  1169. BLOCK(L"Interface\\Explorer", CANCREATE, \
  1170. KEYEX(String, ScpExplorer.ToolbarsLayout, ToolbarsLayoutKey); \
  1171. KEY(String, ScpExplorer.ToolbarsButtons); \
  1172. KEY(String, ScpExplorer.DirViewParams); \
  1173. KEY(String, ScpExplorer.LastLocalTargetDirectory); \
  1174. KEY(Bool, ScpExplorer.SessionsTabs); \
  1175. KEY(Bool, ScpExplorer.StatusBar); \
  1176. KEY(String, ScpExplorer.WindowParams); \
  1177. KEY(Integer, ScpExplorer.ViewStyle); \
  1178. KEY(Bool, ScpExplorer.ShowFullAddress); \
  1179. KEY(Bool, ScpExplorer.DriveView); \
  1180. KEY(Integer, ScpExplorer.DriveViewWidth); \
  1181. KEY(Integer, ScpExplorer.DriveViewWidthPixelsPerInch); \
  1182. ); \
  1183. BLOCK(L"Interface\\Commander", CANCREATE, \
  1184. KEYEX(String, ScpCommander.ToolbarsLayout, ToolbarsLayoutKey); \
  1185. KEY(String, ScpCommander.ToolbarsButtons); \
  1186. KEY(Integer, ScpCommander.CurrentPanel); \
  1187. KEY(Float, ScpCommander.LocalPanelWidth); \
  1188. KEY(Bool, ScpCommander.SwappedPanels); \
  1189. KEY(Bool, ScpCommander.SessionsTabs); \
  1190. KEY(Bool, ScpCommander.StatusBar); \
  1191. KEY(String, ScpCommander.WindowParams); \
  1192. KEYEX(Integer, ScpCommander.NortonLikeMode, L"ExplorerStyleSelection"); \
  1193. KEY(Bool, ScpCommander.PreserveLocalDirectory); \
  1194. KEY(Bool, ScpCommander.CompareByTime); \
  1195. KEY(Bool, ScpCommander.CompareBySize); \
  1196. KEY(Bool, ScpCommander.TreeOnLeft); \
  1197. KEY(Bool, ScpCommander.ExplorerKeyboardShortcuts); \
  1198. KEY(Bool, ScpCommander.SystemContextMenu); \
  1199. ); \
  1200. BLOCK(L"Interface\\Commander\\LocalPanel", CANCREATE, \
  1201. KEY(String, ScpCommander.LocalPanel.DirViewParams); \
  1202. KEY(Bool, ScpCommander.LocalPanel.StatusBar); \
  1203. KEY(Bool, ScpCommander.LocalPanel.DriveView); \
  1204. KEY(Integer, ScpCommander.LocalPanel.DriveViewHeight); \
  1205. KEY(Integer, ScpCommander.LocalPanel.DriveViewHeightPixelsPerInch); \
  1206. KEY(Integer, ScpCommander.LocalPanel.DriveViewWidth); \
  1207. KEY(Integer, ScpCommander.LocalPanel.DriveViewWidthPixelsPerInch); \
  1208. KEY(String, ScpCommander.LocalPanel.LastPath); \
  1209. ); \
  1210. BLOCK(L"Interface\\Commander\\RemotePanel", CANCREATE, \
  1211. KEY(String, ScpCommander.RemotePanel.DirViewParams); \
  1212. KEY(Bool, ScpCommander.RemotePanel.StatusBar); \
  1213. KEY(Bool, ScpCommander.RemotePanel.DriveView); \
  1214. KEY(Integer, ScpCommander.RemotePanel.DriveViewHeight); \
  1215. KEY(Integer, ScpCommander.RemotePanel.DriveViewHeightPixelsPerInch); \
  1216. KEY(Integer, ScpCommander.RemotePanel.DriveViewWidth); \
  1217. KEY(Integer, ScpCommander.RemotePanel.DriveViewWidthPixelsPerInch); \
  1218. KEY(String, ScpCommander.RemotePanel.LastPath); \
  1219. ); \
  1220. BLOCK(L"Interface\\Commander\\OtherLocalPanel", CANCREATE, \
  1221. KEYEX(String, ScpCommander.OtherLocalPanelDirViewParams, L"DirViewParams"); \
  1222. KEYEX(String, ScpCommander.OtherLocalPanelLastPath, L"LastPath"); \
  1223. ); \
  1224. BLOCK(L"Security", CANCREATE, \
  1225. KEY(Bool, FUseMasterPassword); \
  1226. KEY(String, FMasterPasswordVerifier); \
  1227. );
  1228. //---------------------------------------------------------------------------
  1229. void __fastcall TWinConfiguration::SaveData(THierarchicalStorage * Storage, bool All)
  1230. {
  1231. TCustomWinConfiguration::SaveData(Storage, All);
  1232. // duplicated from core\configuration.cpp
  1233. #define KEYEX(TYPE, VAR, NAME) Storage->Write ## TYPE(NAME, VAR)
  1234. REGCONFIG(true);
  1235. #undef KEYEX
  1236. if (Storage->OpenSubKey(L"Bookmarks", true))
  1237. {
  1238. FBookmarks->Save(Storage, All);
  1239. Storage->CloseSubKey();
  1240. }
  1241. if ((All && !FCustomCommandsDefaults) || FCustomCommandList->Modified)
  1242. {
  1243. FCustomCommandList->Save(Storage);
  1244. if (FCustomCommandList->Count == 0)
  1245. {
  1246. Storage->WriteBool(L"CustomCommandsNone", true);
  1247. }
  1248. else
  1249. {
  1250. Storage->DeleteValue(L"CustomCommandsNone");
  1251. }
  1252. }
  1253. if ((All || FCustomCommandOptionsModified) &&
  1254. Storage->OpenSubKey(L"CustomCommandOptions", true))
  1255. {
  1256. Storage->ClearValues();
  1257. Storage->WriteValues(FCustomCommandOptions.get(), true);
  1258. Storage->CloseSubKey();
  1259. FCustomCommandOptionsModified = false;
  1260. }
  1261. if ((All || FEditorList->Modified) &&
  1262. Storage->OpenSubKeyPath(L"Interface\\Editor", true))
  1263. try
  1264. {
  1265. FEditorList->Save(Storage);
  1266. }
  1267. __finally
  1268. {
  1269. Storage->CloseSubKeyPath();
  1270. }
  1271. }
  1272. //---------------------------------------------------------------------------
  1273. void __fastcall TWinConfiguration::LoadFrom(THierarchicalStorage * Storage)
  1274. {
  1275. FLegacyEditor = new TEditorPreferences();
  1276. try
  1277. {
  1278. FLegacyEditor->LegacyDefaults();
  1279. TCustomWinConfiguration::LoadFrom(Storage);
  1280. // Following needs to be done even if there's no Configuration key in the storage,
  1281. // so it cannot be in LoadData
  1282. int EditorCount = FEditorList->Count;
  1283. if (EditorCount == 0)
  1284. {
  1285. TEditorPreferences * AlternativeEditor = NULL;
  1286. try
  1287. {
  1288. if (FLegacyEditor->Data->Editor == edInternal)
  1289. {
  1290. if (!FLegacyEditor->Data->ExternalEditor.IsEmpty())
  1291. {
  1292. AlternativeEditor = new TEditorPreferences(*FLegacyEditor);
  1293. AlternativeEditor->GetData()->Editor = edExternal;
  1294. FLegacyEditor->GetData()->ExternalEditor = L"";
  1295. }
  1296. }
  1297. else
  1298. {
  1299. if (FLegacyEditor->Data->ExternalEditor.IsEmpty())
  1300. {
  1301. FLegacyEditor->GetData()->Editor = edInternal;
  1302. }
  1303. else
  1304. {
  1305. AlternativeEditor = new TEditorPreferences(*FLegacyEditor);
  1306. AlternativeEditor->GetData()->Editor = edInternal;
  1307. }
  1308. }
  1309. }
  1310. catch(...)
  1311. {
  1312. delete AlternativeEditor;
  1313. throw;
  1314. }
  1315. FEditorList->Add(FLegacyEditor);
  1316. FLegacyEditor = NULL;
  1317. if (AlternativeEditor != NULL)
  1318. {
  1319. FEditorList->Add(AlternativeEditor);
  1320. }
  1321. }
  1322. // Additionally, this needs to be after Locale is loaded
  1323. LoadExtensionTranslations();
  1324. // and this after the ExtensionsDeleted, ExtensionsOrder and ExtensionsShortCuts are loaded
  1325. LoadExtensionList();
  1326. }
  1327. __finally
  1328. {
  1329. delete FLegacyEditor;
  1330. FLegacyEditor = NULL;
  1331. }
  1332. if (FUpdates.ConnectionType == -1)
  1333. {
  1334. FUpdates.ConnectionType = (FUpdates.ProxyHost.IsEmpty() ? ctAuto : ctProxy);
  1335. }
  1336. AddVersionToHistory();
  1337. }
  1338. //---------------------------------------------------------------------------
  1339. void __fastcall TWinConfiguration::DoLoadExtensionList(
  1340. const UnicodeString & Path, const UnicodeString & PathId, TStringList * DeletedExtensions)
  1341. {
  1342. TSearchRecOwned SearchRec;
  1343. int FindAttrs = faReadOnly | faArchive;
  1344. if (FindFirstUnchecked(IncludeTrailingBackslash(Path) + L"*.*", FindAttrs, SearchRec) == 0)
  1345. {
  1346. do
  1347. {
  1348. UnicodeString Id = TCustomCommandType::GetExtensionId(SearchRec.Name);
  1349. if (!Id.IsEmpty())
  1350. {
  1351. Id = IncludeTrailingBackslash(PathId) + Id;
  1352. if (DeletedExtensions->IndexOf(Id) >= 0)
  1353. {
  1354. // reconstruct the list, so that we remove the commands that no longer exists
  1355. AddToList(FExtensionsDeleted, Id, L"|");
  1356. }
  1357. else
  1358. {
  1359. std::unique_ptr<TCustomCommandType> CustomCommand(new TCustomCommandType());
  1360. CustomCommand->Id = Id;
  1361. try
  1362. {
  1363. CustomCommand->LoadExtension(SearchRec.GetFilePath());
  1364. FExtensionList->Add(CustomCommand.release());
  1365. }
  1366. catch (...)
  1367. {
  1368. // skip invalid extension files
  1369. }
  1370. }
  1371. }
  1372. }
  1373. while (FindNextChecked(SearchRec) == 0);
  1374. }
  1375. }
  1376. //---------------------------------------------------------------------------
  1377. void __fastcall ParseExtensionList(TStrings * Strings, UnicodeString S)
  1378. {
  1379. while (!S.IsEmpty())
  1380. {
  1381. UnicodeString Extension = CutToChar(S, L'|', false);
  1382. Strings->Add(Extension);
  1383. }
  1384. }
  1385. //---------------------------------------------------------------------------
  1386. const UnicodeString ExtensionsSubFolder(L"Extensions");
  1387. const UnicodeString ExtensionsCommonPathId(L"common");
  1388. const UnicodeString ExtensionsCommonExtPathId(L"commonext");
  1389. const UnicodeString ExtensionsUserExtPathId(L"userext");
  1390. //---------------------------------------------------------------------------
  1391. static UnicodeString __fastcall ExtractExtensionBaseName(const UnicodeString & FileName)
  1392. {
  1393. UnicodeString S = ExtractFileName(FileName);
  1394. // ExtractFileNameOnly trims the last extension only, we want to trim all extensions
  1395. UnicodeString Result = CutToChar(S, L'.', true);
  1396. return Result;
  1397. }
  1398. //---------------------------------------------------------------------------
  1399. UnicodeString __fastcall TWinConfiguration::GetProvisionaryExtensionId(const UnicodeString & FileName)
  1400. {
  1401. return IncludeTrailingBackslash(ExtensionsUserExtPathId) + ExtractExtensionBaseName(FileName);
  1402. }
  1403. //---------------------------------------------------------------------------
  1404. UnicodeString __fastcall TWinConfiguration::GetUserExtensionsPath()
  1405. {
  1406. return IncludeTrailingBackslash(GetShellFolderPath(CSIDL_APPDATA)) + L"WinSCP\\" + ExtensionsSubFolder;
  1407. }
  1408. //---------------------------------------------------------------------------
  1409. TStrings * __fastcall TWinConfiguration::GetExtensionsPaths()
  1410. {
  1411. std::unique_ptr<TStrings> Result(new TStringList());
  1412. UnicodeString ExeParentPath = ExcludeTrailingBackslash(ExtractFilePath(Application->ExeName));
  1413. Result->Values[ExtensionsCommonPathId] = ExeParentPath;
  1414. UnicodeString CommonExtensions = IncludeTrailingBackslash(ExeParentPath) + ExtensionsSubFolder;
  1415. Result->Values[ExtensionsCommonExtPathId] = CommonExtensions;
  1416. Result->Values[ExtensionsUserExtPathId] = GetUserExtensionsPath();
  1417. return Result.release();
  1418. }
  1419. //---------------------------------------------------------------------------
  1420. UnicodeString __fastcall TWinConfiguration::GetExtensionId(const UnicodeString & ExtensionPath)
  1421. {
  1422. UnicodeString Path = ExcludeTrailingBackslash(ExtractFilePath(ExtensionPath));
  1423. UnicodeString NameId = TCustomCommandType::GetExtensionId(ExtractFileName(ExtensionPath));
  1424. if (!NameId.IsEmpty())
  1425. {
  1426. std::unique_ptr<TStrings> ExtensionsPaths(GetExtensionsPaths());
  1427. for (int Index = 0; Index < ExtensionsPaths->Count; Index++)
  1428. {
  1429. if (IsPathToSameFile(Path, ExtensionsPaths->ValueFromIndex[Index]))
  1430. {
  1431. return IncludeTrailingBackslash(ExtensionsPaths->Names[Index]) + NameId;
  1432. }
  1433. }
  1434. }
  1435. return L"";
  1436. }
  1437. //---------------------------------------------------------------------------
  1438. void __fastcall TWinConfiguration::ReleaseExtensionTranslations()
  1439. {
  1440. for (int Index = 0; Index < FExtensionTranslations->Count; Index++)
  1441. {
  1442. delete FExtensionTranslations->Objects[Index];
  1443. }
  1444. FExtensionTranslations->Clear();
  1445. }
  1446. //---------------------------------------------------------------------------
  1447. void __fastcall TWinConfiguration::LoadExtensionTranslations()
  1448. {
  1449. ReleaseExtensionTranslations();
  1450. FExtensionTranslations.reset(new TStringList());
  1451. int Index = EXTENSION_STRINGS;
  1452. UnicodeString S;
  1453. while (!((S = LoadStr(Index)).IsEmpty()))
  1454. {
  1455. UnicodeString ExtensionName = CutToChar(S, L'.', false);
  1456. UnicodeString Original = CutToChar(S, L'=', false);
  1457. UnicodeString Translation = S;
  1458. int ExtensionIndex = FExtensionTranslations->IndexOf(ExtensionName);
  1459. if (ExtensionIndex < 0)
  1460. {
  1461. ExtensionIndex = FExtensionTranslations->AddObject(ExtensionName, new TStringList());
  1462. }
  1463. TStringList * ExtensionTranslation = DebugNotNull(dynamic_cast<TStringList *>(FExtensionTranslations->Objects[ExtensionIndex]));
  1464. ExtensionTranslation->Values[Original] = Translation;
  1465. Index++;
  1466. }
  1467. }
  1468. //---------------------------------------------------------------------------
  1469. UnicodeString __fastcall TWinConfiguration::UniqueExtensionName(const UnicodeString & ExtensionName, int Counter)
  1470. {
  1471. // See how the digits are removed in the ExtensionStringTranslation
  1472. return ExtensionName + IntToStr(Counter);
  1473. }
  1474. //---------------------------------------------------------------------------
  1475. UnicodeString __fastcall TWinConfiguration::ExtensionStringTranslation(const UnicodeString & ExtensionId, const UnicodeString & S)
  1476. {
  1477. UnicodeString Result = S;
  1478. if (!ExtensionId.IsEmpty())
  1479. {
  1480. UnicodeString ExtensionName = ExtractFileName(ExtensionId);
  1481. int ExtensionIndex;
  1482. bool Retry;
  1483. do
  1484. {
  1485. ExtensionIndex = FExtensionTranslations->IndexOf(ExtensionName);
  1486. // Try without trailing digits, possibly added by UniqueExtensionName
  1487. Retry = (ExtensionIndex < 0) && !ExtensionName.IsEmpty() && IsDigit(*ExtensionName.LastChar());
  1488. if (Retry)
  1489. {
  1490. ExtensionName.SetLength(ExtensionName.Length() - 1);
  1491. }
  1492. }
  1493. while (Retry);
  1494. if (ExtensionIndex >= 0)
  1495. {
  1496. TStrings * ExtensionTranslation = DebugNotNull(dynamic_cast<TStrings *>(FExtensionTranslations->Objects[ExtensionIndex]));
  1497. int StringIndex = ExtensionTranslation->IndexOfName(S);
  1498. if (StringIndex >= 0)
  1499. {
  1500. Result = ExtensionTranslation->ValueFromIndex[StringIndex];
  1501. }
  1502. }
  1503. }
  1504. return Result;
  1505. }
  1506. //---------------------------------------------------------------------------
  1507. void __fastcall TWinConfiguration::LoadExtensionList()
  1508. {
  1509. FExtensionList->Clear();
  1510. std::unique_ptr<TStringList> DeletedExtensions(CreateSortedStringList());
  1511. ParseExtensionList(DeletedExtensions.get(), FExtensionsDeleted);
  1512. // will reconstruct the list in DoLoadExtensionList
  1513. FExtensionsDeleted = L"";
  1514. std::unique_ptr<TStrings> ExtensionsPaths(GetExtensionsPaths());
  1515. for (int Index = 0; Index < ExtensionsPaths->Count; Index++)
  1516. {
  1517. DoLoadExtensionList(ExtensionsPaths->ValueFromIndex[Index], ExtensionsPaths->Names[Index], DeletedExtensions.get());
  1518. }
  1519. std::unique_ptr<TStringList> OrderedExtensions(new TStringList());
  1520. ParseExtensionList(OrderedExtensions.get(), FExtensionsOrder);
  1521. FExtensionList->SortBy(OrderedExtensions.get());
  1522. UnicodeString ShortCuts = FExtensionsShortCuts;
  1523. while (!ShortCuts.IsEmpty())
  1524. {
  1525. UnicodeString S = CutToChar(ShortCuts, L'|', false);
  1526. TShortCut ShortCut = static_cast<TShortCut>(StrToInt(CutToChar(S, L'=', false)));
  1527. for (int Index = 0; Index < FExtensionList->Count; Index++)
  1528. {
  1529. if (FExtensionList->Commands[Index]->Id == S)
  1530. {
  1531. const_cast<TCustomCommandType *>(FExtensionList->Commands[Index])->ShortCut = ShortCut;
  1532. }
  1533. }
  1534. }
  1535. }
  1536. //---------------------------------------------------------------------------
  1537. static UnicodeString KeyName(THierarchicalStorage * Storage, const UnicodeString & Name)
  1538. {
  1539. UnicodeString Result = Name;
  1540. if ((Result == ToolbarsLayoutKey) && !Storage->KeyExists(Result) && Storage->KeyExists(ToolbarsLayoutOldKey))
  1541. {
  1542. Result = ToolbarsLayoutOldKey;
  1543. }
  1544. return Result;
  1545. }
  1546. //---------------------------------------------------------------------------
  1547. void __fastcall TWinConfiguration::LoadData(THierarchicalStorage * Storage)
  1548. {
  1549. TCustomWinConfiguration::LoadData(Storage);
  1550. // duplicated from core\configuration.cpp
  1551. #define KEYEX(TYPE, VAR, NAME) VAR = Storage->Read ## TYPE(KeyName(Storage, NAME), VAR)
  1552. #pragma warn -eas
  1553. REGCONFIG(false);
  1554. #pragma warn +eas
  1555. #undef KEYEX
  1556. // to reflect changes to PanelFont
  1557. UpdateIconFont();
  1558. if (Storage->OpenSubKey(L"Bookmarks", false))
  1559. {
  1560. FBookmarks->Load(Storage);
  1561. Storage->CloseSubKey();
  1562. }
  1563. if (Storage->KeyExists(L"CustomCommands") ||
  1564. Storage->ReadBool(L"CustomCommandsNone", false))
  1565. {
  1566. FCustomCommandList->Load(Storage);
  1567. FCustomCommandsDefaults = false;
  1568. }
  1569. else if (FCustomCommandList->Modified)
  1570. {
  1571. // can this (=reloading of configuration) even happen?
  1572. // if it does, shouldn't we reset default commands?
  1573. DebugFail();
  1574. FCustomCommandList->Clear();
  1575. FCustomCommandsDefaults = false;
  1576. }
  1577. FCustomCommandList->Reset();
  1578. if (Storage->OpenSubKey(L"CustomCommandOptions", false))
  1579. {
  1580. Storage->ReadValues(FCustomCommandOptions.get(), true);
  1581. Storage->CloseSubKey();
  1582. FCustomCommandOptionsModified = false;
  1583. }
  1584. if (Storage->OpenSubKeyPath(L"Interface\\Editor", false))
  1585. try
  1586. {
  1587. FEditorList->Clear();
  1588. FEditorList->Load(Storage);
  1589. }
  1590. __finally
  1591. {
  1592. Storage->CloseSubKeyPath();
  1593. }
  1594. // load legacy editor configuration
  1595. DebugAssert(FLegacyEditor != NULL);
  1596. if (Storage->OpenSubKeyPath(L"Interface\\Editor", false))
  1597. {
  1598. try
  1599. {
  1600. FLegacyEditor->Load(Storage, true);
  1601. }
  1602. __finally
  1603. {
  1604. Storage->CloseSubKeyPath();
  1605. }
  1606. }
  1607. }
  1608. //---------------------------------------------------------------------------
  1609. void __fastcall TWinConfiguration::LoadAdmin(THierarchicalStorage * Storage)
  1610. {
  1611. TCustomWinConfiguration::LoadAdmin(Storage);
  1612. FDisableOpenEdit = Storage->ReadBool(L"DisableOpenEdit", FDisableOpenEdit);
  1613. FDefaultUpdatesPeriod = Storage->ReadInteger(L"DefaultUpdatesPeriod", FDefaultUpdatesPeriod);
  1614. FMachineInstallations = Storage->ReadInteger(L"Installations", 0);
  1615. }
  1616. //---------------------------------------------------------------------------
  1617. void __fastcall TWinConfiguration::CopyData(THierarchicalStorage * Source, THierarchicalStorage * Target)
  1618. {
  1619. TCustomWinConfiguration::CopyData(Source, Target);
  1620. if (CopySubKey(Source, Target, ConfigurationSubKey))
  1621. {
  1622. Target->WriteString(L"JumpList", Source->ReadString(L"JumpList", L""));
  1623. Target->WriteString(L"JumpListWorkspaces", Source->ReadString(L"JumpListWorkspaces", L""));
  1624. Target->CloseSubKey();
  1625. Source->CloseSubKey();
  1626. }
  1627. }
  1628. //---------------------------------------------------------------------------
  1629. void __fastcall TWinConfiguration::ClearTemporaryLoginData()
  1630. {
  1631. if (!FTemporaryKeyFile.IsEmpty())
  1632. {
  1633. DeleteFile(ApiPath(FTemporaryKeyFile));
  1634. FTemporaryKeyFile = L"";
  1635. }
  1636. }
  1637. //---------------------------------------------------------------------------
  1638. void __fastcall TWinConfiguration::AddVersionToHistory()
  1639. {
  1640. int CurrentVersion = CompoundVersion;
  1641. DebugAssert(ZeroBuildNumber(CurrentVersion) == CurrentVersion);
  1642. int From = 1;
  1643. bool CurrentVersionPresent = false;
  1644. while (!CurrentVersionPresent && (From < FVersionHistory.Length()))
  1645. {
  1646. UnicodeString VersionInfo = CopyToChars(FVersionHistory, From, L";", true);
  1647. UnicodeString VersionStr = CutToChar(VersionInfo, L',', true);
  1648. int Version;
  1649. if (TryStrToInt(VersionStr, Version))
  1650. {
  1651. Version = ZeroBuildNumber(Version);
  1652. if (Version == CurrentVersion)
  1653. {
  1654. CurrentVersionPresent = true;
  1655. }
  1656. }
  1657. }
  1658. if (!CurrentVersionPresent)
  1659. {
  1660. UnicodeString CurrentVersionInfo =
  1661. IntToStr(CurrentVersion) + L"," + GetReleaseType();
  1662. AddToList(FVersionHistory, CurrentVersionInfo, L';');
  1663. }
  1664. Usage->Set(L"AnyBetaUsed", AnyBetaInVersionHistory);
  1665. }
  1666. //---------------------------------------------------------------------------
  1667. bool __fastcall TWinConfiguration::DoIsBeta(const UnicodeString & ReleaseType)
  1668. {
  1669. // What about "Development" release type?
  1670. return SameText(ReleaseType, L"beta") || SameText(ReleaseType, L"rc");
  1671. }
  1672. //---------------------------------------------------------------------------
  1673. bool __fastcall TWinConfiguration::GetIsBeta()
  1674. {
  1675. return DoIsBeta(GetReleaseType());
  1676. }
  1677. //---------------------------------------------------------------------------
  1678. bool __fastcall TWinConfiguration::GetAnyBetaInVersionHistory()
  1679. {
  1680. int From = 1;
  1681. bool AnyBeta = false;
  1682. while (!AnyBeta && (From < VersionHistory.Length()))
  1683. {
  1684. UnicodeString VersionInfo = CopyToChars(VersionHistory, From, L";", true);
  1685. CutToChar(VersionInfo, L',', true);
  1686. UnicodeString ReleaseType = CutToChar(VersionInfo, ',', true);
  1687. if (DoIsBeta(ReleaseType))
  1688. {
  1689. AnyBeta = true;
  1690. }
  1691. }
  1692. return AnyBeta;
  1693. }
  1694. //---------------------------------------------------------------------------
  1695. bool __fastcall TWinConfiguration::GetDDExtInstalled()
  1696. {
  1697. if (FDDExtInstalled < 0)
  1698. {
  1699. if (IsWin64())
  1700. {
  1701. // WORKAROUND
  1702. // We cannot load 64-bit COM class into 32-bit process,
  1703. // so we fallback to querying registration keys
  1704. #define CLSID_SIZE 39
  1705. wchar_t ClassID[CLSID_SIZE];
  1706. StringFromGUID2(CLSID_ShellExtension, ClassID, LENOF(ClassID));
  1707. NULL_TERMINATE(ClassID);
  1708. UnicodeString SubKey = UnicodeString(L"CLSID\\") + ClassID;
  1709. HKEY HKey;
  1710. LONG Result = RegOpenKeyEx(HKEY_CLASSES_ROOT, SubKey.c_str(), 0, KEY_READ | KEY_WOW64_64KEY, &HKey);
  1711. if (Result == ERROR_SUCCESS)
  1712. {
  1713. RegCloseKey(HKey);
  1714. FDDExtInstalled = 1;
  1715. }
  1716. else
  1717. {
  1718. FDDExtInstalled = 0;
  1719. }
  1720. }
  1721. else
  1722. {
  1723. void * DragExtRef;
  1724. int CreateResult =
  1725. CoCreateInstance(CLSID_ShellExtension, NULL,
  1726. CLSCTX_INPROC_SERVER | CLSCTX_LOCAL_SERVER, IID_IUnknown,
  1727. &DragExtRef);
  1728. bool Result = (CreateResult == S_OK);
  1729. FDDExtInstalled = (Result ? 1 : 0);
  1730. if (Result)
  1731. {
  1732. reinterpret_cast<IUnknown *>(DragExtRef)->Release();
  1733. CoFreeUnusedLibraries();
  1734. }
  1735. }
  1736. }
  1737. return (FDDExtInstalled > 0);
  1738. }
  1739. //---------------------------------------------------------------------------
  1740. bool __fastcall TWinConfiguration::IsDDExtRunning()
  1741. {
  1742. bool Result;
  1743. if (!DDExtInstalled)
  1744. {
  1745. Result = false;
  1746. }
  1747. else
  1748. {
  1749. HANDLE H = OpenMutex(SYNCHRONIZE, False, DRAG_EXT_RUNNING_MUTEX);
  1750. Result = (H != NULL);
  1751. CloseHandle(H);
  1752. }
  1753. return Result;
  1754. }
  1755. //---------------------------------------------------------------------------
  1756. bool __fastcall TWinConfiguration::IsDDExtBroken()
  1757. {
  1758. int Build = GetWindowsBuild();
  1759. return (Build >= 17134) && (Build < 17763);
  1760. }
  1761. //---------------------------------------------------------------------------
  1762. RawByteString __fastcall TWinConfiguration::StronglyRecryptPassword(RawByteString Password, UnicodeString Key)
  1763. {
  1764. RawByteString Dummy;
  1765. RawByteString Result;
  1766. if (GetExternalEncryptedPassword(Password, Dummy) ||
  1767. !FUseMasterPassword)
  1768. {
  1769. // already-strongly encrypted
  1770. // or no master password set, so we cannot strongly-encrypt it
  1771. Result = Password;
  1772. }
  1773. else
  1774. {
  1775. UnicodeString PasswordText =
  1776. TCustomWinConfiguration::DecryptPassword(Password, Key);
  1777. if (!PasswordText.IsEmpty())
  1778. {
  1779. // Can be not set for instance, when editing=>saving site with no prior password.
  1780. // Though it should not actually happen, as we call AskForMasterPasswordIfNotSetAndNeededToPersistSessionData in DoSaveSession.
  1781. AskForMasterPasswordIfNotSet();
  1782. Password = ScramblePassword(PasswordText);
  1783. AES256EncyptWithMAC(Password, FPlainMasterPasswordEncrypt, Result);
  1784. Result = SetExternalEncryptedPassword(Result);
  1785. }
  1786. }
  1787. return Result;
  1788. }
  1789. //---------------------------------------------------------------------------
  1790. UnicodeString __fastcall TWinConfiguration::DecryptPassword(RawByteString Password, UnicodeString Key)
  1791. {
  1792. UnicodeString Result;
  1793. RawByteString Buf;
  1794. if (GetExternalEncryptedPassword(Password, Buf))
  1795. {
  1796. if (FDontDecryptPasswords == 0)
  1797. {
  1798. // As opposite to AskForMasterPasswordIfNotSet, we test here
  1799. // for decrypt password. This is important while recrypting password,
  1800. // when clearing master password, when encrypt password is already empty.
  1801. if (FPlainMasterPasswordDecrypt.IsEmpty())
  1802. {
  1803. AskForMasterPassword();
  1804. }
  1805. if (!AES256DecryptWithMAC(Buf, FPlainMasterPasswordDecrypt, Buf) ||
  1806. !UnscramblePassword(Buf, Result))
  1807. {
  1808. throw Exception(LoadStr(DECRYPT_PASSWORD_ERROR));
  1809. }
  1810. }
  1811. else
  1812. {
  1813. Abort();
  1814. }
  1815. }
  1816. else
  1817. {
  1818. Result = TCustomWinConfiguration::DecryptPassword(Password, Key);
  1819. }
  1820. return Result;
  1821. }
  1822. //---------------------------------------------------------------------------
  1823. void __fastcall TWinConfiguration::SetMasterPassword(UnicodeString value)
  1824. {
  1825. // just stores the plain-text version of the password
  1826. // we can get here even if master password is off,
  1827. // when we encounter stray encrypted password (e.g. manually imported site),
  1828. // make sure we do not set encrypt password to avoid starting encrypting
  1829. // new passwords
  1830. // (this is bit of edge case, not really well tested)
  1831. if (!FUseMasterPassword)
  1832. {
  1833. FPlainMasterPasswordDecrypt = value;
  1834. }
  1835. else if (DebugAlwaysTrue(FUseMasterPassword) &&
  1836. DebugAlwaysTrue(ValidateMasterPassword(value)))
  1837. {
  1838. FPlainMasterPasswordEncrypt = value;
  1839. FPlainMasterPasswordDecrypt = value;
  1840. }
  1841. }
  1842. //---------------------------------------------------------------------------
  1843. void __fastcall TWinConfiguration::ChangeMasterPassword(
  1844. UnicodeString value, TStrings * RecryptPasswordErrors)
  1845. {
  1846. RawByteString Verifier;
  1847. AES256CreateVerifier(value, Verifier);
  1848. FMasterPasswordVerifier = BytesToHex(Verifier);
  1849. FPlainMasterPasswordEncrypt = value;
  1850. FUseMasterPassword = true;
  1851. try
  1852. {
  1853. RecryptPasswords(RecryptPasswordErrors);
  1854. }
  1855. __finally
  1856. {
  1857. FPlainMasterPasswordDecrypt = value;
  1858. }
  1859. }
  1860. //---------------------------------------------------------------------------
  1861. bool __fastcall TWinConfiguration::ValidateMasterPassword(UnicodeString value)
  1862. {
  1863. DebugAssert(UseMasterPassword);
  1864. DebugAssert(!FMasterPasswordVerifier.IsEmpty());
  1865. bool Result = AES256Verify(value, HexToBytes(FMasterPasswordVerifier));
  1866. return Result;
  1867. }
  1868. //---------------------------------------------------------------------------
  1869. void __fastcall TWinConfiguration::ClearMasterPassword(TStrings * RecryptPasswordErrors)
  1870. {
  1871. FMasterPasswordVerifier = L"";
  1872. FUseMasterPassword = false;
  1873. Shred(FPlainMasterPasswordEncrypt);
  1874. try
  1875. {
  1876. RecryptPasswords(RecryptPasswordErrors);
  1877. }
  1878. __finally
  1879. {
  1880. Shred(FPlainMasterPasswordDecrypt);
  1881. }
  1882. }
  1883. //---------------------------------------------------------------------------
  1884. void __fastcall TWinConfiguration::AskForMasterPassword()
  1885. {
  1886. if (FMasterPasswordSession > 0)
  1887. {
  1888. if (FMasterPasswordSessionAsked)
  1889. {
  1890. Abort();
  1891. }
  1892. // set before call to OnMasterPasswordPrompt as it may abort
  1893. FMasterPasswordSessionAsked = true;
  1894. }
  1895. if (FOnMasterPasswordPrompt == NULL)
  1896. {
  1897. throw Exception(L"Master password handler not set");
  1898. }
  1899. else
  1900. {
  1901. FOnMasterPasswordPrompt();
  1902. DebugAssert(!FPlainMasterPasswordDecrypt.IsEmpty());
  1903. }
  1904. }
  1905. //---------------------------------------------------------------------------
  1906. void __fastcall TWinConfiguration::AskForMasterPasswordIfNotSet()
  1907. {
  1908. if (FPlainMasterPasswordEncrypt.IsEmpty())
  1909. {
  1910. AskForMasterPassword();
  1911. }
  1912. }
  1913. //---------------------------------------------------------------------------
  1914. void __fastcall TWinConfiguration::BeginMasterPasswordSession()
  1915. {
  1916. // We do not expect nesting
  1917. DebugAssert(FMasterPasswordSession == 0);
  1918. DebugAssert(!FMasterPasswordSessionAsked || (FMasterPasswordSession > 0));
  1919. // This should better be thread-specific
  1920. FMasterPasswordSession++;
  1921. }
  1922. //---------------------------------------------------------------------------
  1923. void __fastcall TWinConfiguration::EndMasterPasswordSession()
  1924. {
  1925. if (DebugAlwaysTrue(FMasterPasswordSession > 0))
  1926. {
  1927. FMasterPasswordSession--;
  1928. }
  1929. FMasterPasswordSessionAsked = false;
  1930. }
  1931. //---------------------------------------------------------------------------
  1932. void __fastcall TWinConfiguration::SetDDDisableMove(bool value)
  1933. {
  1934. SET_CONFIG_PROPERTY(DDDisableMove);
  1935. }
  1936. //---------------------------------------------------------------------------
  1937. void __fastcall TWinConfiguration::SetDDTransferConfirmation(TAutoSwitch value)
  1938. {
  1939. SET_CONFIG_PROPERTY(DDTransferConfirmation);
  1940. }
  1941. //---------------------------------------------------------------------------
  1942. void __fastcall TWinConfiguration::SetDDTemporaryDirectory(UnicodeString value)
  1943. {
  1944. SET_CONFIG_PROPERTY(DDTemporaryDirectory);
  1945. }
  1946. //---------------------------------------------------------------------------
  1947. void __fastcall TWinConfiguration::SetDDDrives(UnicodeString value)
  1948. {
  1949. SET_CONFIG_PROPERTY(DDDrives);
  1950. }
  1951. //---------------------------------------------------------------------------
  1952. void __fastcall TWinConfiguration::SetDDFakeFile(bool value)
  1953. {
  1954. SET_CONFIG_PROPERTY(DDFakeFile);
  1955. }
  1956. //---------------------------------------------------------------------------
  1957. void __fastcall TWinConfiguration::SetDDExtTimeout(int value)
  1958. {
  1959. SET_CONFIG_PROPERTY(DDExtTimeout);
  1960. }
  1961. //---------------------------------------------------------------------------
  1962. void __fastcall TWinConfiguration::SetDDWarnLackOfTempSpace(bool value)
  1963. {
  1964. SET_CONFIG_PROPERTY(DDWarnLackOfTempSpace);
  1965. }
  1966. //---------------------------------------------------------------------------
  1967. void __fastcall TWinConfiguration::SetDDWarnLackOfTempSpaceRatio(double value)
  1968. {
  1969. SET_CONFIG_PROPERTY(DDWarnLackOfTempSpaceRatio);
  1970. }
  1971. //---------------------------------------------------------------------------
  1972. void __fastcall TWinConfiguration::SetScpExplorer(TScpExplorerConfiguration value)
  1973. {
  1974. SET_CONFIG_PROPERTY(ScpExplorer);
  1975. }
  1976. //---------------------------------------------------------------------------
  1977. void __fastcall TWinConfiguration::SetScpCommander(TScpCommanderConfiguration value)
  1978. {
  1979. SET_CONFIG_PROPERTY(ScpCommander);
  1980. }
  1981. //---------------------------------------------------------------------------
  1982. void __fastcall TWinConfiguration::SetEditor(TEditorConfiguration value)
  1983. {
  1984. SET_CONFIG_PROPERTY(Editor);
  1985. }
  1986. //---------------------------------------------------------------------------
  1987. void __fastcall TWinConfiguration::SetQueueView(TQueueViewConfiguration value)
  1988. {
  1989. SET_CONFIG_PROPERTY(QueueView);
  1990. }
  1991. //---------------------------------------------------------------------------
  1992. void __fastcall TWinConfiguration::SetEnableQueueByDefault(bool value)
  1993. {
  1994. SET_CONFIG_PROPERTY(EnableQueueByDefault);
  1995. }
  1996. //---------------------------------------------------------------------------
  1997. TUpdatesConfiguration __fastcall TWinConfiguration::GetUpdates()
  1998. {
  1999. TUpdatesConfiguration Result;
  2000. {
  2001. TGuard Guard(FCriticalSection);
  2002. Result = FUpdates;
  2003. }
  2004. return Result;
  2005. }
  2006. //---------------------------------------------------------------------------
  2007. void __fastcall TWinConfiguration::SetUpdates(TUpdatesConfiguration value)
  2008. {
  2009. TGuard Guard(FCriticalSection);
  2010. // do not use SET_CONFIG_PROPERTY to avoid OnChange handler call (not synchronized)
  2011. FUpdates = value;
  2012. }
  2013. //---------------------------------------------------------------------------
  2014. void __fastcall TWinConfiguration::SetVersionHistory(UnicodeString value)
  2015. {
  2016. SET_CONFIG_PROPERTY(VersionHistory);
  2017. }
  2018. //---------------------------------------------------------------------------
  2019. void __fastcall TWinConfiguration::SetDeleteToRecycleBin(bool value)
  2020. {
  2021. SET_CONFIG_PROPERTY(DeleteToRecycleBin);
  2022. }
  2023. //---------------------------------------------------------------------------
  2024. void __fastcall TWinConfiguration::SetSelectDirectories(bool value)
  2025. {
  2026. SET_CONFIG_PROPERTY(SelectDirectories);
  2027. }
  2028. //---------------------------------------------------------------------------
  2029. void __fastcall TWinConfiguration::SetShowHiddenFiles(bool value)
  2030. {
  2031. SET_CONFIG_PROPERTY(ShowHiddenFiles);
  2032. }
  2033. //---------------------------------------------------------------------------
  2034. void __fastcall TWinConfiguration::SetFormatSizeBytes(TFormatBytesStyle value)
  2035. {
  2036. SET_CONFIG_PROPERTY(FormatSizeBytes);
  2037. }
  2038. //---------------------------------------------------------------------------
  2039. void __fastcall TWinConfiguration::SetPanelSearch(TIncrementalSearch value)
  2040. {
  2041. SET_CONFIG_PROPERTY(PanelSearch);
  2042. }
  2043. //---------------------------------------------------------------------------
  2044. void __fastcall TWinConfiguration::SetShowInaccesibleDirectories(bool value)
  2045. {
  2046. SET_CONFIG_PROPERTY(ShowInaccesibleDirectories);
  2047. }
  2048. //---------------------------------------------------------------------------
  2049. void __fastcall TWinConfiguration::SetConfirmTransferring(bool value)
  2050. {
  2051. SET_CONFIG_PROPERTY(ConfirmTransferring);
  2052. }
  2053. //---------------------------------------------------------------------------
  2054. void __fastcall TWinConfiguration::SetConfirmDeleting(bool value)
  2055. {
  2056. SET_CONFIG_PROPERTY(ConfirmDeleting);
  2057. }
  2058. //---------------------------------------------------------------------------
  2059. void __fastcall TWinConfiguration::SetConfirmRecycling(bool value)
  2060. {
  2061. SET_CONFIG_PROPERTY(ConfirmRecycling);
  2062. }
  2063. //---------------------------------------------------------------------------
  2064. void __fastcall TWinConfiguration::SetUseLocationProfiles(bool value)
  2065. {
  2066. SET_CONFIG_PROPERTY(UseLocationProfiles);
  2067. }
  2068. //---------------------------------------------------------------------------
  2069. void __fastcall TWinConfiguration::SetUseSharedBookmarks(bool value)
  2070. {
  2071. SET_CONFIG_PROPERTY(UseSharedBookmarks);
  2072. }
  2073. //---------------------------------------------------------------------------
  2074. void __fastcall TWinConfiguration::SetConfirmClosingSession(bool value)
  2075. {
  2076. SET_CONFIG_PROPERTY(ConfirmClosingSession);
  2077. }
  2078. //---------------------------------------------------------------------------
  2079. void __fastcall TWinConfiguration::SetDoubleClickAction(TDoubleClickAction value)
  2080. {
  2081. SET_CONFIG_PROPERTY(DoubleClickAction);
  2082. }
  2083. //---------------------------------------------------------------------------
  2084. void __fastcall TWinConfiguration::SetCopyOnDoubleClickConfirmation(bool value)
  2085. {
  2086. SET_CONFIG_PROPERTY(CopyOnDoubleClickConfirmation);
  2087. }
  2088. //---------------------------------------------------------------------------
  2089. void __fastcall TWinConfiguration::SetAlwaysRespectDoubleClickAction(bool value)
  2090. {
  2091. SET_CONFIG_PROPERTY(AlwaysRespectDoubleClickAction);
  2092. }
  2093. //---------------------------------------------------------------------------
  2094. void __fastcall TWinConfiguration::SetDimmHiddenFiles(bool value)
  2095. {
  2096. SET_CONFIG_PROPERTY(DimmHiddenFiles);
  2097. }
  2098. //---------------------------------------------------------------------------
  2099. void __fastcall TWinConfiguration::SetRenameWholeName(bool value)
  2100. {
  2101. SET_CONFIG_PROPERTY(RenameWholeName);
  2102. }
  2103. //---------------------------------------------------------------------------
  2104. void __fastcall TWinConfiguration::SetAutoStartSession(UnicodeString value)
  2105. {
  2106. SET_CONFIG_PROPERTY(AutoStartSession);
  2107. }
  2108. //---------------------------------------------------------------------------
  2109. void __fastcall TWinConfiguration::SetExpertMode(bool value)
  2110. {
  2111. SET_CONFIG_PROPERTY(ExpertMode);
  2112. }
  2113. //---------------------------------------------------------------------------
  2114. void __fastcall TWinConfiguration::SetDefaultDirIsHome(bool value)
  2115. {
  2116. SET_CONFIG_PROPERTY(DefaultDirIsHome);
  2117. }
  2118. //---------------------------------------------------------------------------
  2119. void __fastcall TWinConfiguration::SetTemporaryDirectoryAppendSession(bool value)
  2120. {
  2121. SET_CONFIG_PROPERTY(TemporaryDirectoryAppendSession);
  2122. }
  2123. //---------------------------------------------------------------------------
  2124. void __fastcall TWinConfiguration::SetTemporaryDirectoryAppendPath(bool value)
  2125. {
  2126. SET_CONFIG_PROPERTY(TemporaryDirectoryAppendPath);
  2127. }
  2128. //---------------------------------------------------------------------------
  2129. void __fastcall TWinConfiguration::SetTemporaryDirectoryDeterministic(bool value)
  2130. {
  2131. SET_CONFIG_PROPERTY(TemporaryDirectoryDeterministic);
  2132. }
  2133. //---------------------------------------------------------------------------
  2134. void __fastcall TWinConfiguration::SetTemporaryDirectoryCleanup(bool value)
  2135. {
  2136. SET_CONFIG_PROPERTY(TemporaryDirectoryCleanup);
  2137. }
  2138. //---------------------------------------------------------------------------
  2139. void __fastcall TWinConfiguration::SetConfirmTemporaryDirectoryCleanup(bool value)
  2140. {
  2141. SET_CONFIG_PROPERTY(ConfirmTemporaryDirectoryCleanup);
  2142. }
  2143. //---------------------------------------------------------------------------
  2144. void __fastcall TWinConfiguration::SetPreservePanelState(bool value)
  2145. {
  2146. SET_CONFIG_PROPERTY(PreservePanelState);
  2147. }
  2148. //---------------------------------------------------------------------------
  2149. void __fastcall TWinConfiguration::SetDarkTheme(TAutoSwitch value)
  2150. {
  2151. SET_CONFIG_PROPERTY_EX(DarkTheme, ConfigureInterface());
  2152. }
  2153. //---------------------------------------------------------------------------
  2154. static int __fastcall SysDarkTheme(HKEY RootKey)
  2155. {
  2156. std::unique_ptr<TRegistry> Registry(new TRegistry());
  2157. Registry->RootKey = RootKey;
  2158. UnicodeString ThemesPersonalizeKey = L"Software\\Microsoft\\Windows\\CurrentVersion\\Themes\\Personalize";
  2159. UnicodeString AppsUseLightThemeValue = L"AppsUseLightTheme";
  2160. int Result = -1;
  2161. if (Registry->OpenKeyReadOnly(ThemesPersonalizeKey) &&
  2162. Registry->ValueExists(AppsUseLightThemeValue))
  2163. {
  2164. Result = Registry->ReadBool(AppsUseLightThemeValue) ? 0 : 1;
  2165. }
  2166. return Result;
  2167. }
  2168. //---------------------------------------------------------------------------
  2169. bool __fastcall TWinConfiguration::UseDarkTheme()
  2170. {
  2171. switch (WinConfiguration->DarkTheme)
  2172. {
  2173. case asOn:
  2174. return true;
  2175. case asOff:
  2176. return false;
  2177. default:
  2178. return (GetSysDarkTheme() > 0);
  2179. }
  2180. }
  2181. //---------------------------------------------------------------------------
  2182. void __fastcall TWinConfiguration::SetLastStoredSession(UnicodeString value)
  2183. {
  2184. SET_CONFIG_PROPERTY(LastStoredSession);
  2185. }
  2186. //---------------------------------------------------------------------------
  2187. void __fastcall TWinConfiguration::SetAutoSaveWorkspace(bool value)
  2188. {
  2189. SET_CONFIG_PROPERTY(AutoSaveWorkspace);
  2190. }
  2191. //---------------------------------------------------------------------------
  2192. void __fastcall TWinConfiguration::SetAutoSaveWorkspacePasswords(bool value)
  2193. {
  2194. SET_CONFIG_PROPERTY(AutoSaveWorkspacePasswords);
  2195. }
  2196. //---------------------------------------------------------------------------
  2197. void __fastcall TWinConfiguration::SetAutoWorkspace(UnicodeString value)
  2198. {
  2199. SET_CONFIG_PROPERTY(AutoWorkspace);
  2200. }
  2201. //---------------------------------------------------------------------------
  2202. void __fastcall TWinConfiguration::SetPathInCaption(TPathInCaption value)
  2203. {
  2204. SET_CONFIG_PROPERTY(PathInCaption);
  2205. }
  2206. //---------------------------------------------------------------------------
  2207. void __fastcall TWinConfiguration::SetMinimizeToTray(bool value)
  2208. {
  2209. SET_CONFIG_PROPERTY(MinimizeToTray);
  2210. }
  2211. //---------------------------------------------------------------------------
  2212. void __fastcall TWinConfiguration::SetBalloonNotifications(bool value)
  2213. {
  2214. SET_CONFIG_PROPERTY(BalloonNotifications);
  2215. }
  2216. //---------------------------------------------------------------------------
  2217. void __fastcall TWinConfiguration::SetNotificationsTimeout(unsigned int value)
  2218. {
  2219. SET_CONFIG_PROPERTY(NotificationsTimeout);
  2220. }
  2221. //---------------------------------------------------------------------------
  2222. void __fastcall TWinConfiguration::SetNotificationsStickTime(unsigned int value)
  2223. {
  2224. SET_CONFIG_PROPERTY(NotificationsStickTime);
  2225. }
  2226. //---------------------------------------------------------------------------
  2227. void __fastcall TWinConfiguration::SetCopyParamAutoSelectNotice(bool value)
  2228. {
  2229. SET_CONFIG_PROPERTY(CopyParamAutoSelectNotice);
  2230. }
  2231. //---------------------------------------------------------------------------
  2232. void __fastcall TWinConfiguration::SetLockToolbars(bool value)
  2233. {
  2234. SET_CONFIG_PROPERTY(LockToolbars);
  2235. }
  2236. //---------------------------------------------------------------------------
  2237. void __fastcall TWinConfiguration::SetSelectiveToolbarText(bool value)
  2238. {
  2239. SET_CONFIG_PROPERTY(SelectiveToolbarText);
  2240. }
  2241. //---------------------------------------------------------------------------
  2242. void __fastcall TWinConfiguration::SetAutoOpenInPutty(bool value)
  2243. {
  2244. SET_CONFIG_PROPERTY(AutoOpenInPutty);
  2245. }
  2246. //---------------------------------------------------------------------------
  2247. void __fastcall TWinConfiguration::SetRefreshRemotePanel(bool value)
  2248. {
  2249. SET_CONFIG_PROPERTY(RefreshRemotePanel);
  2250. }
  2251. //---------------------------------------------------------------------------
  2252. void __fastcall TWinConfiguration::SetRefreshRemotePanelInterval(TDateTime value)
  2253. {
  2254. SET_CONFIG_PROPERTY(RefreshRemotePanelInterval);
  2255. }
  2256. //---------------------------------------------------------------------------
  2257. void __fastcall TWinConfiguration::UpdateIconFont()
  2258. {
  2259. UpdateDesktopFont();
  2260. }
  2261. //---------------------------------------------------------------------------
  2262. void __fastcall TWinConfiguration::SetPanelFont(const TFontConfiguration & value)
  2263. {
  2264. SET_CONFIG_PROPERTY_EX(PanelFont, UpdateIconFont());
  2265. }
  2266. //---------------------------------------------------------------------------
  2267. void __fastcall TWinConfiguration::SetNaturalOrderNumericalSorting(bool value)
  2268. {
  2269. SET_CONFIG_PROPERTY(NaturalOrderNumericalSorting);
  2270. }
  2271. //---------------------------------------------------------------------------
  2272. void __fastcall TWinConfiguration::SetAlwaysSortDirectoriesByName(bool value)
  2273. {
  2274. SET_CONFIG_PROPERTY(AlwaysSortDirectoriesByName);
  2275. }
  2276. //---------------------------------------------------------------------------
  2277. void __fastcall TWinConfiguration::SetFullRowSelect(bool value)
  2278. {
  2279. SET_CONFIG_PROPERTY(FullRowSelect);
  2280. }
  2281. //---------------------------------------------------------------------------
  2282. void __fastcall TWinConfiguration::SetOfferedEditorAutoConfig(bool value)
  2283. {
  2284. SET_CONFIG_PROPERTY(OfferedEditorAutoConfig);
  2285. }
  2286. //---------------------------------------------------------------------------
  2287. void __fastcall TWinConfiguration::SetOpenedStoredSessionFolders(UnicodeString value)
  2288. {
  2289. SET_CONFIG_PROPERTY(OpenedStoredSessionFolders);
  2290. }
  2291. //---------------------------------------------------------------------------
  2292. void __fastcall TWinConfiguration::SetAutoImportedFromPuttyOrFilezilla(bool value)
  2293. {
  2294. SET_CONFIG_PROPERTY(AutoImportedFromPuttyOrFilezilla);
  2295. }
  2296. //---------------------------------------------------------------------------
  2297. void __fastcall TWinConfiguration::SetGenerateUrlComponents(int value)
  2298. {
  2299. SET_CONFIG_PROPERTY(GenerateUrlComponents);
  2300. }
  2301. //---------------------------------------------------------------------------
  2302. void __fastcall TWinConfiguration::SetGenerateUrlCodeTarget(TGenerateUrlCodeTarget value)
  2303. {
  2304. SET_CONFIG_PROPERTY(GenerateUrlCodeTarget);
  2305. }
  2306. //---------------------------------------------------------------------------
  2307. void __fastcall TWinConfiguration::SetGenerateUrlScriptFormat(TScriptFormat value)
  2308. {
  2309. SET_CONFIG_PROPERTY(GenerateUrlScriptFormat);
  2310. }
  2311. //---------------------------------------------------------------------------
  2312. void __fastcall TWinConfiguration::SetGenerateUrlAssemblyLanguage(TAssemblyLanguage value)
  2313. {
  2314. SET_CONFIG_PROPERTY(GenerateUrlAssemblyLanguage);
  2315. }
  2316. //---------------------------------------------------------------------------
  2317. void __fastcall TWinConfiguration::SetExternalSessionInExistingInstance(bool value)
  2318. {
  2319. SET_CONFIG_PROPERTY(ExternalSessionInExistingInstance);
  2320. }
  2321. //---------------------------------------------------------------------------
  2322. void __fastcall TWinConfiguration::SetShowLoginWhenNoSession(bool value)
  2323. {
  2324. SET_CONFIG_PROPERTY(ShowLoginWhenNoSession);
  2325. }
  2326. //---------------------------------------------------------------------------
  2327. void __fastcall TWinConfiguration::SetKeepOpenWhenNoSession(bool value)
  2328. {
  2329. SET_CONFIG_PROPERTY(KeepOpenWhenNoSession);
  2330. }
  2331. //---------------------------------------------------------------------------
  2332. void __fastcall TWinConfiguration::SetDefaultToNewRemoteTab(bool value)
  2333. {
  2334. SET_CONFIG_PROPERTY(DefaultToNewRemoteTab);
  2335. }
  2336. //---------------------------------------------------------------------------
  2337. void __fastcall TWinConfiguration::SetLocalIconsByExt(bool value)
  2338. {
  2339. SET_CONFIG_PROPERTY(LocalIconsByExt);
  2340. }
  2341. //---------------------------------------------------------------------------
  2342. void __fastcall TWinConfiguration::SetFlashTaskbar(bool value)
  2343. {
  2344. SET_CONFIG_PROPERTY(FlashTaskbar);
  2345. }
  2346. //---------------------------------------------------------------------------
  2347. void __fastcall TWinConfiguration::SetBidiModeOverride(TLocaleFlagOverride value)
  2348. {
  2349. SET_CONFIG_PROPERTY(BidiModeOverride);
  2350. }
  2351. //---------------------------------------------------------------------------
  2352. void __fastcall TWinConfiguration::SetFlipChildrenOverride(TLocaleFlagOverride value)
  2353. {
  2354. SET_CONFIG_PROPERTY(FlipChildrenOverride);
  2355. }
  2356. //---------------------------------------------------------------------------
  2357. void __fastcall TWinConfiguration::SetShowTips(bool value)
  2358. {
  2359. SET_CONFIG_PROPERTY(ShowTips);
  2360. }
  2361. //---------------------------------------------------------------------------
  2362. void __fastcall TWinConfiguration::SetTipsSeen(UnicodeString value)
  2363. {
  2364. SET_CONFIG_PROPERTY(TipsSeen);
  2365. }
  2366. //---------------------------------------------------------------------------
  2367. void __fastcall TWinConfiguration::SetTipsShown(TDateTime value)
  2368. {
  2369. SET_CONFIG_PROPERTY(TipsShown);
  2370. }
  2371. //---------------------------------------------------------------------------
  2372. void __fastcall TWinConfiguration::SetFileColors(UnicodeString value)
  2373. {
  2374. SET_CONFIG_PROPERTY(FileColors);
  2375. }
  2376. //---------------------------------------------------------------------------
  2377. void __fastcall TWinConfiguration::SetRunsSinceLastTip(int value)
  2378. {
  2379. SET_CONFIG_PROPERTY(RunsSinceLastTip);
  2380. }
  2381. //---------------------------------------------------------------------------
  2382. bool __fastcall TWinConfiguration::GetHonorDrivePolicy()
  2383. {
  2384. return DriveInfo->HonorDrivePolicy;
  2385. }
  2386. //---------------------------------------------------------------------------
  2387. void __fastcall TWinConfiguration::SetHonorDrivePolicy(bool value)
  2388. {
  2389. if (HonorDrivePolicy != value)
  2390. {
  2391. DriveInfo->HonorDrivePolicy = value;
  2392. Changed();
  2393. }
  2394. }
  2395. //---------------------------------------------------------------------------
  2396. bool __fastcall TWinConfiguration::GetUseABDrives()
  2397. {
  2398. return DriveInfo->UseABDrives;
  2399. }
  2400. //---------------------------------------------------------------------------
  2401. void __fastcall TWinConfiguration::SetUseABDrives(bool value)
  2402. {
  2403. if (UseABDrives != value)
  2404. {
  2405. DriveInfo->UseABDrives = value;
  2406. Changed();
  2407. }
  2408. }
  2409. //---------------------------------------------------------------------------
  2410. void __fastcall TWinConfiguration::SetCustomCommandList(TCustomCommandList * value)
  2411. {
  2412. DebugAssert(FCustomCommandList);
  2413. if (!FCustomCommandList->Equals(value))
  2414. {
  2415. FCustomCommandList->Assign(value);
  2416. FCustomCommandsDefaults = false;
  2417. }
  2418. }
  2419. //---------------------------------------------------------------------------
  2420. void __fastcall TWinConfiguration::SetExtensionList(TCustomCommandList * value)
  2421. {
  2422. if (!ExtensionList->Equals(value))
  2423. {
  2424. std::unique_ptr<TStringList> DeletedExtensions(CreateSortedStringList());
  2425. ParseExtensionList(DeletedExtensions.get(), FExtensionsDeleted);
  2426. for (int Index = 0; Index < ExtensionList->Count; Index++)
  2427. {
  2428. const TCustomCommandType * CustomCommand = ExtensionList->Commands[Index];
  2429. int Index = value->FindIndexByFileName(CustomCommand->FileName);
  2430. if (Index < 0)
  2431. {
  2432. if (FileExists(CustomCommand->FileName) &&
  2433. !DeleteFile(CustomCommand->FileName))
  2434. {
  2435. DeletedExtensions->Add(CustomCommand->Id);
  2436. }
  2437. }
  2438. }
  2439. FExtensionsOrder = L"";
  2440. for (int Index = 0; Index < value->Count; Index++)
  2441. {
  2442. const TCustomCommandType * CustomCommand = value->Commands[Index];
  2443. AddToList(FExtensionsOrder, CustomCommand->Id, L"|");
  2444. int DeletedIndex = DeletedExtensions->IndexOf(CustomCommand->Id);
  2445. if (DeletedIndex >= 0)
  2446. {
  2447. DeletedExtensions->Delete(DeletedIndex);
  2448. }
  2449. }
  2450. FExtensionList->Assign(value);
  2451. FExtensionsDeleted = L"";
  2452. for (int Index = 0; Index < DeletedExtensions->Count; Index++)
  2453. {
  2454. AddToList(FExtensionsDeleted, DeletedExtensions->Strings[Index], L"|");
  2455. }
  2456. FExtensionsShortCuts = L"";
  2457. for (int Index = 0; Index < value->Count; Index++)
  2458. {
  2459. const TCustomCommandType * Extension = value->Commands[Index];
  2460. if (Extension->HasCustomShortCut())
  2461. {
  2462. AddToList(FExtensionsShortCuts, FORMAT(L"%d=%s", (Extension->ShortCut, Extension->Id)), L"|");
  2463. }
  2464. }
  2465. Changed();
  2466. }
  2467. }
  2468. //---------------------------------------------------------------------------
  2469. void __fastcall TWinConfiguration::CustomCommandShortCuts(TShortCuts & ShortCuts) const
  2470. {
  2471. CustomCommandList->ShortCuts(ShortCuts);
  2472. ExtensionList->ShortCuts(ShortCuts);
  2473. }
  2474. //---------------------------------------------------------------------------
  2475. void __fastcall TWinConfiguration::SetBookmarks(UnicodeString Key,
  2476. TBookmarkList * value)
  2477. {
  2478. FBookmarks->Bookmarks[Key] = value;
  2479. Changed();
  2480. }
  2481. //---------------------------------------------------------------------------
  2482. TBookmarkList * __fastcall TWinConfiguration::GetBookmarks(UnicodeString Key)
  2483. {
  2484. return FBookmarks->Bookmarks[Key];
  2485. }
  2486. //---------------------------------------------------------------------------
  2487. void __fastcall TWinConfiguration::SetSharedBookmarks(TBookmarkList * value)
  2488. {
  2489. FBookmarks->SharedBookmarks = value;
  2490. Changed();
  2491. }
  2492. //---------------------------------------------------------------------------
  2493. TBookmarkList * __fastcall TWinConfiguration::GetSharedBookmarks()
  2494. {
  2495. return FBookmarks->SharedBookmarks;
  2496. }
  2497. //---------------------------------------------------------------------------
  2498. UnicodeString __fastcall TWinConfiguration::GetDefaultKeyFile()
  2499. {
  2500. return (!FDefaultKeyFile.IsEmpty() ? FDefaultKeyFile : FTemporaryKeyFile);
  2501. }
  2502. //---------------------------------------------------------------------------
  2503. void __fastcall TWinConfiguration::SetLastMonitor(int value)
  2504. {
  2505. ::SetLastMonitor(value);
  2506. }
  2507. //---------------------------------------------------------------------------
  2508. int __fastcall TWinConfiguration::GetLastMonitor()
  2509. {
  2510. return ::GetLastMonitor();
  2511. }
  2512. //---------------------------------------------------------------------------
  2513. UnicodeString __fastcall TWinConfiguration::ExpandedTemporaryDirectory()
  2514. {
  2515. UnicodeString Result =
  2516. ExpandFileName(ExpandEnvironmentVariables(DDTemporaryDirectory));
  2517. if (Result.IsEmpty())
  2518. {
  2519. Result = SystemTemporaryDirectory();
  2520. }
  2521. return Result;
  2522. }
  2523. //---------------------------------------------------------------------------
  2524. UnicodeString TWinConfiguration::TemporaryDir(bool Mask)
  2525. {
  2526. return UniqTempDir(ExpandedTemporaryDirectory(), L"scp", Mask);
  2527. }
  2528. //---------------------------------------------------------------------------
  2529. TStrings * __fastcall TWinConfiguration::DoFindTemporaryFolders(bool OnlyFirst)
  2530. {
  2531. std::unique_ptr<TStrings> Result(new TStringList());
  2532. TSearchRecOwned SRec;
  2533. UnicodeString Mask = TemporaryDir(true);
  2534. if (FindFirstUnchecked(Mask, faDirectory | faHidden, SRec) == 0)
  2535. {
  2536. do
  2537. {
  2538. if (SRec.IsDirectory())
  2539. {
  2540. Result->Add(SRec.GetFilePath());
  2541. }
  2542. }
  2543. while ((FindNextChecked(SRec) == 0) && (!OnlyFirst || Result->Count == 0));
  2544. }
  2545. if (Result->Count == 0)
  2546. {
  2547. Result.reset(NULL);
  2548. }
  2549. return Result.release();
  2550. }
  2551. //---------------------------------------------------------------------------
  2552. TStrings * __fastcall TWinConfiguration::FindTemporaryFolders()
  2553. {
  2554. return DoFindTemporaryFolders(false);
  2555. }
  2556. //---------------------------------------------------------------------------
  2557. bool __fastcall TWinConfiguration::AnyTemporaryFolders()
  2558. {
  2559. std::unique_ptr<TStrings> Folders(DoFindTemporaryFolders(true));
  2560. return (Folders.get() != NULL);
  2561. }
  2562. //---------------------------------------------------------------------------
  2563. void __fastcall TWinConfiguration::CleanupTemporaryFolders()
  2564. {
  2565. std::unique_ptr<TStrings> Folders(FindTemporaryFolders());
  2566. if (Folders.get() != NULL)
  2567. {
  2568. CleanupTemporaryFolders(Folders.get());
  2569. }
  2570. }
  2571. //---------------------------------------------------------------------------
  2572. void __fastcall TWinConfiguration::CleanupTemporaryFolders(TStrings * Folders)
  2573. {
  2574. if (DebugAlwaysTrue(Folders->Count > 0))
  2575. {
  2576. Usage->Inc(L"TemporaryDirectoryCleanups");
  2577. }
  2578. UnicodeString ErrorList;
  2579. for (int i = 0; i < Folders->Count; i++)
  2580. {
  2581. if (!RecursiveDeleteFile(Folders->Strings[i]))
  2582. {
  2583. if (!ErrorList.IsEmpty())
  2584. {
  2585. ErrorList += L"\n";
  2586. }
  2587. ErrorList += Folders->Strings[i];
  2588. }
  2589. }
  2590. if (!ErrorList.IsEmpty())
  2591. {
  2592. throw ExtException(LoadStr(CLEANUP_TEMP_ERROR), ErrorList);
  2593. }
  2594. }
  2595. //---------------------------------------------------------------------------
  2596. int __fastcall TWinConfiguration::GetResourceModuleCompleteness(HINSTANCE Module)
  2597. {
  2598. UnicodeString CompletenessStr = LoadStrFrom(Module, TRANSLATION_COMPLETENESS);
  2599. return StrToIntDef(CompletenessStr, -1);
  2600. }
  2601. //---------------------------------------------------------------------------
  2602. int __fastcall TWinConfiguration::GetLocaleCompletenessTreshold()
  2603. {
  2604. return 80;
  2605. }
  2606. //---------------------------------------------------------------------------
  2607. bool __fastcall TWinConfiguration::IsTranslationComplete(HINSTANCE Module)
  2608. {
  2609. return (GetResourceModuleCompleteness(Module) >= LocaleCompletenessTreshold);
  2610. }
  2611. //---------------------------------------------------------------------------
  2612. HINSTANCE __fastcall TWinConfiguration::LoadNewResourceModule(LCID ALocale,
  2613. UnicodeString & FileName)
  2614. {
  2615. HINSTANCE Instance = TCustomWinConfiguration::LoadNewResourceModule(ALocale, FileName);
  2616. if (Instance != NULL)
  2617. {
  2618. try
  2619. {
  2620. CheckTranslationVersion(FileName, false);
  2621. }
  2622. catch(...)
  2623. {
  2624. FreeResourceModule(Instance);
  2625. throw;
  2626. }
  2627. }
  2628. return Instance;
  2629. }
  2630. //---------------------------------------------------------------------------
  2631. void __fastcall TWinConfiguration::CheckTranslationVersion(const UnicodeString FileName,
  2632. bool InternalLocaleOnError)
  2633. {
  2634. UnicodeString TranslationProductVersion = GetFileProductVersion(FileName);
  2635. UnicodeString TranslationProductName = GetFileProductName(FileName);
  2636. if ((ProductName != TranslationProductName) ||
  2637. (ProductVersion != TranslationProductVersion))
  2638. {
  2639. if (InternalLocaleOnError)
  2640. {
  2641. LocaleSafe = InternalLocale();
  2642. }
  2643. if (TranslationProductName.IsEmpty() || TranslationProductVersion.IsEmpty())
  2644. {
  2645. throw Exception(FMTLOAD(UNKNOWN_TRANSLATION, (FileName)));
  2646. }
  2647. else
  2648. {
  2649. throw Exception(FMTLOAD(INCOMPATIBLE_TRANSLATION,
  2650. (FileName, TranslationProductName, TranslationProductVersion)));
  2651. }
  2652. }
  2653. }
  2654. //---------------------------------------------------------------------------
  2655. void __fastcall TWinConfiguration::CheckDefaultTranslation()
  2656. {
  2657. if (!FInvalidDefaultTranslationMessage.IsEmpty())
  2658. {
  2659. MoreMessageDialog(FMTLOAD(INVALID_DEFAULT_TRANSLATION,
  2660. (FInvalidDefaultTranslationMessage)), NULL, qtWarning, qaOK, HELP_NONE);
  2661. }
  2662. }
  2663. //---------------------------------------------------------------------------
  2664. const TEditorPreferences * __fastcall TWinConfiguration::DefaultEditorForFile(
  2665. const UnicodeString FileName, bool Local, const TFileMasks::TParams & MaskParams)
  2666. {
  2667. return FEditorList->Find(FileName, Local, MaskParams);
  2668. }
  2669. //---------------------------------------------------------------------------
  2670. const TEditorList * __fastcall TWinConfiguration::GetEditorList()
  2671. {
  2672. return FEditorList;
  2673. }
  2674. //---------------------------------------------------------------------------
  2675. void __fastcall TWinConfiguration::SetEditorList(const TEditorList * value)
  2676. {
  2677. if (!(*FEditorList == *value))
  2678. {
  2679. *FEditorList = *value;
  2680. Changed();
  2681. }
  2682. }
  2683. //---------------------------------------------------------------------------
  2684. TStrings * __fastcall TWinConfiguration::GetCustomCommandOptions()
  2685. {
  2686. return FCustomCommandOptions.get();
  2687. }
  2688. //---------------------------------------------------------------------------
  2689. void __fastcall TWinConfiguration::SetCustomCommandOptions(TStrings * value)
  2690. {
  2691. if (!FCustomCommandOptions->Equals(value))
  2692. {
  2693. FCustomCommandOptions->Assign(value);
  2694. FCustomCommandOptionsModified = true;
  2695. }
  2696. }
  2697. //---------------------------------------------------------------------------
  2698. void __fastcall TWinConfiguration::SetLockedInterface(bool value)
  2699. {
  2700. SET_CONFIG_PROPERTY(LockedInterface);
  2701. }
  2702. //---------------------------------------------------------------------------
  2703. bool __fastcall TWinConfiguration::GetTimeoutShellOperations()
  2704. {
  2705. return ::TimeoutShellOperations;
  2706. }
  2707. //---------------------------------------------------------------------------
  2708. void __fastcall TWinConfiguration::SetTimeoutShellOperations(bool value)
  2709. {
  2710. ::TimeoutShellOperations = value;
  2711. }
  2712. //---------------------------------------------------------------------------
  2713. void __fastcall TWinConfiguration::SetTimeoutShellIconRetrieval(bool value)
  2714. {
  2715. SET_CONFIG_PROPERTY(TimeoutShellIconRetrieval);
  2716. }
  2717. //---------------------------------------------------------------------------
  2718. void __fastcall TWinConfiguration::SetUseIconUpdateThread(bool value)
  2719. {
  2720. SET_CONFIG_PROPERTY(UseIconUpdateThread);
  2721. }
  2722. //---------------------------------------------------------------------------
  2723. void __fastcall TWinConfiguration::SetAllowWindowPrint(bool value)
  2724. {
  2725. SET_CONFIG_PROPERTY(AllowWindowPrint);
  2726. }
  2727. //---------------------------------------------------------------------------
  2728. void TWinConfiguration::SetStoreTransition(TStoreTransition value)
  2729. {
  2730. SET_CONFIG_PROPERTY(StoreTransition);
  2731. }
  2732. //---------------------------------------------------------------------------
  2733. void TWinConfiguration::SetQueueTransferLimitMax(int value)
  2734. {
  2735. SET_CONFIG_PROPERTY(QueueTransferLimitMax);
  2736. }
  2737. //---------------------------------------------------------------------------
  2738. void TWinConfiguration::SetHiContrast(bool value)
  2739. {
  2740. SET_CONFIG_PROPERTY(HiContrast);
  2741. }
  2742. //---------------------------------------------------------------------------
  2743. void TWinConfiguration::SetEditorCheckNotModified(bool value)
  2744. {
  2745. SET_CONFIG_PROPERTY(EditorCheckNotModified);
  2746. }
  2747. //---------------------------------------------------------------------------
  2748. void TWinConfiguration::SetSessionTabCaptionTruncation(bool value)
  2749. {
  2750. SET_CONFIG_PROPERTY(SessionTabCaptionTruncation);
  2751. }
  2752. //---------------------------------------------------------------------------
  2753. void TWinConfiguration::SetLoadingTooLongLimit(int value)
  2754. {
  2755. DriveViewLoadingTooLongLimit = value;
  2756. }
  2757. //---------------------------------------------------------------------------
  2758. int TWinConfiguration::GetLoadingTooLongLimit()
  2759. {
  2760. return DriveViewLoadingTooLongLimit;
  2761. }
  2762. //---------------------------------------------------------------------------
  2763. void TWinConfiguration::SetFirstRun(const UnicodeString & value)
  2764. {
  2765. SET_CONFIG_PROPERTY(FirstRun);
  2766. }
  2767. //---------------------------------------------------------------------------
  2768. TStringList * __fastcall TWinConfiguration::LoadJumpList(
  2769. THierarchicalStorage * Storage, UnicodeString Name)
  2770. {
  2771. UnicodeString JumpList = Storage->ReadString(Name, L"");
  2772. std::unique_ptr<TStringList> List(new TStringList());
  2773. List->CaseSensitive = false;
  2774. List->CommaText = JumpList;
  2775. return List.release();
  2776. }
  2777. //---------------------------------------------------------------------------
  2778. void __fastcall TWinConfiguration::SaveJumpList(
  2779. THierarchicalStorage * Storage, UnicodeString Name, TStringList * List)
  2780. {
  2781. UnicodeString JumpList = Storage->ReadString(Name, L"");
  2782. UnicodeString NewJumpList = List->CommaText;
  2783. if (NewJumpList != JumpList)
  2784. {
  2785. Storage->WriteString(Name, NewJumpList);
  2786. }
  2787. }
  2788. //---------------------------------------------------------------------------
  2789. void __fastcall TWinConfiguration::TrimJumpList(TStringList * List)
  2790. {
  2791. while (List->Count > 30)
  2792. {
  2793. List->Delete(List->Count - 1);
  2794. }
  2795. }
  2796. //---------------------------------------------------------------------------
  2797. void __fastcall TWinConfiguration::UpdateEntryInJumpList(
  2798. bool Session, const UnicodeString & Name, bool Add)
  2799. {
  2800. try
  2801. {
  2802. std::unique_ptr<THierarchicalStorage> Storage(CreateConfigStorage());
  2803. TAutoNestingCounter DontDecryptPasswordsCounter(FDontDecryptPasswords);
  2804. Storage->AccessMode = smReadWrite;
  2805. // For initial call from UpdateJumpList, do not create the key if it does ot exist yet.
  2806. // To avoid creating the key if we are being started just for a maintenance task.
  2807. if (Storage->OpenSubKey(ConfigurationSubKey, !Name.IsEmpty()))
  2808. {
  2809. std::unique_ptr<TStringList> ListSessions(LoadJumpList(Storage.get(), L"JumpList"));
  2810. std::unique_ptr<TStringList> ListWorkspaces(LoadJumpList(Storage.get(), L"JumpListWorkspaces"));
  2811. if (!Name.IsEmpty())
  2812. {
  2813. TStringList * List = (Session ? ListSessions : ListWorkspaces).get();
  2814. int Index = List->IndexOf(Name);
  2815. if (Index >= 0)
  2816. {
  2817. List->Delete(Index);
  2818. }
  2819. if (Add)
  2820. {
  2821. List->Insert(0, Name);
  2822. }
  2823. }
  2824. TrimJumpList(ListSessions.get());
  2825. TrimJumpList(ListWorkspaces.get());
  2826. ::UpdateJumpList(ListSessions.get(), ListWorkspaces.get());
  2827. SaveJumpList(Storage.get(), L"JumpList", ListSessions.get());
  2828. SaveJumpList(Storage.get(), L"JumpListWorkspaces", ListWorkspaces.get());
  2829. }
  2830. }
  2831. catch (Exception & E)
  2832. {
  2833. throw ExtException(&E, MainInstructions(LoadStr(JUMPLIST_ERROR)));
  2834. }
  2835. }
  2836. //---------------------------------------------------------------------------
  2837. void __fastcall TWinConfiguration::AddSessionToJumpList(UnicodeString SessionName)
  2838. {
  2839. UpdateEntryInJumpList(true, SessionName, true);
  2840. }
  2841. //---------------------------------------------------------------------------
  2842. void __fastcall TWinConfiguration::DeleteSessionFromJumpList(UnicodeString SessionName)
  2843. {
  2844. UpdateEntryInJumpList(true, SessionName, false);
  2845. }
  2846. //---------------------------------------------------------------------------
  2847. void __fastcall TWinConfiguration::AddWorkspaceToJumpList(UnicodeString Workspace)
  2848. {
  2849. UpdateEntryInJumpList(false, Workspace, true);
  2850. }
  2851. //---------------------------------------------------------------------------
  2852. void __fastcall TWinConfiguration::DeleteWorkspaceFromJumpList(UnicodeString Workspace)
  2853. {
  2854. UpdateEntryInJumpList(false, Workspace, false);
  2855. }
  2856. //---------------------------------------------------------------------------
  2857. void __fastcall TWinConfiguration::UpdateJumpList()
  2858. {
  2859. AddSessionToJumpList(L"");
  2860. }
  2861. //---------------------------------------------------------------------------
  2862. void __fastcall TWinConfiguration::UpdateStaticUsage()
  2863. {
  2864. // This is here because of TStoredSessionList::UpdateStaticUsage() call
  2865. // from TConfiguration::UpdateStaticUsage()
  2866. TAutoNestingCounter DontDecryptPasswordsAutoCounter(FDontDecryptPasswords);
  2867. TCustomWinConfiguration::UpdateStaticUsage();
  2868. Usage->Set(L"Beta", IsBeta);
  2869. Usage->Set(L"Interface", Interface);
  2870. Usage->Set(L"ThemeDark", UseDarkTheme());
  2871. Usage->Set(L"CustomCommandsCount", (FCustomCommandsDefaults ? 0 : FCustomCommandList->Count));
  2872. Usage->Set(L"UsingLocationProfiles", UseLocationProfiles);
  2873. Usage->Set(L"UsingMasterPassword", UseMasterPassword);
  2874. Usage->Set(L"UsingAutoSaveWorkspace", AutoSaveWorkspace);
  2875. Usage->Set(L"TreeVisible",
  2876. (Interface == ifExplorer) ?
  2877. ScpExplorer.DriveView :
  2878. (ScpCommander.LocalPanel.DriveView || ScpCommander.RemotePanel.DriveView));
  2879. Usage->Set(L"MinimizeToTray", MinimizeToTray);
  2880. UnicodeString ToolbarsButtons = (Interface == ifExplorer) ? ScpExplorer.ToolbarsButtons : ScpCommander.ToolbarsButtons;
  2881. Usage->Set(L"AnyHiddenToolbarButtons", !ToolbarsButtons.IsEmpty());
  2882. Usage->Set(L"FileColors", !FileColors.IsEmpty());
  2883. Usage->Set(L"DragDropDrives", !DDDrives.IsEmpty());
  2884. Usage->Set(L"ShowingTips", ShowTips);
  2885. Usage->Set(L"KeepingOpenWhenNoSession", KeepOpenWhenNoSession);
  2886. Usage->Set(L"ShowingLoginWhenNoSession", ShowLoginWhenNoSession);
  2887. Usage->Set(L"DefaultingToNewRemoteTab", DefaultToNewRemoteTab);
  2888. TipsUpdateStaticUsage();
  2889. Usage->Set(L"CommanderNortonLikeMode", int(ScpCommander.NortonLikeMode));
  2890. Usage->Set(L"CommanderExplorerKeyboardShortcuts", ScpCommander.ExplorerKeyboardShortcuts);
  2891. Usage->Set(L"ExplorerViewStyle", ScpExplorer.ViewStyle);
  2892. Usage->Set(L"LastMonitor", LastMonitor);
  2893. UnicodeString ExternalEditors;
  2894. for (int Index = 0; Index < EditorList->Count; Index++)
  2895. {
  2896. const TEditorPreferences * Editor = EditorList->Editors[Index];
  2897. if (Editor->Data->Editor == edExternal)
  2898. {
  2899. AddToList(ExternalEditors, Editor->ExtractExternalEditorName(), ",");
  2900. }
  2901. }
  2902. Usage->Set(L"ExternalEditors", ExternalEditors);
  2903. if (LastMachineInstallations < FMachineInstallations)
  2904. {
  2905. Usage->Inc(L"InstallationsMachine", (FMachineInstallations - LastMachineInstallations));
  2906. LastMachineInstallations = FMachineInstallations;
  2907. }
  2908. int ExtensionsPortable = 0;
  2909. int ExtensionsInstalled = 0;
  2910. int ExtensionsUser = 0;
  2911. for (int Index = 0; Index < FExtensionList->Count; Index++)
  2912. {
  2913. const TCustomCommandType * CustomCommand = FExtensionList->Commands[Index];
  2914. UnicodeString PathId = ExcludeTrailingBackslash(ExtractFilePath(CustomCommand->Id));
  2915. if (SameText(PathId, ExtensionsCommonPathId))
  2916. {
  2917. ExtensionsPortable++;
  2918. }
  2919. else if (SameText(PathId, ExtensionsCommonExtPathId))
  2920. {
  2921. ExtensionsInstalled++;
  2922. }
  2923. else if (SameText(PathId, ExtensionsUserExtPathId))
  2924. {
  2925. ExtensionsUser++;
  2926. }
  2927. }
  2928. Usage->Set(L"ExtensionsPortableCount", (ExtensionsPortable));
  2929. Usage->Set(L"ExtensionsInstalledCount", (ExtensionsInstalled));
  2930. Usage->Set(L"ExtensionsUserCount", (ExtensionsUser));
  2931. std::unique_ptr<TStringList> DeletedExtensions(CreateSortedStringList());
  2932. ParseExtensionList(DeletedExtensions.get(), FExtensionsDeleted);
  2933. Usage->Set(L"ExtensionsDeleted", (DeletedExtensions->Count));
  2934. }
  2935. //---------------------------------------------------------------------------
  2936. void __fastcall TWinConfiguration::RestoreFont(
  2937. const TFontConfiguration & Configuration, TFont * Font)
  2938. {
  2939. Font->Name = Configuration.FontName;
  2940. Font->Size = Configuration.FontSize;
  2941. Font->Charset = Configuration.FontCharset;
  2942. Font->Style = IntToFontStyles(Configuration.FontStyle);
  2943. }
  2944. //---------------------------------------------------------------------------
  2945. void __fastcall TWinConfiguration::StoreFont(
  2946. TFont * Font, TFontConfiguration & Configuration)
  2947. {
  2948. Configuration.FontName = Font->Name;
  2949. Configuration.FontSize = Font->Size;
  2950. Configuration.FontCharset = Font->Charset;
  2951. Configuration.FontStyle = FontStylesToInt(Font->Style);
  2952. }
  2953. //---------------------------------------------------------------------------
  2954. TResolvedDoubleClickAction TWinConfiguration::ResolveDoubleClickAction(bool IsDirectory, TTerminal * Terminal)
  2955. {
  2956. TResolvedDoubleClickAction Result;
  2957. // Anything special is done on files only (not directories)
  2958. if (IsDirectory)
  2959. {
  2960. Result = rdcaChangeDir;
  2961. }
  2962. else
  2963. {
  2964. Result = rdcaNone;
  2965. if (Terminal != NULL)
  2966. {
  2967. if (!Terminal->ResolvingSymlinks && !Terminal->IsEncryptingFiles() && !AlwaysRespectDoubleClickAction)
  2968. {
  2969. Result = rdcaChangeDir;
  2970. }
  2971. }
  2972. if (Result == rdcaNone)
  2973. {
  2974. switch (DoubleClickAction)
  2975. {
  2976. case dcaOpen:
  2977. Result = rdcaOpen;
  2978. break;
  2979. case dcaCopy:
  2980. Result = rdcaCopy;
  2981. break;
  2982. case dcaEdit:
  2983. Result = rdcaEdit;
  2984. break;
  2985. default:
  2986. DebugFail();
  2987. Abort();
  2988. break;
  2989. }
  2990. }
  2991. }
  2992. return Result;
  2993. }
  2994. //---------------------------------------------------------------------------
  2995. //---------------------------------------------------------------------------
  2996. __fastcall TCustomCommandType::TCustomCommandType() :
  2997. FParams(0), FShortCut(0), FShortCutOriginal(0)
  2998. {
  2999. }
  3000. //---------------------------------------------------------------------------
  3001. __fastcall TCustomCommandType::TCustomCommandType(const TCustomCommandType & Other) :
  3002. FName(Other.FName),
  3003. FCommand(Other.FCommand),
  3004. FParams(Other.FParams),
  3005. FShortCut(Other.FShortCut),
  3006. FShortCutOriginal(Other.FShortCutOriginal),
  3007. FId(Other.FId),
  3008. FFileName(Other.FFileName),
  3009. FDescription(Other.FDescription),
  3010. FHomePage(Other.FHomePage),
  3011. FOptionsPage(Other.FOptionsPage),
  3012. FOptions(Other.FOptions)
  3013. {
  3014. }
  3015. //---------------------------------------------------------------------------
  3016. TCustomCommandType & TCustomCommandType::operator=(const TCustomCommandType & Other)
  3017. {
  3018. FName = Other.FName;
  3019. FCommand = Other.FCommand;
  3020. FParams = Other.FParams;
  3021. FShortCut = Other.FShortCut;
  3022. FShortCutOriginal = Other.FShortCutOriginal;
  3023. FId = Other.FId;
  3024. FFileName = Other.FFileName;
  3025. FDescription = Other.FDescription;
  3026. FHomePage = Other.FHomePage;
  3027. FOptionsPage = Other.FOptionsPage;
  3028. FOptions = Other.FOptions;
  3029. return *this;
  3030. }
  3031. //---------------------------------------------------------------------------
  3032. bool __fastcall TCustomCommandType::Equals(const TCustomCommandType * Other) const
  3033. {
  3034. return
  3035. (FName == Other->FName) &&
  3036. (FCommand == Other->FCommand) &&
  3037. (FParams == Other->FParams) &&
  3038. (FShortCut == Other->FShortCut) &&
  3039. (FShortCutOriginal == Other->FShortCutOriginal) &&
  3040. (FId == Other->FId) &&
  3041. (FFileName == Other->FFileName) &&
  3042. (FDescription == Other->FDescription) &&
  3043. (FHomePage == Other->FHomePage) &&
  3044. (FOptionsPage == Other->FOptionsPage) &&
  3045. (FOptions == Other->FOptions);
  3046. }
  3047. //---------------------------------------------------------------------------
  3048. const UnicodeString ExtensionNameDirective(L"name");
  3049. const UnicodeString ExtensionCommandDirective(L"command");
  3050. const wchar_t ExtensionMark = L'@';
  3051. const UnicodeString WinSCPExtensionExt(L".WinSCPextension");
  3052. //---------------------------------------------------------------------------
  3053. UnicodeString __fastcall TCustomCommandType::GetExtensionId(const UnicodeString & Name)
  3054. {
  3055. UnicodeString Result;
  3056. int P = Pos(UpperCase(WinSCPExtensionExt), UpperCase(Name));
  3057. // Ends with Ext or there's another extension after it
  3058. if ((P > 1) &&
  3059. ((Name.Length() == (P + WinSCPExtensionExt.Length() - 1)) || (Name[P + WinSCPExtensionExt.Length()] == L'.')))
  3060. {
  3061. Result = Name.SubString(1, P - 1);
  3062. }
  3063. return Result;
  3064. }
  3065. //---------------------------------------------------------------------------
  3066. void __fastcall TCustomCommandType::LoadExtension(const UnicodeString & Path)
  3067. {
  3068. std::unique_ptr<TStringList> Lines(new TStringList());
  3069. FileName = Path;
  3070. LoadScriptFromFile(Path, Lines.get());
  3071. LoadExtension(Lines.get(), Path);
  3072. Command = ReplaceStr(Command, L"%EXTENSION_PATH%", Path);
  3073. }
  3074. //---------------------------------------------------------------------------
  3075. void __fastcall TCustomCommandType::LoadExtension(TStrings * Lines, const UnicodeString & PathForBaseName)
  3076. {
  3077. Params = ccLocal;
  3078. bool AnythingFound = false;
  3079. std::set<UnicodeString> OptionIds;
  3080. UnicodeString ExtensionBaseName = ExtractExtensionBaseName(PathForBaseName);
  3081. UnicodeString ExtensionLine;
  3082. bool Break = false;
  3083. for (int Index = 0; !Break && (Index < Lines->Count); Index++)
  3084. {
  3085. UnicodeString Line = Lines->Strings[Index].Trim();
  3086. if (!Line.IsEmpty())
  3087. {
  3088. Line = ReplaceChar(Line, L'\t', L' ');
  3089. bool IsComment = false;
  3090. if (StartsText(ExtensionMark, Line))
  3091. {
  3092. IsComment = true;
  3093. }
  3094. else if (StartsText(L"rem ", Line))
  3095. {
  3096. IsComment = true;
  3097. Line.Delete(1, 4);
  3098. }
  3099. else if (StartsText(L"#", Line) || StartsText(L";", Line) || StartsText(L"'", Line))
  3100. {
  3101. IsComment = true;
  3102. Line.Delete(1, 1);
  3103. }
  3104. else if (StartsText(L"//", Line))
  3105. {
  3106. IsComment = true;
  3107. Line.Delete(1, 2);
  3108. }
  3109. if (!IsComment)
  3110. {
  3111. Break = true;
  3112. // ignore this and later lines, but finish processing the previous line with ^, if any
  3113. Line = L"";
  3114. }
  3115. else
  3116. {
  3117. Line = Line.Trim();
  3118. }
  3119. }
  3120. bool Continuation = (Line.Length() > 0) && (Line[Line.Length()] == L'^');
  3121. if (Continuation)
  3122. {
  3123. Line = Line.SubString(1, Line.Length() - 1).Trim();
  3124. }
  3125. AddToList(ExtensionLine, Line, L" ");
  3126. if (!Continuation)
  3127. {
  3128. int P;
  3129. if (!ExtensionLine.IsEmpty() && (ExtensionLine[1] == ExtensionMark) && ((P = Pos(L" ", ExtensionLine)) >= 2))
  3130. {
  3131. UnicodeString Key = ExtensionLine.SubString(2, P - 2).LowerCase();
  3132. UnicodeString Directive = UnicodeString(ExtensionMark) + Key;
  3133. UnicodeString Value = ExtensionLine.SubString(P + 1, ExtensionLine.Length() - P).Trim();
  3134. bool KnownKey = true;
  3135. if (Key == ExtensionNameDirective)
  3136. {
  3137. Name = WinConfiguration->ExtensionStringTranslation(Id, Value);
  3138. }
  3139. else if (Key == ExtensionCommandDirective)
  3140. {
  3141. Command = Value;
  3142. }
  3143. else if (Key == L"require")
  3144. {
  3145. UnicodeString DependencyVersion = Value;
  3146. UnicodeString Dependency = CutToChar(Value, L' ', true).LowerCase();
  3147. Value = Value.Trim();
  3148. bool Failed;
  3149. if (Dependency == L"winscp")
  3150. {
  3151. int Version = StrToCompoundVersion(Value);
  3152. Failed = (Version > WinConfiguration->CompoundVersion);
  3153. }
  3154. else if (Dependency == L".net")
  3155. {
  3156. Failed = (CompareVersion(Value, GetNetVersionStr()) > 0);
  3157. }
  3158. else if (Dependency == L".netcore")
  3159. {
  3160. Failed = (CompareVersion(Value, GetNetCoreVersionStr()) > 0);
  3161. }
  3162. else if (Dependency == L"powershell")
  3163. {
  3164. Failed = (CompareVersion(Value, GetPowerShellVersionStr()) > 0);
  3165. }
  3166. else if (Dependency == L"pwsh")
  3167. {
  3168. Failed = (CompareVersion(Value, GetPowerShellCoreVersionStr()) > 0);
  3169. }
  3170. else if (Dependency == L"windows")
  3171. {
  3172. Failed = (CompareVersion(Value, WindowsVersion()) > 0);
  3173. }
  3174. else
  3175. {
  3176. Failed = true;
  3177. }
  3178. if (Failed)
  3179. {
  3180. throw Exception(MainInstructions(FMTLOAD(EXTENSION_DEPENDENCY_ERROR, (DependencyVersion))));
  3181. }
  3182. }
  3183. else if (Key == L"side")
  3184. {
  3185. if (SameText(Value, L"Local"))
  3186. {
  3187. Params |= ccLocal;
  3188. }
  3189. else if (SameText(Value, L"Remote"))
  3190. {
  3191. Params &= ~ccLocal;
  3192. }
  3193. else
  3194. {
  3195. throw Exception(MainInstructions(FMTLOAD(EXTENSION_DIRECTIVE_ERROR, (Value, Directive))));
  3196. }
  3197. }
  3198. else if (Key == L"flag")
  3199. {
  3200. if (SameText(Value, L"ApplyToDirectories"))
  3201. {
  3202. Params |= ccApplyToDirectories;
  3203. }
  3204. else if (SameText(Value, L"Recursive"))
  3205. {
  3206. Params |= ccRecursive;
  3207. }
  3208. else if (SameText(Value, L"ShowResults"))
  3209. {
  3210. Params |= ccShowResults;
  3211. }
  3212. else if (SameText(Value, L"CopyResults"))
  3213. {
  3214. Params |= ccCopyResults;
  3215. }
  3216. else if (SameText(Value, L"RemoteFiles"))
  3217. {
  3218. Params |= ccRemoteFiles;
  3219. }
  3220. else if (SameText(Value, L"ShowResultsInMsgBox"))
  3221. {
  3222. Params |= ccShowResultsInMsgBox;
  3223. }
  3224. else
  3225. {
  3226. throw Exception(MainInstructions(FMTLOAD(EXTENSION_DIRECTIVE_ERROR, (Value, Directive))));
  3227. }
  3228. }
  3229. else if (Key == L"shortcut")
  3230. {
  3231. TShortCut AShortCut = TextToShortCut(Value);
  3232. if (IsCustomShortCut(AShortCut))
  3233. {
  3234. ShortCut = AShortCut;
  3235. FShortCutOriginal = AShortCut;
  3236. }
  3237. else
  3238. {
  3239. throw Exception(MainInstructions(FMTLOAD(EXTENSION_DIRECTIVE_ERROR, (Value, Directive))));
  3240. }
  3241. }
  3242. else if (Key == L"option")
  3243. {
  3244. TOption Option;
  3245. if (!ParseOption(Value, Option, ExtensionBaseName) ||
  3246. (Option.IsControl && (OptionIds.find(Option.Id.LowerCase()) != OptionIds.end())))
  3247. {
  3248. throw Exception(MainInstructions(FMTLOAD(EXTENSION_DIRECTIVE_ERROR, (Value, Directive))));
  3249. }
  3250. else
  3251. {
  3252. FOptions.push_back(Option);
  3253. if (!Option.IsControl)
  3254. {
  3255. OptionIds.insert(Option.Id.LowerCase());
  3256. }
  3257. }
  3258. }
  3259. else if (Key == L"description")
  3260. {
  3261. Description = WinConfiguration->ExtensionStringTranslation(Id, Value);
  3262. }
  3263. else if (Key == L"author")
  3264. {
  3265. // noop
  3266. }
  3267. else if (Key == L"version")
  3268. {
  3269. // noop
  3270. }
  3271. else if (Key == L"homepage")
  3272. {
  3273. HomePage = Value;
  3274. }
  3275. else if (Key == L"optionspage")
  3276. {
  3277. OptionsPage = Value;
  3278. }
  3279. else if (Key == L"source")
  3280. {
  3281. // noop
  3282. }
  3283. else
  3284. {
  3285. KnownKey = false;
  3286. }
  3287. if (KnownKey)
  3288. {
  3289. AnythingFound = true;
  3290. }
  3291. }
  3292. ExtensionLine = L"";
  3293. }
  3294. }
  3295. if (!AnythingFound)
  3296. {
  3297. throw Exception(MainInstructions(LoadStr(EXTENSION_NOT_FOUND)));
  3298. }
  3299. if (Name.IsEmpty())
  3300. {
  3301. throw Exception(MainInstructions(FMTLOAD(EXTENSION_DIRECTIVE_MISSING, (UnicodeString(ExtensionMark) + ExtensionNameDirective))));
  3302. }
  3303. if (Command.IsEmpty())
  3304. {
  3305. throw Exception(MainInstructions(FMTLOAD(EXTENSION_DIRECTIVE_MISSING, (UnicodeString(ExtensionMark) + ExtensionCommandDirective))));
  3306. }
  3307. }
  3308. //---------------------------------------------------------------------------
  3309. bool __fastcall TCustomCommandType::ParseOption(const UnicodeString & Value, TOption & Option, const UnicodeString & ExtensionBaseName)
  3310. {
  3311. UnicodeString Buf = Value;
  3312. UnicodeString KindName;
  3313. bool Result = CutTokenEx(Buf, Option.Id);
  3314. if (Result)
  3315. {
  3316. Option.Flags = 0;
  3317. UnicodeString FlagName;
  3318. while (CutTokenEx(Buf, FlagName) && (FlagName.SubString(1, 1) == L"-"))
  3319. {
  3320. FlagName = FlagName.LowerCase();
  3321. if (FlagName == L"-run")
  3322. {
  3323. Option.Flags |= ofRun;
  3324. }
  3325. else if (FlagName == L"-config")
  3326. {
  3327. Option.Flags |= ofConfig;
  3328. }
  3329. else if (FlagName == L"-site")
  3330. {
  3331. Option.Flags |= ofSite;
  3332. }
  3333. else
  3334. {
  3335. Result = false;
  3336. }
  3337. }
  3338. if ((Option.Flags & (ofRun | ofConfig)) == 0)
  3339. {
  3340. Option.Flags |= ofConfig;
  3341. }
  3342. KindName = FlagName;
  3343. if (Result)
  3344. {
  3345. UnicodeString DefaultCaption;
  3346. UnicodeString DefaultDefault;
  3347. TOption::TParams DefaultParams;
  3348. KindName = KindName.LowerCase();
  3349. if (KindName == L"label")
  3350. {
  3351. Option.Kind = okLabel;
  3352. Result = !Option.IsControl;
  3353. }
  3354. else if (KindName == L"link")
  3355. {
  3356. Option.Kind = okLink;
  3357. Result = !Option.IsControl;
  3358. }
  3359. else if (KindName == L"separator")
  3360. {
  3361. Option.Kind = okSeparator;
  3362. Result = !Option.IsControl;
  3363. }
  3364. else if (KindName == L"group")
  3365. {
  3366. Option.Kind = okGroup;
  3367. Result = !Option.IsControl;
  3368. }
  3369. else if (KindName == L"textbox")
  3370. {
  3371. Option.Kind = okTextBox;
  3372. Result = Option.IsControl;
  3373. }
  3374. else if (KindName == L"file")
  3375. {
  3376. Option.Kind = okFile;
  3377. Result = Option.IsControl;
  3378. }
  3379. else if (KindName == L"sessionlogfile")
  3380. {
  3381. Option.Kind = okFile;
  3382. Result = Option.IsControl;
  3383. DefaultCaption = LoadStr(EXTENSION_SESSIONLOG_FILE);
  3384. Option.FileCaption = LoadStr(EXTENSION_SESSIONLOG_CAPTION);
  3385. Option.FileFilter = LoadStr(EXTENSION_SESSIONLOG_FILTER);
  3386. // Similar to TConfiguration::GetDefaultLogFileName
  3387. Option.FileInitial = L"%TEMP%\\" + ExtensionBaseName + L".log";
  3388. Option.FileExt = L"log";
  3389. }
  3390. else if (KindName == L"dropdownlist")
  3391. {
  3392. Option.Kind = okDropDownList;
  3393. Result = Option.IsControl;
  3394. }
  3395. else if (KindName == L"combobox")
  3396. {
  3397. Option.Kind = okComboBox;
  3398. Result = Option.IsControl;
  3399. }
  3400. else if (KindName == L"checkbox")
  3401. {
  3402. Option.Kind = okCheckBox;
  3403. Result = Option.IsControl;
  3404. }
  3405. else if (KindName == L"pausecheckbox")
  3406. {
  3407. Option.Kind = okCheckBox;
  3408. Result = Option.IsControl;
  3409. DefaultCaption = LoadStr(EXTENSION_PAUSE_CHECKBOX);
  3410. DefaultDefault = L"-pause";
  3411. DefaultParams.push_back(L"-pause");
  3412. }
  3413. else
  3414. {
  3415. Option.Kind = okUnknown;
  3416. }
  3417. if ((Option.Kind != okUnknown) &&
  3418. (Option.Kind != okSeparator))
  3419. {
  3420. Result =
  3421. CutTokenEx(Buf, Option.Caption);
  3422. if (!Result && !DefaultCaption.IsEmpty())
  3423. {
  3424. Option.Caption = DefaultCaption;
  3425. Result = true;
  3426. }
  3427. if (Result)
  3428. {
  3429. Option.Caption = WinConfiguration->ExtensionStringTranslation(Id, Option.Caption);
  3430. if (CutTokenEx(Buf, Option.Default))
  3431. {
  3432. UnicodeString Param;
  3433. while (CutTokenEx(Buf, Param))
  3434. {
  3435. Option.Params.push_back(Param);
  3436. }
  3437. }
  3438. else
  3439. {
  3440. Option.Default = DefaultDefault;
  3441. }
  3442. if (Option.Params.size() == 0)
  3443. {
  3444. Option.Params = DefaultParams;
  3445. }
  3446. }
  3447. }
  3448. }
  3449. }
  3450. return Result;
  3451. }
  3452. //---------------------------------------------------------------------------
  3453. int __fastcall TCustomCommandType::GetOptionsCount() const
  3454. {
  3455. return FOptions.size();
  3456. }
  3457. //---------------------------------------------------------------------------
  3458. const TCustomCommandType::TOption & __fastcall TCustomCommandType::GetOption(int Index) const
  3459. {
  3460. return FOptions[Index];
  3461. }
  3462. //---------------------------------------------------------------------------
  3463. UnicodeString __fastcall TCustomCommandType::GetOptionKey(
  3464. const TCustomCommandType::TOption & Option, const UnicodeString & Site) const
  3465. {
  3466. UnicodeString Result = Id + L"\\" + Option.Id;
  3467. if (FLAGSET(Option.Flags, ofSite))
  3468. {
  3469. Result += L"\\" + Site;
  3470. }
  3471. return Result;
  3472. }
  3473. //---------------------------------------------------------------------------
  3474. bool __fastcall TCustomCommandType::AnyOptionWithFlag(unsigned int Flag) const
  3475. {
  3476. bool Result = false;
  3477. for (int Index = 0; !Result && (Index < OptionsCount); Index++)
  3478. {
  3479. const TCustomCommandType::TOption & Option = GetOption(Index);
  3480. Result = FLAGSET(Option.Flags, Flag);
  3481. }
  3482. return Result;
  3483. }
  3484. //---------------------------------------------------------------------------
  3485. UnicodeString __fastcall TCustomCommandType::GetCommandWithExpandedOptions(
  3486. TStrings * CustomCommandOptions, const UnicodeString & Site) const
  3487. {
  3488. UnicodeString Result = Command;
  3489. for (int Index = 0; Index < OptionsCount; Index++)
  3490. {
  3491. const TCustomCommandType::TOption & Option = GetOption(Index);
  3492. if (Option.IsControl)
  3493. {
  3494. UnicodeString OptionKey = GetOptionKey(Option, Site);
  3495. UnicodeString OptionValue;
  3496. bool NeedEscape;
  3497. if (CustomCommandOptions->IndexOfName(OptionKey) >= 0)
  3498. {
  3499. OptionValue = CustomCommandOptions->Values[OptionKey];
  3500. NeedEscape = true;
  3501. }
  3502. else
  3503. {
  3504. OptionValue = Option.Default;
  3505. NeedEscape = !Option.CanHavePatterns(); // approximation only?
  3506. }
  3507. UnicodeString OptionCommand = GetOptionCommand(Option, OptionValue);
  3508. if (NeedEscape)
  3509. {
  3510. OptionCommand = TCustomCommand::Escape(OptionCommand);
  3511. }
  3512. Result = ReplaceText(Result, FORMAT(L"%%%s%%", (Option.Id)), OptionCommand);
  3513. }
  3514. }
  3515. return Result;
  3516. }
  3517. //---------------------------------------------------------------------------
  3518. UnicodeString __fastcall TCustomCommandType::GetOptionCommand(const TOption & Option, const UnicodeString & Value) const
  3519. {
  3520. UnicodeString Result = Value;
  3521. switch (Option.Kind)
  3522. {
  3523. case okUnknown:
  3524. case okTextBox:
  3525. case okDropDownList:
  3526. case okComboBox:
  3527. case okCheckBox:
  3528. // noop
  3529. break;
  3530. case okFile:
  3531. Result = ExpandEnvironmentVariables(Result);
  3532. break;
  3533. case okLabel:
  3534. case okLink:
  3535. case okSeparator:
  3536. case okGroup:
  3537. default:
  3538. DebugFail();
  3539. }
  3540. return Result;
  3541. }
  3542. //---------------------------------------------------------------------------
  3543. bool __fastcall TCustomCommandType::HasCustomShortCut() const
  3544. {
  3545. return (ShortCut != FShortCutOriginal);
  3546. }
  3547. //---------------------------------------------------------------------------
  3548. //---------------------------------------------------------------------------
  3549. bool __fastcall TCustomCommandType::TOption::GetIsControl() const
  3550. {
  3551. return (Id != L"-");
  3552. }
  3553. //---------------------------------------------------------------------------
  3554. bool TCustomCommandType::TOption::CanHavePatterns() const
  3555. {
  3556. bool Result;
  3557. switch (Kind)
  3558. {
  3559. case okTextBox:
  3560. case okFile:
  3561. Result = true;
  3562. break;
  3563. default:
  3564. Result = false;
  3565. break;
  3566. }
  3567. return Result;
  3568. }
  3569. //---------------------------------------------------------------------------
  3570. bool TCustomCommandType::TOption::HasPatterns(TCustomCommand * CustomCommandForOptions) const
  3571. {
  3572. bool Result =
  3573. CanHavePatterns() &&
  3574. FLAGSET(Flags, TCustomCommandType::ofRun) &&
  3575. FLAGCLEAR(Flags, TCustomCommandType::ofConfig) &&
  3576. CustomCommandForOptions->HasAnyPatterns(Default);
  3577. return Result;
  3578. }
  3579. //---------------------------------------------------------------------------
  3580. bool TCustomCommandType::TOption::operator==(const TCustomCommandType::TOption & Other) const
  3581. {
  3582. // needed by vector<> but probably never used
  3583. return
  3584. (Id == Other.Id) &&
  3585. (Flags == Other.Flags) &&
  3586. (Kind == Other.Kind) &&
  3587. (Caption == Other.Caption) &&
  3588. (Default == Other.Default) &&
  3589. (Params == Other.Params) &&
  3590. (FileCaption == Other.FileCaption) &&
  3591. (FileFilter == Other.FileFilter) &&
  3592. (FileInitial == Other.FileInitial) &&
  3593. (FileExt == Other.FileExt);
  3594. }
  3595. //---------------------------------------------------------------------------
  3596. //---------------------------------------------------------------------------
  3597. __fastcall TCustomCommandList::TCustomCommandList()
  3598. {
  3599. FCommands = new TList();
  3600. FModified = false;
  3601. }
  3602. //---------------------------------------------------------------------------
  3603. __fastcall TCustomCommandList::~TCustomCommandList()
  3604. {
  3605. Clear();
  3606. delete FCommands;
  3607. }
  3608. //---------------------------------------------------------------------------
  3609. void __fastcall TCustomCommandList::Reset()
  3610. {
  3611. FModified = false;
  3612. }
  3613. //---------------------------------------------------------------------------
  3614. void __fastcall TCustomCommandList::Modify()
  3615. {
  3616. FModified = true;
  3617. }
  3618. //---------------------------------------------------------------------------
  3619. void __fastcall TCustomCommandList::Load(THierarchicalStorage * Storage)
  3620. {
  3621. Clear();
  3622. if (Storage->OpenSubKey(L"CustomCommands", false))
  3623. {
  3624. TStrings * Names = new TStringList();
  3625. try
  3626. {
  3627. Storage->ReadValues(Names, true);
  3628. for (int Index = 0; Index < Names->Count; Index++)
  3629. {
  3630. TCustomCommandType * Command = new TCustomCommandType();
  3631. Command->Name = Names->Names[Index];
  3632. Command->Command = Names->Values[Names->Names[Index]];
  3633. FCommands->Add(Command);
  3634. }
  3635. Storage->CloseSubKey();
  3636. }
  3637. __finally
  3638. {
  3639. delete Names;
  3640. }
  3641. }
  3642. if (Storage->OpenSubKey(L"CustomCommandsParams", false))
  3643. {
  3644. for (int Index = 0; Index < FCommands->Count; Index++)
  3645. {
  3646. TCustomCommandType * Command = GetCommand(Index);
  3647. Command->Params = Storage->ReadInteger(Command->Name, Command->Params);
  3648. }
  3649. Storage->CloseSubKey();
  3650. }
  3651. if (Storage->OpenSubKey(L"CustomCommandsShortCuts", false))
  3652. {
  3653. for (int Index = 0; Index < FCommands->Count; Index++)
  3654. {
  3655. TCustomCommandType * Command = GetCommand(Index);
  3656. Command->ShortCut = (Word)Storage->ReadInteger(Command->Name, Command->ShortCut);
  3657. }
  3658. Storage->CloseSubKey();
  3659. }
  3660. Reset();
  3661. }
  3662. //---------------------------------------------------------------------------
  3663. void __fastcall TCustomCommandList::Save(THierarchicalStorage * Storage)
  3664. {
  3665. if (Storage->OpenSubKey(L"CustomCommands", true))
  3666. {
  3667. Storage->ClearValues();
  3668. for (int Index = 0; Index < FCommands->Count; Index++)
  3669. {
  3670. const TCustomCommandType * Command = Commands[Index];
  3671. Storage->WriteString(Command->Name, Command->Command);
  3672. }
  3673. Storage->CloseSubKey();
  3674. }
  3675. if (Storage->OpenSubKey(L"CustomCommandsParams", true))
  3676. {
  3677. Storage->ClearValues();
  3678. for (int Index = 0; Index < FCommands->Count; Index++)
  3679. {
  3680. const TCustomCommandType * Command = Commands[Index];
  3681. Storage->WriteInteger(Command->Name, Command->Params);
  3682. }
  3683. Storage->CloseSubKey();
  3684. }
  3685. if (Storage->OpenSubKey(L"CustomCommandsShortCuts", true))
  3686. {
  3687. Storage->ClearValues();
  3688. for (int Index = 0; Index < FCommands->Count; Index++)
  3689. {
  3690. const TCustomCommandType * Command = Commands[Index];
  3691. if (Command->ShortCut != 0)
  3692. {
  3693. Storage->WriteInteger(Command->Name, Command->ShortCut);
  3694. }
  3695. }
  3696. Storage->CloseSubKey();
  3697. }
  3698. }
  3699. //---------------------------------------------------------------------------
  3700. void __fastcall TCustomCommandList::Clear()
  3701. {
  3702. for (int Index = 0; Index < FCommands->Count; Index++)
  3703. {
  3704. delete Commands[Index];
  3705. }
  3706. FCommands->Clear();
  3707. }
  3708. //---------------------------------------------------------------------------
  3709. void __fastcall TCustomCommandList::Add(const UnicodeString Name,
  3710. const UnicodeString ACommand, int Params)
  3711. {
  3712. TCustomCommandType * Command = new TCustomCommandType();
  3713. Command->Name = Name;
  3714. Command->Command = ACommand;
  3715. Command->Params = Params;
  3716. Add(Command);
  3717. }
  3718. //---------------------------------------------------------------------------
  3719. void __fastcall TCustomCommandList::Add(TCustomCommandType * Command)
  3720. {
  3721. Insert(Count, Command);
  3722. }
  3723. //---------------------------------------------------------------------------
  3724. void __fastcall TCustomCommandList::Insert(int Index, TCustomCommandType * Command)
  3725. {
  3726. FCommands->Insert(Index, Command);
  3727. Modify();
  3728. }
  3729. //---------------------------------------------------------------------------
  3730. void __fastcall TCustomCommandList::Change(int Index, TCustomCommandType * ACommand)
  3731. {
  3732. TCustomCommandType * Command = GetCommand(Index);
  3733. if (!Command->Equals(ACommand))
  3734. {
  3735. delete Command;
  3736. FCommands->Items[Index] = ACommand;
  3737. Modify();
  3738. }
  3739. else
  3740. {
  3741. delete ACommand;
  3742. }
  3743. }
  3744. //---------------------------------------------------------------------------
  3745. void __fastcall TCustomCommandList::Move(int CurIndex, int NewIndex)
  3746. {
  3747. if (CurIndex != NewIndex)
  3748. {
  3749. FCommands->Move(CurIndex, NewIndex);
  3750. Modify();
  3751. }
  3752. }
  3753. //---------------------------------------------------------------------------
  3754. void __fastcall TCustomCommandList::Delete(int Index)
  3755. {
  3756. DebugAssert((Index >= 0) && (Index < Count));
  3757. delete GetCommand(Index);
  3758. FCommands->Delete(Index);
  3759. Modify();
  3760. }
  3761. //---------------------------------------------------------------------------
  3762. class TCustomCommandCompareFunc : public TCppInterfacedObject<TListSortCompareFunc>
  3763. {
  3764. public:
  3765. TCustomCommandCompareFunc(TStrings * Ids)
  3766. {
  3767. FIds = Ids;
  3768. }
  3769. virtual int __fastcall Invoke(void * Item1, void * Item2)
  3770. {
  3771. TCustomCommandType * CustomCommand1 = static_cast<TCustomCommandType *>(Item1);
  3772. TCustomCommandType * CustomCommand2 = static_cast<TCustomCommandType *>(Item2);
  3773. int Index1 = FIds->IndexOf(CustomCommand1->Id);
  3774. int Index2 = FIds->IndexOf(CustomCommand2->Id);
  3775. int Result;
  3776. // new items to the end
  3777. if ((Index1 < 0) && (Index2 >= 0))
  3778. {
  3779. Result = 1;
  3780. }
  3781. else if ((Index2 < 0) && (Index1 >= 0))
  3782. {
  3783. Result = -1;
  3784. }
  3785. // fallback to comparing by name
  3786. else if ((Index1 < 0) && (Index2 < 0))
  3787. {
  3788. Result = TComparer__1<UnicodeString>::Default()->Compare(CustomCommand1->Name, CustomCommand2->Name);
  3789. }
  3790. else
  3791. {
  3792. Result = TComparer__1<int>::Default()->Compare(Index1, Index2);
  3793. }
  3794. return Result;
  3795. }
  3796. private:
  3797. TStrings * FIds;
  3798. };
  3799. //---------------------------------------------------------------------------
  3800. void __fastcall TCustomCommandList::SortBy(TStrings * Ids)
  3801. {
  3802. TCustomCommandCompareFunc * Func = new TCustomCommandCompareFunc(Ids);
  3803. FCommands->SortList(Func);
  3804. }
  3805. //---------------------------------------------------------------------------
  3806. int __fastcall TCustomCommandList::GetCount() const
  3807. {
  3808. return FCommands->Count;
  3809. }
  3810. //---------------------------------------------------------------------------
  3811. const TCustomCommandType * __fastcall TCustomCommandList::GetConstCommand(int Index) const
  3812. {
  3813. return static_cast<TCustomCommandType *>(FCommands->Items[Index]);
  3814. }
  3815. //---------------------------------------------------------------------------
  3816. TCustomCommandType * __fastcall TCustomCommandList::GetCommand(int Index)
  3817. {
  3818. return static_cast<TCustomCommandType *>(FCommands->Items[Index]);
  3819. }
  3820. //---------------------------------------------------------------------------
  3821. bool __fastcall TCustomCommandList::Equals(const TCustomCommandList * Other) const
  3822. {
  3823. bool Result = (Count == Other->Count);
  3824. for (int Index = 0; Result && (Index < Count); Index++)
  3825. {
  3826. Result = Commands[Index]->Equals(Other->Commands[Index]);
  3827. }
  3828. return Result;
  3829. }
  3830. //---------------------------------------------------------------------------
  3831. void __fastcall TCustomCommandList::Assign(const TCustomCommandList * Other)
  3832. {
  3833. Clear();
  3834. for (int Index = 0; Index < Other->Count; Index++)
  3835. {
  3836. Add(new TCustomCommandType(*Other->Commands[Index]));
  3837. }
  3838. // there should be comparison of with the assigned list, be we rely on caller
  3839. // to do it instead (TGUIConfiguration::SetCopyParamList)
  3840. Modify();
  3841. }
  3842. //---------------------------------------------------------------------------
  3843. const TCustomCommandType * TCustomCommandList::Find(const UnicodeString Name) const
  3844. {
  3845. for (int Index = 0; Index < FCommands->Count; Index++)
  3846. {
  3847. if (Commands[Index]->Name == Name)
  3848. {
  3849. return Commands[Index];
  3850. }
  3851. }
  3852. return NULL;
  3853. }
  3854. //---------------------------------------------------------------------------
  3855. const TCustomCommandType * TCustomCommandList::Find(TShortCut ShortCut) const
  3856. {
  3857. for (int Index = 0; Index < FCommands->Count; Index++)
  3858. {
  3859. if (Commands[Index]->ShortCut == ShortCut)
  3860. {
  3861. return Commands[Index];
  3862. }
  3863. }
  3864. return NULL;
  3865. }
  3866. //---------------------------------------------------------------------------
  3867. int TCustomCommandList::FindIndexByFileName(const UnicodeString & FileName) const
  3868. {
  3869. for (int Index = 0; Index < FCommands->Count; Index++)
  3870. {
  3871. if (IsPathToSameFile(Commands[Index]->FileName, FileName))
  3872. {
  3873. return Index;
  3874. }
  3875. }
  3876. return -1;
  3877. }
  3878. //---------------------------------------------------------------------------
  3879. void __fastcall TCustomCommandList::ShortCuts(TShortCuts & ShortCuts) const
  3880. {
  3881. for (int Index = 0; Index < FCommands->Count; Index++)
  3882. {
  3883. const TCustomCommandType * Command = Commands[Index];
  3884. if (Command->ShortCut != 0)
  3885. {
  3886. ShortCuts.Add(Command->ShortCut);
  3887. }
  3888. }
  3889. }