Preferences.dfm 95 KB

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