WinConfiguration.cpp 112 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162
  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 "FileInfo.h"
  24. //---------------------------------------------------------------------------
  25. #pragma package(smart_init)
  26. //---------------------------------------------------------------------------
  27. TWinConfiguration * WinConfiguration = NULL;
  28. //---------------------------------------------------------------------------
  29. static UnicodeString NotepadName(L"notepad.exe");
  30. //---------------------------------------------------------------------------
  31. __fastcall TEditorData::TEditorData() :
  32. FileMask(L"*.*"),
  33. Editor(edInternal),
  34. ExternalEditor(L""),
  35. ExternalEditorText(false),
  36. SDIExternalEditor(false),
  37. DetectMDIExternalEditor(false)
  38. {
  39. }
  40. //---------------------------------------------------------------------------
  41. __fastcall TEditorData::TEditorData(const TEditorData & Source) :
  42. FileMask(Source.FileMask),
  43. Editor(Source.Editor),
  44. ExternalEditor(Source.ExternalEditor),
  45. ExternalEditorText(Source.ExternalEditorText),
  46. SDIExternalEditor(Source.SDIExternalEditor),
  47. DetectMDIExternalEditor(Source.DetectMDIExternalEditor)
  48. {
  49. }
  50. //---------------------------------------------------------------------------
  51. #define C(Property) (Property == rhd.Property)
  52. bool __fastcall TEditorData::operator==(const TEditorData & rhd) const
  53. {
  54. return
  55. C(FileMask) &&
  56. C(Editor) &&
  57. C(ExternalEditor) &&
  58. C(ExternalEditorText) &&
  59. C(SDIExternalEditor) &&
  60. C(DetectMDIExternalEditor) &&
  61. true;
  62. }
  63. #undef C
  64. //---------------------------------------------------------------------------
  65. bool __fastcall TEditorData::DecideExternalEditorText(UnicodeString ExternalEditor)
  66. {
  67. bool Result = false;
  68. // By default we use default transfer mode (binary),
  69. // as all reasonable 3rd party editors support all EOL styles.
  70. // A notable exception is Windows Notepad, so here's an exception for it.
  71. ReformatFileNameCommand(ExternalEditor);
  72. UnicodeString ProgramName = ExtractProgramName(ExternalEditor);
  73. // We explicitly do not use TEditorPreferences::GetDefaultExternalEditor(),
  74. // as we need to explicitly refer to the Notepad, even if the default external
  75. // editor ever changes
  76. UnicodeString NotepadProgramName = ExtractProgramName(NotepadName);
  77. if (SameText(ProgramName, NotepadProgramName))
  78. {
  79. Result = true;
  80. }
  81. return Result;
  82. }
  83. //---------------------------------------------------------------------------
  84. void __fastcall TEditorData::DecideExternalEditorText()
  85. {
  86. if (DecideExternalEditorText(ExternalEditor))
  87. {
  88. ExternalEditorText = true;
  89. }
  90. }
  91. //---------------------------------------------------------------------------
  92. __fastcall TEditorPreferences::TEditorPreferences()
  93. {
  94. }
  95. //---------------------------------------------------------------------------
  96. __fastcall TEditorPreferences::TEditorPreferences(const TEditorData & Data) :
  97. FData(Data)
  98. {
  99. }
  100. //---------------------------------------------------------------------------
  101. bool __fastcall TEditorPreferences::operator==(const TEditorPreferences & rhp) const
  102. {
  103. return (FData == rhp.FData);
  104. }
  105. #undef C
  106. //---------------------------------------------------------------------------
  107. bool __fastcall TEditorPreferences::Matches(const UnicodeString FileName,
  108. bool Local, const TFileMasks::TParams & Params) const
  109. {
  110. return FData.FileMask.Matches(FileName, Local, false, &Params);
  111. }
  112. //---------------------------------------------------------------------------
  113. UnicodeString __fastcall TEditorPreferences::GetDefaultExternalEditor()
  114. {
  115. return NotepadName;
  116. }
  117. //---------------------------------------------------------------------------
  118. void __fastcall TEditorPreferences::LegacyDefaults()
  119. {
  120. FData.ExternalEditor = GetDefaultExternalEditor();
  121. FData.DecideExternalEditorText();
  122. }
  123. //---------------------------------------------------------------------------
  124. UnicodeString __fastcall TEditorPreferences::ExtractExternalEditorName() const
  125. {
  126. DebugAssert(FData.Editor == edExternal);
  127. UnicodeString ExternalEditor = FData.ExternalEditor;
  128. ReformatFileNameCommand(ExternalEditor);
  129. // Trim is a workaround for unknown problem with "notepad " (2 trailing spaces)
  130. return ExtractProgramName(ExternalEditor).Trim();
  131. }
  132. //---------------------------------------------------------------------------
  133. void __fastcall TEditorPreferences::Load(THierarchicalStorage * Storage, bool Legacy)
  134. {
  135. if (!Legacy)
  136. {
  137. FData.FileMask = Storage->ReadString(L"FileMask", FData.FileMask.Masks);
  138. }
  139. FData.Editor = (TEditor)Storage->ReadInteger(L"Editor", FData.Editor);
  140. FData.ExternalEditor = Storage->ReadString(L"ExternalEditor", FData.ExternalEditor);
  141. FData.ExternalEditorText = Storage->ReadBool(L"ExternalEditorText", FData.ExternalEditorText);
  142. FData.SDIExternalEditor = Storage->ReadBool(L"SDIExternalEditor", FData.SDIExternalEditor);
  143. FData.DetectMDIExternalEditor = Storage->ReadBool(L"DetectMDIExternalEditor", FData.DetectMDIExternalEditor);
  144. }
  145. //---------------------------------------------------------------------------
  146. void __fastcall TEditorPreferences::Save(THierarchicalStorage * Storage) const
  147. {
  148. Storage->WriteString(L"FileMask", FData.FileMask.Masks);
  149. Storage->WriteInteger(L"Editor", FData.Editor);
  150. Storage->WriteString(L"ExternalEditor", FData.ExternalEditor);
  151. Storage->WriteBool(L"ExternalEditorText", FData.ExternalEditorText);
  152. Storage->WriteBool(L"SDIExternalEditor", FData.SDIExternalEditor);
  153. Storage->WriteBool(L"DetectMDIExternalEditor", FData.DetectMDIExternalEditor);
  154. }
  155. //---------------------------------------------------------------------------
  156. TEditorData * __fastcall TEditorPreferences::GetData()
  157. {
  158. // returning non-const data, possible data change, invalidate cached name
  159. FName = L"";
  160. return &FData;
  161. };
  162. //---------------------------------------------------------------------------
  163. UnicodeString __fastcall TEditorPreferences::GetName() const
  164. {
  165. if (FName.IsEmpty())
  166. {
  167. if (FData.Editor == edInternal)
  168. {
  169. // StripHotkey is relic from times when INTERNAL_EDITOR_NAME was used
  170. // also for the menu item caption
  171. FName = StripHotkey(LoadStr(INTERNAL_EDITOR_NAME));
  172. }
  173. else if (FData.Editor == edOpen)
  174. {
  175. FName = StripHotkey(LoadStr(OPEN_EDITOR_NAME));
  176. }
  177. else
  178. {
  179. UnicodeString Program, Params, Dir;
  180. UnicodeString ExternalEditor = FData.ExternalEditor;
  181. ReformatFileNameCommand(ExternalEditor);
  182. SplitCommand(ExternalEditor, Program, Params, Dir);
  183. FName = ExtractFileName(Program);
  184. int P = FName.LastDelimiter(L".");
  185. if (P > 0)
  186. {
  187. FName.SetLength(P - 1);
  188. }
  189. if (FName.ByteType(1) == mbSingleByte)
  190. {
  191. if (FName.UpperCase() == FName)
  192. {
  193. FName = FName.LowerCase();
  194. }
  195. if (FName.LowerCase() == FName)
  196. {
  197. FName = FName.SubString(1, 1).UpperCase() +
  198. FName.SubString(2, FName.Length() - 1);
  199. }
  200. }
  201. }
  202. }
  203. return FName;
  204. }
  205. //---------------------------------------------------------------------------
  206. //---------------------------------------------------------------------------
  207. __fastcall TEditorList::TEditorList()
  208. {
  209. Init();
  210. }
  211. //---------------------------------------------------------------------------
  212. void __fastcall TEditorList::Init()
  213. {
  214. FEditors = new TList();
  215. FModified = false;
  216. }
  217. //---------------------------------------------------------------------------
  218. __fastcall TEditorList::~TEditorList()
  219. {
  220. Clear();
  221. delete FEditors;
  222. }
  223. //---------------------------------------------------------------------
  224. void __fastcall TEditorList::Modify()
  225. {
  226. FModified = true;
  227. }
  228. //---------------------------------------------------------------------------
  229. void __fastcall TEditorList::Saved()
  230. {
  231. FModified = false;
  232. }
  233. //---------------------------------------------------------------------------
  234. TEditorList & __fastcall TEditorList::operator=(const TEditorList & rhl)
  235. {
  236. Clear();
  237. for (int Index = 0; Index < rhl.Count; Index++)
  238. {
  239. Add(new TEditorPreferences(*rhl.Editors[Index]));
  240. }
  241. // there should be comparison of with the assigned list, but we rely on caller
  242. // to do it instead (TWinConfiguration::SetEditorList)
  243. Modify();
  244. return *this;
  245. }
  246. //---------------------------------------------------------------------------
  247. bool __fastcall TEditorList::operator==(const TEditorList & rhl) const
  248. {
  249. bool Result = (Count == rhl.Count);
  250. if (Result)
  251. {
  252. int i = 0;
  253. while ((i < Count) && Result)
  254. {
  255. Result = (*Editors[i]) == (*rhl.Editors[i]);
  256. i++;
  257. }
  258. }
  259. return Result;
  260. }
  261. //---------------------------------------------------------------------------
  262. void __fastcall TEditorList::Clear()
  263. {
  264. for (int i = 0; i < Count; i++)
  265. {
  266. delete Editors[i];
  267. }
  268. FEditors->Clear();
  269. }
  270. //---------------------------------------------------------------------------
  271. void __fastcall TEditorList::Add(TEditorPreferences * Editor)
  272. {
  273. Insert(Count, Editor);
  274. }
  275. //---------------------------------------------------------------------------
  276. void __fastcall TEditorList::Insert(int Index, TEditorPreferences * Editor)
  277. {
  278. FEditors->Insert(Index, reinterpret_cast<TObject *>(Editor));
  279. Modify();
  280. }
  281. //---------------------------------------------------------------------------
  282. void __fastcall TEditorList::Change(int Index, TEditorPreferences * Editor)
  283. {
  284. if (!((*Editors[Index]) == *Editor))
  285. {
  286. delete Editors[Index];
  287. FEditors->Items[Index] = (reinterpret_cast<TObject *>(Editor));
  288. Modify();
  289. }
  290. else
  291. {
  292. delete Editor;
  293. }
  294. }
  295. //---------------------------------------------------------------------------
  296. void __fastcall TEditorList::Move(int CurIndex, int NewIndex)
  297. {
  298. if (CurIndex != NewIndex)
  299. {
  300. FEditors->Move(CurIndex, NewIndex);
  301. Modify();
  302. }
  303. }
  304. //---------------------------------------------------------------------------
  305. void __fastcall TEditorList::Delete(int Index)
  306. {
  307. DebugAssert((Index >= 0) && (Index < Count));
  308. delete Editors[Index];
  309. FEditors->Delete(Index);
  310. Modify();
  311. }
  312. //---------------------------------------------------------------------------
  313. const TEditorPreferences * __fastcall TEditorList::Find(
  314. const UnicodeString FileName, bool Local, const TFileMasks::TParams & Params) const
  315. {
  316. const TEditorPreferences * Result = NULL;
  317. int i = 0;
  318. while ((i < FEditors->Count) && (Result == NULL))
  319. {
  320. Result = Editors[i];
  321. if (!Result->Matches(FileName, Local, Params))
  322. {
  323. Result = NULL;
  324. }
  325. i++;
  326. }
  327. return Result;
  328. }
  329. //---------------------------------------------------------------------------
  330. void __fastcall TEditorList::Load(THierarchicalStorage * Storage)
  331. {
  332. int Index = 0;
  333. bool Next;
  334. do
  335. {
  336. UnicodeString Name = IntToStr(Index);
  337. TEditorPreferences * Editor = NULL;
  338. try
  339. {
  340. Next = Storage->OpenSubKey(Name, false);
  341. if (Next)
  342. {
  343. try
  344. {
  345. Editor = new TEditorPreferences();
  346. Editor->Load(Storage, false);
  347. }
  348. __finally
  349. {
  350. Storage->CloseSubKey();
  351. }
  352. }
  353. }
  354. catch(...)
  355. {
  356. delete Editor;
  357. throw;
  358. }
  359. if (Editor != NULL)
  360. {
  361. FEditors->Add(reinterpret_cast<TObject *>(Editor));
  362. }
  363. Index++;
  364. }
  365. while (Next);
  366. FModified = false;
  367. }
  368. //---------------------------------------------------------------------------
  369. void __fastcall TEditorList::Save(THierarchicalStorage * Storage) const
  370. {
  371. Storage->ClearSubKeys();
  372. for (int Index = 0; Index < Count; Index++)
  373. {
  374. if (Storage->OpenSubKey(IntToStr(Index), true))
  375. {
  376. try
  377. {
  378. Editors[Index]->Save(Storage);
  379. }
  380. __finally
  381. {
  382. Storage->CloseSubKey();
  383. }
  384. }
  385. }
  386. }
  387. //---------------------------------------------------------------------------
  388. int __fastcall TEditorList::GetCount() const
  389. {
  390. int X = FEditors->Count;
  391. return X;
  392. }
  393. //---------------------------------------------------------------------------
  394. const TEditorPreferences * __fastcall TEditorList::GetEditor(int Index) const
  395. {
  396. return reinterpret_cast<TEditorPreferences *>(FEditors->Items[Index]);
  397. }
  398. //---------------------------------------------------------------------------
  399. bool __fastcall TEditorList::IsDefaultList() const
  400. {
  401. bool Result = true;
  402. for (int Index = 0; Result && (Index < Count); Index++)
  403. {
  404. const TEditorPreferences * Editor = GetEditor(Index);
  405. if (Editor->Data->Editor == edInternal)
  406. {
  407. // noop (keeps Result true)
  408. }
  409. else if (Editor->Data->Editor == edExternal)
  410. {
  411. UnicodeString ExternalEditor = Editor->ExtractExternalEditorName();
  412. UnicodeString DefaultExternalEditor = ExtractProgramName(TEditorPreferences::GetDefaultExternalEditor());
  413. Result = SameText(ExternalEditor, DefaultExternalEditor);
  414. }
  415. else
  416. {
  417. Result = false;
  418. }
  419. }
  420. return Result;
  421. }
  422. //---------------------------------------------------------------------------
  423. //---------------------------------------------------------------------------
  424. __fastcall TWinConfiguration::TWinConfiguration(): TCustomWinConfiguration()
  425. {
  426. FInvalidDefaultTranslationMessage = L"";
  427. FDDExtInstalled = -1;
  428. FBookmarks = new TBookmarks();
  429. FCustomCommandList = new TCustomCommandList();
  430. FExtensionList = new TCustomCommandList();
  431. FEditorList = new TEditorList();
  432. FDefaultUpdatesPeriod = 0;
  433. FDontDecryptPasswords = 0;
  434. FMasterPasswordSession = 0;
  435. FMasterPasswordSessionAsked = false;
  436. FSystemIconFont.reset(new TFont());
  437. UpdateSystemIconFont();
  438. Default();
  439. try
  440. {
  441. CheckTranslationVersion(
  442. GetResourceModuleName(Application->Name, ModuleFileName().c_str()), true);
  443. }
  444. catch(Exception & E)
  445. {
  446. FInvalidDefaultTranslationMessage = E.Message;
  447. }
  448. }
  449. //---------------------------------------------------------------------------
  450. __fastcall TWinConfiguration::~TWinConfiguration()
  451. {
  452. if (!FTemporarySessionFile.IsEmpty()) DeleteFile(ApiPath(FTemporarySessionFile));
  453. ClearTemporaryLoginData();
  454. delete FBookmarks;
  455. delete FCustomCommandList;
  456. delete FExtensionList;
  457. delete FEditorList;
  458. }
  459. //---------------------------------------------------------------------------
  460. void __fastcall TWinConfiguration::Default()
  461. {
  462. FCustomCommandsDefaults = true;
  463. TCustomWinConfiguration::Default();
  464. int WorkAreaWidthScaled = DimensionToDefaultPixelsPerInch(Screen->WorkAreaWidth);
  465. int WorkAreaHeightScaled = DimensionToDefaultPixelsPerInch(Screen->WorkAreaHeight);
  466. UnicodeString PixelsPerInchToolbarValue = "PixelsPerInch=" + SaveDefaultPixelsPerInch();
  467. FDDAllowMove = false;
  468. FDDAllowMoveInit = false;
  469. FDDTransferConfirmation = asAuto;
  470. FDDTemporaryDirectory = L"";
  471. FDDWarnLackOfTempSpace = true;
  472. FDDWarnLackOfTempSpaceRatio = 1.1;
  473. FDDExtEnabled = DDExtInstalled;
  474. FDDExtTimeout = MSecsPerSec;
  475. FDeleteToRecycleBin = true;
  476. FSelectDirectories = false;
  477. FSelectMask = L"*.*";
  478. FShowHiddenFiles = false;
  479. FFormatSizeBytes = fbKilobytes;
  480. FShowInaccesibleDirectories = true;
  481. FConfirmTransferring = true;
  482. FConfirmDeleting = true;
  483. FConfirmRecycling = true;
  484. FConfirmClosingSession = true;
  485. FDoubleClickAction = dcaEdit;
  486. FCopyOnDoubleClickConfirmation = false;
  487. FDimmHiddenFiles = true;
  488. FRenameWholeName = false;
  489. FAutoStartSession = L"";
  490. FExpertMode = true;
  491. FUseLocationProfiles = false;
  492. FUseSharedBookmarks = false;
  493. FDefaultDirIsHome = true;
  494. FDDDeleteDelay = 120;
  495. FTemporaryDirectoryAppendSession = false;
  496. FTemporaryDirectoryDeterministic = false;
  497. FTemporaryDirectoryAppendPath = true;
  498. FTemporaryDirectoryCleanup = true;
  499. FConfirmTemporaryDirectoryCleanup = true;
  500. FPreservePanelState = true;
  501. FLastStoredSession = L"";
  502. // deliberately not being saved, so that when saving ad-hoc workspace,
  503. // we do not offer to overwrite the last saved workspace, what may be undesirable
  504. FLastWorkspace = L"";
  505. FAutoSaveWorkspace = false;
  506. FAutoSaveWorkspacePasswords = false;
  507. FAutoWorkspace = L"";
  508. FPathInCaption = picShort;
  509. FMinimizeToTray = false;
  510. FMinimizeToTrayOnce = false;
  511. FBalloonNotifications = true;
  512. FNotificationsTimeout = 10;
  513. FNotificationsStickTime = 2;
  514. FCopyParamAutoSelectNotice = true;
  515. FLockToolbars = false;
  516. FSelectiveToolbarText = true;
  517. FAutoOpenInPutty = false;
  518. FRefreshRemotePanel = false;
  519. FRefreshRemotePanelInterval = TDateTime(0, 1, 0, 0);
  520. FPanelFont.FontName = L"";
  521. FPanelFont.FontSize = 0;
  522. FPanelFont.FontStyle = 0;
  523. FPanelFont.FontCharset = DEFAULT_CHARSET;
  524. FFullRowSelect = false;
  525. FOfferedEditorAutoConfig = false;
  526. FVersionHistory = L"";
  527. AddVersionToHistory();
  528. FUseMasterPassword = false;
  529. FPlainMasterPasswordEncrypt = L"";
  530. FPlainMasterPasswordDecrypt = L"";
  531. FMasterPasswordVerifier = L"";
  532. FOpenedStoredSessionFolders = L"";
  533. FAutoImportedFromPuttyOrFilezilla = false;
  534. FGenerateUrlComponents = -1;
  535. FGenerateUrlCodeTarget = guctUrl;
  536. FGenerateUrlScriptFormat = sfScriptFile;
  537. FGenerateUrlAssemblyLanguage = alCSharp;
  538. FExternalSessionInExistingInstance = true;
  539. FKeepOpenWhenNoSession = false;
  540. FLocalIconsByExt = false;
  541. FBidiModeOverride = lfoLanguageIfRecommended;
  542. FFlipChildrenOverride = lfoLanguageIfRecommended;
  543. FShowTips = true;
  544. FTipsSeen = L"";
  545. FTipsShown = Now();
  546. FRunsSinceLastTip = 0;
  547. FExtensionsDeleted = L"";
  548. HonorDrivePolicy = true;
  549. FEditor.Font.FontName = DefaultFixedWidthFontName;
  550. FEditor.Font.FontSize = DefaultFixedWidthFontSize;
  551. FEditor.Font.FontStyle = 0;
  552. FEditor.Font.FontCharset = DEFAULT_CHARSET;
  553. FEditor.FontColor = TColor(0);
  554. FEditor.BackgroundColor = TColor(0);
  555. FEditor.WordWrap = false;
  556. FEditor.FindText = L"";
  557. FEditor.ReplaceText = L"";
  558. FEditor.FindMatchCase = false;
  559. FEditor.FindWholeWord = false;
  560. FEditor.FindDown = true;
  561. FEditor.TabSize = 8;
  562. FEditor.MaxEditors = 500;
  563. FEditor.EarlyClose = 2; // seconds
  564. FEditor.SDIShellEditor = false;
  565. FEditor.WindowParams = L"";
  566. FEditor.Encoding = CP_ACP;
  567. FEditor.WarnOnEncodingFallback = true;
  568. FEditor.WarnOrLargeFileSize = true;
  569. FQueueView.Height = 140;
  570. FQueueView.HeightPixelsPerInch = USER_DEFAULT_SCREEN_DPI;
  571. // with 1000 pixels wide screen, both interfaces are wide enough to fit wider queue
  572. FQueueView.Layout =
  573. UnicodeString((WorkAreaWidthScaled > 1000) ? L"70,250,250,80,80,80,100" : L"70,160,160,80,80,80,100") +
  574. // WORKAROUND (the comma), see GetListViewStr
  575. L",;" + SaveDefaultPixelsPerInch();
  576. FQueueView.Show = qvHideWhenEmpty;
  577. FQueueView.LastHideShow = qvHideWhenEmpty;
  578. FQueueView.ToolBar = true;
  579. FQueueView.Label = true;
  580. FEnableQueueByDefault = true;
  581. FUpdates.Period = FDefaultUpdatesPeriod;
  582. FUpdates.LastCheck = 0;
  583. FUpdates.HaveResults = false;
  584. FUpdates.ShownResults = false;
  585. FUpdates.BetaVersions = asAuto;
  586. FUpdates.ShowOnStartup = true;
  587. FUpdates.AuthenticationEmail = L"";
  588. // for backward compatibility the default is decided based on value of ProxyHost
  589. FUpdates.ConnectionType = (TConnectionType)-1;
  590. FUpdates.ProxyHost = L""; // keep empty (see above)
  591. FUpdates.ProxyPort = 8080;
  592. FUpdates.Results.Reset();
  593. FUpdates.DotNetVersion = L"";
  594. FUpdates.ConsoleVersion = L"";
  595. FLogWindowOnStartup = true;
  596. FLogWindowParams = FormatDefaultWindowParams(500, 400);
  597. int ExplorerWidth = Min(WorkAreaWidthScaled - 40, 960);
  598. int ExplorerHeight = Min(WorkAreaHeightScaled - 30, 720);
  599. FScpExplorer.WindowParams = FormatDefaultWindowParams(ExplorerWidth, ExplorerHeight);
  600. // WORKAROUND (the semicolon, see TCustomListViewColProperties.GetParamsStr, and see other instances below)
  601. FScpExplorer.DirViewParams = 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";
  602. FScpExplorer.ToolbarsLayout =
  603. UnicodeString(
  604. L"Queue_Visible=1,Queue_LastDock=QueueDock,Queue_DockRow=0,Queue_DockPos=-1,Queue_FloatLeft=0,Queue_FloatTop=0,Queue_FloatRightX=0,"
  605. "Menu_Visible=1,Menu_DockedTo=TopDock,Menu_LastDock=TopDock,Menu_DockRow=0,Menu_DockPos=0,Menu_FloatLeft=0,Menu_FloatTop=0,Menu_FloatRightX=0,"
  606. "Buttons_Visible=1,Buttons_DockedTo=TopDock,Buttons_LastDock=TopDock,Buttons_DockRow=2,Buttons_DockPos=0,Buttons_FloatLeft=0,Buttons_FloatTop=0,Buttons_FloatRightX=0,"
  607. "Selection_Visible=0,Selection_DockedTo=TopDock,Selection_LastDock=TopDock,Selection_DockRow=3,Selection_DockPos=0,Selection_FloatLeft=227,Selection_FloatTop=445,Selection_FloatRightX=0,"
  608. "Session_Visible=0,Session_DockedTo=TopDock,Session_LastDock=TopDock,Session_DockRow=6,Session_DockPos=0,Session_FloatLeft=39,Session_FloatTop=160,Session_FloatRightX=0,"
  609. "Preferences_Visible=1,Preferences_DockedTo=TopDock,Preferences_LastDock=TopDock,Preferences_DockRow=4,Preferences_DockPos=0,Preferences_FloatLeft=0,Preferences_FloatTop=0,Preferences_FloatRightX=0,"
  610. "Sort_Visible=0,Sort_DockedTo=TopDock,Sort_LastDock=TopDock,Sort_DockRow=5,Sort_DockPos=0,Sort_FloatLeft=0,Sort_FloatTop=0,Sort_FloatRightX=0,"
  611. "Address_Visible=1,Address_DockedTo=TopDock,Address_LastDock=TopDock,Address_DockRow=1,Address_DockPos=0,Address_FloatLeft=0,Address_FloatTop=0,Address_FloatRightX=0,"
  612. "Updates_Visible=1,Updates_DockedTo=TopDock,Updates_LastDock=TopDock,Updates_DockRow=4,Updates_DockPos=416,Updates_FloatLeft=0,Updates_FloatTop=0,Updates_FloatRightX=0,"
  613. "Transfer_Visible=1,Transfer_DockedTo=TopDock,Transfer_LastDock=TopDock,Transfer_DockRow=4,Transfer_DockPos=194,Transfer_FloatLeft=0,Transfer_FloatTop=0,Transfer_FloatRightX=0,"
  614. "CustomCommands_Visible=0,CustomCommands_DockedTo=TopDock,CustomCommands_LastDock=TopDock,CustomCommands_DockRow=7,CustomCommands_DockPos=0,CustomCommands_FloatLeft=0,CustomCommands_FloatTop=0,CustomCommands_FloatRightX=0,") +
  615. PixelsPerInchToolbarValue;
  616. FScpExplorer.SessionsTabs = true;
  617. FScpExplorer.StatusBar = true;
  618. FScpExplorer.LastLocalTargetDirectory = GetPersonalFolder();
  619. FScpExplorer.ViewStyle = 0; /* vsIcon */
  620. FScpExplorer.ShowFullAddress = true;
  621. FScpExplorer.DriveView = true;
  622. FScpExplorer.DriveViewWidth = 180;
  623. FScpExplorer.DriveViewWidthPixelsPerInch = USER_DEFAULT_SCREEN_DPI;
  624. int CommanderWidth = Min(WorkAreaWidthScaled - 40, 1090);
  625. int CommanderHeight = Min(WorkAreaHeightScaled - 30, 700);
  626. FScpCommander.WindowParams = FormatDefaultWindowParams(CommanderWidth, CommanderHeight);
  627. FScpCommander.LocalPanelWidth = 0.5;
  628. FScpCommander.SwappedPanels = false;
  629. FScpCommander.SessionsTabs = true;
  630. FScpCommander.StatusBar = true;
  631. FScpCommander.NortonLikeMode = nlKeyboard;
  632. FScpCommander.PreserveLocalDirectory = false;
  633. // Toolbar2_FloatRightX=1 makes keybar apper initially "in column" when undocked
  634. FScpCommander.ToolbarsLayout =
  635. UnicodeString(
  636. L"Queue_Visible=1,Queue_LastDock=QueueDock,Queue_DockRow=0,Queue_DockPos=-1,Queue_FloatLeft=0,Queue_FloatTop=0,Queue_FloatRightX=0,"
  637. "Menu_Visible=1,Menu_DockedTo=TopDock,Menu_LastDock=TopDock,Menu_DockRow=0,Menu_DockPos=0,Menu_FloatLeft=0,Menu_FloatTop=0,Menu_FloatRightX=0,"
  638. "Preferences_Visible=1,Preferences_DockedTo=TopDock,Preferences_LastDock=TopDock,Preferences_DockRow=1,Preferences_DockPos=228,Preferences_FloatLeft=0,Preferences_FloatTop=0,Preferences_FloatRightX=0,"
  639. "Session_Visible=0,Session_DockedTo=TopDock,Session_LastDock=TopDock,Session_DockRow=1,Session_DockPos=602,Session_FloatLeft=380,Session_FloatTop=197,Session_FloatRightX=0,"
  640. "Sort_Visible=0,Sort_DockedTo=TopDock,Sort_LastDock=TopDock,Sort_DockRow=2,Sort_DockPos=0,Sort_FloatLeft=0,Sort_FloatTop=0,Sort_FloatRightX=0,"
  641. "Commands_Visible=1,Commands_DockedTo=TopDock,Commands_LastDock=TopDock,Commands_DockRow=1,Commands_DockPos=0,Commands_FloatLeft=0,Commands_FloatTop=0,Commands_FloatRightX=0,"
  642. "Updates_Visible=1,Updates_DockedTo=TopDock,Updates_LastDock=TopDock,Updates_DockRow=1,Updates_DockPos=619,Updates_FloatLeft=0,Updates_FloatTop=0,Updates_FloatRightX=0,"
  643. "Transfer_Visible=1,Transfer_DockedTo=TopDock,Transfer_LastDock=TopDock,Transfer_DockRow=1,Transfer_DockPos=364,Transfer_FloatLeft=0,Transfer_FloatTop=0,Transfer_FloatRightX=0,"
  644. "CustomCommands_Visible=0,CustomCommands_DockedTo=TopDock,CustomCommands_LastDock=TopDock,CustomCommands_DockRow=3,CustomCommands_DockPos=0,CustomCommands_FloatLeft=0,CustomCommands_FloatTop=0,CustomCommands_FloatRightX=0,"
  645. "RemoteHistory_Visible=1,RemoteHistory_DockedTo=RemoteTopDock,RemoteHistory_LastDock=RemoteTopDock,RemoteHistory_DockRow=0,RemoteHistory_DockPos=172,RemoteHistory_FloatLeft=0,RemoteHistory_FloatTop=0,RemoteHistory_FloatRightX=0,"
  646. "RemoteNavigation_Visible=1,RemoteNavigation_DockedTo=RemoteTopDock,RemoteNavigation_LastDock=RemoteTopDock,RemoteNavigation_DockRow=0,RemoteNavigation_DockPos=252,RemoteNavigation_FloatLeft=0,RemoteNavigation_FloatTop=0,RemoteNavigation_FloatRightX=0,"
  647. "RemotePath_Visible=1,RemotePath_DockedTo=RemoteTopDock,RemotePath_LastDock=RemoteTopDock,RemotePath_DockRow=0,RemotePath_DockPos=0,RemotePath_FloatLeft=0,RemotePath_FloatTop=0,RemotePath_FloatRightX=0,"
  648. "RemoteFile_Visible=1,RemoteFile_DockedTo=RemoteTopDock,RemoteFile_LastDock=RemoteTopDock,RemoteFile_DockRow=1,RemoteFile_DockPos=0,RemoteFile_FloatLeft=0,RemoteFile_FloatTop=0,RemoteFile_FloatRightX=0,"
  649. "RemoteSelection_Visible=1,RemoteSelection_DockedTo=RemoteTopDock,RemoteSelection_LastDock=RemoteTopDock,RemoteSelection_DockRow=1,RemoteSelection_DockPos=345,RemoteSelection_FloatLeft=0,RemoteSelection_FloatTop=0,RemoteSelection_FloatRightX=0,"
  650. "LocalHistory_Visible=1,LocalHistory_DockedTo=LocalTopDock,LocalHistory_LastDock=LocalTopDock,LocalHistory_DockRow=0,LocalHistory_DockPos=207,LocalHistory_FloatLeft=0,LocalHistory_FloatTop=0,LocalHistory_FloatRightX=0,"
  651. "LocalNavigation_Visible=1,LocalNavigation_DockedTo=LocalTopDock,LocalNavigation_LastDock=LocalTopDock,LocalNavigation_DockRow=0,LocalNavigation_DockPos=287,LocalNavigation_FloatLeft=0,LocalNavigation_FloatTop=0,LocalNavigation_FloatRightX=0,"
  652. "LocalPath_Visible=1,LocalPath_DockedTo=LocalTopDock,LocalPath_LastDock=LocalTopDock,LocalPath_DockRow=0,LocalPath_DockPos=0,LocalPath_FloatLeft=0,LocalPath_FloatTop=0,LocalPath_FloatRightX=0,"
  653. "LocalFile_Visible=1,LocalFile_DockedTo=LocalTopDock,LocalFile_LastDock=LocalTopDock,LocalFile_DockRow=1,LocalFile_DockPos=0,LocalFile_FloatLeft=0,LocalFile_FloatTop=0,LocalFile_FloatRightX=0,"
  654. "LocalSelection_Visible=1,LocalSelection_DockedTo=LocalTopDock,LocalSelection_LastDock=LocalTopDock,LocalSelection_DockRow=1,LocalSelection_DockPos=329,LocalSelection_FloatLeft=0,LocalSelection_FloatTop=0,LocalSelection_FloatRightX=0,"
  655. "Toolbar2_Visible=0,Toolbar2_DockedTo=BottomDock,Toolbar2_LastDock=BottomDock,Toolbar2_DockRow=1,Toolbar2_DockPos=0,Toolbar2_FloatLeft=0,Toolbar2_FloatTop=0,Toolbar2_FloatRightX=1,"
  656. "CommandLine_Visible=0,CommandLine_DockedTo=BottomDock,CommandLine_LastDock=BottomDock,CommandLine_DockRow=0,CommandLine_DockPos=0,CommandLine_FloatLeft=0,CommandLine_FloatTop=0,CommandLine_FloatRightX=0,") +
  657. PixelsPerInchToolbarValue;
  658. FScpCommander.CurrentPanel = osLocal;
  659. FScpCommander.CompareByTime = true;
  660. FScpCommander.CompareBySize = false;
  661. FScpCommander.TreeOnLeft = false;
  662. FScpCommander.ExplorerKeyboardShortcuts = false;
  663. FScpCommander.SystemContextMenu = false;
  664. FScpCommander.RemotePanel.DirViewParams = 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";
  665. FScpCommander.RemotePanel.StatusBar = true;
  666. FScpCommander.RemotePanel.DriveView = false;
  667. FScpCommander.RemotePanel.DriveViewHeight = 100;
  668. FScpCommander.RemotePanel.DriveViewHeightPixelsPerInch = USER_DEFAULT_SCREEN_DPI;
  669. FScpCommander.RemotePanel.DriveViewWidth = 100;
  670. FScpCommander.RemotePanel.DriveViewWidthPixelsPerInch = USER_DEFAULT_SCREEN_DPI;
  671. FScpCommander.LocalPanel.DirViewParams = L"0;1;0|150,1;70,1;120,1;150,1;55,0;55,0;@" + SaveDefaultPixelsPerInch() + L"|5;0;1;2;3;4";
  672. FScpCommander.LocalPanel.StatusBar = true;
  673. FScpCommander.LocalPanel.DriveView = false;
  674. FScpCommander.LocalPanel.DriveViewHeight = 100;
  675. FScpCommander.LocalPanel.DriveViewHeightPixelsPerInch = USER_DEFAULT_SCREEN_DPI;
  676. FScpCommander.LocalPanel.DriveViewWidth = 100;
  677. FScpCommander.LocalPanel.DriveViewWidthPixelsPerInch = USER_DEFAULT_SCREEN_DPI;
  678. FBookmarks->Clear();
  679. }
  680. //---------------------------------------------------------------------------
  681. void __fastcall TWinConfiguration::DefaultLocalized()
  682. {
  683. TGUIConfiguration::DefaultLocalized();
  684. if (FCustomCommandsDefaults)
  685. {
  686. FCustomCommandList->Clear();
  687. FCustomCommandList->Add(LoadStr(CUSTOM_COMMAND_EXECUTE), L"\"./!\"", 0);
  688. FCustomCommandList->Add(LoadStr(CUSTOM_COMMAND_TOUCH), L"touch \"!\"", ccApplyToDirectories | ccRecursive);
  689. FCustomCommandList->Add(LoadStr(CUSTOM_COMMAND_TAR),
  690. FORMAT(L"tar -cz -f \"!?%s?archive.tgz!\" !&",
  691. (LoadStr(CUSTOM_COMMAND_TAR_ARCHIVE))), ccApplyToDirectories);
  692. FCustomCommandList->Add(LoadStr(CUSTOM_COMMAND_UNTAR),
  693. FORMAT(L"tar -xz --directory=\"!?%s?.!\" -f \"!\"",
  694. (LoadStr(CUSTOM_COMMAND_UNTAR_DIRECTORY))), 0);
  695. FCustomCommandList->Add(LoadStr(CUSTOM_COMMAND_GREP),
  696. FORMAT(L"grep \"!?%s?!\" !&", (LoadStr(CUSTOM_COMMAND_GREP_PATTERN))),
  697. ccShowResults);
  698. FCustomCommandList->Add(LoadStr(CUSTOM_COMMAND_FC),
  699. L"cmd /c fc \"!\" \"\!^!\" | more && pause", ccLocal);
  700. FCustomCommandList->Add(LoadStr(CUSTOM_COMMAND_PRINT), L"notepad.exe /p \"!\"", ccLocal);
  701. FCustomCommandList->Reset();
  702. FCustomCommandsDefaults = true;
  703. }
  704. }
  705. //---------------------------------------------------------------------------
  706. bool __fastcall TWinConfiguration::DetectRegistryStorage(HKEY RootKey)
  707. {
  708. bool Result = false;
  709. TRegistryStorage * Storage = new TRegistryStorage(RegistryStorageKey, RootKey);
  710. try
  711. {
  712. if (Storage->OpenRootKey(false))
  713. {
  714. Result = true;
  715. Storage->CloseSubKey();
  716. }
  717. }
  718. __finally
  719. {
  720. delete Storage;
  721. }
  722. return Result;
  723. }
  724. //---------------------------------------------------------------------------
  725. bool __fastcall TWinConfiguration::CanWriteToStorage()
  726. {
  727. bool Result = false;
  728. try
  729. {
  730. THierarchicalStorage * Storage = CreateConfigStorage();
  731. try
  732. {
  733. Storage->AccessMode = smReadWrite;
  734. // This is actually not very good test, as we end up potentially with
  735. // the very same config, and TIniFileStorage file won't even try to
  736. // write the file then. Lucliky, we use this for empty config only,
  737. // so we end up with at least an empty section.
  738. if (Storage->OpenSubKey(ConfigurationSubKey, true))
  739. {
  740. Storage->WriteBool(L"WriteTest", true);
  741. Storage->DeleteValue(L"WriteTest");
  742. }
  743. Storage->Flush();
  744. }
  745. __finally
  746. {
  747. delete Storage;
  748. }
  749. Result = true;
  750. }
  751. catch(...)
  752. {
  753. }
  754. return Result;
  755. }
  756. //---------------------------------------------------------------------------
  757. TStorage __fastcall TWinConfiguration::GetStorage()
  758. {
  759. if (FStorage == stDetect)
  760. {
  761. if (FindResourceEx(NULL, RT_RCDATA, L"WINSCP_SESSION",
  762. MAKELANGID(LANG_NEUTRAL, SUBLANG_NEUTRAL)))
  763. {
  764. FTemporarySessionFile =
  765. IncludeTrailingBackslash(SystemTemporaryDirectory()) + L"winscps.tmp";
  766. DumpResourceToFile(L"WINSCP_SESSION", FTemporarySessionFile);
  767. FEmbeddedSessions = true;
  768. FTemporaryKeyFile =
  769. IncludeTrailingBackslash(SystemTemporaryDirectory()) + L"winscpk.tmp";
  770. if (!DumpResourceToFile(L"WINSCP_KEY", FTemporaryKeyFile))
  771. {
  772. FTemporaryKeyFile = L"";
  773. }
  774. }
  775. FStorage = stIniFile;
  776. if (!FileExists(ApiPath(IniFileStorageNameForReading)))
  777. {
  778. if (DetectRegistryStorage(HKEY_CURRENT_USER) ||
  779. DetectRegistryStorage(HKEY_LOCAL_MACHINE) ||
  780. // FStorage is now stIniFile, so this tests writing to an INI file.
  781. // As we fall back to user profile folder, when application folder
  782. // is not writtable, it is actually unlikely that the below test ever fails.
  783. !CanWriteToStorage())
  784. {
  785. FStorage = stRegistry;
  786. }
  787. }
  788. }
  789. TStorage Result = TCustomWinConfiguration::GetStorage();
  790. return Result;
  791. }
  792. //---------------------------------------------------------------------------
  793. void __fastcall TWinConfiguration::Saved()
  794. {
  795. TCustomWinConfiguration::Saved();
  796. FBookmarks->ModifyAll(false);
  797. FCustomCommandList->Reset();
  798. FEditorList->Saved();
  799. }
  800. //---------------------------------------------------------------------------
  801. void __fastcall TWinConfiguration::RecryptPasswords(TStrings * RecryptPasswordErrors)
  802. {
  803. TCustomWinConfiguration::RecryptPasswords(RecryptPasswordErrors);
  804. try
  805. {
  806. TTerminalManager * Manager = TTerminalManager::Instance(false);
  807. DebugAssert(Manager != NULL);
  808. if (Manager != NULL)
  809. {
  810. Manager->RecryptPasswords();
  811. }
  812. }
  813. catch (Exception & E)
  814. {
  815. UnicodeString Message;
  816. if (ExceptionMessage(&E, Message))
  817. {
  818. // we do not expect this really to happen,
  819. // so we do not bother providing context
  820. RecryptPasswordErrors->Add(Message);
  821. }
  822. }
  823. }
  824. //---------------------------------------------------------------------------
  825. bool __fastcall TWinConfiguration::GetUseMasterPassword()
  826. {
  827. return FUseMasterPassword;
  828. }
  829. //---------------------------------------------------------------------------
  830. THierarchicalStorage * TWinConfiguration::CreateScpStorage(bool & SessionList)
  831. {
  832. // Detect embedded session, if not checked yet
  833. GetStorage();
  834. THierarchicalStorage * Result;
  835. if (SessionList && !FTemporarySessionFile.IsEmpty())
  836. {
  837. Result = new TIniFileStorage(FTemporarySessionFile);
  838. // This is session-list specific store, so the only instance,
  839. // we do not reset the SessionList argument
  840. // (compare TConfiguration::CreateScpStorage)
  841. }
  842. else
  843. {
  844. Result = TCustomWinConfiguration::CreateScpStorage(SessionList);
  845. }
  846. return Result;
  847. }
  848. //---------------------------------------------------------------------------
  849. // duplicated from core\configuration.cpp
  850. #define LASTELEM(ELEM) \
  851. ELEM.SubString(ELEM.LastDelimiter(L".>")+1, ELEM.Length() - ELEM.LastDelimiter(L".>"))
  852. #define BLOCK(KEY, CANCREATE, BLOCK) \
  853. if (Storage->OpenSubKey(KEY, CANCREATE, true)) try { BLOCK } __finally { Storage->CloseSubKey(); }
  854. #define KEY(TYPE, VAR) KEYEX(TYPE, VAR, PropertyToKey(TEXT(#VAR)))
  855. #define REGCONFIG(CANCREATE) \
  856. BLOCK(L"Interface", CANCREATE, \
  857. KEYEX(Integer,DoubleClickAction, L"CopyOnDoubleClick"); \
  858. KEY(Bool, CopyOnDoubleClickConfirmation); \
  859. KEY(Bool, DDAllowMove); \
  860. KEY(Bool, DDAllowMoveInit); \
  861. KEYEX(Integer, DDTransferConfirmation, L"DDTransferConfirmation2"); \
  862. KEY(String, DDTemporaryDirectory); \
  863. KEY(Bool, DDWarnLackOfTempSpace); \
  864. KEY(Float, DDWarnLackOfTempSpaceRatio); \
  865. KEY(Bool, DeleteToRecycleBin); \
  866. KEY(Bool, DimmHiddenFiles); \
  867. KEY(Bool, RenameWholeName); \
  868. KEY(Bool, SelectDirectories); \
  869. KEY(String, SelectMask); \
  870. KEY(Bool, ShowHiddenFiles); \
  871. KEY(Integer, FormatSizeBytes); \
  872. KEY(Bool, ShowInaccesibleDirectories); \
  873. KEY(Bool, ConfirmTransferring); \
  874. KEY(Bool, ConfirmDeleting); \
  875. KEY(Bool, ConfirmRecycling); \
  876. KEY(Bool, ConfirmClosingSession); \
  877. KEY(String, AutoStartSession); \
  878. KEY(Bool, UseLocationProfiles); \
  879. KEY(Bool, UseSharedBookmarks); \
  880. KEY(Integer, LocaleSafe); \
  881. KEY(Bool, DDExtEnabled); \
  882. KEY(Integer, DDExtTimeout); \
  883. KEY(Bool, DefaultDirIsHome); \
  884. KEY(Bool, TemporaryDirectoryAppendSession); \
  885. KEY(Bool, TemporaryDirectoryAppendPath); \
  886. KEY(Bool, TemporaryDirectoryDeterministic); \
  887. KEY(Bool, TemporaryDirectoryCleanup); \
  888. KEY(Bool, ConfirmTemporaryDirectoryCleanup); \
  889. KEY(Bool, PreservePanelState); \
  890. KEY(String, LastStoredSession); \
  891. KEY(Bool, AutoSaveWorkspace); \
  892. KEY(Bool, AutoSaveWorkspacePasswords); \
  893. KEY(String, AutoWorkspace); \
  894. KEY(Integer, PathInCaption); \
  895. KEY(Bool, MinimizeToTray); \
  896. KEY(Bool, BalloonNotifications); \
  897. KEY(Integer, NotificationsTimeout); \
  898. KEY(Integer, NotificationsStickTime); \
  899. KEY(Bool, CopyParamAutoSelectNotice); \
  900. KEY(Bool, LockToolbars); \
  901. KEY(Bool, SelectiveToolbarText); \
  902. KEY(Bool, AutoOpenInPutty); \
  903. KEY(Bool, RefreshRemotePanel); \
  904. KEY(DateTime, RefreshRemotePanelInterval); \
  905. KEYEX(String, PanelFont.FontName, L"PanelFontName"); \
  906. KEYEX(Integer,PanelFont.FontSize, L"PanelFontSize"); \
  907. KEYEX(Integer,PanelFont.FontStyle, L"PanelFontStyle"); \
  908. KEYEX(Integer,PanelFont.FontCharset, L"PanelFontCharset"); \
  909. KEY(Bool, FullRowSelect); \
  910. KEY(Bool, OfferedEditorAutoConfig); \
  911. KEY(Integer, LastMonitor); \
  912. KEY(String, VersionHistory); \
  913. KEY(Bool, EnableQueueByDefault); \
  914. KEY(String, OpenedStoredSessionFolders); \
  915. KEY(Bool, AutoImportedFromPuttyOrFilezilla); \
  916. KEY(Integer, GenerateUrlComponents); \
  917. KEY(Integer, GenerateUrlCodeTarget); \
  918. KEY(Integer, GenerateUrlScriptFormat); \
  919. KEY(Integer, GenerateUrlAssemblyLanguage); \
  920. KEY(Bool, ExternalSessionInExistingInstance); \
  921. KEY(Bool, KeepOpenWhenNoSession); \
  922. KEY(Bool, LocalIconsByExt); \
  923. KEY(Integer, BidiModeOverride); \
  924. KEY(Integer, FlipChildrenOverride); \
  925. KEY(Bool, ShowTips); \
  926. KEY(String, TipsSeen); \
  927. KEY(DateTime, TipsShown); \
  928. KEY(Integer, RunsSinceLastTip); \
  929. KEY(Bool, HonorDrivePolicy); \
  930. KEY(Integer, LastMachineInstallations); \
  931. KEYEX(String, FExtensionsDeleted, L"ExtensionsDeleted"); \
  932. KEYEX(String, FExtensionsOrder, L"ExtensionsOrder"); \
  933. ); \
  934. BLOCK(L"Interface\\Editor", CANCREATE, \
  935. KEYEX(String, Editor.Font.FontName, L"FontName2"); \
  936. KEY(Integer, Editor.Font.FontSize); \
  937. KEY(Integer, Editor.Font.FontStyle); \
  938. KEY(Integer, Editor.Font.FontCharset); \
  939. KEY(Integer, Editor.FontColor); \
  940. KEY(Integer, Editor.BackgroundColor); \
  941. KEY(Bool, Editor.WordWrap); \
  942. KEY(String, Editor.FindText); \
  943. KEY(String, Editor.ReplaceText); \
  944. KEY(Bool, Editor.FindMatchCase); \
  945. KEY(Bool, Editor.FindWholeWord); \
  946. KEY(Bool, Editor.FindDown); \
  947. KEY(Integer, Editor.TabSize); \
  948. KEY(Integer, Editor.MaxEditors); \
  949. KEY(Integer, Editor.EarlyClose); \
  950. KEY(Bool, Editor.SDIShellEditor); \
  951. KEY(String, Editor.WindowParams); \
  952. KEY(Integer, Editor.Encoding); \
  953. KEY(Bool, Editor.WarnOnEncodingFallback); \
  954. KEY(Bool, Editor.WarnOrLargeFileSize); \
  955. ); \
  956. BLOCK(L"Interface\\QueueView", CANCREATE, \
  957. KEY(Integer, QueueView.Height); \
  958. KEY(Integer, QueueView.HeightPixelsPerInch); \
  959. KEY(String, QueueView.Layout); \
  960. KEY(Integer, QueueView.Show); \
  961. KEY(Integer, QueueView.LastHideShow); \
  962. KEY(Bool, QueueView.ToolBar); \
  963. KEY(Bool, QueueView.Label); \
  964. ); \
  965. BLOCK(L"Interface\\Updates", CANCREATE, \
  966. KEY(Integer, FUpdates.Period); \
  967. KEY(DateTime, FUpdates.LastCheck); \
  968. KEY(Integer, FUpdates.HaveResults); \
  969. KEY(Integer, FUpdates.ShownResults); \
  970. KEY(Integer, FUpdates.BetaVersions); \
  971. KEY(Bool, FUpdates.ShowOnStartup); \
  972. KEY(String, FUpdates.AuthenticationEmail); \
  973. KEY(Integer, FUpdates.ConnectionType); \
  974. KEY(String, FUpdates.ProxyHost); \
  975. KEY(Integer, FUpdates.ProxyPort); \
  976. KEY(Integer, FUpdates.Results.ForVersion); \
  977. KEY(Integer, FUpdates.Results.Version); \
  978. KEY(String, FUpdates.Results.Message); \
  979. KEY(Integer, FUpdates.Results.Critical); \
  980. KEY(String, FUpdates.Results.Release); \
  981. KEY(Bool, FUpdates.Results.Disabled); \
  982. KEY(String, FUpdates.Results.Url); \
  983. KEY(String, FUpdates.Results.UrlButton); \
  984. KEY(String, FUpdates.Results.NewsUrl); \
  985. KEYEX(Integer,FUpdates.Results.NewsSize.Width, L"NewsWidth"); \
  986. KEYEX(Integer,FUpdates.Results.NewsSize.Height, L"NewsHeight"); \
  987. KEY(String, FUpdates.Results.DownloadUrl); \
  988. KEY(Int64, FUpdates.Results.DownloadSize); \
  989. KEY(String, FUpdates.Results.DownloadSha256); \
  990. KEY(String, FUpdates.Results.AuthenticationError); \
  991. KEY(Bool, FUpdates.Results.OpenGettingStarted); \
  992. KEY(String, FUpdates.Results.DownloadingUrl); \
  993. KEYEX(Integer,FUpdates.Results.TipsSize.Width, L"TipsWidth"); \
  994. KEYEX(Integer,FUpdates.Results.TipsSize.Height, L"TipsHeight"); \
  995. KEY(String, FUpdates.Results.TipsUrl); \
  996. KEY(String, FUpdates.Results.Tips); \
  997. KEY(Integer, FUpdates.Results.TipsIntervalDays); \
  998. KEY(Integer, FUpdates.Results.TipsIntervalRuns); \
  999. KEY(String, FUpdates.DotNetVersion); \
  1000. KEY(String, FUpdates.ConsoleVersion); \
  1001. ); \
  1002. BLOCK(L"Interface\\Explorer", CANCREATE, \
  1003. KEY(String, ScpExplorer.ToolbarsLayout); \
  1004. KEY(String, ScpExplorer.DirViewParams); \
  1005. KEY(String, ScpExplorer.LastLocalTargetDirectory); \
  1006. KEY(Bool, ScpExplorer.SessionsTabs); \
  1007. KEY(Bool, ScpExplorer.StatusBar); \
  1008. KEY(String, ScpExplorer.WindowParams); \
  1009. KEY(Integer, ScpExplorer.ViewStyle); \
  1010. KEY(Bool, ScpExplorer.ShowFullAddress); \
  1011. KEY(Bool, ScpExplorer.DriveView); \
  1012. KEY(Integer, ScpExplorer.DriveViewWidth); \
  1013. KEY(Integer, ScpExplorer.DriveViewWidthPixelsPerInch); \
  1014. ); \
  1015. BLOCK(L"Interface\\Commander", CANCREATE, \
  1016. KEY(String, ScpCommander.ToolbarsLayout); \
  1017. KEY(Integer, ScpCommander.CurrentPanel); \
  1018. KEY(Float, ScpCommander.LocalPanelWidth); \
  1019. KEY(Bool, ScpCommander.SwappedPanels); \
  1020. KEY(Bool, ScpCommander.SessionsTabs); \
  1021. KEY(Bool, ScpCommander.StatusBar); \
  1022. KEY(String, ScpCommander.WindowParams); \
  1023. KEYEX(Integer, ScpCommander.NortonLikeMode, L"ExplorerStyleSelection"); \
  1024. KEY(Bool, ScpCommander.PreserveLocalDirectory); \
  1025. KEY(Bool, ScpCommander.CompareByTime); \
  1026. KEY(Bool, ScpCommander.CompareBySize); \
  1027. KEY(Bool, ScpCommander.TreeOnLeft); \
  1028. KEY(Bool, ScpCommander.ExplorerKeyboardShortcuts); \
  1029. KEY(Bool, ScpCommander.SystemContextMenu); \
  1030. ); \
  1031. BLOCK(L"Interface\\Commander\\LocalPanel", CANCREATE, \
  1032. KEY(String, ScpCommander.LocalPanel.DirViewParams); \
  1033. KEY(Bool, ScpCommander.LocalPanel.StatusBar); \
  1034. KEY(Bool, ScpCommander.LocalPanel.DriveView); \
  1035. KEY(Integer, ScpCommander.LocalPanel.DriveViewHeight); \
  1036. KEY(Integer, ScpCommander.LocalPanel.DriveViewHeightPixelsPerInch); \
  1037. KEY(Integer, ScpCommander.LocalPanel.DriveViewWidth); \
  1038. KEY(Integer, ScpCommander.LocalPanel.DriveViewWidthPixelsPerInch); \
  1039. ); \
  1040. BLOCK(L"Interface\\Commander\\RemotePanel", CANCREATE, \
  1041. KEY(String, ScpCommander.RemotePanel.DirViewParams); \
  1042. KEY(Bool, ScpCommander.RemotePanel.StatusBar); \
  1043. KEY(Bool, ScpCommander.RemotePanel.DriveView); \
  1044. KEY(Integer, ScpCommander.RemotePanel.DriveViewHeight); \
  1045. KEY(Integer, ScpCommander.RemotePanel.DriveViewHeightPixelsPerInch); \
  1046. KEY(Integer, ScpCommander.RemotePanel.DriveViewWidth); \
  1047. KEY(Integer, ScpCommander.RemotePanel.DriveViewWidthPixelsPerInch); \
  1048. ); \
  1049. BLOCK(L"Logging", CANCREATE, \
  1050. KEY(Bool, LogWindowOnStartup); \
  1051. KEY(String, LogWindowParams); \
  1052. ); \
  1053. BLOCK(L"Security", CANCREATE, \
  1054. KEYEX(Bool, FUseMasterPassword, L"UseMasterPassword"); \
  1055. KEYEX(String,FMasterPasswordVerifier, L"MasterPasswordVerifier"); \
  1056. );
  1057. //---------------------------------------------------------------------------
  1058. void __fastcall TWinConfiguration::SaveData(THierarchicalStorage * Storage, bool All)
  1059. {
  1060. TCustomWinConfiguration::SaveData(Storage, All);
  1061. // duplicated from core\configuration.cpp
  1062. #define KEYEX(TYPE, VAR, NAME) Storage->Write ## TYPE(NAME, VAR)
  1063. REGCONFIG(true);
  1064. #undef KEYEX
  1065. if (Storage->OpenSubKey(L"Bookmarks", true))
  1066. {
  1067. FBookmarks->Save(Storage, All);
  1068. Storage->CloseSubKey();
  1069. }
  1070. if ((All && !FCustomCommandsDefaults) || FCustomCommandList->Modified)
  1071. {
  1072. FCustomCommandList->Save(Storage);
  1073. }
  1074. if ((All || FEditorList->Modified) &&
  1075. Storage->OpenSubKey(L"Interface\\Editor", true, true))
  1076. try
  1077. {
  1078. FEditorList->Save(Storage);
  1079. }
  1080. __finally
  1081. {
  1082. Storage->CloseSubKey();
  1083. }
  1084. }
  1085. //---------------------------------------------------------------------------
  1086. void __fastcall TWinConfiguration::LoadFrom(THierarchicalStorage * Storage)
  1087. {
  1088. FLegacyEditor = new TEditorPreferences();
  1089. try
  1090. {
  1091. FLegacyEditor->LegacyDefaults();
  1092. TCustomWinConfiguration::LoadFrom(Storage);
  1093. // This needs to be done even if there's no Configuration key in the storage,
  1094. // so it cannot be in LoadData
  1095. int EditorCount = FEditorList->Count;
  1096. if (EditorCount == 0)
  1097. {
  1098. TEditorPreferences * AlternativeEditor = NULL;
  1099. try
  1100. {
  1101. if (FLegacyEditor->Data->Editor == edInternal)
  1102. {
  1103. if (!FLegacyEditor->Data->ExternalEditor.IsEmpty())
  1104. {
  1105. AlternativeEditor = new TEditorPreferences(*FLegacyEditor);
  1106. AlternativeEditor->GetData()->Editor = edExternal;
  1107. FLegacyEditor->GetData()->ExternalEditor = L"";
  1108. }
  1109. }
  1110. else
  1111. {
  1112. if (FLegacyEditor->Data->ExternalEditor.IsEmpty())
  1113. {
  1114. FLegacyEditor->GetData()->Editor = edInternal;
  1115. }
  1116. else
  1117. {
  1118. AlternativeEditor = new TEditorPreferences(*FLegacyEditor);
  1119. AlternativeEditor->GetData()->Editor = edInternal;
  1120. }
  1121. }
  1122. }
  1123. catch(...)
  1124. {
  1125. delete AlternativeEditor;
  1126. throw;
  1127. }
  1128. FEditorList->Add(FLegacyEditor);
  1129. FLegacyEditor = NULL;
  1130. if (AlternativeEditor != NULL)
  1131. {
  1132. FEditorList->Add(AlternativeEditor);
  1133. }
  1134. }
  1135. }
  1136. __finally
  1137. {
  1138. delete FLegacyEditor;
  1139. FLegacyEditor = NULL;
  1140. }
  1141. if (FUpdates.ConnectionType == -1)
  1142. {
  1143. FUpdates.ConnectionType = (FUpdates.ProxyHost.IsEmpty() ? ctAuto : ctProxy);
  1144. }
  1145. AddVersionToHistory();
  1146. }
  1147. //---------------------------------------------------------------------------
  1148. void __fastcall TWinConfiguration::DoLoadExtensionList(
  1149. const UnicodeString & Path, const UnicodeString & PathId, TStringList * DeletedExtensions)
  1150. {
  1151. TSearchRecChecked SearchRec;
  1152. int FindAttrs = faReadOnly | faArchive;
  1153. if (FindFirstUnchecked(IncludeTrailingBackslash(Path) + L"*.*", FindAttrs, SearchRec) == 0)
  1154. {
  1155. try
  1156. {
  1157. do
  1158. {
  1159. UnicodeString Id = TCustomCommandType::GetExtensionId(SearchRec.Name);
  1160. if (!Id.IsEmpty())
  1161. {
  1162. Id = IncludeTrailingBackslash(PathId) + Id;
  1163. if (DeletedExtensions->IndexOf(Id) >= 0)
  1164. {
  1165. // reconstruct the list, so that we remove the commands that no longer exists
  1166. AddToList(FExtensionsDeleted, Id, L"|");
  1167. }
  1168. else
  1169. {
  1170. std::unique_ptr<TCustomCommandType> CustomCommand(new TCustomCommandType());
  1171. CustomCommand->Id = Id;
  1172. try
  1173. {
  1174. CustomCommand->LoadExtension(IncludeTrailingBackslash(Path) + SearchRec.Name);
  1175. FExtensionList->Add(CustomCommand.release());
  1176. }
  1177. catch (...)
  1178. {
  1179. // skip invalid extension files
  1180. }
  1181. }
  1182. }
  1183. }
  1184. while (FindNextChecked(SearchRec) == 0);
  1185. }
  1186. __finally
  1187. {
  1188. FindClose(SearchRec);
  1189. }
  1190. }
  1191. }
  1192. //---------------------------------------------------------------------------
  1193. void __fastcall ParseExtensionList(TStrings * Strings, UnicodeString S)
  1194. {
  1195. while (!S.IsEmpty())
  1196. {
  1197. UnicodeString Extension = CutToChar(S, L'|', false);
  1198. Strings->Add(Extension);
  1199. }
  1200. }
  1201. //---------------------------------------------------------------------------
  1202. const UnicodeString ExtensionsSubFolder(L"Extensions");
  1203. const UnicodeString ExtensionsCommonPathId(L"common");
  1204. const UnicodeString ExtensionsCommonExtPathId(L"commonext");
  1205. const UnicodeString ExtensionsUserExtPathId(L"userext");
  1206. //---------------------------------------------------------------------------
  1207. UnicodeString __fastcall TWinConfiguration::GetUserExtensionsPath()
  1208. {
  1209. return IncludeTrailingBackslash(GetShellFolderPath(CSIDL_APPDATA)) + L"WinSCP\\" + ExtensionsSubFolder;
  1210. }
  1211. //---------------------------------------------------------------------------
  1212. TStrings * __fastcall TWinConfiguration::GetExtensionsPaths()
  1213. {
  1214. std::unique_ptr<TStrings> Result(new TStringList());
  1215. UnicodeString ExeParentPath = ExcludeTrailingBackslash(ExtractFilePath(Application->ExeName));
  1216. Result->Values[ExtensionsCommonPathId] = ExeParentPath;
  1217. UnicodeString CommonExtensions = IncludeTrailingBackslash(ExeParentPath) + ExtensionsSubFolder;
  1218. Result->Values[ExtensionsCommonExtPathId] = CommonExtensions;
  1219. Result->Values[ExtensionsUserExtPathId] = GetUserExtensionsPath();
  1220. return Result.release();
  1221. }
  1222. //---------------------------------------------------------------------------
  1223. UnicodeString __fastcall TWinConfiguration::GetExtensionId(const UnicodeString & ExtensionPath)
  1224. {
  1225. UnicodeString Path = ExcludeTrailingBackslash(ExtractFilePath(ExtensionPath));
  1226. UnicodeString NameId = TCustomCommandType::GetExtensionId(ExtractFileName(ExtensionPath));
  1227. if (!NameId.IsEmpty())
  1228. {
  1229. std::unique_ptr<TStrings> ExtensionsPaths(GetExtensionsPaths());
  1230. for (int Index = 0; Index < ExtensionsPaths->Count; Index++)
  1231. {
  1232. if (CompareFileName(Path, ExtensionsPaths->ValueFromIndex[Index]))
  1233. {
  1234. return IncludeTrailingBackslash(ExtensionsPaths->Names[Index]) + NameId;
  1235. }
  1236. }
  1237. }
  1238. return L"";
  1239. }
  1240. //---------------------------------------------------------------------------
  1241. void __fastcall TWinConfiguration::LoadExtensionList()
  1242. {
  1243. FExtensionList->Clear();
  1244. std::unique_ptr<TStringList> DeletedExtensions(CreateSortedStringList());
  1245. ParseExtensionList(DeletedExtensions.get(), FExtensionsDeleted);
  1246. // will reconstruct the list in DoLoadExtensionList
  1247. FExtensionsDeleted = L"";
  1248. std::unique_ptr<TStrings> ExtensionsPaths(GetExtensionsPaths());
  1249. for (int Index = 0; Index < ExtensionsPaths->Count; Index++)
  1250. {
  1251. DoLoadExtensionList(ExtensionsPaths->ValueFromIndex[Index], ExtensionsPaths->Names[Index], DeletedExtensions.get());
  1252. }
  1253. std::unique_ptr<TStringList> OrderedExtensions(new TStringList());
  1254. ParseExtensionList(OrderedExtensions.get(), FExtensionsOrder);
  1255. FExtensionList->SortBy(OrderedExtensions.get());
  1256. }
  1257. //---------------------------------------------------------------------------
  1258. void __fastcall TWinConfiguration::LoadData(THierarchicalStorage * Storage)
  1259. {
  1260. TCustomWinConfiguration::LoadData(Storage);
  1261. // duplicated from core\configuration.cpp
  1262. #define KEYEX(TYPE, VAR, NAME) VAR = Storage->Read ## TYPE(NAME, VAR)
  1263. #pragma warn -eas
  1264. REGCONFIG(false);
  1265. #pragma warn +eas
  1266. #undef KEYEX
  1267. // Load after the ExtensionsDeleted and ExtensionsOrder
  1268. LoadExtensionList();
  1269. // to reflect changes to PanelFont
  1270. UpdateIconFont();
  1271. if (Storage->OpenSubKey(L"Bookmarks", false))
  1272. {
  1273. FBookmarks->Load(Storage);
  1274. Storage->CloseSubKey();
  1275. }
  1276. if (Storage->HasSubKey("CustomCommands"))
  1277. {
  1278. FCustomCommandList->Load(Storage);
  1279. FCustomCommandsDefaults = false;
  1280. }
  1281. else if (FCustomCommandList->Modified)
  1282. {
  1283. // can this (=reloading of configuration) even happen?
  1284. // if it does, shouldn't we reset default commands?
  1285. DebugFail();
  1286. FCustomCommandList->Clear();
  1287. FCustomCommandsDefaults = false;
  1288. }
  1289. FCustomCommandList->Reset();
  1290. if (Storage->OpenSubKey(L"Interface\\Editor", false, true))
  1291. try
  1292. {
  1293. FEditorList->Clear();
  1294. FEditorList->Load(Storage);
  1295. }
  1296. __finally
  1297. {
  1298. Storage->CloseSubKey();
  1299. }
  1300. // load legacy editor configuration
  1301. DebugAssert(FLegacyEditor != NULL);
  1302. if (Storage->OpenSubKey(L"Interface\\Editor", false, true))
  1303. {
  1304. try
  1305. {
  1306. FLegacyEditor->Load(Storage, true);
  1307. }
  1308. __finally
  1309. {
  1310. Storage->CloseSubKey();
  1311. }
  1312. }
  1313. }
  1314. //---------------------------------------------------------------------------
  1315. void __fastcall TWinConfiguration::LoadAdmin(THierarchicalStorage * Storage)
  1316. {
  1317. TCustomWinConfiguration::LoadAdmin(Storage);
  1318. FDisableOpenEdit = Storage->ReadBool(L"DisableOpenEdit", FDisableOpenEdit);
  1319. FDefaultUpdatesPeriod = Storage->ReadInteger(L"DefaultUpdatesPeriod", FDefaultUpdatesPeriod);
  1320. FMachineInstallations = Storage->ReadInteger(L"Installations", 0);
  1321. }
  1322. //---------------------------------------------------------------------------
  1323. void __fastcall TWinConfiguration::CopyData(THierarchicalStorage * Source, THierarchicalStorage * Target)
  1324. {
  1325. TCustomWinConfiguration::CopyData(Source, Target);
  1326. if (Source->OpenSubKey(ConfigurationSubKey, false))
  1327. {
  1328. if (Target->OpenSubKey(ConfigurationSubKey, true))
  1329. {
  1330. Target->WriteString(L"JumpList", Source->ReadString(L"JumpList", L""));
  1331. Target->WriteString(L"JumpListWorkspaces", Source->ReadString(L"JumpListWorkspaces", L""));
  1332. Target->CloseSubKey();
  1333. }
  1334. Source->CloseSubKey();
  1335. }
  1336. }
  1337. //---------------------------------------------------------------------------
  1338. void __fastcall TWinConfiguration::ClearTemporaryLoginData()
  1339. {
  1340. if (!FTemporaryKeyFile.IsEmpty())
  1341. {
  1342. DeleteFile(ApiPath(FTemporaryKeyFile));
  1343. FTemporaryKeyFile = L"";
  1344. }
  1345. }
  1346. //---------------------------------------------------------------------------
  1347. void __fastcall TWinConfiguration::AddVersionToHistory()
  1348. {
  1349. int CurrentVersion = CompoundVersion;
  1350. int From = 1;
  1351. bool CurrentVersionPresent = false;
  1352. while (!CurrentVersionPresent && (From < FVersionHistory.Length()))
  1353. {
  1354. UnicodeString VersionInfo = CopyToChars(FVersionHistory, From, L";", true);
  1355. UnicodeString VersionStr = CutToChar(VersionInfo, L',', true);
  1356. int Version;
  1357. if (TryStrToInt(VersionStr, Version) &&
  1358. (Version == CurrentVersion))
  1359. {
  1360. CurrentVersionPresent = true;
  1361. }
  1362. }
  1363. if (!CurrentVersionPresent)
  1364. {
  1365. UnicodeString CurrentVersionInfo =
  1366. IntToStr(CurrentVersion) + L"," + GetReleaseType();
  1367. AddToList(FVersionHistory, CurrentVersionInfo, L';');
  1368. }
  1369. Usage->Set(L"AnyBetaUsed", AnyBetaInVersionHistory);
  1370. }
  1371. //---------------------------------------------------------------------------
  1372. bool __fastcall TWinConfiguration::DoIsBeta(const UnicodeString & ReleaseType)
  1373. {
  1374. // What about "Development" release type?
  1375. return AnsiSameText(ReleaseType, L"beta") || AnsiSameText(ReleaseType, L"rc");
  1376. }
  1377. //---------------------------------------------------------------------------
  1378. bool __fastcall TWinConfiguration::GetIsBeta()
  1379. {
  1380. return DoIsBeta(GetReleaseType());
  1381. }
  1382. //---------------------------------------------------------------------------
  1383. TFont * __fastcall TWinConfiguration::GetSystemIconFont()
  1384. {
  1385. // We should do live update from Screen->IconFont when custom panel font is not set
  1386. return FSystemIconFont.get();
  1387. }
  1388. //---------------------------------------------------------------------------
  1389. bool __fastcall TWinConfiguration::GetAnyBetaInVersionHistory()
  1390. {
  1391. int From = 1;
  1392. bool AnyBeta = false;
  1393. while (!AnyBeta && (From < VersionHistory.Length()))
  1394. {
  1395. UnicodeString VersionInfo = CopyToChars(VersionHistory, From, L";", true);
  1396. CutToChar(VersionInfo, L',', true);
  1397. UnicodeString ReleaseType = CutToChar(VersionInfo, ',', true);
  1398. if (DoIsBeta(ReleaseType))
  1399. {
  1400. AnyBeta = true;
  1401. }
  1402. }
  1403. return AnyBeta;
  1404. }
  1405. //---------------------------------------------------------------------------
  1406. bool __fastcall TWinConfiguration::GetDDExtInstalled()
  1407. {
  1408. if (FDDExtInstalled < 0)
  1409. {
  1410. if (IsWin64())
  1411. {
  1412. // WORKAROUND
  1413. // We cannot load 64-bit COM class into 32-bit process,
  1414. // so we fallback to querying registration keys
  1415. #define CLSID_SIZE 39
  1416. wchar_t ClassID[CLSID_SIZE];
  1417. StringFromGUID2(CLSID_ShellExtension, ClassID, LENOF(ClassID));
  1418. NULL_TERMINATE(ClassID);
  1419. UnicodeString SubKey = UnicodeString(L"CLSID\\") + ClassID;
  1420. HKEY HKey;
  1421. LONG Result = RegOpenKeyEx(HKEY_CLASSES_ROOT, SubKey.c_str(), 0, KEY_READ | KEY_WOW64_64KEY, &HKey);
  1422. if (Result == ERROR_SUCCESS)
  1423. {
  1424. RegCloseKey(HKey);
  1425. FDDExtInstalled = 1;
  1426. }
  1427. else
  1428. {
  1429. FDDExtInstalled = 0;
  1430. }
  1431. }
  1432. else
  1433. {
  1434. void * DragExtRef;
  1435. int CreateResult =
  1436. CoCreateInstance(CLSID_ShellExtension, NULL,
  1437. CLSCTX_INPROC_SERVER | CLSCTX_LOCAL_SERVER, IID_IUnknown,
  1438. &DragExtRef);
  1439. bool Result = (CreateResult == S_OK);
  1440. FDDExtInstalled = (Result ? 1 : 0);
  1441. if (Result)
  1442. {
  1443. reinterpret_cast<IUnknown *>(DragExtRef)->Release();
  1444. CoFreeUnusedLibraries();
  1445. }
  1446. }
  1447. }
  1448. return (FDDExtInstalled > 0);
  1449. }
  1450. //---------------------------------------------------------------------------
  1451. RawByteString __fastcall TWinConfiguration::StronglyRecryptPassword(RawByteString Password, UnicodeString Key)
  1452. {
  1453. RawByteString Dummy;
  1454. RawByteString Result;
  1455. if (GetExternalEncryptedPassword(Password, Dummy) ||
  1456. !FUseMasterPassword)
  1457. {
  1458. // already-strongly encrypted
  1459. // or no master password set, so we cannot strongly-encrypt it
  1460. Result = Password;
  1461. }
  1462. else
  1463. {
  1464. UnicodeString PasswordText =
  1465. TCustomWinConfiguration::DecryptPassword(Password, Key);
  1466. if (!PasswordText.IsEmpty())
  1467. {
  1468. // can be not set for instance, when editing=>saving site with no prior password
  1469. AskForMasterPasswordIfNotSet();
  1470. Password = ScramblePassword(PasswordText);
  1471. AES256EncyptWithMAC(Password, FPlainMasterPasswordEncrypt, Result);
  1472. Result = SetExternalEncryptedPassword(Result);
  1473. }
  1474. }
  1475. return Result;
  1476. }
  1477. //---------------------------------------------------------------------------
  1478. UnicodeString __fastcall TWinConfiguration::DecryptPassword(RawByteString Password, UnicodeString Key)
  1479. {
  1480. UnicodeString Result;
  1481. RawByteString Buf;
  1482. if (GetExternalEncryptedPassword(Password, Buf))
  1483. {
  1484. if (FDontDecryptPasswords == 0)
  1485. {
  1486. // As opposite to AskForMasterPasswordIfNotSet, we test here
  1487. // for decrypt password. This is important while recrypting password,
  1488. // when clearing master password, when encrypt password is already empty.
  1489. if (FPlainMasterPasswordDecrypt.IsEmpty())
  1490. {
  1491. AskForMasterPassword();
  1492. }
  1493. if (!AES256DecryptWithMAC(Buf, FPlainMasterPasswordDecrypt, Buf) ||
  1494. !UnscramblePassword(Buf, Result))
  1495. {
  1496. throw Exception(LoadStr(DECRYPT_PASSWORD_ERROR));
  1497. }
  1498. }
  1499. else
  1500. {
  1501. Abort();
  1502. }
  1503. }
  1504. else
  1505. {
  1506. Result = TCustomWinConfiguration::DecryptPassword(Password, Key);
  1507. }
  1508. return Result;
  1509. }
  1510. //---------------------------------------------------------------------------
  1511. void __fastcall TWinConfiguration::SetMasterPassword(UnicodeString value)
  1512. {
  1513. // just stores the plain-text version of the password
  1514. // we can get here even if master password is off,
  1515. // when we encounter stray encrypted password (e.g. manually imported site),
  1516. // make sure we do not set encrypt password to avoid starting encrypting
  1517. // new passwords
  1518. // (this is bit of edge case, not really well tested)
  1519. if (!FUseMasterPassword)
  1520. {
  1521. FPlainMasterPasswordDecrypt = value;
  1522. }
  1523. else if (DebugAlwaysTrue(FUseMasterPassword) &&
  1524. DebugAlwaysTrue(ValidateMasterPassword(value)))
  1525. {
  1526. FPlainMasterPasswordEncrypt = value;
  1527. FPlainMasterPasswordDecrypt = value;
  1528. }
  1529. }
  1530. //---------------------------------------------------------------------------
  1531. void __fastcall TWinConfiguration::ChangeMasterPassword(
  1532. UnicodeString value, TStrings * RecryptPasswordErrors)
  1533. {
  1534. RawByteString Verifier;
  1535. AES256CreateVerifier(value, Verifier);
  1536. FMasterPasswordVerifier = BytesToHex(Verifier);
  1537. FPlainMasterPasswordEncrypt = value;
  1538. FUseMasterPassword = true;
  1539. try
  1540. {
  1541. RecryptPasswords(RecryptPasswordErrors);
  1542. }
  1543. __finally
  1544. {
  1545. FPlainMasterPasswordDecrypt = value;
  1546. }
  1547. }
  1548. //---------------------------------------------------------------------------
  1549. bool __fastcall TWinConfiguration::ValidateMasterPassword(UnicodeString value)
  1550. {
  1551. DebugAssert(UseMasterPassword);
  1552. DebugAssert(!FMasterPasswordVerifier.IsEmpty());
  1553. bool Result = AES256Verify(value, HexToBytes(FMasterPasswordVerifier));
  1554. return Result;
  1555. }
  1556. //---------------------------------------------------------------------------
  1557. void __fastcall TWinConfiguration::ClearMasterPassword(TStrings * RecryptPasswordErrors)
  1558. {
  1559. FMasterPasswordVerifier = L"";
  1560. FUseMasterPassword = false;
  1561. Shred(FPlainMasterPasswordEncrypt);
  1562. try
  1563. {
  1564. RecryptPasswords(RecryptPasswordErrors);
  1565. }
  1566. __finally
  1567. {
  1568. Shred(FPlainMasterPasswordDecrypt);
  1569. }
  1570. }
  1571. //---------------------------------------------------------------------------
  1572. void __fastcall TWinConfiguration::AskForMasterPassword()
  1573. {
  1574. if (FMasterPasswordSession > 0)
  1575. {
  1576. if (FMasterPasswordSessionAsked)
  1577. {
  1578. Abort();
  1579. }
  1580. // set before call to OnMasterPasswordPrompt as it may abort
  1581. FMasterPasswordSessionAsked = true;
  1582. }
  1583. if (FOnMasterPasswordPrompt == NULL)
  1584. {
  1585. throw Exception(L"Master password handler not set");
  1586. }
  1587. else
  1588. {
  1589. FOnMasterPasswordPrompt();
  1590. DebugAssert(!FPlainMasterPasswordDecrypt.IsEmpty());
  1591. }
  1592. }
  1593. //---------------------------------------------------------------------------
  1594. void __fastcall TWinConfiguration::AskForMasterPasswordIfNotSet()
  1595. {
  1596. if (FPlainMasterPasswordEncrypt.IsEmpty())
  1597. {
  1598. AskForMasterPassword();
  1599. }
  1600. }
  1601. //---------------------------------------------------------------------------
  1602. void __fastcall TWinConfiguration::BeginMasterPasswordSession()
  1603. {
  1604. // We do not expect nesting
  1605. DebugAssert(FMasterPasswordSession == 0);
  1606. DebugAssert(!FMasterPasswordSessionAsked || (FMasterPasswordSession > 0));
  1607. // This should better be thread-specific
  1608. FMasterPasswordSession++;
  1609. }
  1610. //---------------------------------------------------------------------------
  1611. void __fastcall TWinConfiguration::EndMasterPasswordSession()
  1612. {
  1613. if (DebugAlwaysTrue(FMasterPasswordSession > 0))
  1614. {
  1615. FMasterPasswordSession--;
  1616. }
  1617. FMasterPasswordSessionAsked = false;
  1618. }
  1619. //---------------------------------------------------------------------------
  1620. void __fastcall TWinConfiguration::SetLogWindowOnStartup(bool value)
  1621. {
  1622. SET_CONFIG_PROPERTY(LogWindowOnStartup);
  1623. }
  1624. //---------------------------------------------------------------------------
  1625. void __fastcall TWinConfiguration::SetLogWindowParams(UnicodeString value)
  1626. {
  1627. SET_CONFIG_PROPERTY(LogWindowParams);
  1628. }
  1629. //---------------------------------------------------------------------------
  1630. void __fastcall TWinConfiguration::SetDDAllowMove(bool value)
  1631. {
  1632. SET_CONFIG_PROPERTY(DDAllowMove);
  1633. }
  1634. //---------------------------------------------------------------------------
  1635. void __fastcall TWinConfiguration::SetDDAllowMoveInit(bool value)
  1636. {
  1637. SET_CONFIG_PROPERTY(DDAllowMoveInit);
  1638. }
  1639. //---------------------------------------------------------------------------
  1640. void __fastcall TWinConfiguration::SetDDTransferConfirmation(TAutoSwitch value)
  1641. {
  1642. SET_CONFIG_PROPERTY(DDTransferConfirmation);
  1643. }
  1644. //---------------------------------------------------------------------------
  1645. void __fastcall TWinConfiguration::SetDDTemporaryDirectory(UnicodeString value)
  1646. {
  1647. SET_CONFIG_PROPERTY(DDTemporaryDirectory);
  1648. }
  1649. //---------------------------------------------------------------------------
  1650. void __fastcall TWinConfiguration::SetDDExtEnabled(bool value)
  1651. {
  1652. SET_CONFIG_PROPERTY(DDExtEnabled);
  1653. }
  1654. //---------------------------------------------------------------------------
  1655. void __fastcall TWinConfiguration::SetDDExtTimeout(int value)
  1656. {
  1657. SET_CONFIG_PROPERTY(DDExtTimeout);
  1658. }
  1659. //---------------------------------------------------------------------------
  1660. void __fastcall TWinConfiguration::SetDDWarnLackOfTempSpace(bool value)
  1661. {
  1662. SET_CONFIG_PROPERTY(DDWarnLackOfTempSpace);
  1663. }
  1664. //---------------------------------------------------------------------------
  1665. void __fastcall TWinConfiguration::SetDDWarnLackOfTempSpaceRatio(double value)
  1666. {
  1667. SET_CONFIG_PROPERTY(DDWarnLackOfTempSpaceRatio);
  1668. }
  1669. //---------------------------------------------------------------------------
  1670. void __fastcall TWinConfiguration::SetScpExplorer(TScpExplorerConfiguration value)
  1671. {
  1672. SET_CONFIG_PROPERTY(ScpExplorer);
  1673. }
  1674. //---------------------------------------------------------------------------
  1675. void __fastcall TWinConfiguration::SetScpCommander(TScpCommanderConfiguration value)
  1676. {
  1677. SET_CONFIG_PROPERTY(ScpCommander);
  1678. }
  1679. //---------------------------------------------------------------------------
  1680. void __fastcall TWinConfiguration::SetEditor(TEditorConfiguration value)
  1681. {
  1682. SET_CONFIG_PROPERTY(Editor);
  1683. }
  1684. //---------------------------------------------------------------------------
  1685. void __fastcall TWinConfiguration::SetQueueView(TQueueViewConfiguration value)
  1686. {
  1687. SET_CONFIG_PROPERTY(QueueView);
  1688. }
  1689. //---------------------------------------------------------------------------
  1690. void __fastcall TWinConfiguration::SetEnableQueueByDefault(bool value)
  1691. {
  1692. SET_CONFIG_PROPERTY(EnableQueueByDefault);
  1693. }
  1694. //---------------------------------------------------------------------------
  1695. TUpdatesConfiguration __fastcall TWinConfiguration::GetUpdates()
  1696. {
  1697. TUpdatesConfiguration Result;
  1698. {
  1699. TGuard Guard(FCriticalSection);
  1700. Result = FUpdates;
  1701. }
  1702. return Result;
  1703. }
  1704. //---------------------------------------------------------------------------
  1705. void __fastcall TWinConfiguration::SetUpdates(TUpdatesConfiguration value)
  1706. {
  1707. TGuard Guard(FCriticalSection);
  1708. // do not use SET_CONFIG_PROPERTY to avoid OnChange handler call (not synchronized)
  1709. FUpdates = value;
  1710. }
  1711. //---------------------------------------------------------------------------
  1712. void __fastcall TWinConfiguration::SetVersionHistory(UnicodeString value)
  1713. {
  1714. SET_CONFIG_PROPERTY(VersionHistory);
  1715. }
  1716. //---------------------------------------------------------------------------
  1717. void __fastcall TWinConfiguration::SetDeleteToRecycleBin(bool value)
  1718. {
  1719. SET_CONFIG_PROPERTY(DeleteToRecycleBin);
  1720. }
  1721. //---------------------------------------------------------------------------
  1722. void __fastcall TWinConfiguration::SetSelectDirectories(bool value)
  1723. {
  1724. SET_CONFIG_PROPERTY(SelectDirectories);
  1725. }
  1726. //---------------------------------------------------------------------------
  1727. void __fastcall TWinConfiguration::SetShowHiddenFiles(bool value)
  1728. {
  1729. SET_CONFIG_PROPERTY(ShowHiddenFiles);
  1730. }
  1731. //---------------------------------------------------------------------------
  1732. void __fastcall TWinConfiguration::SetFormatSizeBytes(TFormatBytesStyle value)
  1733. {
  1734. SET_CONFIG_PROPERTY(FormatSizeBytes);
  1735. }
  1736. //---------------------------------------------------------------------------
  1737. void __fastcall TWinConfiguration::SetShowInaccesibleDirectories(bool value)
  1738. {
  1739. SET_CONFIG_PROPERTY(ShowInaccesibleDirectories);
  1740. }
  1741. //---------------------------------------------------------------------------
  1742. void __fastcall TWinConfiguration::SetConfirmTransferring(bool value)
  1743. {
  1744. SET_CONFIG_PROPERTY(ConfirmTransferring);
  1745. }
  1746. //---------------------------------------------------------------------------
  1747. void __fastcall TWinConfiguration::SetConfirmDeleting(bool value)
  1748. {
  1749. SET_CONFIG_PROPERTY(ConfirmDeleting);
  1750. }
  1751. //---------------------------------------------------------------------------
  1752. void __fastcall TWinConfiguration::SetConfirmRecycling(bool value)
  1753. {
  1754. SET_CONFIG_PROPERTY(ConfirmRecycling);
  1755. }
  1756. //---------------------------------------------------------------------------
  1757. void __fastcall TWinConfiguration::SetUseLocationProfiles(bool value)
  1758. {
  1759. SET_CONFIG_PROPERTY(UseLocationProfiles);
  1760. }
  1761. //---------------------------------------------------------------------------
  1762. void __fastcall TWinConfiguration::SetUseSharedBookmarks(bool value)
  1763. {
  1764. SET_CONFIG_PROPERTY(UseSharedBookmarks);
  1765. }
  1766. //---------------------------------------------------------------------------
  1767. void __fastcall TWinConfiguration::SetConfirmClosingSession(bool value)
  1768. {
  1769. SET_CONFIG_PROPERTY(ConfirmClosingSession);
  1770. }
  1771. //---------------------------------------------------------------------------
  1772. void __fastcall TWinConfiguration::SetDoubleClickAction(TDoubleClickAction value)
  1773. {
  1774. SET_CONFIG_PROPERTY(DoubleClickAction);
  1775. }
  1776. //---------------------------------------------------------------------------
  1777. void __fastcall TWinConfiguration::SetCopyOnDoubleClickConfirmation(bool value)
  1778. {
  1779. SET_CONFIG_PROPERTY(CopyOnDoubleClickConfirmation);
  1780. }
  1781. //---------------------------------------------------------------------------
  1782. void __fastcall TWinConfiguration::SetDimmHiddenFiles(bool value)
  1783. {
  1784. SET_CONFIG_PROPERTY(DimmHiddenFiles);
  1785. }
  1786. //---------------------------------------------------------------------------
  1787. void __fastcall TWinConfiguration::SetRenameWholeName(bool value)
  1788. {
  1789. SET_CONFIG_PROPERTY(RenameWholeName);
  1790. }
  1791. //---------------------------------------------------------------------------
  1792. void __fastcall TWinConfiguration::SetAutoStartSession(UnicodeString value)
  1793. {
  1794. SET_CONFIG_PROPERTY(AutoStartSession);
  1795. }
  1796. //---------------------------------------------------------------------------
  1797. void __fastcall TWinConfiguration::SetExpertMode(bool value)
  1798. {
  1799. SET_CONFIG_PROPERTY(ExpertMode);
  1800. }
  1801. //---------------------------------------------------------------------------
  1802. void __fastcall TWinConfiguration::SetDefaultDirIsHome(bool value)
  1803. {
  1804. SET_CONFIG_PROPERTY(DefaultDirIsHome);
  1805. }
  1806. //---------------------------------------------------------------------------
  1807. void __fastcall TWinConfiguration::SetTemporaryDirectoryAppendSession(bool value)
  1808. {
  1809. SET_CONFIG_PROPERTY(TemporaryDirectoryAppendSession);
  1810. }
  1811. //---------------------------------------------------------------------------
  1812. void __fastcall TWinConfiguration::SetTemporaryDirectoryAppendPath(bool value)
  1813. {
  1814. SET_CONFIG_PROPERTY(TemporaryDirectoryAppendPath);
  1815. }
  1816. //---------------------------------------------------------------------------
  1817. void __fastcall TWinConfiguration::SetTemporaryDirectoryDeterministic(bool value)
  1818. {
  1819. SET_CONFIG_PROPERTY(TemporaryDirectoryDeterministic);
  1820. }
  1821. //---------------------------------------------------------------------------
  1822. void __fastcall TWinConfiguration::SetTemporaryDirectoryCleanup(bool value)
  1823. {
  1824. SET_CONFIG_PROPERTY(TemporaryDirectoryCleanup);
  1825. }
  1826. //---------------------------------------------------------------------------
  1827. void __fastcall TWinConfiguration::SetConfirmTemporaryDirectoryCleanup(bool value)
  1828. {
  1829. SET_CONFIG_PROPERTY(ConfirmTemporaryDirectoryCleanup);
  1830. }
  1831. //---------------------------------------------------------------------------
  1832. void __fastcall TWinConfiguration::SetPreservePanelState(bool value)
  1833. {
  1834. SET_CONFIG_PROPERTY(PreservePanelState);
  1835. }
  1836. //---------------------------------------------------------------------------
  1837. void __fastcall TWinConfiguration::SetLastStoredSession(UnicodeString value)
  1838. {
  1839. SET_CONFIG_PROPERTY(LastStoredSession);
  1840. }
  1841. //---------------------------------------------------------------------------
  1842. void __fastcall TWinConfiguration::SetAutoSaveWorkspace(bool value)
  1843. {
  1844. SET_CONFIG_PROPERTY(AutoSaveWorkspace);
  1845. }
  1846. //---------------------------------------------------------------------------
  1847. void __fastcall TWinConfiguration::SetAutoSaveWorkspacePasswords(bool value)
  1848. {
  1849. SET_CONFIG_PROPERTY(AutoSaveWorkspacePasswords);
  1850. }
  1851. //---------------------------------------------------------------------------
  1852. void __fastcall TWinConfiguration::SetAutoWorkspace(UnicodeString value)
  1853. {
  1854. SET_CONFIG_PROPERTY(AutoWorkspace);
  1855. }
  1856. //---------------------------------------------------------------------------
  1857. void __fastcall TWinConfiguration::SetPathInCaption(TPathInCaption value)
  1858. {
  1859. SET_CONFIG_PROPERTY(PathInCaption);
  1860. }
  1861. //---------------------------------------------------------------------------
  1862. void __fastcall TWinConfiguration::SetMinimizeToTray(bool value)
  1863. {
  1864. SET_CONFIG_PROPERTY(MinimizeToTray);
  1865. }
  1866. //---------------------------------------------------------------------------
  1867. void __fastcall TWinConfiguration::MinimizeToTrayOnce()
  1868. {
  1869. FMinimizeToTrayOnce = true;
  1870. }
  1871. //---------------------------------------------------------------------------
  1872. bool __fastcall TWinConfiguration::GetMinimizeToTray()
  1873. {
  1874. bool Result = FMinimizeToTrayOnce || FMinimizeToTray;
  1875. FMinimizeToTrayOnce = false;
  1876. return Result;
  1877. }
  1878. //---------------------------------------------------------------------------
  1879. void __fastcall TWinConfiguration::SetBalloonNotifications(bool value)
  1880. {
  1881. SET_CONFIG_PROPERTY(BalloonNotifications);
  1882. }
  1883. //---------------------------------------------------------------------------
  1884. void __fastcall TWinConfiguration::SetNotificationsTimeout(unsigned int value)
  1885. {
  1886. SET_CONFIG_PROPERTY(NotificationsTimeout);
  1887. }
  1888. //---------------------------------------------------------------------------
  1889. void __fastcall TWinConfiguration::SetNotificationsStickTime(unsigned int value)
  1890. {
  1891. SET_CONFIG_PROPERTY(NotificationsStickTime);
  1892. }
  1893. //---------------------------------------------------------------------------
  1894. void __fastcall TWinConfiguration::SetCopyParamAutoSelectNotice(bool value)
  1895. {
  1896. SET_CONFIG_PROPERTY(CopyParamAutoSelectNotice);
  1897. }
  1898. //---------------------------------------------------------------------------
  1899. void __fastcall TWinConfiguration::SetLockToolbars(bool value)
  1900. {
  1901. SET_CONFIG_PROPERTY(LockToolbars);
  1902. }
  1903. //---------------------------------------------------------------------------
  1904. void __fastcall TWinConfiguration::SetSelectiveToolbarText(bool value)
  1905. {
  1906. SET_CONFIG_PROPERTY(SelectiveToolbarText);
  1907. }
  1908. //---------------------------------------------------------------------------
  1909. void __fastcall TWinConfiguration::SetAutoOpenInPutty(bool value)
  1910. {
  1911. SET_CONFIG_PROPERTY(AutoOpenInPutty);
  1912. }
  1913. //---------------------------------------------------------------------------
  1914. void __fastcall TWinConfiguration::SetRefreshRemotePanel(bool value)
  1915. {
  1916. SET_CONFIG_PROPERTY(RefreshRemotePanel);
  1917. }
  1918. //---------------------------------------------------------------------------
  1919. void __fastcall TWinConfiguration::SetRefreshRemotePanelInterval(TDateTime value)
  1920. {
  1921. SET_CONFIG_PROPERTY(RefreshRemotePanelInterval);
  1922. }
  1923. //---------------------------------------------------------------------------
  1924. void __fastcall TWinConfiguration::UpdateSystemIconFont()
  1925. {
  1926. FSystemIconFont->Assign(Screen->IconFont);
  1927. }
  1928. //---------------------------------------------------------------------------
  1929. void __fastcall TWinConfiguration::UpdateIconFont()
  1930. {
  1931. if (!PanelFont.FontName.IsEmpty())
  1932. {
  1933. UpdateSystemIconFont();
  1934. std::unique_ptr<TFont> IconFont(new TFont());
  1935. RestoreFont(PanelFont, IconFont.get());
  1936. Screen->IconFont->Assign(IconFont.get());
  1937. // When using non-standard icon font, prevent resetting it back
  1938. // to standard one on WM_WININICHANGE. Unfortunatelly this prevents
  1939. // updating all other fonts.
  1940. Application->UpdateMetricSettings = false;
  1941. }
  1942. else
  1943. {
  1944. if (DebugAlwaysTrue(FSystemIconFont.get() != NULL) &&
  1945. !SameFont(Screen->IconFont, FSystemIconFont.get()))
  1946. {
  1947. Screen->IconFont->Assign(FSystemIconFont.get());
  1948. }
  1949. Application->UpdateMetricSettings = true;
  1950. }
  1951. }
  1952. //---------------------------------------------------------------------------
  1953. void __fastcall TWinConfiguration::SetPanelFont(const TFontConfiguration & value)
  1954. {
  1955. SET_CONFIG_PROPERTY_EX(PanelFont, UpdateIconFont());
  1956. }
  1957. //---------------------------------------------------------------------------
  1958. void __fastcall TWinConfiguration::SetFullRowSelect(bool value)
  1959. {
  1960. SET_CONFIG_PROPERTY(FullRowSelect);
  1961. }
  1962. //---------------------------------------------------------------------------
  1963. void __fastcall TWinConfiguration::SetOfferedEditorAutoConfig(bool value)
  1964. {
  1965. SET_CONFIG_PROPERTY(OfferedEditorAutoConfig);
  1966. }
  1967. //---------------------------------------------------------------------------
  1968. void __fastcall TWinConfiguration::SetOpenedStoredSessionFolders(UnicodeString value)
  1969. {
  1970. SET_CONFIG_PROPERTY(OpenedStoredSessionFolders);
  1971. }
  1972. //---------------------------------------------------------------------------
  1973. void __fastcall TWinConfiguration::SetAutoImportedFromPuttyOrFilezilla(bool value)
  1974. {
  1975. SET_CONFIG_PROPERTY(AutoImportedFromPuttyOrFilezilla);
  1976. }
  1977. //---------------------------------------------------------------------------
  1978. void __fastcall TWinConfiguration::SetGenerateUrlComponents(int value)
  1979. {
  1980. SET_CONFIG_PROPERTY(GenerateUrlComponents);
  1981. }
  1982. //---------------------------------------------------------------------------
  1983. void __fastcall TWinConfiguration::SetGenerateUrlCodeTarget(TGenerateUrlCodeTarget value)
  1984. {
  1985. SET_CONFIG_PROPERTY(GenerateUrlCodeTarget);
  1986. }
  1987. //---------------------------------------------------------------------------
  1988. void __fastcall TWinConfiguration::SetGenerateUrlScriptFormat(TScriptFormat value)
  1989. {
  1990. SET_CONFIG_PROPERTY(GenerateUrlScriptFormat);
  1991. }
  1992. //---------------------------------------------------------------------------
  1993. void __fastcall TWinConfiguration::SetGenerateUrlAssemblyLanguage(TAssemblyLanguage value)
  1994. {
  1995. SET_CONFIG_PROPERTY(GenerateUrlAssemblyLanguage);
  1996. }
  1997. //---------------------------------------------------------------------------
  1998. void __fastcall TWinConfiguration::SetExternalSessionInExistingInstance(bool value)
  1999. {
  2000. SET_CONFIG_PROPERTY(ExternalSessionInExistingInstance);
  2001. }
  2002. //---------------------------------------------------------------------------
  2003. void __fastcall TWinConfiguration::SetKeepOpenWhenNoSession(bool value)
  2004. {
  2005. SET_CONFIG_PROPERTY(KeepOpenWhenNoSession);
  2006. }
  2007. //---------------------------------------------------------------------------
  2008. void __fastcall TWinConfiguration::SetLocalIconsByExt(bool value)
  2009. {
  2010. SET_CONFIG_PROPERTY(LocalIconsByExt);
  2011. }
  2012. //---------------------------------------------------------------------------
  2013. void __fastcall TWinConfiguration::SetBidiModeOverride(TLocaleFlagOverride value)
  2014. {
  2015. SET_CONFIG_PROPERTY(BidiModeOverride);
  2016. }
  2017. //---------------------------------------------------------------------------
  2018. void __fastcall TWinConfiguration::SetFlipChildrenOverride(TLocaleFlagOverride value)
  2019. {
  2020. SET_CONFIG_PROPERTY(FlipChildrenOverride);
  2021. }
  2022. //---------------------------------------------------------------------------
  2023. void __fastcall TWinConfiguration::SetShowTips(bool value)
  2024. {
  2025. SET_CONFIG_PROPERTY(ShowTips);
  2026. }
  2027. //---------------------------------------------------------------------------
  2028. void __fastcall TWinConfiguration::SetTipsSeen(UnicodeString value)
  2029. {
  2030. SET_CONFIG_PROPERTY(TipsSeen);
  2031. }
  2032. //---------------------------------------------------------------------------
  2033. void __fastcall TWinConfiguration::SetTipsShown(TDateTime value)
  2034. {
  2035. SET_CONFIG_PROPERTY(TipsShown);
  2036. }
  2037. //---------------------------------------------------------------------------
  2038. void __fastcall TWinConfiguration::SetRunsSinceLastTip(int value)
  2039. {
  2040. SET_CONFIG_PROPERTY(RunsSinceLastTip);
  2041. }
  2042. //---------------------------------------------------------------------------
  2043. bool __fastcall TWinConfiguration::GetHonorDrivePolicy()
  2044. {
  2045. return DriveInfo->HonorDrivePolicy;
  2046. }
  2047. //---------------------------------------------------------------------------
  2048. void __fastcall TWinConfiguration::SetHonorDrivePolicy(bool value)
  2049. {
  2050. if (HonorDrivePolicy != value)
  2051. {
  2052. DriveInfo->HonorDrivePolicy = value;
  2053. Changed();
  2054. }
  2055. }
  2056. //---------------------------------------------------------------------------
  2057. void __fastcall TWinConfiguration::SetCustomCommandList(TCustomCommandList * value)
  2058. {
  2059. DebugAssert(FCustomCommandList);
  2060. if (!FCustomCommandList->Equals(value))
  2061. {
  2062. FCustomCommandList->Assign(value);
  2063. FCustomCommandsDefaults = false;
  2064. }
  2065. }
  2066. //---------------------------------------------------------------------------
  2067. void __fastcall TWinConfiguration::SetExtensionList(TCustomCommandList * value)
  2068. {
  2069. if (!ExtensionList->Equals(value))
  2070. {
  2071. std::unique_ptr<TStringList> DeletedExtensions(CreateSortedStringList());
  2072. ParseExtensionList(DeletedExtensions.get(), FExtensionsDeleted);
  2073. for (int Index = 0; Index < ExtensionList->Count; Index++)
  2074. {
  2075. const TCustomCommandType * CustomCommand = ExtensionList->Commands[Index];
  2076. if (!value->Find(CustomCommand->Name))
  2077. {
  2078. if (FileExists(CustomCommand->FileName) &&
  2079. !DeleteFile(CustomCommand->FileName))
  2080. {
  2081. DeletedExtensions->Add(CustomCommand->Id);
  2082. }
  2083. }
  2084. }
  2085. FExtensionsOrder = L"";
  2086. for (int Index = 0; Index < value->Count; Index++)
  2087. {
  2088. const TCustomCommandType * CustomCommand = value->Commands[Index];
  2089. AddToList(FExtensionsOrder, CustomCommand->Id, L"|");
  2090. int DeletedIndex = DeletedExtensions->IndexOf(CustomCommand->Id);
  2091. if (DeletedIndex >= 0)
  2092. {
  2093. DeletedExtensions->Delete(DeletedIndex);
  2094. }
  2095. }
  2096. FExtensionList->Assign(value);
  2097. FExtensionsDeleted = L"";
  2098. for (int Index = 0; Index < DeletedExtensions->Count; Index++)
  2099. {
  2100. AddToList(FExtensionsDeleted, DeletedExtensions->Strings[Index], L"|");
  2101. }
  2102. Changed();
  2103. }
  2104. }
  2105. //---------------------------------------------------------------------------
  2106. void __fastcall TWinConfiguration::CustomCommandShortCuts(TShortCuts & ShortCuts) const
  2107. {
  2108. CustomCommandList->ShortCuts(ShortCuts);
  2109. ExtensionList->ShortCuts(ShortCuts);
  2110. }
  2111. //---------------------------------------------------------------------------
  2112. void __fastcall TWinConfiguration::SetBookmarks(UnicodeString Key,
  2113. TBookmarkList * value)
  2114. {
  2115. FBookmarks->Bookmarks[Key] = value;
  2116. Changed();
  2117. }
  2118. //---------------------------------------------------------------------------
  2119. TBookmarkList * __fastcall TWinConfiguration::GetBookmarks(UnicodeString Key)
  2120. {
  2121. return FBookmarks->Bookmarks[Key];
  2122. }
  2123. //---------------------------------------------------------------------------
  2124. void __fastcall TWinConfiguration::SetSharedBookmarks(TBookmarkList * value)
  2125. {
  2126. FBookmarks->SharedBookmarks = value;
  2127. Changed();
  2128. }
  2129. //---------------------------------------------------------------------------
  2130. TBookmarkList * __fastcall TWinConfiguration::GetSharedBookmarks()
  2131. {
  2132. return FBookmarks->SharedBookmarks;
  2133. }
  2134. //---------------------------------------------------------------------------
  2135. UnicodeString __fastcall TWinConfiguration::GetDefaultKeyFile()
  2136. {
  2137. return (!FDefaultKeyFile.IsEmpty() ? FDefaultKeyFile : FTemporaryKeyFile);
  2138. }
  2139. //---------------------------------------------------------------------------
  2140. void __fastcall TWinConfiguration::SetLastMonitor(int value)
  2141. {
  2142. ::SetLastMonitor(value);
  2143. }
  2144. //---------------------------------------------------------------------------
  2145. int __fastcall TWinConfiguration::GetLastMonitor()
  2146. {
  2147. return ::GetLastMonitor();
  2148. }
  2149. //---------------------------------------------------------------------------
  2150. UnicodeString __fastcall TWinConfiguration::ExpandedTemporaryDirectory()
  2151. {
  2152. UnicodeString Result =
  2153. ExpandFileName(ExpandEnvironmentVariables(DDTemporaryDirectory));
  2154. if (Result.IsEmpty())
  2155. {
  2156. Result = SystemTemporaryDirectory();
  2157. }
  2158. return Result;
  2159. }
  2160. //---------------------------------------------------------------------------
  2161. UnicodeString __fastcall TWinConfiguration::TemporaryDir(bool Mask)
  2162. {
  2163. return UniqTempDir(ExpandedTemporaryDirectory(), L"scp", Mask);
  2164. }
  2165. //---------------------------------------------------------------------------
  2166. TStrings * __fastcall TWinConfiguration::FindTemporaryFolders()
  2167. {
  2168. TStrings * Result = new TStringList();
  2169. try
  2170. {
  2171. TSearchRecChecked SRec;
  2172. UnicodeString Mask = TemporaryDir(true);
  2173. UnicodeString Directory = ExtractFilePath(Mask);
  2174. if (FindFirstUnchecked(Mask, faDirectory, SRec) == 0)
  2175. {
  2176. do
  2177. {
  2178. if (FLAGSET(SRec.Attr, faDirectory))
  2179. {
  2180. Result->Add(Directory + SRec.Name);
  2181. }
  2182. }
  2183. while (FindNextChecked(SRec) == 0);
  2184. }
  2185. if (Result->Count == 0)
  2186. {
  2187. delete Result;
  2188. Result = NULL;
  2189. }
  2190. }
  2191. catch(...)
  2192. {
  2193. delete Result;
  2194. throw;
  2195. }
  2196. return Result;
  2197. }
  2198. //---------------------------------------------------------------------------
  2199. void __fastcall TWinConfiguration::CleanupTemporaryFolders(TStrings * Folders)
  2200. {
  2201. UnicodeString ErrorList;
  2202. TStrings * F;
  2203. if (Folders == NULL)
  2204. {
  2205. F = FindTemporaryFolders();
  2206. }
  2207. else
  2208. {
  2209. F = Folders;
  2210. }
  2211. if (F != NULL)
  2212. {
  2213. try
  2214. {
  2215. if (DebugAlwaysTrue(F->Count > 0))
  2216. {
  2217. Usage->Inc(L"TemporaryDirectoryCleanups");
  2218. }
  2219. for (int i = 0; i < F->Count; i++)
  2220. {
  2221. if (!DeleteDirectory(F->Strings[i]))
  2222. {
  2223. if (!ErrorList.IsEmpty())
  2224. {
  2225. ErrorList += L"\n";
  2226. }
  2227. ErrorList += F->Strings[i];
  2228. }
  2229. }
  2230. }
  2231. __finally
  2232. {
  2233. if (Folders == NULL)
  2234. {
  2235. delete F;
  2236. }
  2237. }
  2238. if (!ErrorList.IsEmpty())
  2239. {
  2240. throw ExtException(LoadStr(CLEANUP_TEMP_ERROR), ErrorList);
  2241. }
  2242. }
  2243. }
  2244. //---------------------------------------------------------------------------
  2245. LCID __fastcall TWinConfiguration::GetLocale()
  2246. {
  2247. if (!FLocale)
  2248. {
  2249. UnicodeString ResourceModule =
  2250. GetResourceModuleName(Application->Name, ModuleFileName().c_str());
  2251. if (!ResourceModule.IsEmpty())
  2252. {
  2253. UnicodeString ResourceExt = ExtractFileExt(ResourceModule).UpperCase();
  2254. ResourceExt.Delete(1, 1);
  2255. TLanguages * Langs = Languages();
  2256. int Index, Count;
  2257. Count = Langs->Count;
  2258. Index = 0;
  2259. while ((Index < Count) && (FLocale == 0))
  2260. {
  2261. if (Langs->Ext[Index] == ResourceExt)
  2262. {
  2263. SetInitialLocale(Langs->LocaleID[Index]);
  2264. }
  2265. else if (Langs->Ext[Index].SubString(1, 2) == ResourceExt)
  2266. {
  2267. SetInitialLocale(
  2268. MAKELANGID(PRIMARYLANGID(Langs->LocaleID[Index]),
  2269. SUBLANG_DEFAULT));
  2270. }
  2271. if (FLocale != 0)
  2272. {
  2273. FLocaleModuleName = ResourceModule;
  2274. }
  2275. Index++;
  2276. }
  2277. }
  2278. }
  2279. return TCustomWinConfiguration::GetLocale();
  2280. }
  2281. //---------------------------------------------------------------------------
  2282. HINSTANCE __fastcall TWinConfiguration::LoadNewResourceModule(LCID ALocale,
  2283. UnicodeString & FileName)
  2284. {
  2285. HINSTANCE Instance = TCustomWinConfiguration::LoadNewResourceModule(ALocale, FileName);
  2286. if (Instance != NULL)
  2287. {
  2288. try
  2289. {
  2290. CheckTranslationVersion(FileName, false);
  2291. }
  2292. catch(...)
  2293. {
  2294. FreeResourceModule(Instance);
  2295. throw;
  2296. }
  2297. }
  2298. return Instance;
  2299. }
  2300. //---------------------------------------------------------------------------
  2301. void __fastcall TWinConfiguration::CheckTranslationVersion(const UnicodeString FileName,
  2302. bool InternalLocaleOnError)
  2303. {
  2304. UnicodeString TranslationProductVersion = GetFileProductVersion(FileName);
  2305. UnicodeString TranslationProductName = GetFileProductName(FileName);
  2306. if ((ProductName != TranslationProductName) ||
  2307. (ProductVersion != TranslationProductVersion))
  2308. {
  2309. if (InternalLocaleOnError)
  2310. {
  2311. LocaleSafe = InternalLocale();
  2312. }
  2313. if (TranslationProductName.IsEmpty() || TranslationProductVersion.IsEmpty())
  2314. {
  2315. throw Exception(FMTLOAD(UNKNOWN_TRANSLATION, (FileName)));
  2316. }
  2317. else
  2318. {
  2319. throw Exception(FMTLOAD(INCOMPATIBLE_TRANSLATION,
  2320. (FileName, TranslationProductName, TranslationProductVersion)));
  2321. }
  2322. }
  2323. }
  2324. //---------------------------------------------------------------------------
  2325. void __fastcall TWinConfiguration::CheckDefaultTranslation()
  2326. {
  2327. if (!FInvalidDefaultTranslationMessage.IsEmpty())
  2328. {
  2329. MoreMessageDialog(FMTLOAD(INVALID_DEFAULT_TRANSLATION,
  2330. (FInvalidDefaultTranslationMessage)), NULL, qtWarning, qaOK, HELP_NONE);
  2331. }
  2332. }
  2333. //---------------------------------------------------------------------------
  2334. const TEditorPreferences * __fastcall TWinConfiguration::DefaultEditorForFile(
  2335. const UnicodeString FileName, bool Local, const TFileMasks::TParams & MaskParams)
  2336. {
  2337. return FEditorList->Find(FileName, Local, MaskParams);
  2338. }
  2339. //---------------------------------------------------------------------------
  2340. const TEditorList * __fastcall TWinConfiguration::GetEditorList()
  2341. {
  2342. return FEditorList;
  2343. }
  2344. //---------------------------------------------------------------------------
  2345. void __fastcall TWinConfiguration::SetEditorList(const TEditorList * value)
  2346. {
  2347. if (!(*FEditorList == *value))
  2348. {
  2349. *FEditorList = *value;
  2350. Changed();
  2351. }
  2352. }
  2353. //---------------------------------------------------------------------------
  2354. TStringList * __fastcall TWinConfiguration::LoadJumpList(
  2355. THierarchicalStorage * Storage, UnicodeString Name)
  2356. {
  2357. UnicodeString JumpList = Storage->ReadString(Name, L"");
  2358. std::unique_ptr<TStringList> List(new TStringList());
  2359. List->CaseSensitive = false;
  2360. List->CommaText = JumpList;
  2361. return List.release();
  2362. }
  2363. //---------------------------------------------------------------------------
  2364. void __fastcall TWinConfiguration::SaveJumpList(
  2365. THierarchicalStorage * Storage, UnicodeString Name, TStringList * List)
  2366. {
  2367. UnicodeString JumpList = Storage->ReadString(Name, L"");
  2368. UnicodeString NewJumpList = List->CommaText;
  2369. if (NewJumpList != JumpList)
  2370. {
  2371. Storage->WriteString(Name, NewJumpList);
  2372. }
  2373. }
  2374. //---------------------------------------------------------------------------
  2375. void __fastcall TWinConfiguration::TrimJumpList(TStringList * List)
  2376. {
  2377. while (List->Count > 30)
  2378. {
  2379. List->Delete(List->Count - 1);
  2380. }
  2381. }
  2382. //---------------------------------------------------------------------------
  2383. void __fastcall TWinConfiguration::UpdateEntryInJumpList(
  2384. bool Session, const UnicodeString & Name, bool Add)
  2385. {
  2386. THierarchicalStorage * Storage = CreateConfigStorage();
  2387. try
  2388. {
  2389. FDontDecryptPasswords++;
  2390. Storage->AccessMode = smReadWrite;
  2391. if (Storage->OpenSubKey(ConfigurationSubKey, true))
  2392. {
  2393. std::unique_ptr<TStringList> ListSessions(LoadJumpList(Storage, L"JumpList"));
  2394. std::unique_ptr<TStringList> ListWorkspaces(LoadJumpList(Storage, L"JumpListWorkspaces"));
  2395. if (!Name.IsEmpty())
  2396. {
  2397. TStringList * List = (Session ? ListSessions : ListWorkspaces).get();
  2398. int Index = List->IndexOf(Name);
  2399. if (Index >= 0)
  2400. {
  2401. List->Delete(Index);
  2402. }
  2403. if (Add)
  2404. {
  2405. List->Insert(0, Name);
  2406. }
  2407. }
  2408. TrimJumpList(ListSessions.get());
  2409. TrimJumpList(ListWorkspaces.get());
  2410. ::UpdateJumpList(ListSessions.get(), ListWorkspaces.get());
  2411. SaveJumpList(Storage, L"JumpList", ListSessions.get());
  2412. SaveJumpList(Storage, L"JumpListWorkspaces", ListWorkspaces.get());
  2413. }
  2414. }
  2415. __finally
  2416. {
  2417. FDontDecryptPasswords--;
  2418. delete Storage;
  2419. }
  2420. }
  2421. //---------------------------------------------------------------------------
  2422. void __fastcall TWinConfiguration::AddSessionToJumpList(UnicodeString SessionName)
  2423. {
  2424. UpdateEntryInJumpList(true, SessionName, true);
  2425. }
  2426. //---------------------------------------------------------------------------
  2427. void __fastcall TWinConfiguration::DeleteSessionFromJumpList(UnicodeString SessionName)
  2428. {
  2429. UpdateEntryInJumpList(true, SessionName, false);
  2430. }
  2431. //---------------------------------------------------------------------------
  2432. void __fastcall TWinConfiguration::AddWorkspaceToJumpList(UnicodeString Workspace)
  2433. {
  2434. UpdateEntryInJumpList(false, Workspace, true);
  2435. }
  2436. //---------------------------------------------------------------------------
  2437. void __fastcall TWinConfiguration::DeleteWorkspaceFromJumpList(UnicodeString Workspace)
  2438. {
  2439. UpdateEntryInJumpList(false, Workspace, false);
  2440. }
  2441. //---------------------------------------------------------------------------
  2442. void __fastcall TWinConfiguration::UpdateJumpList()
  2443. {
  2444. AddSessionToJumpList(L"");
  2445. }
  2446. //---------------------------------------------------------------------------
  2447. void __fastcall TWinConfiguration::UpdateStaticUsage()
  2448. {
  2449. // This is here because of TStoredSessionList::UpdateStaticUsage() call
  2450. // from TConfiguration::UpdateStaticUsage()
  2451. TAutoNestingCounter DontDecryptPasswordsAutoCounter(FDontDecryptPasswords);
  2452. TCustomWinConfiguration::UpdateStaticUsage();
  2453. Usage->Set(L"Beta", IsBeta);
  2454. Usage->Set(L"Interface", Interface);
  2455. Usage->Set(L"CustomCommandsCount", (FCustomCommandsDefaults ? 0 : FCustomCommandList->Count));
  2456. Usage->Set(L"UsingLocationProfiles", UseLocationProfiles);
  2457. Usage->Set(L"UsingMasterPassword", UseMasterPassword);
  2458. Usage->Set(L"UsingAutoSaveWorkspace", AutoSaveWorkspace);
  2459. Usage->Set(L"TreeVisible",
  2460. (Interface == ifExplorer) ?
  2461. ScpExplorer.DriveView :
  2462. (ScpCommander.LocalPanel.DriveView || ScpCommander.RemotePanel.DriveView));
  2463. Usage->Set(L"MinimizeToTray", MinimizeToTray);
  2464. Usage->Set(L"ShowingTips", ShowTips);
  2465. TipsUpdateStaticUsage();
  2466. Usage->Set(L"CommanderNortonLikeMode", int(ScpCommander.NortonLikeMode));
  2467. Usage->Set(L"CommanderExplorerKeyboardShortcuts", ScpCommander.ExplorerKeyboardShortcuts);
  2468. Usage->Set(L"ExplorerViewStyle", ScpExplorer.ViewStyle);
  2469. Usage->Set(L"LastMonitor", LastMonitor);
  2470. UnicodeString ExternalEditors;
  2471. for (int Index = 0; Index < EditorList->Count; Index++)
  2472. {
  2473. const TEditorPreferences * Editor = EditorList->Editors[Index];
  2474. if (Editor->Data->Editor == edExternal)
  2475. {
  2476. AddToList(ExternalEditors, Editor->ExtractExternalEditorName(), ",");
  2477. }
  2478. }
  2479. Usage->Set(L"ExternalEditors", ExternalEditors);
  2480. if (LastMachineInstallations < FMachineInstallations)
  2481. {
  2482. Usage->Inc(L"InstallationsMachine", (FMachineInstallations - LastMachineInstallations));
  2483. LastMachineInstallations = FMachineInstallations;
  2484. }
  2485. int ExtensionsPortable = 0;
  2486. int ExtensionsInstalled = 0;
  2487. int ExtensionsUser = 0;
  2488. for (int Index = 0; Index < FExtensionList->Count; Index++)
  2489. {
  2490. const TCustomCommandType * CustomCommand = FExtensionList->Commands[Index];
  2491. UnicodeString PathId = ExcludeTrailingBackslash(ExtractFilePath(CustomCommand->Id));
  2492. if (SameText(PathId, ExtensionsCommonPathId))
  2493. {
  2494. ExtensionsPortable++;
  2495. }
  2496. else if (SameText(PathId, ExtensionsCommonExtPathId))
  2497. {
  2498. ExtensionsInstalled++;
  2499. }
  2500. else if (SameText(PathId, ExtensionsUserExtPathId))
  2501. {
  2502. ExtensionsUser++;
  2503. }
  2504. }
  2505. Usage->Set(L"ExtensionsPortableCount", (ExtensionsPortable));
  2506. Usage->Set(L"ExtensionsInstalledCount", (ExtensionsInstalled));
  2507. Usage->Set(L"ExtensionsUserCount", (ExtensionsUser));
  2508. std::unique_ptr<TStringList> DeletedExtensions(CreateSortedStringList());
  2509. ParseExtensionList(DeletedExtensions.get(), FExtensionsDeleted);
  2510. Usage->Set(L"ExtensionsDeleted", (DeletedExtensions->Count));
  2511. }
  2512. //---------------------------------------------------------------------------
  2513. void __fastcall TWinConfiguration::RestoreFont(
  2514. const TFontConfiguration & Configuration, TFont * Font)
  2515. {
  2516. Font->Name = Configuration.FontName;
  2517. Font->Size = Configuration.FontSize;
  2518. Font->Charset = Configuration.FontCharset;
  2519. Font->Style = IntToFontStyles(Configuration.FontStyle);
  2520. }
  2521. //---------------------------------------------------------------------------
  2522. void __fastcall TWinConfiguration::StoreFont(
  2523. TFont * Font, TFontConfiguration & Configuration)
  2524. {
  2525. Configuration.FontName = Font->Name;
  2526. Configuration.FontSize = Font->Size;
  2527. Configuration.FontCharset = Font->Charset;
  2528. Configuration.FontStyle = FontStylesToInt(Font->Style);
  2529. }
  2530. //---------------------------------------------------------------------------
  2531. //---------------------------------------------------------------------------
  2532. __fastcall TCustomCommandType::TCustomCommandType() :
  2533. FParams(0), FShortCut(0)
  2534. {
  2535. }
  2536. //---------------------------------------------------------------------------
  2537. __fastcall TCustomCommandType::TCustomCommandType(const TCustomCommandType & Other) :
  2538. FName(Other.FName),
  2539. FCommand(Other.FCommand),
  2540. FParams(Other.FParams),
  2541. FShortCut(Other.FShortCut),
  2542. FId(Other.FId),
  2543. FFileName(Other.FFileName),
  2544. FDescription(Other.FDescription)
  2545. {
  2546. }
  2547. //---------------------------------------------------------------------------
  2548. TCustomCommandType & TCustomCommandType::operator=(const TCustomCommandType & Other)
  2549. {
  2550. FName = Other.FName;
  2551. FCommand = Other.FCommand;
  2552. FParams = Other.FParams;
  2553. FShortCut = Other.FShortCut;
  2554. FId = Other.FId;
  2555. FFileName = Other.FFileName;
  2556. FDescription = Other.FDescription;
  2557. return *this;
  2558. }
  2559. //---------------------------------------------------------------------------
  2560. bool __fastcall TCustomCommandType::Equals(const TCustomCommandType * Other) const
  2561. {
  2562. return
  2563. (FName == Other->FName) &&
  2564. (FCommand == Other->FCommand) &&
  2565. (FParams == Other->FParams) &&
  2566. (FShortCut == Other->FShortCut) &&
  2567. (FId == Other->FId) &&
  2568. (FFileName == Other->FFileName) &&
  2569. (FDescription == Other->FDescription);
  2570. }
  2571. //---------------------------------------------------------------------------
  2572. const UnicodeString ExtensionNameDirective(L"name");
  2573. const UnicodeString ExtensionCommandDirective(L"command");
  2574. const wchar_t ExtensionMark = L'@';
  2575. const UnicodeString WinSCPExtensionExt(L".WinSCPextension");
  2576. //---------------------------------------------------------------------------
  2577. UnicodeString __fastcall TCustomCommandType::GetExtensionId(const UnicodeString & Name)
  2578. {
  2579. UnicodeString Result;
  2580. int P = Pos(UpperCase(WinSCPExtensionExt), UpperCase(Name));
  2581. // Ends with Ext or there's another extension after it
  2582. if ((P > 1) &&
  2583. ((Name.Length() == (P + WinSCPExtensionExt.Length() - 1)) || (Name[P + WinSCPExtensionExt.Length()] == L'.')))
  2584. {
  2585. Result = Name.SubString(1, P - 1);
  2586. }
  2587. return Result;
  2588. }
  2589. //---------------------------------------------------------------------------
  2590. void __fastcall TCustomCommandType::LoadExtension(const UnicodeString & Path)
  2591. {
  2592. std::unique_ptr<TStringList> Lines(new TStringList());
  2593. FileName = Path;
  2594. LoadScriptFromFile(Path, Lines.get());
  2595. LoadExtension(Lines.get());
  2596. Command = ReplaceStr(Command, L"%EXTENSION_PATH%", Path);
  2597. }
  2598. //---------------------------------------------------------------------------
  2599. void __fastcall TCustomCommandType::LoadExtension(TStrings * Lines)
  2600. {
  2601. Params = ccLocal;
  2602. bool AnythingFound = false;
  2603. for (int Index = 0; Index < Lines->Count; Index++)
  2604. {
  2605. UnicodeString Line = Lines->Strings[Index].Trim();
  2606. if (!Line.IsEmpty())
  2607. {
  2608. bool IsComment = false;
  2609. if (StartsText(ExtensionMark, Line))
  2610. {
  2611. IsComment = true;
  2612. }
  2613. else if (StartsText(L"rem ", Line))
  2614. {
  2615. IsComment = true;
  2616. Line.Delete(1, 4);
  2617. }
  2618. else if (StartsText(L"#", Line) || StartsText(L";", Line) || StartsText(L"'", Line))
  2619. {
  2620. IsComment = true;
  2621. Line.Delete(1, 1);
  2622. }
  2623. else if (StartsText(L"//", Line))
  2624. {
  2625. IsComment = true;
  2626. Line.Delete(1, 2);
  2627. }
  2628. if (IsComment)
  2629. {
  2630. Line = Line.Trim();
  2631. int P;
  2632. if (!Line.IsEmpty() && (Line[1] == ExtensionMark) && ((P = Pos(L" ", Line)) >= 2))
  2633. {
  2634. UnicodeString Key = Line.SubString(2, P - 2).LowerCase();
  2635. UnicodeString Directive = UnicodeString(ExtensionMark) + Key;
  2636. UnicodeString Value = Line.SubString(P + 1, Line.Length() - P).Trim();
  2637. bool KnownKey = true;
  2638. if (Key == ExtensionNameDirective)
  2639. {
  2640. Name = Value;
  2641. }
  2642. else if (Key == ExtensionCommandDirective)
  2643. {
  2644. Command = Value;
  2645. }
  2646. else if (Key == L"require")
  2647. {
  2648. UnicodeString DependencyVersion = Value;
  2649. UnicodeString Dependency = CutToChar(Value, L' ', true).LowerCase();
  2650. bool Failed = false;
  2651. if (Dependency == L"winscp")
  2652. {
  2653. int Version = StrToCompoundVersion(Value);
  2654. Failed = (Version > WinConfiguration->CompoundVersion);
  2655. }
  2656. else
  2657. {
  2658. Failed = true;
  2659. }
  2660. if (Failed)
  2661. {
  2662. throw Exception(MainInstructions(FMTLOAD(EXTENSION_DEPENDENCY_ERROR, (DependencyVersion))));
  2663. }
  2664. }
  2665. else if (Key == L"side")
  2666. {
  2667. if (SameText(Value, L"Local"))
  2668. {
  2669. Params |= ccLocal;
  2670. }
  2671. else if (SameText(Value, L"Remote"))
  2672. {
  2673. Params &= ~ccLocal;
  2674. }
  2675. else
  2676. {
  2677. throw Exception(MainInstructions(FMTLOAD(EXTENSION_DIRECTIVE_ERROR, (Value, Directive))));
  2678. }
  2679. }
  2680. else if (Key == L"flag")
  2681. {
  2682. if (SameText(Value, L"ApplyToDirectories"))
  2683. {
  2684. Params |= ccApplyToDirectories;
  2685. }
  2686. else if (SameText(Value, L"Recursive"))
  2687. {
  2688. Params |= ccRecursive;
  2689. }
  2690. else if (SameText(Value, L"ShowResults"))
  2691. {
  2692. Params |= ccShowResults;
  2693. }
  2694. else if (SameText(Value, L"CopyResults"))
  2695. {
  2696. Params |= ccCopyResults;
  2697. }
  2698. else if (SameText(Value, L"RemoteFiles"))
  2699. {
  2700. Params |= ccRemoteFiles;
  2701. }
  2702. else
  2703. {
  2704. throw Exception(MainInstructions(FMTLOAD(EXTENSION_DIRECTIVE_ERROR, (Value, Directive))));
  2705. }
  2706. }
  2707. else if (Key == L"shortcut")
  2708. {
  2709. TShortCut AShortCut = TextToShortCut(Value);
  2710. if (IsCustomShortCut(AShortCut))
  2711. {
  2712. ShortCut = AShortCut;
  2713. }
  2714. else
  2715. {
  2716. throw Exception(MainInstructions(FMTLOAD(EXTENSION_DIRECTIVE_ERROR, (Value, Directive))));
  2717. }
  2718. }
  2719. else if (Key == L"description")
  2720. {
  2721. Description = Value;
  2722. }
  2723. else if (Key == L"author")
  2724. {
  2725. // noop
  2726. }
  2727. else if (Key == L"version")
  2728. {
  2729. // noop
  2730. }
  2731. else if (Key == L"homepage")
  2732. {
  2733. // noop
  2734. }
  2735. else
  2736. {
  2737. KnownKey = false;
  2738. }
  2739. if (KnownKey)
  2740. {
  2741. AnythingFound = true;
  2742. }
  2743. }
  2744. }
  2745. else
  2746. {
  2747. break;
  2748. }
  2749. }
  2750. }
  2751. if (!AnythingFound)
  2752. {
  2753. throw Exception(MainInstructions(LoadStr(EXTENSION_NOT_FOUND)));
  2754. }
  2755. if (Name.IsEmpty())
  2756. {
  2757. throw Exception(MainInstructions(FMTLOAD(EXTENSION_DIRECTIVE_MISSING, (UnicodeString(ExtensionMark) + ExtensionNameDirective))));
  2758. }
  2759. if (Command.IsEmpty())
  2760. {
  2761. throw Exception(MainInstructions(FMTLOAD(EXTENSION_DIRECTIVE_MISSING, (UnicodeString(ExtensionMark) + ExtensionCommandDirective))));
  2762. }
  2763. }
  2764. //---------------------------------------------------------------------------
  2765. //---------------------------------------------------------------------------
  2766. __fastcall TCustomCommandList::TCustomCommandList()
  2767. {
  2768. FCommands = new TList();
  2769. FModified = false;
  2770. }
  2771. //---------------------------------------------------------------------------
  2772. __fastcall TCustomCommandList::~TCustomCommandList()
  2773. {
  2774. Clear();
  2775. delete FCommands;
  2776. }
  2777. //---------------------------------------------------------------------------
  2778. void __fastcall TCustomCommandList::Reset()
  2779. {
  2780. FModified = false;
  2781. }
  2782. //---------------------------------------------------------------------------
  2783. void __fastcall TCustomCommandList::Modify()
  2784. {
  2785. FModified = true;
  2786. }
  2787. //---------------------------------------------------------------------------
  2788. void __fastcall TCustomCommandList::Load(THierarchicalStorage * Storage)
  2789. {
  2790. Clear();
  2791. if (Storage->OpenSubKey(L"CustomCommands", false))
  2792. {
  2793. TStrings * Names = new TStringList();
  2794. try
  2795. {
  2796. Storage->ReadValues(Names, true);
  2797. for (int Index = 0; Index < Names->Count; Index++)
  2798. {
  2799. TCustomCommandType * Command = new TCustomCommandType();
  2800. Command->Name = Names->Names[Index];
  2801. Command->Command = Names->Values[Names->Names[Index]];
  2802. FCommands->Add(Command);
  2803. }
  2804. Storage->CloseSubKey();
  2805. }
  2806. __finally
  2807. {
  2808. delete Names;
  2809. }
  2810. }
  2811. if (Storage->OpenSubKey(L"CustomCommandsParams", false))
  2812. {
  2813. for (int Index = 0; Index < FCommands->Count; Index++)
  2814. {
  2815. TCustomCommandType * Command = GetCommand(Index);
  2816. Command->Params = Storage->ReadInteger(Command->Name, Command->Params);
  2817. }
  2818. Storage->CloseSubKey();
  2819. }
  2820. if (Storage->OpenSubKey(L"CustomCommandsShortCuts", false))
  2821. {
  2822. for (int Index = 0; Index < FCommands->Count; Index++)
  2823. {
  2824. TCustomCommandType * Command = GetCommand(Index);
  2825. Command->ShortCut = (Word)Storage->ReadInteger(Command->Name, Command->ShortCut);
  2826. }
  2827. Storage->CloseSubKey();
  2828. }
  2829. Reset();
  2830. }
  2831. //---------------------------------------------------------------------------
  2832. void __fastcall TCustomCommandList::Save(THierarchicalStorage * Storage)
  2833. {
  2834. if (Storage->OpenSubKey(L"CustomCommands", true))
  2835. {
  2836. Storage->ClearValues();
  2837. for (int Index = 0; Index < FCommands->Count; Index++)
  2838. {
  2839. const TCustomCommandType * Command = Commands[Index];
  2840. Storage->WriteString(Command->Name, Command->Command);
  2841. }
  2842. Storage->CloseSubKey();
  2843. }
  2844. if (Storage->OpenSubKey(L"CustomCommandsParams", true))
  2845. {
  2846. Storage->ClearValues();
  2847. for (int Index = 0; Index < FCommands->Count; Index++)
  2848. {
  2849. const TCustomCommandType * Command = Commands[Index];
  2850. Storage->WriteInteger(Command->Name, Command->Params);
  2851. }
  2852. Storage->CloseSubKey();
  2853. }
  2854. if (Storage->OpenSubKey(L"CustomCommandsShortCuts", true))
  2855. {
  2856. Storage->ClearValues();
  2857. for (int Index = 0; Index < FCommands->Count; Index++)
  2858. {
  2859. const TCustomCommandType * Command = Commands[Index];
  2860. if (Command->ShortCut != 0)
  2861. {
  2862. Storage->WriteInteger(Command->Name, Command->ShortCut);
  2863. }
  2864. }
  2865. Storage->CloseSubKey();
  2866. }
  2867. }
  2868. //---------------------------------------------------------------------------
  2869. void __fastcall TCustomCommandList::Clear()
  2870. {
  2871. for (int Index = 0; Index < FCommands->Count; Index++)
  2872. {
  2873. delete Commands[Index];
  2874. }
  2875. FCommands->Clear();
  2876. }
  2877. //---------------------------------------------------------------------------
  2878. void __fastcall TCustomCommandList::Add(const UnicodeString Name,
  2879. const UnicodeString ACommand, int Params)
  2880. {
  2881. TCustomCommandType * Command = new TCustomCommandType();
  2882. Command->Name = Name;
  2883. Command->Command = ACommand;
  2884. Command->Params = Params;
  2885. Add(Command);
  2886. }
  2887. //---------------------------------------------------------------------------
  2888. void __fastcall TCustomCommandList::Add(TCustomCommandType * Command)
  2889. {
  2890. Insert(Count, Command);
  2891. }
  2892. //---------------------------------------------------------------------------
  2893. void __fastcall TCustomCommandList::Insert(int Index, TCustomCommandType * Command)
  2894. {
  2895. FCommands->Insert(Index, Command);
  2896. Modify();
  2897. }
  2898. //---------------------------------------------------------------------------
  2899. void __fastcall TCustomCommandList::Change(int Index, TCustomCommandType * ACommand)
  2900. {
  2901. TCustomCommandType * Command = GetCommand(Index);
  2902. if (!Command->Equals(ACommand))
  2903. {
  2904. delete Command;
  2905. FCommands->Items[Index] = ACommand;
  2906. Modify();
  2907. }
  2908. else
  2909. {
  2910. delete ACommand;
  2911. }
  2912. }
  2913. //---------------------------------------------------------------------------
  2914. void __fastcall TCustomCommandList::Move(int CurIndex, int NewIndex)
  2915. {
  2916. if (CurIndex != NewIndex)
  2917. {
  2918. FCommands->Move(CurIndex, NewIndex);
  2919. Modify();
  2920. }
  2921. }
  2922. //---------------------------------------------------------------------------
  2923. void __fastcall TCustomCommandList::Delete(int Index)
  2924. {
  2925. DebugAssert((Index >= 0) && (Index < Count));
  2926. delete GetCommand(Index);
  2927. FCommands->Delete(Index);
  2928. Modify();
  2929. }
  2930. //---------------------------------------------------------------------------
  2931. class TCustomCommandCompareFunc : public TCppInterfacedObject<TListSortCompareFunc>
  2932. {
  2933. public:
  2934. TCustomCommandCompareFunc(TStrings * Ids)
  2935. {
  2936. FIds = Ids;
  2937. }
  2938. virtual int __fastcall Invoke(void * Item1, void * Item2)
  2939. {
  2940. TCustomCommandType * CustomCommand1 = static_cast<TCustomCommandType *>(Item1);
  2941. TCustomCommandType * CustomCommand2 = static_cast<TCustomCommandType *>(Item2);
  2942. int Index1 = FIds->IndexOf(CustomCommand1->Id);
  2943. int Index2 = FIds->IndexOf(CustomCommand2->Id);
  2944. int Result;
  2945. // new items to the end
  2946. if ((Index1 < 0) && (Index2 >= 0))
  2947. {
  2948. Result = 1;
  2949. }
  2950. else if ((Index2 < 0) && (Index1 >= 0))
  2951. {
  2952. Result = -1;
  2953. }
  2954. // fallback to comparing by name
  2955. else if ((Index1 < 0) && (Index2 < 0))
  2956. {
  2957. Result = TComparer__1<UnicodeString>::Default()->Compare(CustomCommand1->Name, CustomCommand2->Name);
  2958. }
  2959. else
  2960. {
  2961. Result = TComparer__1<int>::Default()->Compare(Index1, Index2);
  2962. }
  2963. return Result;
  2964. }
  2965. private:
  2966. TStrings * FIds;
  2967. };
  2968. //---------------------------------------------------------------------------
  2969. void __fastcall TCustomCommandList::SortBy(TStrings * Ids)
  2970. {
  2971. TCustomCommandCompareFunc * Func = new TCustomCommandCompareFunc(Ids);
  2972. FCommands->SortList(Func);
  2973. }
  2974. //---------------------------------------------------------------------------
  2975. int __fastcall TCustomCommandList::GetCount() const
  2976. {
  2977. return FCommands->Count;
  2978. }
  2979. //---------------------------------------------------------------------------
  2980. const TCustomCommandType * __fastcall TCustomCommandList::GetConstCommand(int Index) const
  2981. {
  2982. return static_cast<TCustomCommandType *>(FCommands->Items[Index]);
  2983. }
  2984. //---------------------------------------------------------------------------
  2985. TCustomCommandType * __fastcall TCustomCommandList::GetCommand(int Index)
  2986. {
  2987. return static_cast<TCustomCommandType *>(FCommands->Items[Index]);
  2988. }
  2989. //---------------------------------------------------------------------------
  2990. bool __fastcall TCustomCommandList::Equals(const TCustomCommandList * Other) const
  2991. {
  2992. bool Result = (Count == Other->Count);
  2993. for (int Index = 0; Result && (Index < Count); Index++)
  2994. {
  2995. Result = Commands[Index]->Equals(Other->Commands[Index]);
  2996. }
  2997. return Result;
  2998. }
  2999. //---------------------------------------------------------------------------
  3000. void __fastcall TCustomCommandList::Assign(const TCustomCommandList * Other)
  3001. {
  3002. Clear();
  3003. for (int Index = 0; Index < Other->Count; Index++)
  3004. {
  3005. Add(new TCustomCommandType(*Other->Commands[Index]));
  3006. }
  3007. // there should be comparison of with the assigned list, be we rely on caller
  3008. // to do it instead (TGUIConfiguration::SetCopyParamList)
  3009. Modify();
  3010. }
  3011. //---------------------------------------------------------------------------
  3012. const TCustomCommandType * TCustomCommandList::Find(const UnicodeString Name) const
  3013. {
  3014. for (int Index = 0; Index < FCommands->Count; Index++)
  3015. {
  3016. if (Commands[Index]->Name == Name)
  3017. {
  3018. return Commands[Index];
  3019. }
  3020. }
  3021. return NULL;
  3022. }
  3023. //---------------------------------------------------------------------------
  3024. const TCustomCommandType * TCustomCommandList::Find(TShortCut ShortCut) const
  3025. {
  3026. for (int Index = 0; Index < FCommands->Count; Index++)
  3027. {
  3028. if (Commands[Index]->ShortCut == ShortCut)
  3029. {
  3030. return Commands[Index];
  3031. }
  3032. }
  3033. return NULL;
  3034. }
  3035. //---------------------------------------------------------------------------
  3036. int TCustomCommandList::FindIndexByFileName(const UnicodeString & FileName) const
  3037. {
  3038. for (int Index = 0; Index < FCommands->Count; Index++)
  3039. {
  3040. if (CompareFileName(Commands[Index]->FileName, FileName))
  3041. {
  3042. return Index;
  3043. }
  3044. }
  3045. return NULL;
  3046. }
  3047. //---------------------------------------------------------------------------
  3048. void __fastcall TCustomCommandList::ShortCuts(TShortCuts & ShortCuts) const
  3049. {
  3050. for (int Index = 0; Index < FCommands->Count; Index++)
  3051. {
  3052. const TCustomCommandType * Command = Commands[Index];
  3053. if (Command->ShortCut != 0)
  3054. {
  3055. ShortCuts.Add(Command->ShortCut);
  3056. }
  3057. }
  3058. }