Preferences.dfm 94 KB

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