Preferences.dfm 112 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669
  1. object PreferencesDialog: TPreferencesDialog
  2. Left = 400
  3. Top = 161
  4. HelpType = htKeyword
  5. HelpKeyword = 'ui_preferences'
  6. BorderIcons = [biSystemMenu, biMinimize, biMaximize, biHelp]
  7. BorderStyle = bsDialog
  8. Caption = 'Preferences'
  9. ClientHeight = 569
  10. ClientWidth = 605
  11. Color = clBtnFace
  12. Font.Charset = DEFAULT_CHARSET
  13. Font.Color = clWindowText
  14. Font.Height = -12
  15. Font.Name = 'Segoe UI'
  16. Font.Style = []
  17. Position = poOwnerFormCenter
  18. OnAfterMonitorDpiChanged = FormAfterMonitorDpiChanged
  19. OnCloseQuery = FormCloseQuery
  20. OnShortCut = FormShortCut
  21. OnShow = FormShow
  22. DesignSize = (
  23. 605
  24. 569)
  25. TextHeight = 15
  26. object OKButton: TButton
  27. Left = 345
  28. Top = 486
  29. Width = 80
  30. Height = 25
  31. Anchors = [akRight, akBottom]
  32. Caption = 'OK'
  33. Default = True
  34. ModalResult = 1
  35. TabOrder = 1
  36. end
  37. object CloseButton: TButton
  38. Left = 431
  39. Top = 486
  40. Width = 80
  41. Height = 25
  42. Anchors = [akRight, akBottom]
  43. Cancel = True
  44. Caption = 'Cancel'
  45. ModalResult = 2
  46. TabOrder = 2
  47. end
  48. object MainPanel: TPanel
  49. Left = 0
  50. Top = 0
  51. Width = 605
  52. Height = 485
  53. Align = alTop
  54. Anchors = [akLeft, akTop, akRight, akBottom]
  55. BevelOuter = bvNone
  56. TabOrder = 0
  57. object PageControl: TPageControl
  58. Left = 140
  59. Top = 0
  60. Width = 465
  61. Height = 485
  62. ActivePage = PreferencesSheet
  63. Align = alClient
  64. MultiLine = True
  65. Style = tsButtons
  66. TabOrder = 1
  67. TabStop = False
  68. OnChange = PageControlChange
  69. object PreferencesSheet: TTabSheet
  70. Tag = 1
  71. HelpType = htKeyword
  72. HelpKeyword = 'ui_pref_environment'
  73. Caption = 'Environment'
  74. ImageIndex = 2
  75. TabVisible = False
  76. DesignSize = (
  77. 457
  78. 475)
  79. object CommonPreferencesGroup: TGroupBox
  80. Left = 8
  81. Top = 2
  82. Width = 445
  83. Height = 304
  84. Anchors = [akLeft, akTop, akRight]
  85. Caption = 'Confirmations'
  86. TabOrder = 0
  87. DesignSize = (
  88. 445
  89. 304)
  90. object SynchronizeSummaryCheck: TCheckBox
  91. Left = 11
  92. Top = 254
  93. Width = 425
  94. Height = 17
  95. Anchors = [akLeft, akTop, akRight]
  96. Caption = 'Sync&hronization summary'
  97. TabOrder = 10
  98. OnClick = ControlChange
  99. end
  100. object ConfirmOverwritingCheck: TCheckBox
  101. Left = 11
  102. Top = 68
  103. Width = 425
  104. Height = 17
  105. Anchors = [akLeft, akTop, akRight]
  106. Caption = '&Overwriting of files'
  107. TabOrder = 2
  108. OnClick = ControlChange
  109. end
  110. object ConfirmDeletingCheck: TCheckBox
  111. Left = 11
  112. Top = 139
  113. Width = 425
  114. Height = 17
  115. Anchors = [akLeft, akTop, akRight]
  116. Caption = '&Deleting of files (recommended)'
  117. TabOrder = 5
  118. OnClick = ControlChange
  119. end
  120. object ConfirmClosingSessionCheck2: TCheckBox
  121. Left = 11
  122. Top = 185
  123. Width = 425
  124. Height = 17
  125. Anchors = [akLeft, akTop, akRight]
  126. Caption = 'Closing sessions when exiting appli&cation'
  127. TabOrder = 7
  128. OnClick = ControlChange
  129. end
  130. object DDTransferConfirmationCheck2: TCheckBox
  131. Left = 26
  132. Top = 45
  133. Width = 410
  134. Height = 17
  135. Anchors = [akLeft, akTop, akRight]
  136. Caption = 'D&rag && drop operations and paste to other applications'
  137. TabOrder = 1
  138. OnClick = ControlChange
  139. end
  140. object ContinueOnErrorCheck: TCheckBox
  141. Left = 11
  142. Top = 277
  143. Width = 425
  144. Height = 17
  145. Anchors = [akLeft, akTop, akRight]
  146. Caption = 'Continue on &error (advanced users)'
  147. TabOrder = 11
  148. OnClick = ControlChange
  149. end
  150. object ConfirmExitOnCompletionCheck: TCheckBox
  151. Left = 11
  152. Top = 208
  153. Width = 425
  154. Height = 17
  155. Anchors = [akLeft, akTop, akRight]
  156. Caption = 'Exiting application on o&peration completion'
  157. TabOrder = 8
  158. OnClick = ControlChange
  159. end
  160. object ConfirmResumeCheck: TCheckBox
  161. Left = 11
  162. Top = 91
  163. Width = 425
  164. Height = 17
  165. Anchors = [akLeft, akTop, akRight]
  166. Caption = 'Trans&fer resuming'
  167. TabOrder = 3
  168. OnClick = ControlChange
  169. end
  170. object ConfirmCommandSessionCheck: TCheckBox
  171. Left = 11
  172. Top = 231
  173. Width = 425
  174. Height = 17
  175. Anchors = [akLeft, akTop, akRight]
  176. Caption = 'Opening separate &shell session'
  177. TabOrder = 9
  178. OnClick = ControlChange
  179. end
  180. object ConfirmRecyclingCheck: TCheckBox
  181. Left = 11
  182. Top = 162
  183. Width = 425
  184. Height = 17
  185. Anchors = [akLeft, akTop, akRight]
  186. Caption = '&Moving files to Recycle bin'
  187. TabOrder = 6
  188. OnClick = ControlChange
  189. end
  190. object ConfirmTransferringCheck: TCheckBox
  191. Left = 11
  192. Top = 22
  193. Width = 425
  194. Height = 17
  195. Anchors = [akLeft, akTop, akRight]
  196. Caption = '&Transferring of files'
  197. TabOrder = 0
  198. OnClick = ControlChange
  199. end
  200. object BackgroundConfirmationsLink: TStaticText
  201. Left = 11
  202. Top = 114
  203. Width = 425
  204. Height = 19
  205. Alignment = taRightJustify
  206. Anchors = [akLeft, akTop, akRight]
  207. AutoSize = False
  208. Caption = 'Change confirmations of background transfers'
  209. TabOrder = 4
  210. TabStop = True
  211. OnClick = BackgroundConfirmationsLinkClick
  212. end
  213. end
  214. object NotificationsGroup: TGroupBox
  215. Left = 8
  216. Top = 312
  217. Width = 445
  218. Height = 72
  219. Anchors = [akLeft, akTop, akRight]
  220. Caption = 'Notifications'
  221. TabOrder = 1
  222. DesignSize = (
  223. 445
  224. 72)
  225. object BeepOnFinishAfterText: TLabel
  226. Left = 429
  227. Top = 22
  228. Width = 5
  229. Height = 15
  230. Anchors = [akTop, akRight]
  231. Caption = 's'
  232. ShowAccelChar = False
  233. end
  234. object BeepOnFinishCheck: TCheckBox
  235. Left = 11
  236. Top = 22
  237. Width = 333
  238. Height = 17
  239. Anchors = [akLeft, akTop, akRight]
  240. Caption = '&Beep when work finishes, if it lasted more than'
  241. TabOrder = 0
  242. OnClick = ControlChange
  243. end
  244. object BeepOnFinishAfterEdit: TUpDownEdit
  245. Left = 350
  246. Top = 19
  247. Width = 73
  248. Height = 23
  249. Alignment = taRightJustify
  250. Increment = 15.000000000000000000
  251. MaxValue = 999.000000000000000000
  252. Anchors = [akTop, akRight]
  253. MaxLength = 3
  254. TabOrder = 1
  255. OnChange = ControlChange
  256. end
  257. object BalloonNotificationsCheck: TCheckBox
  258. Left = 11
  259. Top = 45
  260. Width = 425
  261. Height = 17
  262. Anchors = [akLeft, akTop, akRight]
  263. Caption = 'Show balloon &notifications in taskbar status area (system tray)'
  264. TabOrder = 2
  265. OnClick = ControlChange
  266. end
  267. end
  268. end
  269. object LogSheet: TTabSheet
  270. Tag = 2
  271. HelpType = htKeyword
  272. HelpKeyword = 'ui_pref_logging'
  273. Caption = 'Logging'
  274. ImageIndex = 4
  275. TabVisible = False
  276. DesignSize = (
  277. 457
  278. 475)
  279. object LogProtocolHintLabel: TLabel
  280. Left = 8
  281. Top = 299
  282. Width = 445
  283. Height = 43
  284. Anchors = [akLeft, akTop, akRight]
  285. AutoSize = False
  286. Caption =
  287. 'The selected logging level severely degrades performance. Use it' +
  288. ' when troubleshooting only.'
  289. ShowAccelChar = False
  290. WordWrap = True
  291. end
  292. object LoggingGroup: TGroupBox
  293. Left = 8
  294. Top = 2
  295. Width = 445
  296. Height = 195
  297. Anchors = [akLeft, akTop, akRight]
  298. Caption = 'Session log'
  299. TabOrder = 0
  300. DesignSize = (
  301. 445
  302. 195)
  303. object LogMaxSizeCountFilesLabel: TLabel
  304. Left = 383
  305. Top = 142
  306. Width = 21
  307. Height = 15
  308. Anchors = [akTop, akRight]
  309. Caption = 'files'
  310. FocusControl = LogMaxSizeCountEdit
  311. ShowAccelChar = False
  312. end
  313. object LogFileNameLabel: TLabel
  314. Left = 27
  315. Top = 45
  316. Width = 50
  317. Height = 15
  318. Caption = '&Log path:'
  319. FocusControl = LogFileNameEdit3
  320. OnClick = ControlChange
  321. end
  322. object LogFileNameEdit3: TFilenameEdit
  323. Left = 27
  324. Top = 63
  325. Width = 409
  326. Height = 21
  327. AcceptFiles = True
  328. OnBeforeDialog = PathEditBeforeDialog
  329. OnAfterDialog = PathEditAfterDialog
  330. DialogKind = dkSave
  331. DefaultExt = 'log'
  332. Filter = 'Session log files (*.log)|*.log|All files (*.*)|*.*'
  333. DialogOptions = [ofHideReadOnly, ofPathMustExist]
  334. DialogTitle = 'Select file for session log'
  335. ClickKey = 16397
  336. Anchors = [akLeft, akTop, akRight]
  337. TabOrder = 2
  338. Text = 'LogFileNameEdit3'
  339. OnChange = ControlChange
  340. end
  341. object LogFilePanel: TPanel
  342. Left = 29
  343. Top = 86
  344. Width = 321
  345. Height = 25
  346. Anchors = [akLeft, akTop, akRight]
  347. BevelOuter = bvNone
  348. TabOrder = 4
  349. object LogFileAppendButton: TRadioButton
  350. Left = 0
  351. Top = 4
  352. Width = 116
  353. Height = 17
  354. Caption = 'Appe&nd'
  355. TabOrder = 0
  356. OnClick = ControlChange
  357. end
  358. object LogFileOverwriteButton: TRadioButton
  359. Left = 122
  360. Top = 4
  361. Width = 116
  362. Height = 17
  363. Caption = '&Overwrite'
  364. TabOrder = 1
  365. OnClick = ControlChange
  366. end
  367. end
  368. object LogProtocolCombo2: TComboBox
  369. Left = 305
  370. Top = 19
  371. Width = 131
  372. Height = 23
  373. Style = csDropDownList
  374. Anchors = [akTop, akRight]
  375. TabOrder = 1
  376. OnChange = ControlChange
  377. Items.Strings = (
  378. 'Reduced'
  379. 'Normal'
  380. 'Debug 1'
  381. 'Debug 2')
  382. end
  383. object LogFileNameHintText: TStaticText
  384. Left = 305
  385. Top = 84
  386. Width = 131
  387. Height = 16
  388. Alignment = taRightJustify
  389. Anchors = [akTop, akRight]
  390. AutoSize = False
  391. Caption = '&patterns'
  392. TabOrder = 3
  393. TabStop = True
  394. end
  395. object EnableLoggingCheck: TCheckBox
  396. Left = 11
  397. Top = 22
  398. Width = 288
  399. Height = 17
  400. Anchors = [akLeft, akTop, akRight]
  401. Caption = 'Enable &session logging on level:'
  402. TabOrder = 0
  403. OnClick = ControlChange
  404. end
  405. object LogSensitiveCheck: TCheckBox
  406. Left = 29
  407. Top = 168
  408. Width = 391
  409. Height = 17
  410. Anchors = [akLeft, akTop, akRight]
  411. Caption = 'Log pass&words and other sensitive information'
  412. TabOrder = 9
  413. OnClick = ControlChange
  414. end
  415. object LogMaxSizeCheck: TCheckBox
  416. Left = 29
  417. Top = 113
  418. Width = 270
  419. Height = 17
  420. Anchors = [akLeft, akTop, akRight]
  421. Caption = '&Rotate log files after reaching'
  422. TabOrder = 5
  423. OnClick = ControlChange
  424. end
  425. object LogMaxSizeCombo: TComboBox
  426. Left = 305
  427. Top = 110
  428. Width = 131
  429. Height = 23
  430. Anchors = [akTop, akRight]
  431. MaxLength = 20
  432. TabOrder = 6
  433. OnChange = ControlChange
  434. OnExit = SizeComboExit
  435. Items.Strings = (
  436. '1M'
  437. '10M'
  438. '100M'
  439. '1G')
  440. end
  441. object LogMaxSizeCountCheck: TCheckBox
  442. Left = 45
  443. Top = 142
  444. Width = 254
  445. Height = 17
  446. Anchors = [akLeft, akTop, akRight]
  447. Caption = '&Delete old log files, keep'
  448. TabOrder = 7
  449. OnClick = ControlChange
  450. end
  451. object LogMaxSizeCountEdit: TUpDownEdit
  452. Left = 305
  453. Top = 139
  454. Width = 72
  455. Height = 23
  456. MaxValue = 999.000000000000000000
  457. MinValue = 1.000000000000000000
  458. Anchors = [akTop, akRight]
  459. TabOrder = 8
  460. OnChange = ControlChange
  461. end
  462. end
  463. object ActionsLoggingGroup: TGroupBox
  464. Left = 8
  465. Top = 203
  466. Width = 445
  467. Height = 90
  468. Anchors = [akLeft, akTop, akRight]
  469. Caption = 'XML log'
  470. TabOrder = 1
  471. DesignSize = (
  472. 445
  473. 90)
  474. object ActionsLogFileNameEdit: TFilenameEdit
  475. Left = 27
  476. Top = 45
  477. Width = 409
  478. Height = 21
  479. AcceptFiles = True
  480. OnBeforeDialog = PathEditBeforeDialog
  481. OnAfterDialog = PathEditAfterDialog
  482. DialogKind = dkSave
  483. DefaultExt = 'xml'
  484. Filter = 'XML log files (*.xml)|*.xml|All files (*.*)|*.*'
  485. DialogOptions = [ofHideReadOnly, ofPathMustExist]
  486. DialogTitle = 'Select file for XML log.'
  487. ClickKey = 16397
  488. Anchors = [akLeft, akTop, akRight]
  489. TabOrder = 1
  490. Text = 'ActionsLogFileNameEdit'
  491. OnChange = ControlChange
  492. end
  493. object ActionsLogFileNameHintText: TStaticText
  494. Left = 305
  495. Top = 66
  496. Width = 131
  497. Height = 16
  498. Alignment = taRightJustify
  499. Anchors = [akTop, akRight]
  500. AutoSize = False
  501. Caption = 'pa&tterns'
  502. TabOrder = 2
  503. TabStop = True
  504. end
  505. object EnableActionsLoggingCheck: TCheckBox
  506. Left = 11
  507. Top = 22
  508. Width = 425
  509. Height = 17
  510. Anchors = [akLeft, akTop, akRight]
  511. Caption = 'Enable &XML logging to file:'
  512. TabOrder = 0
  513. OnClick = ControlChange
  514. end
  515. end
  516. end
  517. object GeneralSheet: TTabSheet
  518. Tag = 3
  519. HelpType = htKeyword
  520. HelpKeyword = 'ui_pref_interface'
  521. Caption = 'Interface'
  522. ImageIndex = 5
  523. TabVisible = False
  524. DesignSize = (
  525. 457
  526. 475)
  527. object InterfaceChangeLabel: TLabel
  528. Left = 8
  529. Top = 284
  530. Width = 190
  531. Height = 15
  532. Caption = 'Changes will apply on the next start.'
  533. ShowAccelChar = False
  534. end
  535. object InterfaceGroup: TGroupBox
  536. Left = 8
  537. Top = 60
  538. Width = 445
  539. Height = 218
  540. Anchors = [akLeft, akTop, akRight]
  541. Caption = 'User Interface'
  542. TabOrder = 1
  543. DesignSize = (
  544. 445
  545. 218)
  546. object CommanderDescriptionLabel2: TLabel
  547. Left = 147
  548. Top = 22
  549. Width = 289
  550. Height = 115
  551. Anchors = [akLeft, akTop, akRight]
  552. AutoSize = False
  553. Caption =
  554. '- two panels (left for local directory, right for remote directo' +
  555. 'ry)'#13#10'- keyboard shortcuts like in Norton Commander (and other si' +
  556. 'milar programs as Total Commander, Midnight Commander...)'#13#10'- dra' +
  557. 'g && drop to/from both panels'
  558. FocusControl = CommanderInterfaceButton2
  559. WordWrap = True
  560. OnClick = CommanderClick
  561. end
  562. object ExplorerDescriptionLabel: TLabel
  563. Left = 147
  564. Top = 138
  565. Width = 289
  566. Height = 67
  567. Anchors = [akLeft, akTop, akRight]
  568. AutoSize = False
  569. Caption =
  570. '- only remote directory'#13#10'- keyboard shortcuts like in Windows Fi' +
  571. 'le Explorer'#13#10'- drag && drop'
  572. FocusControl = ExplorerInterfaceButton2
  573. WordWrap = True
  574. OnClick = ExplorerClick
  575. end
  576. object CommanderInterfacePicture: TImage
  577. Left = 55
  578. Top = 45
  579. Width = 32
  580. Height = 32
  581. AutoSize = True
  582. OnClick = CommanderClick
  583. end
  584. object ExplorerInterfacePicture: TImage
  585. Left = 55
  586. Top = 161
  587. Width = 32
  588. Height = 32
  589. AutoSize = True
  590. OnClick = ExplorerClick
  591. end
  592. object CommanderInterfaceButton2: TRadioButton
  593. Left = 11
  594. Top = 22
  595. Width = 116
  596. Height = 17
  597. Caption = '&Commander'
  598. Checked = True
  599. TabOrder = 0
  600. TabStop = True
  601. OnClick = ControlChange
  602. end
  603. object ExplorerInterfaceButton2: TRadioButton
  604. Left = 11
  605. Top = 138
  606. Width = 111
  607. Height = 17
  608. Caption = '&Explorer'
  609. TabOrder = 1
  610. OnClick = ControlChange
  611. end
  612. end
  613. object ThemeGroup: TGroupBox
  614. Left = 8
  615. Top = 2
  616. Width = 445
  617. Height = 52
  618. Anchors = [akLeft, akTop, akRight]
  619. Caption = 'Theme'
  620. TabOrder = 0
  621. DesignSize = (
  622. 445
  623. 52)
  624. object Label7: TLabel
  625. Left = 9
  626. Top = 22
  627. Width = 86
  628. Height = 15
  629. Caption = 'Interface &theme:'
  630. FocusControl = ThemeCombo
  631. end
  632. object ThemeCombo: TComboBox
  633. Left = 147
  634. Top = 19
  635. Width = 197
  636. Height = 23
  637. Style = csDropDownList
  638. Anchors = [akLeft, akTop, akRight]
  639. TabOrder = 0
  640. Items.Strings = (
  641. 'Automatic'
  642. 'Light'
  643. 'Dark')
  644. end
  645. end
  646. end
  647. object PanelsSheet: TTabSheet
  648. Tag = 4
  649. HelpType = htKeyword
  650. HelpKeyword = 'ui_pref_panels'
  651. Caption = 'Panels'
  652. ImageIndex = 3
  653. TabVisible = False
  654. DesignSize = (
  655. 457
  656. 475)
  657. object PanelsCommonGroup: TGroupBox
  658. Left = 8
  659. Top = 2
  660. Width = 445
  661. Height = 245
  662. Anchors = [akLeft, akTop, akRight]
  663. Caption = 'Common'
  664. TabOrder = 0
  665. DesignSize = (
  666. 445
  667. 245)
  668. object Label1: TLabel
  669. Left = 9
  670. Top = 186
  671. Width = 91
  672. Height = 15
  673. Caption = 'Show file si&zes in:'
  674. FocusControl = FormatSizeBytesCombo
  675. OnClick = ControlChange
  676. end
  677. object Label2: TLabel
  678. Left = 9
  679. Top = 215
  680. Width = 103
  681. Height = 15
  682. Caption = '&Incremental search:'
  683. FocusControl = PanelSearchCombo
  684. OnClick = ControlChange
  685. end
  686. object ShowHiddenFilesCheck: TCheckBox
  687. Left = 11
  688. Top = 22
  689. Width = 425
  690. Height = 17
  691. Anchors = [akLeft, akTop, akRight]
  692. Caption = '&Show hidden files (Ctrl+Alt+H)'
  693. TabOrder = 0
  694. OnClick = ControlChange
  695. end
  696. object DefaultDirIsHomeCheck: TCheckBox
  697. Left = 11
  698. Top = 45
  699. Width = 425
  700. Height = 17
  701. Anchors = [akLeft, akTop, akRight]
  702. Caption = 'Default directory is &home directory'
  703. TabOrder = 1
  704. OnClick = ControlChange
  705. end
  706. object PreservePanelStateCheck: TCheckBox
  707. Left = 11
  708. Top = 68
  709. Width = 425
  710. Height = 17
  711. Anchors = [akLeft, akTop, akRight]
  712. Caption = '&Remember panels'#39' state when switching sessions'
  713. TabOrder = 2
  714. OnClick = ControlChange
  715. end
  716. object RenameWholeNameCheck: TCheckBox
  717. Left = 11
  718. Top = 91
  719. Width = 425
  720. Height = 17
  721. Anchors = [akLeft, akTop, akRight]
  722. Caption = 'Select &whole name when renaming file'
  723. TabOrder = 3
  724. OnClick = ControlChange
  725. end
  726. object FullRowSelectCheck: TCheckBox
  727. Left = 11
  728. Top = 114
  729. Width = 425
  730. Height = 17
  731. Anchors = [akLeft, akTop, akRight]
  732. Caption = '&Full row select'
  733. TabOrder = 4
  734. OnClick = ControlChange
  735. end
  736. object FormatSizeBytesCombo: TComboBox
  737. Left = 316
  738. Top = 183
  739. Width = 120
  740. Height = 23
  741. Style = csDropDownList
  742. Anchors = [akTop, akRight]
  743. MaxLength = 1
  744. TabOrder = 6
  745. OnChange = ControlChange
  746. Items.Strings = (
  747. 'Bytes'
  748. 'Kilobytes'
  749. 'Short format')
  750. end
  751. object NaturalOrderNumericalSortingCheck: TCheckBox
  752. Left = 11
  753. Top = 137
  754. Width = 425
  755. Height = 17
  756. Anchors = [akLeft, akTop, akRight]
  757. Caption = 'Use &natural order numerical sorting'
  758. TabOrder = 5
  759. OnClick = ControlChange
  760. end
  761. object PanelSearchCombo: TComboBox
  762. Left = 241
  763. Top = 212
  764. Width = 195
  765. Height = 23
  766. Style = csDropDownList
  767. Anchors = [akTop, akRight]
  768. MaxLength = 1
  769. TabOrder = 7
  770. OnChange = ControlChange
  771. Items.Strings = (
  772. 'Beginning of name only'
  773. 'Any part of name'
  774. 'All columns')
  775. end
  776. object AlwaysSortDirectoriesByNameCheck: TCheckBox
  777. Left = 11
  778. Top = 160
  779. Width = 425
  780. Height = 17
  781. Anchors = [akLeft, akTop, akRight]
  782. Caption = 'Always sort &directories by name'
  783. TabOrder = 8
  784. OnClick = ControlChange
  785. end
  786. end
  787. object DoubleClickGroup: TGroupBox
  788. Left = 8
  789. Top = 253
  790. Width = 445
  791. Height = 75
  792. Anchors = [akLeft, akTop, akRight]
  793. Caption = 'Double-click'
  794. TabOrder = 1
  795. DesignSize = (
  796. 445
  797. 75)
  798. object DoubleClickActionLabel: TLabel
  799. Left = 9
  800. Top = 22
  801. Width = 202
  802. Height = 15
  803. Anchors = [akLeft, akTop, akRight]
  804. Caption = '&Operation to perform on double-click:'
  805. FocusControl = DoubleClickActionCombo
  806. end
  807. object CopyOnDoubleClickConfirmationCheck: TCheckBox
  808. Left = 11
  809. Top = 48
  810. Width = 425
  811. Height = 17
  812. Anchors = [akLeft, akTop, akRight]
  813. Caption = '&Confirm copy on double-click operation'
  814. TabOrder = 1
  815. OnClick = ControlChange
  816. end
  817. object DoubleClickActionCombo: TComboBox
  818. Left = 316
  819. Top = 19
  820. Width = 120
  821. Height = 23
  822. Style = csDropDownList
  823. Anchors = [akTop, akRight]
  824. TabOrder = 0
  825. OnChange = ControlChange
  826. Items.Strings = (
  827. 'Open'
  828. 'Copy'
  829. 'Edit')
  830. end
  831. end
  832. object PanelFontGroup: TGroupBox
  833. Left = 8
  834. Top = 334
  835. Width = 445
  836. Height = 80
  837. Anchors = [akLeft, akTop, akRight]
  838. Caption = 'Panel font'
  839. TabOrder = 2
  840. DesignSize = (
  841. 445
  842. 80)
  843. object PanelFontLabel: TLabel
  844. Left = 160
  845. Top = 22
  846. Width = 276
  847. Height = 48
  848. Anchors = [akLeft, akTop, akRight, akBottom]
  849. AutoSize = False
  850. Caption = 'PanelFontLabel'
  851. Color = clWindow
  852. ParentColor = False
  853. ShowAccelChar = False
  854. Transparent = False
  855. WordWrap = True
  856. OnDblClick = PanelFontLabelDblClick
  857. end
  858. object PanelFontButton: TButton
  859. Left = 9
  860. Top = 45
  861. Width = 145
  862. Height = 25
  863. Caption = 'Select fon&t...'
  864. TabOrder = 1
  865. OnClick = PanelFontButtonClick
  866. end
  867. object PanelFontCheck: TCheckBox
  868. Left = 11
  869. Top = 22
  870. Width = 143
  871. Height = 17
  872. Caption = '&Use custom font'
  873. TabOrder = 0
  874. OnClick = ControlChange
  875. end
  876. end
  877. end
  878. object CommanderSheet: TTabSheet
  879. Tag = 5
  880. HelpType = htKeyword
  881. HelpKeyword = 'ui_pref_commander'
  882. Caption = 'Commander'
  883. ImageIndex = 3
  884. TabVisible = False
  885. DesignSize = (
  886. 457
  887. 475)
  888. object Label3: TLabel
  889. Left = 8
  890. Top = 2
  891. Width = 445
  892. Height = 29
  893. Anchors = [akLeft, akTop, akRight]
  894. AutoSize = False
  895. Caption = 'Preferences on this page apply to Commander interface only.'
  896. ShowAccelChar = False
  897. WordWrap = True
  898. end
  899. object PanelsGroup: TGroupBox
  900. Left = 8
  901. Top = 34
  902. Width = 445
  903. Height = 99
  904. Anchors = [akLeft, akTop, akRight]
  905. Caption = 'Panels'
  906. TabOrder = 0
  907. DesignSize = (
  908. 445
  909. 99)
  910. object Label8: TLabel
  911. Left = 9
  912. Top = 22
  913. Width = 124
  914. Height = 15
  915. Caption = '&Explorer-style selection:'
  916. FocusControl = NortonLikeModeCombo
  917. end
  918. object SwappedPanelsCheck: TCheckBox
  919. Left = 11
  920. Top = 48
  921. Width = 425
  922. Height = 17
  923. Anchors = [akLeft, akTop, akRight]
  924. Caption = 'S&wap panels (local on right, remote on left)'
  925. TabOrder = 1
  926. OnClick = ControlChange
  927. end
  928. object NortonLikeModeCombo: TComboBox
  929. Left = 210
  930. Top = 19
  931. Width = 226
  932. Height = 23
  933. Style = csDropDownList
  934. Anchors = [akLeft, akTop, akRight]
  935. TabOrder = 0
  936. OnChange = ControlChange
  937. Items.Strings = (
  938. 'Never'
  939. 'Mouse only'
  940. 'Mouse and Keyboard')
  941. end
  942. object TreeOnLeftCheck: TCheckBox
  943. Left = 11
  944. Top = 71
  945. Width = 425
  946. Height = 17
  947. Anchors = [akLeft, akTop, akRight]
  948. Caption = 'Show &directory tree left of file list'
  949. TabOrder = 2
  950. OnClick = ControlChange
  951. end
  952. end
  953. object CommanderMiscGroup: TGroupBox
  954. Left = 8
  955. Top = 139
  956. Width = 445
  957. Height = 75
  958. Anchors = [akLeft, akTop, akRight]
  959. Caption = 'Miscellaneous'
  960. TabOrder = 1
  961. DesignSize = (
  962. 445
  963. 75)
  964. object Label10: TLabel
  965. Left = 9
  966. Top = 22
  967. Width = 102
  968. Height = 15
  969. Caption = '&Keyboard shortcuts'
  970. FocusControl = ExplorerKeyboardShortcutsCombo
  971. end
  972. object UseLocationProfilesCheck: TCheckBox
  973. Left = 11
  974. Top = 48
  975. Width = 425
  976. Height = 17
  977. Anchors = [akLeft, akTop, akRight]
  978. Caption = '&Use Location Profiles instead of Directory Bookmarks'
  979. TabOrder = 1
  980. OnClick = ControlChange
  981. end
  982. object ExplorerKeyboardShortcutsCombo: TComboBox
  983. Left = 210
  984. Top = 19
  985. Width = 226
  986. Height = 23
  987. Style = csDropDownList
  988. Anchors = [akLeft, akTop, akRight]
  989. TabOrder = 0
  990. OnChange = ControlChange
  991. Items.Strings = (
  992. 'Commander'
  993. 'Explorer')
  994. end
  995. end
  996. object CompareCriterionsGroup: TGroupBox
  997. Left = 8
  998. Top = 220
  999. Width = 445
  1000. Height = 72
  1001. Anchors = [akLeft, akTop, akRight]
  1002. Caption = 'Compare directory criteria'
  1003. TabOrder = 2
  1004. DesignSize = (
  1005. 445
  1006. 72)
  1007. object CompareByTimeCheck: TCheckBox
  1008. Left = 11
  1009. Top = 22
  1010. Width = 425
  1011. Height = 17
  1012. Anchors = [akLeft, akTop, akRight]
  1013. Caption = 'Compare by &time'
  1014. TabOrder = 0
  1015. OnClick = ControlChange
  1016. end
  1017. object CompareBySizeCheck: TCheckBox
  1018. Left = 11
  1019. Top = 45
  1020. Width = 425
  1021. Height = 17
  1022. Anchors = [akLeft, akTop, akRight]
  1023. Caption = 'Compare by &size'
  1024. TabOrder = 1
  1025. OnClick = ControlChange
  1026. end
  1027. end
  1028. end
  1029. object ExplorerSheet: TTabSheet
  1030. Tag = 6
  1031. HelpType = htKeyword
  1032. HelpKeyword = 'ui_pref_explorer'
  1033. Caption = 'Explorer'
  1034. ImageIndex = 5
  1035. TabVisible = False
  1036. DesignSize = (
  1037. 457
  1038. 475)
  1039. object Label4: TLabel
  1040. Left = 8
  1041. Top = 2
  1042. Width = 445
  1043. Height = 29
  1044. Anchors = [akLeft, akTop, akRight]
  1045. AutoSize = False
  1046. Caption = 'Preferences on this page apply to Explorer interface only.'
  1047. ShowAccelChar = False
  1048. WordWrap = True
  1049. end
  1050. object GroupBox2: TGroupBox
  1051. Left = 8
  1052. Top = 34
  1053. Width = 445
  1054. Height = 49
  1055. Anchors = [akLeft, akTop, akRight]
  1056. Caption = 'View'
  1057. TabOrder = 0
  1058. DesignSize = (
  1059. 445
  1060. 49)
  1061. object ShowFullAddressCheck: TCheckBox
  1062. Left = 11
  1063. Top = 22
  1064. Width = 425
  1065. Height = 17
  1066. Anchors = [akLeft, akTop, akRight]
  1067. Caption = '&Show full path on address bar'
  1068. TabOrder = 0
  1069. OnClick = ControlChange
  1070. end
  1071. end
  1072. end
  1073. object EditorSheet: TTabSheet
  1074. Tag = 8
  1075. HelpType = htKeyword
  1076. HelpKeyword = 'ui_pref_editor'
  1077. Caption = 'Editors'
  1078. ImageIndex = 7
  1079. TabVisible = False
  1080. DesignSize = (
  1081. 457
  1082. 475)
  1083. object EditorPreferenceGroup: TGroupBox
  1084. Left = 8
  1085. Top = 2
  1086. Width = 445
  1087. Height = 416
  1088. Anchors = [akLeft, akTop, akRight, akBottom]
  1089. Caption = 'Editor preference'
  1090. TabOrder = 0
  1091. DesignSize = (
  1092. 445
  1093. 416)
  1094. object EditorListView3: TListView
  1095. Left = 9
  1096. Top = 22
  1097. Width = 427
  1098. Height = 322
  1099. Anchors = [akLeft, akTop, akRight, akBottom]
  1100. Columns = <
  1101. item
  1102. Caption = 'Editor'
  1103. Width = 190
  1104. end
  1105. item
  1106. Caption = 'Mask'
  1107. Width = 70
  1108. end
  1109. item
  1110. Caption = 'Text'
  1111. Width = 45
  1112. end>
  1113. ColumnClick = False
  1114. DoubleBuffered = True
  1115. DragMode = dmAutomatic
  1116. HideSelection = False
  1117. OwnerData = True
  1118. ReadOnly = True
  1119. RowSelect = True
  1120. ParentDoubleBuffered = False
  1121. TabOrder = 0
  1122. ViewStyle = vsReport
  1123. OnData = EditorListView3Data
  1124. OnDblClick = EditorListView3DblClick
  1125. OnEndDrag = ListViewEndDrag
  1126. OnDragDrop = EditorListView3DragDrop
  1127. OnDragOver = ListViewDragOver
  1128. OnKeyDown = EditorListView3KeyDown
  1129. OnSelectItem = ListViewSelectItem
  1130. OnStartDrag = ListViewStartDrag
  1131. end
  1132. object AddEditorButton: TButton
  1133. Left = 9
  1134. Top = 350
  1135. Width = 90
  1136. Height = 25
  1137. Anchors = [akLeft, akBottom]
  1138. Caption = '&Add...'
  1139. TabOrder = 1
  1140. OnClick = AddEditEditorButtonClick
  1141. end
  1142. object EditEditorButton: TButton
  1143. Left = 105
  1144. Top = 350
  1145. Width = 90
  1146. Height = 25
  1147. Anchors = [akLeft, akBottom]
  1148. Caption = '&Edit...'
  1149. TabOrder = 2
  1150. OnClick = AddEditEditorButtonClick
  1151. end
  1152. object UpEditorButton: TButton
  1153. Left = 346
  1154. Top = 350
  1155. Width = 90
  1156. Height = 25
  1157. Anchors = [akRight, akBottom]
  1158. Caption = '&Up'
  1159. TabOrder = 3
  1160. OnClick = UpDownEditorButtonClick
  1161. end
  1162. object DownEditorButton: TButton
  1163. Left = 346
  1164. Top = 381
  1165. Width = 90
  1166. Height = 25
  1167. Anchors = [akRight, akBottom]
  1168. Caption = '&Down'
  1169. TabOrder = 4
  1170. OnClick = UpDownEditorButtonClick
  1171. end
  1172. object RemoveEditorButton: TButton
  1173. Left = 9
  1174. Top = 381
  1175. Width = 90
  1176. Height = 25
  1177. Anchors = [akLeft, akBottom]
  1178. Caption = '&Remove'
  1179. TabOrder = 5
  1180. OnClick = RemoveEditorButtonClick
  1181. end
  1182. end
  1183. object EditingOptionsGroup: TGroupBox
  1184. Left = 8
  1185. Top = 424
  1186. Width = 445
  1187. Height = 49
  1188. Anchors = [akLeft, akRight, akBottom]
  1189. Caption = 'Editing options'
  1190. TabOrder = 1
  1191. DesignSize = (
  1192. 445
  1193. 49)
  1194. object EditorCheckNotModifiedCheck: TCheckBox
  1195. Left = 11
  1196. Top = 22
  1197. Width = 413
  1198. Height = 17
  1199. Anchors = [akLeft, akTop, akRight]
  1200. Caption = '&Check that edited remote file has not changed before saving it'
  1201. TabOrder = 0
  1202. OnClick = ControlChange
  1203. end
  1204. end
  1205. end
  1206. object IntegrationSheet: TTabSheet
  1207. Tag = 9
  1208. HelpType = htKeyword
  1209. HelpKeyword = 'ui_pref_integration'
  1210. Caption = 'Integration'
  1211. ImageIndex = 8
  1212. TabVisible = False
  1213. DesignSize = (
  1214. 457
  1215. 475)
  1216. object ShellIconsGroup: TGroupBox
  1217. Left = 8
  1218. Top = 2
  1219. Width = 445
  1220. Height = 170
  1221. Anchors = [akLeft, akTop, akRight]
  1222. Caption = 'Windows Shell'
  1223. TabOrder = 0
  1224. DesignSize = (
  1225. 445
  1226. 170)
  1227. object DesktopIconButton: TButton
  1228. Left = 9
  1229. Top = 22
  1230. Width = 427
  1231. Height = 25
  1232. Anchors = [akLeft, akTop, akRight]
  1233. Caption = 'Create a &desktop icon'
  1234. TabOrder = 0
  1235. OnClick = IconButtonClick
  1236. end
  1237. object SendToHookButton: TButton
  1238. Left = 9
  1239. Top = 53
  1240. Width = 427
  1241. Height = 25
  1242. Anchors = [akLeft, akTop, akRight]
  1243. Caption = 'Add upload shortcut to Explorer'#39's '#39'&Send to'#39' context menu'
  1244. TabOrder = 1
  1245. OnClick = IconButtonClick
  1246. end
  1247. object RegisterAsUrlHandlersButton: TButton
  1248. Left = 9
  1249. Top = 104
  1250. Width = 427
  1251. Height = 25
  1252. Anchors = [akLeft, akTop, akRight]
  1253. Caption = 'Register to handle &URL addresses'
  1254. TabOrder = 3
  1255. OnClick = RegisterAsUrlHandlersButtonClick
  1256. end
  1257. object AddSearchPathButton: TButton
  1258. Left = 9
  1259. Top = 135
  1260. Width = 427
  1261. Height = 25
  1262. Anchors = [akLeft, akTop, akRight]
  1263. Caption = 'Add WinSCP to &search path'
  1264. TabOrder = 4
  1265. OnClick = AddSearchPathButtonClick
  1266. end
  1267. object ShellIconsText2: TStaticText
  1268. Left = 106
  1269. Top = 81
  1270. Width = 330
  1271. Height = 17
  1272. Hint =
  1273. 'To add shortcuts, which directly open site, use icon commands in' +
  1274. ' '#39'Manage'#39' menu on Login dialog.'
  1275. Alignment = taRightJustify
  1276. Anchors = [akTop, akRight]
  1277. AutoSize = False
  1278. Caption = 'Associate the icons with site'
  1279. TabOrder = 2
  1280. TabStop = True
  1281. end
  1282. end
  1283. end
  1284. object CustomCommandsSheet: TTabSheet
  1285. Tag = 10
  1286. HelpType = htKeyword
  1287. HelpKeyword = 'ui_pref_commands'
  1288. Caption = 'Commands'
  1289. ImageIndex = 9
  1290. TabVisible = False
  1291. DesignSize = (
  1292. 457
  1293. 475)
  1294. object CustomCommandsGroup: TGroupBox
  1295. Left = 8
  1296. Top = 2
  1297. Width = 445
  1298. Height = 471
  1299. Anchors = [akLeft, akTop, akRight, akBottom]
  1300. Caption = 'Custom commands'
  1301. TabOrder = 0
  1302. DesignSize = (
  1303. 445
  1304. 471)
  1305. object CustomCommandsView: TListView
  1306. Left = 9
  1307. Top = 22
  1308. Width = 427
  1309. Height = 377
  1310. Anchors = [akLeft, akTop, akRight, akBottom]
  1311. Columns = <
  1312. item
  1313. Caption = 'Description'
  1314. Width = 85
  1315. end
  1316. item
  1317. Caption = 'Command'
  1318. Width = 140
  1319. end
  1320. item
  1321. Caption = 'L/R'
  1322. Width = 35
  1323. end>
  1324. ColumnClick = False
  1325. DoubleBuffered = True
  1326. DragMode = dmAutomatic
  1327. HideSelection = False
  1328. OwnerData = True
  1329. ReadOnly = True
  1330. RowSelect = True
  1331. ParentDoubleBuffered = False
  1332. ParentShowHint = False
  1333. ShowHint = True
  1334. TabOrder = 0
  1335. ViewStyle = vsReport
  1336. OnData = CustomCommandsViewData
  1337. OnDblClick = CustomCommandsViewDblClick
  1338. OnEndDrag = ListViewEndDrag
  1339. OnDragDrop = CustomCommandsViewDragDrop
  1340. OnDragOver = CustomCommandsViewDragOver
  1341. OnKeyDown = CustomCommandsViewKeyDown
  1342. OnMouseMove = CustomCommandsViewMouseMove
  1343. OnSelectItem = ListViewSelectItem
  1344. OnStartDrag = ListViewStartDrag
  1345. end
  1346. object AddCommandButton: TButton
  1347. Left = 9
  1348. Top = 405
  1349. Width = 100
  1350. Height = 25
  1351. Anchors = [akLeft, akBottom]
  1352. Caption = '&Add...'
  1353. Style = bsSplitButton
  1354. TabOrder = 1
  1355. OnClick = AddCommandButtonClick
  1356. OnDropDownClick = AddCommandButtonDropDownClick
  1357. end
  1358. object RemoveCommandButton: TButton
  1359. Left = 9
  1360. Top = 436
  1361. Width = 100
  1362. Height = 25
  1363. Anchors = [akLeft, akBottom]
  1364. Caption = '&Remove'
  1365. TabOrder = 4
  1366. OnClick = RemoveCommandButtonClick
  1367. end
  1368. object UpCommandButton: TButton
  1369. Left = 346
  1370. Top = 405
  1371. Width = 90
  1372. Height = 25
  1373. Anchors = [akRight, akBottom]
  1374. Caption = '&Up'
  1375. TabOrder = 5
  1376. OnClick = UpDownCommandButtonClick
  1377. end
  1378. object DownCommandButton: TButton
  1379. Left = 346
  1380. Top = 436
  1381. Width = 90
  1382. Height = 25
  1383. Anchors = [akRight, akBottom]
  1384. Caption = '&Down'
  1385. TabOrder = 6
  1386. OnClick = UpDownCommandButtonClick
  1387. end
  1388. object EditCommandButton: TButton
  1389. Left = 115
  1390. Top = 405
  1391. Width = 100
  1392. Height = 25
  1393. Anchors = [akLeft, akBottom]
  1394. Caption = '&Edit...'
  1395. TabOrder = 2
  1396. OnClick = EditCommandButtonClick
  1397. end
  1398. object ConfigureCommandButton: TButton
  1399. Left = 115
  1400. Top = 405
  1401. Width = 100
  1402. Height = 25
  1403. Anchors = [akLeft, akBottom]
  1404. Caption = '&Configure...'
  1405. TabOrder = 3
  1406. OnClick = ConfigureCommandButtonClick
  1407. end
  1408. end
  1409. end
  1410. object DragDropSheet: TTabSheet
  1411. Tag = 11
  1412. HelpType = htKeyword
  1413. HelpKeyword = 'ui_pref_dragdrop'
  1414. Caption = 'Drag & Drop'
  1415. ImageIndex = 10
  1416. TabVisible = False
  1417. DesignSize = (
  1418. 457
  1419. 475)
  1420. object DragDropDownloadsGroup: TGroupBox
  1421. Left = 8
  1422. Top = 2
  1423. Width = 445
  1424. Height = 329
  1425. Anchors = [akLeft, akTop, akRight]
  1426. Caption = 'Drag && Drop downloads'
  1427. TabOrder = 0
  1428. DesignSize = (
  1429. 445
  1430. 329)
  1431. object DDFakeFileEnabledLabel: TLabel
  1432. Left = 27
  1433. Top = 45
  1434. Width = 409
  1435. Height = 59
  1436. Anchors = [akLeft, akTop, akRight]
  1437. AutoSize = False
  1438. Caption =
  1439. 'Allows direct downloads to regular local folders (e.g. Windows F' +
  1440. 'ile Explorer). Does not allow downloads to other destinations (Z' +
  1441. 'IP archives, FTP, etc.). Uses drag&&drop shell extension, when ' +
  1442. 'available.'
  1443. FocusControl = DDFakeFileEnabledButton
  1444. WordWrap = True
  1445. OnClick = DDLabelClick
  1446. end
  1447. object DDFakeFileDisabledLabel: TLabel
  1448. Left = 27
  1449. Top = 239
  1450. Width = 409
  1451. Height = 60
  1452. Anchors = [akLeft, akTop, akRight]
  1453. AutoSize = False
  1454. Caption =
  1455. 'Allows downloads to any destinations (regular folders, ZIP archi' +
  1456. 'ves, FTP, etc.). Files are downloaded first to temporary folder' +
  1457. ', from where they are delivered to the destination.'
  1458. FocusControl = DDFakeFileDisabledButton
  1459. WordWrap = True
  1460. OnClick = DDLabelClick
  1461. end
  1462. object DragExtStatusLabel: TLabel
  1463. Left = 27
  1464. Top = 108
  1465. Width = 100
  1466. Height = 15
  1467. Caption = 'DragExtStatusLabel'
  1468. FocusControl = DDFakeFileEnabledButton
  1469. ShowAccelChar = False
  1470. OnClick = DDLabelClick
  1471. end
  1472. object DDDrivesLabel: TLabel
  1473. Left = 27
  1474. Top = 126
  1475. Width = 234
  1476. Height = 15
  1477. Caption = 'Allow dropping files to these &network drives:'
  1478. FocusControl = DDDrivesMemo
  1479. end
  1480. object DDFakeFileEnabledButton: TRadioButton
  1481. Left = 11
  1482. Top = 22
  1483. Width = 425
  1484. Height = 17
  1485. Anchors = [akLeft, akTop, akRight]
  1486. Caption = 'Determine drop target by dragging a &fake file'
  1487. TabOrder = 0
  1488. OnClick = ControlChange
  1489. end
  1490. object DDFakeFileDisabledButton: TRadioButton
  1491. Left = 11
  1492. Top = 216
  1493. Width = 412
  1494. Height = 17
  1495. Anchors = [akLeft, akTop, akRight]
  1496. Caption = 'Download files via &temporary folder'
  1497. TabOrder = 1
  1498. OnClick = ControlChange
  1499. end
  1500. object DDWarnLackOfTempSpaceCheck: TCheckBox
  1501. Left = 27
  1502. Top = 302
  1503. Width = 315
  1504. Height = 17
  1505. Anchors = [akLeft, akTop, akRight]
  1506. Caption = '&Warn when there is not enough free space'
  1507. TabOrder = 3
  1508. OnClick = ControlChange
  1509. end
  1510. object DDDrivesMemo: TMemo
  1511. Left = 27
  1512. Top = 144
  1513. Width = 409
  1514. Height = 66
  1515. Anchors = [akLeft, akTop, akRight]
  1516. Lines.Strings = (
  1517. 'DDDrivesMemo')
  1518. ScrollBars = ssVertical
  1519. TabOrder = 2
  1520. end
  1521. end
  1522. end
  1523. object QueueSheet: TTabSheet
  1524. Tag = 12
  1525. HelpType = htKeyword
  1526. HelpKeyword = 'ui_pref_background'
  1527. Caption = 'Background'
  1528. ImageIndex = 11
  1529. TabVisible = False
  1530. DesignSize = (
  1531. 457
  1532. 475)
  1533. object QueueGroup: TGroupBox
  1534. Left = 8
  1535. Top = 2
  1536. Width = 445
  1537. Height = 242
  1538. Anchors = [akLeft, akTop, akRight]
  1539. Caption = 'Background transfers'
  1540. TabOrder = 0
  1541. DesignSize = (
  1542. 445
  1543. 242)
  1544. object Label5: TLabel
  1545. Left = 9
  1546. Top = 22
  1547. Width = 246
  1548. Height = 15
  1549. Caption = '&Maximal number of transfers at the same time:'
  1550. FocusControl = QueueTransferLimitEdit
  1551. end
  1552. object QueueKeepDoneItemsCheck: TLabel
  1553. Left = 11
  1554. Top = 214
  1555. Width = 216
  1556. Height = 15
  1557. Caption = 'Display &completed transfers in queue for:'
  1558. FocusControl = QueueKeepDoneItemsForCombo
  1559. OnClick = ControlChange
  1560. end
  1561. object ParallelTransferThresholdUnitLabel: TLabel
  1562. Left = 151
  1563. Top = 141
  1564. Width = 28
  1565. Height = 15
  1566. Caption = 'bytes'
  1567. FocusControl = ParallelTransferThresholdCombo
  1568. OnClick = ControlChange
  1569. end
  1570. object QueueTransferLimitEdit: TUpDownEdit
  1571. Left = 357
  1572. Top = 19
  1573. Width = 79
  1574. Height = 23
  1575. Alignment = taRightJustify
  1576. MaxValue = 9.000000000000000000
  1577. MinValue = 1.000000000000000000
  1578. Anchors = [akTop, akRight]
  1579. MaxLength = 1
  1580. TabOrder = 0
  1581. end
  1582. object QueueAutoPopupCheck: TCheckBox
  1583. Left = 11
  1584. Top = 188
  1585. Width = 425
  1586. Height = 17
  1587. Anchors = [akLeft, akTop, akRight]
  1588. Caption = '&Automatically popup prompts of background transfers when idle'
  1589. TabOrder = 7
  1590. end
  1591. object QueueCheck: TCheckBox
  1592. Left = 11
  1593. Top = 69
  1594. Width = 425
  1595. Height = 17
  1596. Anchors = [akLeft, akTop, akRight]
  1597. Caption = 'Transfer in &background by default'
  1598. TabOrder = 2
  1599. end
  1600. object QueueNoConfirmationCheck: TCheckBox
  1601. Left = 11
  1602. Top = 165
  1603. Width = 425
  1604. Height = 17
  1605. Anchors = [akLeft, akTop, akRight]
  1606. Caption = '&No confirmations for background transfers'
  1607. TabOrder = 6
  1608. end
  1609. object QueueParallelCheck: TCheckBox
  1610. Left = 11
  1611. Top = 92
  1612. Width = 425
  1613. Height = 17
  1614. Anchors = [akLeft, akTop, akRight]
  1615. Caption = '&Use multiple connections for single transfer'
  1616. TabOrder = 3
  1617. OnClick = ControlChange
  1618. end
  1619. object EnableQueueByDefaultCheck: TCheckBox
  1620. Left = 11
  1621. Top = 46
  1622. Width = 425
  1623. Height = 17
  1624. Anchors = [akLeft, akTop, akRight]
  1625. Caption = '&Enable queue processing by default'
  1626. TabOrder = 1
  1627. end
  1628. object QueueKeepDoneItemsForCombo: TComboBox
  1629. Left = 329
  1630. Top = 211
  1631. Width = 107
  1632. Height = 23
  1633. Style = csDropDownList
  1634. Anchors = [akTop, akRight]
  1635. MaxLength = 1
  1636. TabOrder = 8
  1637. OnChange = ControlChange
  1638. Items.Strings = (
  1639. 'Never'
  1640. '15 seconds'
  1641. '1 minute'
  1642. '15 minutes'
  1643. '1 hour'
  1644. 'Forever')
  1645. end
  1646. object ParallelTransferCheck: TCheckBox
  1647. Left = 27
  1648. Top = 115
  1649. Width = 409
  1650. Height = 17
  1651. Anchors = [akLeft, akTop, akRight]
  1652. Caption = 'Use multiple connections for single files abo&ve:'
  1653. TabOrder = 4
  1654. OnClick = ControlChange
  1655. end
  1656. object ParallelTransferThresholdCombo: TComboBox
  1657. Left = 43
  1658. Top = 138
  1659. Width = 102
  1660. Height = 23
  1661. Anchors = [akTop, akRight]
  1662. MaxLength = 20
  1663. TabOrder = 5
  1664. OnChange = ControlChange
  1665. OnExit = SizeComboExit
  1666. Items.Strings = (
  1667. '1M'
  1668. '10M'
  1669. '100M'
  1670. '1G')
  1671. end
  1672. end
  1673. object QueueViewGroup: TGroupBox
  1674. Left = 8
  1675. Top = 250
  1676. Width = 445
  1677. Height = 95
  1678. Anchors = [akLeft, akTop, akRight]
  1679. Caption = 'Queue list'
  1680. TabOrder = 1
  1681. DesignSize = (
  1682. 445
  1683. 95)
  1684. object QueueViewShowButton: TRadioButton
  1685. Left = 11
  1686. Top = 22
  1687. Width = 425
  1688. Height = 17
  1689. Anchors = [akLeft, akTop, akRight]
  1690. Caption = '&Show'
  1691. TabOrder = 0
  1692. end
  1693. object QueueViewHideWhenEmptyButton: TRadioButton
  1694. Left = 11
  1695. Top = 45
  1696. Width = 425
  1697. Height = 17
  1698. Anchors = [akLeft, akTop, akRight]
  1699. Caption = 'Hide &when empty'
  1700. TabOrder = 1
  1701. end
  1702. object QueueViewHideButton: TRadioButton
  1703. Left = 11
  1704. Top = 68
  1705. Width = 425
  1706. Height = 17
  1707. Anchors = [akLeft, akTop, akRight]
  1708. Caption = '&Hide'
  1709. TabOrder = 2
  1710. end
  1711. end
  1712. end
  1713. object StorageSheet: TTabSheet
  1714. Tag = 13
  1715. HelpType = htKeyword
  1716. HelpKeyword = 'ui_pref_storage'
  1717. Caption = 'Storage'
  1718. ImageIndex = 12
  1719. TabVisible = False
  1720. DesignSize = (
  1721. 457
  1722. 475)
  1723. object StorageGroup: TGroupBox
  1724. Left = 8
  1725. Top = 2
  1726. Width = 445
  1727. Height = 96
  1728. Anchors = [akLeft, akTop, akRight]
  1729. Caption = 'Configuration storage'
  1730. TabOrder = 0
  1731. DesignSize = (
  1732. 445
  1733. 96)
  1734. object AutomaticIniFileStorageLabel: TPathLabel
  1735. Left = 184
  1736. Top = 45
  1737. Width = 254
  1738. Height = 15
  1739. ActiveTextColor = clWindowText
  1740. IndentHorizontal = 0
  1741. IndentVertical = 0
  1742. InactiveTextColor = clGrayText
  1743. OnGetStatus = AutomaticIniFileStorageLabelGetStatus
  1744. Align = alNone
  1745. Anchors = [akLeft, akTop, akRight]
  1746. AutoSize = False
  1747. end
  1748. object RegistryStorageButton: TRadioButton
  1749. Left = 11
  1750. Top = 22
  1751. Width = 427
  1752. Height = 17
  1753. Anchors = [akLeft, akTop, akRight]
  1754. Caption = 'Windows re&gistry'
  1755. TabOrder = 0
  1756. OnClick = ControlChange
  1757. end
  1758. object AutomaticIniFileStorageButton: TRadioButton
  1759. Left = 11
  1760. Top = 45
  1761. Width = 167
  1762. Height = 17
  1763. Caption = '&Automatic INI file'
  1764. TabOrder = 1
  1765. OnClick = ControlChange
  1766. end
  1767. object CustomIniFileStorageButton: TRadioButton
  1768. Left = 11
  1769. Top = 68
  1770. Width = 167
  1771. Height = 17
  1772. Caption = 'Custo&m INI file:'
  1773. TabOrder = 2
  1774. OnClick = CustomIniFileStorageButtonClick
  1775. end
  1776. object CustomIniFileStorageEdit: TFilenameEdit
  1777. Left = 184
  1778. Top = 65
  1779. Width = 254
  1780. Height = 21
  1781. AcceptFiles = True
  1782. OnBeforeDialog = PathEditBeforeDialog
  1783. OnAfterDialog = CustomIniFileStorageEditAfterDialog
  1784. DialogKind = dkSave
  1785. DefaultExt = 'ini'
  1786. Filter = 'INI files (*.ini)|*.ini|All files (*.*)|*.*'
  1787. DialogOptions = [ofHideReadOnly, ofPathMustExist]
  1788. ClickKey = 16397
  1789. Anchors = [akLeft, akTop, akRight]
  1790. TabOrder = 3
  1791. Text = 'CustomIniFileStorageEdit'
  1792. OnChange = ControlChange
  1793. OnExit = CustomIniFileStorageEditExit
  1794. end
  1795. end
  1796. object TemporaryDirectoryGrouo: TGroupBox
  1797. Left = 8
  1798. Top = 104
  1799. Width = 445
  1800. Height = 216
  1801. Anchors = [akLeft, akTop, akRight]
  1802. Caption = 'Temporary directory'
  1803. TabOrder = 1
  1804. DesignSize = (
  1805. 445
  1806. 216)
  1807. object Label6: TLabel
  1808. Left = 9
  1809. Top = 22
  1810. Width = 429
  1811. Height = 31
  1812. Anchors = [akLeft, akTop, akRight]
  1813. AutoSize = False
  1814. Caption = 'Specify where to temporarily store edited and downloaded files.'
  1815. FocusControl = DDSystemTemporaryDirectoryButton
  1816. ShowAccelChar = False
  1817. WordWrap = True
  1818. end
  1819. object DDSystemTemporaryDirectoryButton: TRadioButton
  1820. Left = 11
  1821. Top = 53
  1822. Width = 427
  1823. Height = 17
  1824. Anchors = [akLeft, akTop, akRight]
  1825. Caption = '&Use temporary directory of system'
  1826. TabOrder = 0
  1827. OnClick = ControlChange
  1828. end
  1829. object DDCustomTemporaryDirectoryButton: TRadioButton
  1830. Left = 11
  1831. Top = 76
  1832. Width = 148
  1833. Height = 17
  1834. Caption = 'Use this &directory:'
  1835. TabOrder = 1
  1836. OnClick = ControlChange
  1837. end
  1838. object DDTemporaryDirectoryEdit: TDirectoryEdit
  1839. Left = 184
  1840. Top = 73
  1841. Width = 254
  1842. Height = 21
  1843. AcceptFiles = True
  1844. OnBeforeDialog = PathEditBeforeDialog
  1845. OnAfterDialog = PathEditAfterDialog
  1846. DialogText = 'Select directory for temporary drag && drop files.'
  1847. ClickKey = 16397
  1848. Anchors = [akLeft, akTop, akRight]
  1849. TabOrder = 2
  1850. Text = 'DDTemporaryDirectoryEdit'
  1851. OnChange = ControlChange
  1852. end
  1853. object TemporaryDirectoryCleanupCheck: TCheckBox
  1854. Left = 11
  1855. Top = 168
  1856. Width = 427
  1857. Height = 17
  1858. Anchors = [akLeft, akTop, akRight]
  1859. Caption = '&Cleanup obsolete temporary directories on startup'
  1860. TabOrder = 6
  1861. OnClick = ControlChange
  1862. end
  1863. object ConfirmTemporaryDirectoryCleanupCheck: TCheckBox
  1864. Left = 27
  1865. Top = 191
  1866. Width = 411
  1867. Height = 17
  1868. Anchors = [akLeft, akTop, akRight]
  1869. Caption = '&Ask before cleanup'
  1870. TabOrder = 7
  1871. OnClick = ControlChange
  1872. end
  1873. object TemporaryDirectoryAppendSessionCheck: TCheckBox
  1874. Left = 11
  1875. Top = 99
  1876. Width = 427
  1877. Height = 17
  1878. Anchors = [akLeft, akTop, akRight]
  1879. Caption = 'Append &session name to temporary path'
  1880. TabOrder = 3
  1881. OnClick = ControlChange
  1882. end
  1883. object TemporaryDirectoryAppendPathCheck: TCheckBox
  1884. Left = 11
  1885. Top = 122
  1886. Width = 427
  1887. Height = 17
  1888. Anchors = [akLeft, akTop, akRight]
  1889. Caption = 'Append remote &path to temporary path'
  1890. TabOrder = 4
  1891. OnClick = ControlChange
  1892. end
  1893. object TemporaryDirectoryDeterministicCheck: TCheckBox
  1894. Left = 11
  1895. Top = 145
  1896. Width = 427
  1897. Height = 17
  1898. Anchors = [akLeft, akTop, akRight]
  1899. Caption = 'Keep temporary copies of remote files in &deterministic paths'
  1900. TabOrder = 5
  1901. OnClick = ControlChange
  1902. end
  1903. end
  1904. object OtherStorageGroup: TGroupBox
  1905. Left = 8
  1906. Top = 326
  1907. Width = 445
  1908. Height = 50
  1909. Anchors = [akLeft, akTop, akRight]
  1910. Caption = 'Other'
  1911. TabOrder = 2
  1912. DesignSize = (
  1913. 445
  1914. 50)
  1915. object RandomSeedFileLabel: TLabel
  1916. Left = 9
  1917. Top = 22
  1918. Width = 94
  1919. Height = 15
  1920. Caption = '&Random seed file:'
  1921. FocusControl = RandomSeedFileEdit
  1922. end
  1923. object RandomSeedFileEdit: TFilenameEdit
  1924. Left = 184
  1925. Top = 19
  1926. Width = 254
  1927. Height = 21
  1928. AcceptFiles = True
  1929. OnBeforeDialog = PathEditBeforeDialog
  1930. OnAfterDialog = PathEditAfterDialog
  1931. DialogKind = dkSave
  1932. DefaultExt = 'rnd'
  1933. Filter = 'Random seed files (*.rnd)|*.rnd|All files (*.*)|*.*'
  1934. DialogOptions = [ofHideReadOnly, ofPathMustExist]
  1935. DialogTitle = 'Select file for random seed'
  1936. ClickKey = 16397
  1937. Anchors = [akLeft, akTop, akRight]
  1938. TabOrder = 0
  1939. Text = 'RandomSeedFileEdit'
  1940. OnChange = ControlChange
  1941. end
  1942. end
  1943. end
  1944. object TransferEnduranceSheet: TTabSheet
  1945. Tag = 14
  1946. HelpType = htKeyword
  1947. HelpKeyword = 'ui_pref_resume'
  1948. Caption = 'Endurance'
  1949. ImageIndex = 13
  1950. TabVisible = False
  1951. DesignSize = (
  1952. 457
  1953. 475)
  1954. object ResumeBox: TGroupBox
  1955. Left = 8
  1956. Top = 2
  1957. Width = 445
  1958. Height = 124
  1959. Anchors = [akLeft, akTop, akRight]
  1960. Caption = 'Enable transfer resume/transfer to temporary filename for'
  1961. TabOrder = 0
  1962. object ResumeThresholdUnitLabel2: TLabel
  1963. Left = 125
  1964. Top = 71
  1965. Width = 14
  1966. Height = 15
  1967. Caption = 'KB'
  1968. FocusControl = ResumeThresholdEdit
  1969. end
  1970. object ResumeOnButton: TRadioButton
  1971. Left = 11
  1972. Top = 22
  1973. Width = 165
  1974. Height = 17
  1975. Caption = 'A&ll files'
  1976. TabOrder = 0
  1977. OnClick = ControlChange
  1978. end
  1979. object ResumeSmartButton: TRadioButton
  1980. Left = 11
  1981. Top = 45
  1982. Width = 165
  1983. Height = 17
  1984. Caption = 'Files abo&ve:'
  1985. TabOrder = 1
  1986. OnClick = ControlChange
  1987. end
  1988. object ResumeOffButton: TRadioButton
  1989. Left = 11
  1990. Top = 97
  1991. Width = 165
  1992. Height = 17
  1993. Caption = 'Di&sable'
  1994. TabOrder = 3
  1995. OnClick = ControlChange
  1996. end
  1997. object ResumeThresholdEdit: TUpDownEdit
  1998. Left = 27
  1999. Top = 68
  2000. Width = 92
  2001. Height = 23
  2002. Alignment = taRightJustify
  2003. Increment = 10.000000000000000000
  2004. MaxValue = 4194304.000000000000000000
  2005. TabOrder = 2
  2006. OnClick = ControlChange
  2007. end
  2008. end
  2009. object SessionReopenGroup: TGroupBox
  2010. Left = 8
  2011. Top = 132
  2012. Width = 445
  2013. Height = 211
  2014. Anchors = [akLeft, akTop, akRight]
  2015. Caption = 'Automatic reconnect'
  2016. TabOrder = 1
  2017. DesignSize = (
  2018. 445
  2019. 211)
  2020. object SessionReopenAutoLabel: TLabel
  2021. Left = 27
  2022. Top = 48
  2023. Width = 86
  2024. Height = 15
  2025. Caption = '&Reconnect after:'
  2026. FocusControl = SessionReopenAutoEdit
  2027. end
  2028. object SessionReopenAutoSecLabel: TLabel
  2029. Left = 286
  2030. Top = 48
  2031. Width = 43
  2032. Height = 15
  2033. Caption = 'seconds'
  2034. FocusControl = SessionReopenAutoEdit
  2035. end
  2036. object SessionReopenTimeoutLabel: TLabel
  2037. Left = 9
  2038. Top = 181
  2039. Width = 120
  2040. Height = 15
  2041. Caption = '&Keep reconnecting for:'
  2042. FocusControl = SessionReopenTimeoutEdit
  2043. end
  2044. object SessionReopenTimeoutSecLabel: TLabel
  2045. Left = 286
  2046. Top = 181
  2047. Width = 43
  2048. Height = 15
  2049. Caption = 'seconds'
  2050. FocusControl = SessionReopenTimeoutEdit
  2051. end
  2052. object SessionReopenAutoStallLabel: TLabel
  2053. Left = 27
  2054. Top = 152
  2055. Width = 86
  2056. Height = 15
  2057. Caption = 'Re&connect after:'
  2058. FocusControl = SessionReopenAutoStallEdit
  2059. end
  2060. object SessionReopenAutoStallSecLabel: TLabel
  2061. Left = 286
  2062. Top = 152
  2063. Width = 43
  2064. Height = 15
  2065. Caption = 'seconds'
  2066. FocusControl = SessionReopenAutoStallEdit
  2067. end
  2068. object SessionReopenAutoIdleLabel: TLabel
  2069. Left = 27
  2070. Top = 100
  2071. Width = 86
  2072. Height = 15
  2073. Caption = 'Reco&nnect after:'
  2074. FocusControl = SessionReopenAutoIdleEdit
  2075. end
  2076. object SessionReopenAutoIdleSecLabel: TLabel
  2077. Left = 286
  2078. Top = 100
  2079. Width = 43
  2080. Height = 15
  2081. Caption = 'seconds'
  2082. FocusControl = SessionReopenAutoIdleEdit
  2083. end
  2084. object SessionReopenAutoCheck: TCheckBox
  2085. Left = 11
  2086. Top = 22
  2087. Width = 425
  2088. Height = 17
  2089. Anchors = [akLeft, akTop, akRight]
  2090. Caption = '&Automatically reconnect session, if it breaks during transfer'
  2091. TabOrder = 0
  2092. OnClick = ControlChange
  2093. end
  2094. object SessionReopenAutoEdit: TUpDownEdit
  2095. Left = 183
  2096. Top = 45
  2097. Width = 97
  2098. Height = 23
  2099. Alignment = taRightJustify
  2100. Increment = 5.000000000000000000
  2101. MaxValue = 300.000000000000000000
  2102. MinValue = 1.000000000000000000
  2103. Value = 5.000000000000000000
  2104. MaxLength = 3
  2105. TabOrder = 1
  2106. end
  2107. object SessionReopenAutoIdleCheck: TCheckBox
  2108. Left = 11
  2109. Top = 74
  2110. Width = 425
  2111. Height = 17
  2112. Anchors = [akLeft, akTop, akRight]
  2113. Caption = 'Automatically reconnect session, if it breaks &while idle'
  2114. TabOrder = 2
  2115. OnClick = ControlChange
  2116. end
  2117. object SessionReopenTimeoutEdit: TUpDownEdit
  2118. Left = 183
  2119. Top = 178
  2120. Width = 97
  2121. Height = 23
  2122. Alignment = taRightJustify
  2123. Increment = 30.000000000000000000
  2124. MaxValue = 86400.000000000000000000
  2125. MaxLength = 5
  2126. TabOrder = 6
  2127. OnGetValue = SessionReopenTimeoutEditGetValue
  2128. OnSetValue = SessionReopenTimeoutEditSetValue
  2129. end
  2130. object SessionReopenAutoStallCheck: TCheckBox
  2131. Left = 11
  2132. Top = 126
  2133. Width = 425
  2134. Height = 17
  2135. Anchors = [akLeft, akTop, akRight]
  2136. Caption = 'Automatically reconnect session, if it &stalls'
  2137. TabOrder = 4
  2138. OnClick = ControlChange
  2139. end
  2140. object SessionReopenAutoStallEdit: TUpDownEdit
  2141. Left = 183
  2142. Top = 149
  2143. Width = 97
  2144. Height = 23
  2145. Alignment = taRightJustify
  2146. Increment = 5.000000000000000000
  2147. MaxValue = 300.000000000000000000
  2148. MinValue = 1.000000000000000000
  2149. Value = 5.000000000000000000
  2150. MaxLength = 3
  2151. TabOrder = 5
  2152. end
  2153. object SessionReopenAutoIdleEdit: TUpDownEdit
  2154. Left = 183
  2155. Top = 97
  2156. Width = 97
  2157. Height = 23
  2158. Alignment = taRightJustify
  2159. Increment = 5.000000000000000000
  2160. MaxValue = 300.000000000000000000
  2161. MinValue = 1.000000000000000000
  2162. Value = 5.000000000000000000
  2163. MaxLength = 3
  2164. TabOrder = 3
  2165. end
  2166. end
  2167. end
  2168. object UpdatesSheet: TTabSheet
  2169. Tag = 15
  2170. HelpType = htKeyword
  2171. HelpKeyword = 'ui_pref_updates'
  2172. Caption = 'Updates'
  2173. ImageIndex = 14
  2174. TabVisible = False
  2175. DesignSize = (
  2176. 457
  2177. 475)
  2178. object UpdatesGroup2: TGroupBox
  2179. Left = 8
  2180. Top = 2
  2181. Width = 445
  2182. Height = 123
  2183. Anchors = [akLeft, akTop, akRight]
  2184. Caption = 'Automatic updates'
  2185. TabOrder = 0
  2186. DesignSize = (
  2187. 445
  2188. 123)
  2189. object Label12: TLabel
  2190. Left = 9
  2191. Top = 72
  2192. Width = 130
  2193. Height = 15
  2194. Caption = 'Automatic check &period:'
  2195. FocusControl = UpdatesPeriodCombo
  2196. end
  2197. object UpdatesAuthenticationEmailLabel: TLabel
  2198. Left = 9
  2199. Top = 22
  2200. Width = 250
  2201. Height = 15
  2202. Caption = '&Email address authorized to automatic updates:'
  2203. FocusControl = UpdatesAuthenticationEmailEdit
  2204. end
  2205. object UpdatesPeriodCombo: TComboBox
  2206. Left = 326
  2207. Top = 69
  2208. Width = 110
  2209. Height = 23
  2210. Style = csDropDownList
  2211. Anchors = [akTop, akRight]
  2212. TabOrder = 2
  2213. Items.Strings = (
  2214. 'Never'
  2215. 'Daily'
  2216. 'Weekly'
  2217. 'Monthly')
  2218. end
  2219. object UpdatesShowOnStartup: TCheckBox
  2220. Left = 11
  2221. Top = 98
  2222. Width = 425
  2223. Height = 17
  2224. Anchors = [akLeft, akTop, akRight]
  2225. Caption = '&Display information about update on startup'
  2226. TabOrder = 3
  2227. OnClick = ControlChange
  2228. end
  2229. object UpdatesAuthenticationEmailEdit: TEdit
  2230. Left = 9
  2231. Top = 40
  2232. Width = 312
  2233. Height = 23
  2234. Anchors = [akLeft, akTop, akRight]
  2235. TabOrder = 0
  2236. OnChange = ControlChange
  2237. OnExit = UpdatesAuthenticationEmailEditExit
  2238. end
  2239. object UpdatesLink: TStaticText
  2240. Left = 326
  2241. Top = 44
  2242. Width = 64
  2243. Height = 19
  2244. Anchors = [akTop, akRight]
  2245. Caption = 'Learn more'
  2246. TabOrder = 1
  2247. TabStop = True
  2248. OnClick = UpdatesLinkClick
  2249. end
  2250. end
  2251. object UpdatesProxyGroup: TGroupBox
  2252. Left = 8
  2253. Top = 219
  2254. Width = 445
  2255. Height = 142
  2256. Anchors = [akLeft, akTop, akRight]
  2257. Caption = 'Connection'
  2258. TabOrder = 2
  2259. DesignSize = (
  2260. 445
  2261. 142)
  2262. object UpdatesProxyHostLabel: TLabel
  2263. Left = 27
  2264. Top = 91
  2265. Width = 91
  2266. Height = 15
  2267. Caption = 'Proxy &host name:'
  2268. FocusControl = UpdatesProxyHostEdit
  2269. end
  2270. object UpdatesProxyPortLabel: TLabel
  2271. Left = 326
  2272. Top = 91
  2273. Width = 70
  2274. Height = 15
  2275. Anchors = [akTop, akRight]
  2276. Caption = 'Po&rt number:'
  2277. FocusControl = UpdatesProxyPortEdit
  2278. end
  2279. object UpdatesProxyPortEdit: TUpDownEdit
  2280. Left = 326
  2281. Top = 109
  2282. Width = 110
  2283. Height = 23
  2284. Alignment = taRightJustify
  2285. MaxValue = 65535.000000000000000000
  2286. MinValue = 1.000000000000000000
  2287. Anchors = [akTop, akRight]
  2288. TabOrder = 4
  2289. end
  2290. object UpdatesProxyHostEdit: TEdit
  2291. Left = 27
  2292. Top = 109
  2293. Width = 294
  2294. Height = 23
  2295. Anchors = [akLeft, akTop, akRight]
  2296. MaxLength = 50
  2297. TabOrder = 3
  2298. Text = 'UpdatesProxyHostEdit'
  2299. end
  2300. object UpdatesProxyCheck: TRadioButton
  2301. Left = 11
  2302. Top = 68
  2303. Width = 425
  2304. Height = 17
  2305. Anchors = [akLeft, akTop, akRight]
  2306. Caption = '&Use proxy server'
  2307. TabOrder = 2
  2308. OnClick = ControlChange
  2309. end
  2310. object UpdatesDirectCheck: TRadioButton
  2311. Left = 11
  2312. Top = 22
  2313. Width = 425
  2314. Height = 17
  2315. Anchors = [akLeft, akTop, akRight]
  2316. Caption = '&No proxy'
  2317. TabOrder = 0
  2318. OnClick = ControlChange
  2319. end
  2320. object UpdatesAutoCheck: TRadioButton
  2321. Left = 11
  2322. Top = 45
  2323. Width = 425
  2324. Height = 17
  2325. Anchors = [akLeft, akTop, akRight]
  2326. Caption = '&Automatically detect proxy settings'
  2327. TabOrder = 1
  2328. OnClick = ControlChange
  2329. end
  2330. end
  2331. object UpdatesOptionsGroup: TGroupBox
  2332. Left = 8
  2333. Top = 131
  2334. Width = 445
  2335. Height = 82
  2336. Anchors = [akLeft, akTop, akRight]
  2337. Caption = 'Options'
  2338. TabOrder = 1
  2339. DesignSize = (
  2340. 445
  2341. 82)
  2342. object UpdatesBetaVersionsLabel: TLabel
  2343. Left = 8
  2344. Top = 22
  2345. Width = 126
  2346. Height = 15
  2347. Caption = 'Check for &beta versions:'
  2348. FocusControl = UpdatesBetaVersionsCombo
  2349. end
  2350. object UpdatesBetaVersionsCombo: TComboBox
  2351. Left = 326
  2352. Top = 19
  2353. Width = 110
  2354. Height = 23
  2355. Style = csDropDownList
  2356. Anchors = [akTop, akRight]
  2357. TabOrder = 0
  2358. end
  2359. object CollectUsageCheck: TCheckBox
  2360. Left = 11
  2361. Top = 52
  2362. Width = 318
  2363. Height = 17
  2364. Anchors = [akLeft, akTop, akRight]
  2365. Caption = 'Allow &anonymous usage statistics'
  2366. TabOrder = 1
  2367. OnClick = ControlChange
  2368. end
  2369. object UsageViewButton: TButton
  2370. Left = 326
  2371. Top = 48
  2372. Width = 110
  2373. Height = 25
  2374. Anchors = [akTop, akRight]
  2375. Caption = 'View &statistics'
  2376. TabOrder = 2
  2377. OnClick = UsageViewButtonClick
  2378. end
  2379. end
  2380. end
  2381. object CopyParamListSheet: TTabSheet
  2382. Tag = 16
  2383. HelpType = htKeyword
  2384. HelpKeyword = 'ui_pref_transfer'
  2385. Caption = 'Transfer'
  2386. ImageIndex = 15
  2387. TabVisible = False
  2388. DesignSize = (
  2389. 457
  2390. 475)
  2391. object CopyParamListGroup: TGroupBox
  2392. Left = 8
  2393. Top = 2
  2394. Width = 445
  2395. Height = 471
  2396. Anchors = [akLeft, akTop, akRight, akBottom]
  2397. Caption = 'Transfer settings presets'
  2398. TabOrder = 0
  2399. DesignSize = (
  2400. 445
  2401. 471)
  2402. object CopyParamLabel: TLabel
  2403. Left = 9
  2404. Top = 326
  2405. Width = 427
  2406. Height = 53
  2407. Anchors = [akLeft, akRight, akBottom]
  2408. AutoSize = False
  2409. Caption = 'CopyParamLabel'
  2410. ShowAccelChar = False
  2411. WordWrap = True
  2412. OnClick = CopyParamLabelClick
  2413. end
  2414. object CopyParamListView: TListView
  2415. Left = 9
  2416. Top = 22
  2417. Width = 427
  2418. Height = 298
  2419. Anchors = [akLeft, akTop, akRight, akBottom]
  2420. Columns = <
  2421. item
  2422. Caption = 'Preset description'
  2423. Width = 100
  2424. end
  2425. item
  2426. Caption = 'Auto'
  2427. Width = 40
  2428. end>
  2429. ColumnClick = False
  2430. DoubleBuffered = True
  2431. DragMode = dmAutomatic
  2432. HideSelection = False
  2433. OwnerData = True
  2434. ReadOnly = True
  2435. RowSelect = True
  2436. ParentDoubleBuffered = False
  2437. TabOrder = 0
  2438. ViewStyle = vsReport
  2439. OnCustomDrawItem = CopyParamListViewCustomDrawItem
  2440. OnData = CopyParamListViewData
  2441. OnDblClick = CopyParamListViewDblClick
  2442. OnEndDrag = ListViewEndDrag
  2443. OnDragDrop = CopyParamListViewDragDrop
  2444. OnDragOver = CopyParamListViewDragOver
  2445. OnKeyDown = CopyParamListViewKeyDown
  2446. OnSelectItem = ListViewSelectItem
  2447. OnStartDrag = ListViewStartDrag
  2448. end
  2449. object AddCopyParamButton: TButton
  2450. Left = 9
  2451. Top = 382
  2452. Width = 90
  2453. Height = 25
  2454. Anchors = [akLeft, akBottom]
  2455. Caption = '&Add...'
  2456. TabOrder = 1
  2457. OnClick = AddCopyParamButtonClick
  2458. end
  2459. object RemoveCopyParamButton: TButton
  2460. Left = 9
  2461. Top = 413
  2462. Width = 90
  2463. Height = 25
  2464. Anchors = [akLeft, akBottom]
  2465. Caption = '&Remove'
  2466. TabOrder = 3
  2467. OnClick = RemoveCopyParamButtonClick
  2468. end
  2469. object UpCopyParamButton: TButton
  2470. Left = 346
  2471. Top = 382
  2472. Width = 90
  2473. Height = 25
  2474. Anchors = [akRight, akBottom]
  2475. Caption = '&Up'
  2476. TabOrder = 5
  2477. OnClick = UpDownCopyParamButtonClick
  2478. end
  2479. object DownCopyParamButton: TButton
  2480. Left = 346
  2481. Top = 413
  2482. Width = 90
  2483. Height = 25
  2484. Anchors = [akRight, akBottom]
  2485. Caption = '&Down'
  2486. TabOrder = 6
  2487. OnClick = UpDownCopyParamButtonClick
  2488. end
  2489. object EditCopyParamButton: TButton
  2490. Left = 105
  2491. Top = 382
  2492. Width = 90
  2493. Height = 25
  2494. Anchors = [akLeft, akBottom]
  2495. Caption = '&Edit...'
  2496. TabOrder = 2
  2497. OnClick = EditCopyParamButtonClick
  2498. end
  2499. object DuplicateCopyParamButton: TButton
  2500. Left = 105
  2501. Top = 413
  2502. Width = 90
  2503. Height = 25
  2504. Anchors = [akLeft, akBottom]
  2505. Caption = 'Du&plicate...'
  2506. TabOrder = 4
  2507. OnClick = DuplicateCopyParamButtonClick
  2508. end
  2509. object CopyParamAutoSelectNoticeCheck: TCheckBox
  2510. Left = 11
  2511. Top = 444
  2512. Width = 425
  2513. Height = 17
  2514. Anchors = [akLeft, akRight, akBottom]
  2515. Caption = '&Announce when transfer settings preset is autoselected'
  2516. TabOrder = 7
  2517. OnClick = ControlChange
  2518. end
  2519. end
  2520. end
  2521. object WindowSheet: TTabSheet
  2522. Tag = 17
  2523. HelpType = htKeyword
  2524. HelpKeyword = 'ui_pref_window'
  2525. Caption = 'Window'
  2526. ImageIndex = 16
  2527. TabVisible = False
  2528. DesignSize = (
  2529. 457
  2530. 475)
  2531. object PathInCaptionGroup: TGroupBox
  2532. Left = 8
  2533. Top = 127
  2534. Width = 445
  2535. Height = 95
  2536. Anchors = [akLeft, akTop, akRight]
  2537. Caption = 'Path in window title'
  2538. TabOrder = 1
  2539. DesignSize = (
  2540. 445
  2541. 95)
  2542. object PathInCaptionFullButton: TRadioButton
  2543. Left = 11
  2544. Top = 22
  2545. Width = 425
  2546. Height = 17
  2547. Anchors = [akLeft, akTop, akRight]
  2548. Caption = 'Show &full path'
  2549. TabOrder = 0
  2550. end
  2551. object PathInCaptionShortButton: TRadioButton
  2552. Left = 11
  2553. Top = 45
  2554. Width = 425
  2555. Height = 17
  2556. Anchors = [akLeft, akTop, akRight]
  2557. Caption = 'Sho&w short path'
  2558. TabOrder = 1
  2559. end
  2560. object PathInCaptionNoneButton: TRadioButton
  2561. Left = 11
  2562. Top = 68
  2563. Width = 425
  2564. Height = 17
  2565. Anchors = [akLeft, akTop, akRight]
  2566. Caption = 'Do &not show'
  2567. TabOrder = 2
  2568. end
  2569. end
  2570. object WindowMiscellaneousGroup: TGroupBox
  2571. Left = 8
  2572. Top = 228
  2573. Width = 445
  2574. Height = 164
  2575. Anchors = [akLeft, akTop, akRight]
  2576. Caption = 'Miscellaneous'
  2577. TabOrder = 2
  2578. DesignSize = (
  2579. 445
  2580. 164)
  2581. object MinimizeToTrayCheck: TCheckBox
  2582. Left = 11
  2583. Top = 22
  2584. Width = 425
  2585. Height = 17
  2586. Anchors = [akLeft, akTop, akRight]
  2587. Caption = '&Minimize main window to taskbar status area (system tray)'
  2588. TabOrder = 0
  2589. OnClick = ControlChange
  2590. end
  2591. object ExternalSessionInExistingInstanceCheck: TCheckBox
  2592. Left = 11
  2593. Top = 45
  2594. Width = 425
  2595. Height = 17
  2596. Anchors = [akLeft, akTop, akRight]
  2597. Caption = 'Open new externally initiated sessions in &existing window'
  2598. TabOrder = 1
  2599. OnClick = ControlChange
  2600. end
  2601. object KeepOpenWhenNoSessionCheck: TCheckBox
  2602. Left = 11
  2603. Top = 91
  2604. Width = 425
  2605. Height = 17
  2606. Anchors = [akLeft, akTop, akRight]
  2607. Caption = '&Keep main window open when the last session is closed'
  2608. TabOrder = 3
  2609. OnClick = ControlChange
  2610. end
  2611. object ShowTipsCheck: TCheckBox
  2612. Left = 11
  2613. Top = 137
  2614. Width = 425
  2615. Height = 17
  2616. Anchors = [akLeft, akTop, akRight]
  2617. Caption = '&Display tips on startup'
  2618. TabOrder = 5
  2619. OnClick = ControlChange
  2620. end
  2621. object ShowLoginWhenNoSessionCheck: TCheckBox
  2622. Left = 11
  2623. Top = 68
  2624. Width = 425
  2625. Height = 17
  2626. Anchors = [akLeft, akTop, akRight]
  2627. Caption =
  2628. '&Show Login dialog on startup and when the last session is close' +
  2629. 'd'
  2630. TabOrder = 2
  2631. OnClick = ControlChange
  2632. end
  2633. object SessionTabCaptionTruncationCheck: TCheckBox
  2634. Left = 11
  2635. Top = 114
  2636. Width = 425
  2637. Height = 17
  2638. Anchors = [akLeft, akTop, akRight]
  2639. Caption = '&Truncate tab titles when they do not fit to window'
  2640. TabOrder = 4
  2641. OnClick = ControlChange
  2642. end
  2643. end
  2644. object WorkspacesGroup: TGroupBox
  2645. Left = 8
  2646. Top = 2
  2647. Width = 445
  2648. Height = 119
  2649. Anchors = [akLeft, akTop, akRight]
  2650. Caption = 'Workspaces'
  2651. TabOrder = 0
  2652. DesignSize = (
  2653. 445
  2654. 119)
  2655. object AutoWorkspaceLabel: TLabel
  2656. Left = 27
  2657. Top = 45
  2658. Width = 133
  2659. Height = 15
  2660. Caption = '&Default workspace name:'
  2661. FocusControl = AutoWorkspaceCombo
  2662. end
  2663. object AutoSaveWorkspaceCheck: TCheckBox
  2664. Left = 11
  2665. Top = 22
  2666. Width = 425
  2667. Height = 17
  2668. Anchors = [akLeft, akTop, akRight]
  2669. Caption = '&Automatically save workspace on exit'
  2670. TabOrder = 0
  2671. OnClick = ControlChange
  2672. end
  2673. object AutoWorkspaceCombo: TComboBox
  2674. Left = 27
  2675. Top = 63
  2676. Width = 409
  2677. Height = 23
  2678. Anchors = [akLeft, akTop, akRight]
  2679. DropDownCount = 16
  2680. TabOrder = 1
  2681. OnClick = ControlChange
  2682. end
  2683. object AutoSaveWorkspacePasswordsCheck: TCheckBox
  2684. Left = 29
  2685. Top = 92
  2686. Width = 408
  2687. Height = 17
  2688. Anchors = [akLeft, akTop, akRight]
  2689. Caption = 'Save &passwords (not recommended) X'
  2690. TabOrder = 2
  2691. OnClick = ControlChange
  2692. end
  2693. end
  2694. end
  2695. object SecuritySheet: TTabSheet
  2696. Tag = 19
  2697. HelpType = htKeyword
  2698. HelpKeyword = 'ui_pref_security'
  2699. Caption = 'Security'
  2700. ImageIndex = 18
  2701. TabVisible = False
  2702. DesignSize = (
  2703. 457
  2704. 475)
  2705. object MasterPasswordGroup: TGroupBox
  2706. Left = 8
  2707. Top = 2
  2708. Width = 445
  2709. Height = 80
  2710. Anchors = [akLeft, akTop, akRight]
  2711. Caption = 'Master password'
  2712. TabOrder = 0
  2713. DesignSize = (
  2714. 445
  2715. 80)
  2716. object SetMasterPasswordButton: TButton
  2717. Left = 9
  2718. Top = 45
  2719. Width = 282
  2720. Height = 25
  2721. Caption = '&Change master password...'
  2722. TabOrder = 1
  2723. OnClick = SetMasterPasswordButtonClick
  2724. end
  2725. object UseMasterPasswordCheck: TCheckBox
  2726. Left = 11
  2727. Top = 22
  2728. Width = 425
  2729. Height = 17
  2730. Anchors = [akLeft, akTop, akRight]
  2731. Caption = '&Use master password'
  2732. TabOrder = 0
  2733. OnClick = UseMasterPasswordCheckClick
  2734. end
  2735. end
  2736. object PasswordGroupBox: TGroupBox
  2737. Left = 8
  2738. Top = 88
  2739. Width = 445
  2740. Height = 48
  2741. Anchors = [akLeft, akTop, akRight]
  2742. Caption = 'Session password'
  2743. TabOrder = 1
  2744. DesignSize = (
  2745. 445
  2746. 48)
  2747. object SessionRememberPasswordCheck: TCheckBox
  2748. Left = 11
  2749. Top = 22
  2750. Width = 425
  2751. Height = 17
  2752. Anchors = [akLeft, akTop, akRight]
  2753. Caption = 'Remember &password for duration of session'
  2754. TabOrder = 0
  2755. end
  2756. end
  2757. object SshHostCAsGroup: TGroupBox
  2758. Left = 8
  2759. Top = 142
  2760. Width = 445
  2761. Height = 331
  2762. Anchors = [akLeft, akTop, akRight, akBottom]
  2763. Caption = 'Trusted host certification authorities'
  2764. TabOrder = 2
  2765. DesignSize = (
  2766. 445
  2767. 331)
  2768. object SshHostCAsView: TListView
  2769. Left = 9
  2770. Top = 45
  2771. Width = 427
  2772. Height = 245
  2773. Anchors = [akLeft, akTop, akRight, akBottom]
  2774. Columns = <
  2775. item
  2776. Caption = 'Name'
  2777. Width = 100
  2778. end
  2779. item
  2780. Caption = 'Hosts'
  2781. Width = 100
  2782. end>
  2783. ColumnClick = False
  2784. DoubleBuffered = True
  2785. HideSelection = False
  2786. OwnerData = True
  2787. ReadOnly = True
  2788. RowSelect = True
  2789. ParentDoubleBuffered = False
  2790. TabOrder = 1
  2791. ViewStyle = vsReport
  2792. OnData = SshHostCAsViewData
  2793. OnDblClick = SshHostCAsViewDblClick
  2794. OnKeyDown = SshHostCAsViewKeyDown
  2795. OnSelectItem = ListViewSelectItem
  2796. end
  2797. object AddSshHostCAButton: TButton
  2798. Left = 9
  2799. Top = 296
  2800. Width = 90
  2801. Height = 25
  2802. Anchors = [akLeft, akBottom]
  2803. Caption = '&Add...'
  2804. TabOrder = 2
  2805. OnClick = AddSshHostCAButtonClick
  2806. end
  2807. object RemoveSshHostCAButton: TButton
  2808. Left = 201
  2809. Top = 296
  2810. Width = 90
  2811. Height = 25
  2812. Anchors = [akLeft, akBottom]
  2813. Caption = '&Remove'
  2814. TabOrder = 4
  2815. OnClick = RemoveSshHostCAButtonClick
  2816. end
  2817. object EditSshHostCAButton: TButton
  2818. Left = 105
  2819. Top = 296
  2820. Width = 90
  2821. Height = 25
  2822. Anchors = [akLeft, akBottom]
  2823. Caption = '&Edit...'
  2824. TabOrder = 3
  2825. OnClick = EditSshHostCAButtonClick
  2826. end
  2827. object SshHostCAsFromPuTTYCheck: TCheckBox
  2828. Left = 11
  2829. Top = 22
  2830. Width = 425
  2831. Height = 17
  2832. Caption = '&Load authorities from PuTTY'
  2833. TabOrder = 0
  2834. OnClick = SshHostCAsFromPuTTYCheckClick
  2835. end
  2836. object ConfigureSshHostCAsButton: TButton
  2837. Left = 9
  2838. Top = 296
  2839. Width = 138
  2840. Height = 25
  2841. Anchors = [akLeft, akBottom]
  2842. Caption = '&Edit in PuTTY...'
  2843. TabOrder = 5
  2844. OnClick = ConfigureSshHostCAsButtonClick
  2845. end
  2846. end
  2847. end
  2848. object IntegrationAppSheet: TTabSheet
  2849. Tag = 18
  2850. HelpType = htKeyword
  2851. HelpKeyword = 'ui_pref_integration_app'
  2852. Caption = 'Applications'
  2853. ImageIndex = 17
  2854. TabVisible = False
  2855. DesignSize = (
  2856. 457
  2857. 475)
  2858. object ExternalAppsGroup: TGroupBox
  2859. Left = 8
  2860. Top = 2
  2861. Width = 445
  2862. Height = 205
  2863. Anchors = [akLeft, akTop, akRight]
  2864. Caption = 'External applications'
  2865. TabOrder = 0
  2866. DesignSize = (
  2867. 445
  2868. 205)
  2869. object PuttyPathLabel: TLabel
  2870. Left = 9
  2871. Top = 22
  2872. Width = 148
  2873. Height = 15
  2874. Caption = 'PuTTY/Terminal &client path:'
  2875. FocusControl = PuttyPathEdit
  2876. end
  2877. object PuttyRegistryStorageKeyLabel: TLabel
  2878. Left = 9
  2879. Top = 154
  2880. Width = 101
  2881. Height = 15
  2882. Caption = 'PuTTY registry &key:'
  2883. FocusControl = PuttyRegistryStorageKeyEdit
  2884. end
  2885. object PuttyPathEdit: THistoryComboBox
  2886. Left = 9
  2887. Top = 40
  2888. Width = 341
  2889. Height = 23
  2890. Anchors = [akLeft, akTop, akRight]
  2891. TabOrder = 0
  2892. OnChange = PuttyPathEditChange
  2893. OnExit = PuttyPathEditExit
  2894. end
  2895. object PuttyPasswordCheck2: TCheckBox
  2896. Left = 11
  2897. Top = 85
  2898. Width = 425
  2899. Height = 17
  2900. Anchors = [akLeft, akTop, akRight]
  2901. Caption = '&Remember session password and pass it to PuTTY (SSH)'
  2902. TabOrder = 3
  2903. end
  2904. object AutoOpenInPuttyCheck: TCheckBox
  2905. Left = 11
  2906. Top = 131
  2907. Width = 425
  2908. Height = 17
  2909. Anchors = [akLeft, akTop, akRight]
  2910. Caption = 'Automatically &open new sessions in PuTTY'
  2911. TabOrder = 5
  2912. end
  2913. object PuttyPathBrowseButton: TButton
  2914. Left = 356
  2915. Top = 39
  2916. Width = 80
  2917. Height = 25
  2918. Anchors = [akTop, akRight]
  2919. Caption = 'B&rowse...'
  2920. TabOrder = 1
  2921. OnClick = PuttyPathBrowseButtonClick
  2922. end
  2923. object TelnetForFtpInPuttyCheck: TCheckBox
  2924. Left = 11
  2925. Top = 108
  2926. Width = 425
  2927. Height = 17
  2928. Anchors = [akLeft, akTop, akRight]
  2929. Caption = 'Open &Telnet sessions in PuTTY for FTP sessions'
  2930. TabOrder = 4
  2931. end
  2932. object PuttyPathHintText: TStaticText
  2933. Left = 224
  2934. Top = 63
  2935. Width = 126
  2936. Height = 16
  2937. Alignment = taRightJustify
  2938. Anchors = [akTop, akRight]
  2939. AutoSize = False
  2940. Caption = '&patterns'
  2941. TabOrder = 2
  2942. TabStop = True
  2943. end
  2944. object PuttyRegistryStorageKeyEdit: THistoryComboBox
  2945. Left = 9
  2946. Top = 172
  2947. Width = 427
  2948. Height = 23
  2949. Style = csDropDownList
  2950. Anchors = [akLeft, akTop, akRight]
  2951. TabOrder = 6
  2952. OnChange = ControlChange
  2953. end
  2954. end
  2955. end
  2956. object NetworkSheet: TTabSheet
  2957. Tag = 20
  2958. HelpType = htKeyword
  2959. HelpKeyword = 'ui_pref_network'
  2960. Caption = 'Network'
  2961. ImageIndex = 20
  2962. TabVisible = False
  2963. DesignSize = (
  2964. 457
  2965. 475)
  2966. object ExternalIpAddressGroupBox2: TGroupBox
  2967. Left = 8
  2968. Top = 2
  2969. Width = 445
  2970. Height = 152
  2971. Anchors = [akLeft, akTop, akRight]
  2972. Caption = 'Incoming FTP connections (active mode)'
  2973. TabOrder = 0
  2974. DesignSize = (
  2975. 445
  2976. 152)
  2977. object LocalPortNumberRangeLabel: TLabel
  2978. Left = 124
  2979. Top = 122
  2980. Width = 6
  2981. Height = 15
  2982. Caption = #8211
  2983. end
  2984. object RetrieveExternalIpAddressButton: TRadioButton
  2985. Left = 11
  2986. Top = 22
  2987. Width = 427
  2988. Height = 17
  2989. Anchors = [akLeft, akTop, akRight]
  2990. Caption = 'Retrieve the external IP address from &operating system'
  2991. TabOrder = 0
  2992. OnClick = ControlChange
  2993. end
  2994. object CustomExternalIpAddressButton: TRadioButton
  2995. Left = 11
  2996. Top = 45
  2997. Width = 427
  2998. Height = 17
  2999. Anchors = [akLeft, akTop, akRight]
  3000. Caption = 'Use the &following external IP address:'
  3001. TabOrder = 1
  3002. OnClick = ControlChange
  3003. end
  3004. object CustomExternalIpAddressEdit: TEdit
  3005. Left = 27
  3006. Top = 67
  3007. Width = 200
  3008. Height = 23
  3009. TabOrder = 2
  3010. OnClick = ControlChange
  3011. end
  3012. object LocalPortNumberCheck: TCheckBox
  3013. Left = 11
  3014. Top = 96
  3015. Width = 417
  3016. Height = 17
  3017. Anchors = [akLeft, akTop, akRight]
  3018. Caption = 'Limit listening &ports to:'
  3019. TabOrder = 3
  3020. OnClick = ControlChange
  3021. end
  3022. object LocalPortNumberMinEdit: TUpDownEdit
  3023. Left = 27
  3024. Top = 119
  3025. Width = 91
  3026. Height = 23
  3027. Alignment = taRightJustify
  3028. MaxValue = 65535.000000000000000000
  3029. MinValue = 1024.000000000000000000
  3030. TabOrder = 4
  3031. OnChange = ControlChange
  3032. OnExit = LocalPortNumberMinEditExit
  3033. end
  3034. object LocalPortNumberMaxEdit: TUpDownEdit
  3035. Left = 136
  3036. Top = 119
  3037. Width = 91
  3038. Height = 23
  3039. Alignment = taRightJustify
  3040. MaxValue = 65535.000000000000000000
  3041. MinValue = 1024.000000000000000000
  3042. TabOrder = 5
  3043. OnChange = ControlChange
  3044. OnExit = LocalPortNumberMaxEditExit
  3045. end
  3046. end
  3047. object ConnectionsGroup: TGroupBox
  3048. Left = 8
  3049. Top = 160
  3050. Width = 445
  3051. Height = 49
  3052. Anchors = [akLeft, akTop, akRight]
  3053. Caption = 'Connections'
  3054. TabOrder = 1
  3055. DesignSize = (
  3056. 445
  3057. 49)
  3058. object TryFtpWhenSshFailsCheck: TCheckBox
  3059. Left = 11
  3060. Top = 22
  3061. Width = 417
  3062. Height = 17
  3063. Anchors = [akLeft, akTop, akRight]
  3064. Caption = 'When SFTP connection is &rejected, knock FTP port'
  3065. TabOrder = 0
  3066. OnClick = ControlChange
  3067. end
  3068. end
  3069. end
  3070. object PanelRemoteSheet: TTabSheet
  3071. Tag = 21
  3072. HelpType = htKeyword
  3073. HelpKeyword = 'ui_pref_panels_remote'
  3074. Caption = 'Remote'
  3075. ImageIndex = 20
  3076. TabVisible = False
  3077. DesignSize = (
  3078. 457
  3079. 475)
  3080. object PanelsRemoteDirectoryGroup: TGroupBox
  3081. Left = 8
  3082. Top = 2
  3083. Width = 445
  3084. Height = 98
  3085. Anchors = [akLeft, akTop, akRight]
  3086. Caption = 'Remote panel'
  3087. TabOrder = 0
  3088. DesignSize = (
  3089. 445
  3090. 98)
  3091. object RefreshRemoteDirectoryUnitLabel: TLabel
  3092. Left = 430
  3093. Top = 68
  3094. Width = 5
  3095. Height = 15
  3096. Anchors = [akTop, akRight]
  3097. Caption = 's'
  3098. ShowAccelChar = False
  3099. end
  3100. object ShowInaccesibleDirectoriesCheck: TCheckBox
  3101. Left = 11
  3102. Top = 22
  3103. Width = 425
  3104. Height = 17
  3105. Anchors = [akLeft, akTop, akRight]
  3106. Caption = 'Show in&accessible directories'
  3107. TabOrder = 0
  3108. OnClick = ControlChange
  3109. end
  3110. object AutoReadDirectoryAfterOpCheck: TCheckBox
  3111. Left = 11
  3112. Top = 45
  3113. Width = 425
  3114. Height = 17
  3115. Anchors = [akLeft, akTop, akRight]
  3116. Caption = 'Auto&matically refresh directory after operation (Ctrl+Alt+R)'
  3117. TabOrder = 1
  3118. OnClick = ControlChange
  3119. end
  3120. object RefreshRemotePanelCheck: TCheckBox
  3121. Left = 11
  3122. Top = 68
  3123. Width = 322
  3124. Height = 17
  3125. Anchors = [akLeft, akTop, akRight]
  3126. Caption = 'Refresh remote panel &every'
  3127. TabOrder = 2
  3128. OnClick = ControlChange
  3129. end
  3130. object RefreshRemotePanelIntervalEdit: TUpDownEdit
  3131. Left = 343
  3132. Top = 65
  3133. Width = 81
  3134. Height = 23
  3135. Alignment = taRightJustify
  3136. Increment = 15.000000000000000000
  3137. MaxValue = 9999.000000000000000000
  3138. MinValue = 10.000000000000000000
  3139. Anchors = [akTop, akRight]
  3140. MaxLength = 3
  3141. TabOrder = 3
  3142. OnChange = ControlChange
  3143. end
  3144. end
  3145. end
  3146. object PanelLocalSheet: TTabSheet
  3147. Tag = 22
  3148. HelpType = htKeyword
  3149. HelpKeyword = 'ui_pref_panels_local'
  3150. Caption = 'Local'
  3151. ImageIndex = 20
  3152. TabVisible = False
  3153. DesignSize = (
  3154. 457
  3155. 475)
  3156. object LocalPanelGroup: TGroupBox
  3157. Left = 8
  3158. Top = 2
  3159. Width = 445
  3160. Height = 95
  3161. Anchors = [akLeft, akTop, akRight]
  3162. Caption = 'Local panel'
  3163. TabOrder = 0
  3164. DesignSize = (
  3165. 445
  3166. 95)
  3167. object PreserveLocalDirectoryCheck: TCheckBox
  3168. Left = 11
  3169. Top = 45
  3170. Width = 425
  3171. Height = 17
  3172. Anchors = [akLeft, akTop, akRight]
  3173. Caption = 'Do not &change state when switching sessions'
  3174. TabOrder = 1
  3175. OnClick = ControlChange
  3176. end
  3177. object SystemContextMenuCheck: TCheckBox
  3178. Left = 11
  3179. Top = 68
  3180. Width = 425
  3181. Height = 17
  3182. Anchors = [akLeft, akTop, akRight]
  3183. Caption = 'Use &system file context menu'
  3184. TabOrder = 2
  3185. OnClick = ControlChange
  3186. end
  3187. object DeleteToRecycleBinCheck: TCheckBox
  3188. Left = 11
  3189. Top = 22
  3190. Width = 425
  3191. Height = 17
  3192. Anchors = [akLeft, akTop, akRight]
  3193. Caption = '&Delete files to recycle bin'
  3194. TabOrder = 0
  3195. OnClick = ControlChange
  3196. end
  3197. end
  3198. end
  3199. object LanguagesSheet: TTabSheet
  3200. Tag = 23
  3201. Caption = 'Languages'
  3202. ImageIndex = 21
  3203. TabVisible = False
  3204. DesignSize = (
  3205. 457
  3206. 475)
  3207. object LanguagesGroup: TGroupBox
  3208. Left = 8
  3209. Top = 2
  3210. Width = 445
  3211. Height = 471
  3212. Anchors = [akLeft, akTop, akRight, akBottom]
  3213. Caption = 'Languages'
  3214. TabOrder = 0
  3215. DesignSize = (
  3216. 445
  3217. 471)
  3218. object LanguageChangeLabel: TLabel
  3219. Left = 9
  3220. Top = 440
  3221. Width = 190
  3222. Height = 15
  3223. Anchors = [akLeft, akBottom]
  3224. Caption = 'Changes will apply on the next start.'
  3225. ShowAccelChar = False
  3226. end
  3227. object LanguagesView: TListView
  3228. Left = 9
  3229. Top = 22
  3230. Width = 427
  3231. Height = 408
  3232. Anchors = [akLeft, akTop, akRight, akBottom]
  3233. Columns = <
  3234. item
  3235. AutoSize = True
  3236. end>
  3237. DoubleBuffered = True
  3238. HideSelection = False
  3239. ReadOnly = True
  3240. RowSelect = True
  3241. ParentDoubleBuffered = False
  3242. ShowColumnHeaders = False
  3243. TabOrder = 0
  3244. ViewStyle = vsReport
  3245. OnCustomDrawItem = LanguagesViewCustomDrawItem
  3246. OnSelectItem = ListViewSelectItem
  3247. end
  3248. object LanguagesGetMoreButton: TButton
  3249. Left = 326
  3250. Top = 436
  3251. Width = 110
  3252. Height = 25
  3253. Anchors = [akRight, akBottom]
  3254. Caption = 'Get &more...'
  3255. TabOrder = 1
  3256. OnClick = LanguagesGetMoreButtonClick
  3257. end
  3258. end
  3259. end
  3260. object EditorInternalSheet: TTabSheet
  3261. Tag = 24
  3262. HelpType = htKeyword
  3263. HelpKeyword = 'ui_pref_editor_internal'
  3264. Caption = 'Internal editor'
  3265. TabVisible = False
  3266. DesignSize = (
  3267. 457
  3268. 475)
  3269. object InternalEditorGroup: TGroupBox
  3270. Left = 8
  3271. Top = 2
  3272. Width = 445
  3273. Height = 146
  3274. Anchors = [akLeft, akTop, akRight]
  3275. Caption = 'Display'
  3276. TabOrder = 0
  3277. DesignSize = (
  3278. 445
  3279. 146)
  3280. object Label9: TLabel
  3281. Left = 9
  3282. Top = 45
  3283. Width = 75
  3284. Height = 15
  3285. Caption = '&Tabulator size:'
  3286. FocusControl = EditorTabSizeEdit
  3287. end
  3288. object Label11: TLabel
  3289. Left = 9
  3290. Top = 92
  3291. Width = 94
  3292. Height = 15
  3293. Caption = 'Default en&coding:'
  3294. FocusControl = EditorEncodingCombo
  3295. end
  3296. object EditorWordWrapCheck: TCheckBox
  3297. Left = 11
  3298. Top = 22
  3299. Width = 425
  3300. Height = 17
  3301. Anchors = [akLeft, akTop, akRight]
  3302. Caption = '&Wrap long lines'
  3303. TabOrder = 0
  3304. OnClick = ControlChange
  3305. end
  3306. object EditorTabSizeEdit: TUpDownEdit
  3307. Left = 9
  3308. Top = 63
  3309. Width = 161
  3310. Height = 23
  3311. Alignment = taRightJustify
  3312. MaxValue = 99.000000000000000000
  3313. MinValue = 1.000000000000000000
  3314. MaxLength = 2
  3315. TabOrder = 1
  3316. OnChange = ControlChange
  3317. end
  3318. object EditorEncodingCombo: TComboBox
  3319. Left = 9
  3320. Top = 110
  3321. Width = 161
  3322. Height = 23
  3323. Style = csDropDownList
  3324. MaxLength = 2
  3325. TabOrder = 2
  3326. OnChange = ControlChange
  3327. end
  3328. end
  3329. object FontGroup: TGroupBox
  3330. Left = 8
  3331. Top = 154
  3332. Width = 445
  3333. Height = 119
  3334. Anchors = [akLeft, akTop, akRight]
  3335. Caption = 'Font'
  3336. TabOrder = 1
  3337. DesignSize = (
  3338. 445
  3339. 119)
  3340. object EditorFontLabel: TLabel
  3341. Left = 176
  3342. Top = 22
  3343. Width = 260
  3344. Height = 87
  3345. Anchors = [akLeft, akTop, akRight, akBottom]
  3346. AutoSize = False
  3347. Caption = 'EditorFontLabel'
  3348. Color = clWhite
  3349. ParentColor = False
  3350. ShowAccelChar = False
  3351. Transparent = False
  3352. OnDblClick = EditorFontLabelDblClick
  3353. end
  3354. object EditorFontButton: TButton
  3355. Left = 9
  3356. Top = 22
  3357. Width = 161
  3358. Height = 25
  3359. Caption = '&Select font...'
  3360. TabOrder = 0
  3361. OnClick = EditorFontButtonClick
  3362. end
  3363. object EditorFontColorButton: TButton
  3364. Left = 9
  3365. Top = 53
  3366. Width = 161
  3367. Height = 25
  3368. Caption = '&Text color'
  3369. TabOrder = 1
  3370. OnClick = EditorFontColorButtonClick
  3371. end
  3372. object EditorBackgroundColorButton: TButton
  3373. Left = 9
  3374. Top = 84
  3375. Width = 161
  3376. Height = 25
  3377. Caption = 'Default &background'
  3378. TabOrder = 2
  3379. OnClick = EditorBackgroundColorButtonClick
  3380. end
  3381. end
  3382. object InternalEditorBehaviourGroup: TGroupBox
  3383. Left = 8
  3384. Top = 278
  3385. Width = 445
  3386. Height = 49
  3387. Anchors = [akLeft, akTop, akRight]
  3388. Caption = 'Behaviour'
  3389. TabOrder = 2
  3390. DesignSize = (
  3391. 445
  3392. 49)
  3393. object EditorDisableSmoothScrollCheck: TCheckBox
  3394. Left = 11
  3395. Top = 22
  3396. Width = 425
  3397. Height = 17
  3398. Anchors = [akLeft, akTop, akRight]
  3399. Caption = 'Disable s&mooth scrolling'
  3400. TabOrder = 0
  3401. OnClick = ControlChange
  3402. end
  3403. end
  3404. end
  3405. object FileColorsSheet: TTabSheet
  3406. Tag = 25
  3407. HelpType = htKeyword
  3408. HelpKeyword = 'ui_pref_file_colors'
  3409. Caption = 'File colors'
  3410. ImageIndex = 23
  3411. TabVisible = False
  3412. DesignSize = (
  3413. 457
  3414. 475)
  3415. object FileColorsGroup: TGroupBox
  3416. Left = 8
  3417. Top = 2
  3418. Width = 445
  3419. Height = 471
  3420. Anchors = [akLeft, akTop, akRight, akBottom]
  3421. Caption = 'File colors'
  3422. TabOrder = 0
  3423. DesignSize = (
  3424. 445
  3425. 471)
  3426. object FileColorsView: TListView
  3427. Left = 9
  3428. Top = 22
  3429. Width = 427
  3430. Height = 377
  3431. Anchors = [akLeft, akTop, akRight, akBottom]
  3432. Columns = <
  3433. item
  3434. end>
  3435. ColumnClick = False
  3436. DoubleBuffered = True
  3437. DragMode = dmAutomatic
  3438. HideSelection = False
  3439. OwnerData = True
  3440. ReadOnly = True
  3441. RowSelect = True
  3442. ParentDoubleBuffered = False
  3443. ParentShowHint = False
  3444. ShowColumnHeaders = False
  3445. ShowHint = False
  3446. TabOrder = 0
  3447. ViewStyle = vsReport
  3448. OnCustomDrawItem = FileColorsViewCustomDrawItem
  3449. OnData = FileColorsViewData
  3450. OnDblClick = FileColorsViewDblClick
  3451. OnEndDrag = ListViewEndDrag
  3452. OnDragDrop = FileColorsViewDragDrop
  3453. OnDragOver = ListViewDragOver
  3454. OnKeyDown = FileColorsViewKeyDown
  3455. OnSelectItem = ListViewSelectItem
  3456. OnStartDrag = ListViewStartDrag
  3457. end
  3458. object AddFileColorButton: TButton
  3459. Left = 9
  3460. Top = 405
  3461. Width = 90
  3462. Height = 25
  3463. Anchors = [akLeft, akBottom]
  3464. Caption = '&Add...'
  3465. TabOrder = 1
  3466. OnClick = AddEditFileColorButtonClick
  3467. end
  3468. object RemoveFileColorButton: TButton
  3469. Left = 9
  3470. Top = 436
  3471. Width = 90
  3472. Height = 25
  3473. Anchors = [akLeft, akBottom]
  3474. Caption = '&Remove'
  3475. TabOrder = 3
  3476. OnClick = RemoveFileColorButtonClick
  3477. end
  3478. object UpFileColorButton: TButton
  3479. Left = 346
  3480. Top = 405
  3481. Width = 90
  3482. Height = 25
  3483. Anchors = [akRight, akBottom]
  3484. Caption = '&Up'
  3485. TabOrder = 4
  3486. OnClick = UpDownFileColorButtonClick
  3487. end
  3488. object DownFileColorButton: TButton
  3489. Left = 346
  3490. Top = 436
  3491. Width = 90
  3492. Height = 25
  3493. Anchors = [akRight, akBottom]
  3494. Caption = '&Down'
  3495. TabOrder = 5
  3496. OnClick = UpDownFileColorButtonClick
  3497. end
  3498. object EditFileColorButton: TButton
  3499. Left = 105
  3500. Top = 405
  3501. Width = 90
  3502. Height = 25
  3503. Anchors = [akLeft, akBottom]
  3504. Caption = '&Edit...'
  3505. TabOrder = 2
  3506. OnClick = AddEditFileColorButtonClick
  3507. end
  3508. end
  3509. end
  3510. object SearchSheet: TTabSheet
  3511. HelpType = htKeyword
  3512. HelpKeyword = 'ui_pref_search'
  3513. Caption = 'SearchSheet'
  3514. ImageIndex = 24
  3515. TabVisible = False
  3516. DesignSize = (
  3517. 457
  3518. 475)
  3519. object SearchGroup: TGroupBox
  3520. Left = 8
  3521. Top = 2
  3522. Width = 445
  3523. Height = 471
  3524. Anchors = [akLeft, akTop, akRight, akBottom]
  3525. Caption = 'Search'
  3526. TabOrder = 0
  3527. end
  3528. end
  3529. end
  3530. object LeftPanel: TPanel
  3531. Left = 0
  3532. Top = 0
  3533. Width = 140
  3534. Height = 485
  3535. Align = alLeft
  3536. BevelOuter = bvNone
  3537. TabOrder = 0
  3538. DesignSize = (
  3539. 140
  3540. 485)
  3541. object NavigationTree: TTreeView
  3542. Left = 8
  3543. Top = 36
  3544. Width = 130
  3545. Height = 443
  3546. Anchors = [akLeft, akTop, akRight, akBottom]
  3547. DoubleBuffered = True
  3548. HideSelection = False
  3549. HotTrack = True
  3550. Indent = 19
  3551. ParentDoubleBuffered = False
  3552. ReadOnly = True
  3553. ShowButtons = False
  3554. ShowRoot = False
  3555. TabOrder = 1
  3556. OnChange = NavigationTreeChange
  3557. OnChanging = NavigationTreeChanging
  3558. OnCollapsing = NavigationTreeCollapsing
  3559. OnEnter = NavigationTreeEnter
  3560. Items.NodeData = {
  3561. 030B000000360000000000000001000000FFFFFFFFFFFFFFFF00000000000000
  3562. 0005000000010C45006E007600690072006F006E006D0065006E007400580032
  3563. 0000000000000003000000FFFFFFFFFFFFFFFF00000000000000000000000001
  3564. 0A49006E00740065007200660061006300650058002C00000000000000110000
  3565. 00FFFFFFFFFFFFFFFF0000000000000000000000000107570069006E0064006F
  3566. 0077005800320000000000000005000000FFFFFFFFFFFFFFFF00000000000000
  3567. 0000000000010A43006F006D006D0061006E0064006500720058003000000000
  3568. 00000006000000FFFFFFFFFFFFFFFF0000000000000000000000000109450078
  3569. 0070006C006F007200650072005800320000000000000017000000FFFFFFFFFF
  3570. FFFFFF000000000000000000000000010A4C0061006E00670075006100670065
  3571. 00730058002C0000000000000004000000FFFFFFFFFFFFFFFF00000000000000
  3572. 00030000000107500061006E0065006C00730058003600000000000000190000
  3573. 00FFFFFFFFFFFFFFFF000000000000000000000000010C460069006C00650020
  3574. 0063006F006C006F007200730058002C0000000000000015000000FFFFFFFFFF
  3575. FFFFFF0000000000000000000000000107520065006D006F007400650058002A
  3576. 0000000000000016000000FFFFFFFFFFFFFFFF00000000000000000000000001
  3577. 064C006F00630061006C0058002C0000000000000008000000FFFFFFFFFFFFFF
  3578. FF000000000000000001000000010745006400690074006F00720058003E0000
  3579. 000000000018000000FFFFFFFFFFFFFFFF000000000000000000000000011049
  3580. 006E007400650072006E0061006C00200065006400690074006F007200580030
  3581. 0000000000000010000000FFFFFFFFFFFFFFFF00000000000000000300000001
  3582. 095400720061006E007300660065007200580030000000000000000B000000FF
  3583. FFFFFFFFFFFFFF00000000000000000000000001094400720061006700440072
  3584. 006F007000580034000000000000000C000000FFFFFFFFFFFFFFFF0000000000
  3585. 00000000000000010B4200610063006B00670072006F0075006E00640058002C
  3586. 000000000000000E000000FFFFFFFFFFFFFFFF00000000000000000000000001
  3587. 0752006500730075006D00650058002E0000000000000014000000FFFFFFFFFF
  3588. FFFFFF00000000000000000000000001084E006500740077006F0072006B0058
  3589. 00300000000000000013000000FFFFFFFFFFFFFFFF0000000000000000000000
  3590. 0001095300650063007500720069007400790058002E00000000000000020000
  3591. 00FFFFFFFFFFFFFFFF00000000000000000000000001084C006F006700670069
  3592. 006E0067005800360000000000000009000000FFFFFFFFFFFFFFFF0000000000
  3593. 00000001000000010C49006E0074006500670072006100740069006F006E0058
  3594. 00380000000000000012000000FFFFFFFFFFFFFFFF0000000000000000000000
  3595. 00010D4100700070006C00690063006100740069006F006E0073005800300000
  3596. 00000000000A000000FFFFFFFFFFFFFFFF000000000000000000000000010943
  3597. 006F006D006D0061006E006400730058002E000000000000000D000000FFFFFF
  3598. FFFFFFFFFF0000000000000000000000000108530074006F0072006100670065
  3599. 0058002E000000000000000F000000FFFFFFFFFFFFFFFF000000000000000000
  3600. 000000010855007000640061007400650073005800}
  3601. end
  3602. object SearchEdit: TComboEdit
  3603. Left = 8
  3604. Top = 8
  3605. Width = 130
  3606. Height = 21
  3607. HelpType = htKeyword
  3608. HelpKeyword = 'ui_pref_search'
  3609. ButtonTabStop = False
  3610. ButtonCaption = #10005
  3611. ClickKey = 0
  3612. Anchors = [akLeft, akTop, akRight]
  3613. TabOrder = 0
  3614. OnButtonClick = SearchEditButtonClick
  3615. OnChange = SearchEditChangeEnter
  3616. OnEnter = SearchEditChangeEnter
  3617. end
  3618. end
  3619. end
  3620. object HelpButton: TButton
  3621. Left = 517
  3622. Top = 486
  3623. Width = 80
  3624. Height = 25
  3625. Anchors = [akRight, akBottom]
  3626. Caption = 'Help'
  3627. TabOrder = 3
  3628. OnClick = HelpButtonClick
  3629. end
  3630. object ComponentsPanel: TPanel
  3631. Left = 0
  3632. Top = 519
  3633. Width = 605
  3634. Height = 50
  3635. Align = alBottom
  3636. BevelOuter = bvNone
  3637. Color = clWindow
  3638. ParentBackground = False
  3639. TabOrder = 4
  3640. end
  3641. object RegisterAsUrlHandlerMenu: TPopupMenu
  3642. Left = 56
  3643. Top = 470
  3644. object RegisterAsUrlHandlerItem: TMenuItem
  3645. Caption = 'Register'
  3646. OnClick = RegisterAsUrlHandlerItemClick
  3647. end
  3648. object MakeDefaultHandlerItem: TMenuItem
  3649. Caption = 'Make WinSCP &default handler...'
  3650. OnClick = MakeDefaultHandlerItemClick
  3651. end
  3652. object UnregisterForDefaultProtocolsItem: TMenuItem
  3653. Caption = 'Unregister'
  3654. OnClick = UnregisterForDefaultProtocolsItemClick
  3655. end
  3656. end
  3657. object AddCommandMenu: TPopupMenu
  3658. Left = 208
  3659. Top = 470
  3660. object AddCustomCommandMenuItem: TMenuItem
  3661. Caption = 'Add &Custom Command...'
  3662. OnClick = AddCustomCommandMenuItemClick
  3663. end
  3664. object AddExtensionMenuItem: TMenuItem
  3665. Caption = 'Add &Extension...'
  3666. OnClick = AddExtensionMenuItemClick
  3667. end
  3668. end
  3669. end