Preferences.dfm 104 KB

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