Preferences.dfm 97 KB

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