Preferences.dfm 104 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387
  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 applies 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 criterions'
  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 applies 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. Window Ex' +
  1395. 'plorer). Does not allow downloads to other destinations (ZIP arc' +
  1396. 'hives, FTP, etc.). Uses drag&&drop shell extension, when availa' +
  1397. 'ble.'
  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. Value = 1.000000000000000000
  1534. Anchors = [akTop, akRight]
  1535. MaxLength = 1
  1536. TabOrder = 0
  1537. end
  1538. object QueueAutoPopupCheck: TCheckBox
  1539. Left = 16
  1540. Top = 146
  1541. Width = 369
  1542. Height = 17
  1543. Anchors = [akLeft, akTop, akRight]
  1544. Caption = '&Automatically popup prompts of background transfers when idle'
  1545. TabOrder = 5
  1546. end
  1547. object QueueCheck: TCheckBox
  1548. Left = 16
  1549. Top = 74
  1550. Width = 369
  1551. Height = 17
  1552. Anchors = [akLeft, akTop, akRight]
  1553. Caption = 'Transfer on &background by default'
  1554. TabOrder = 2
  1555. end
  1556. object QueueNoConfirmationCheck: TCheckBox
  1557. Left = 16
  1558. Top = 122
  1559. Width = 369
  1560. Height = 17
  1561. Anchors = [akLeft, akTop, akRight]
  1562. Caption = '&No confirmations for background transfers'
  1563. TabOrder = 4
  1564. end
  1565. object QueueParallelCheck: TCheckBox
  1566. Left = 16
  1567. Top = 98
  1568. Width = 369
  1569. Height = 17
  1570. Anchors = [akLeft, akTop, akRight]
  1571. Caption = '&Use multiple connections for single transfer'
  1572. TabOrder = 3
  1573. end
  1574. object EnableQueueByDefaultCheck: TCheckBox
  1575. Left = 16
  1576. Top = 50
  1577. Width = 369
  1578. Height = 17
  1579. Anchors = [akLeft, akTop, akRight]
  1580. Caption = '&Enable queue processing by default'
  1581. TabOrder = 1
  1582. end
  1583. object QueueKeepDoneItemsForCombo: TComboBox
  1584. Left = 280
  1585. Top = 169
  1586. Width = 97
  1587. Height = 21
  1588. Style = csDropDownList
  1589. Anchors = [akTop, akRight]
  1590. MaxLength = 1
  1591. TabOrder = 6
  1592. OnChange = ControlChange
  1593. Items.Strings = (
  1594. 'Never'
  1595. '15 seconds'
  1596. '1 minute'
  1597. '15 minutes'
  1598. '1 hour'
  1599. 'Forever')
  1600. end
  1601. end
  1602. object QueueViewGroup: TGroupBox
  1603. Left = 8
  1604. Top = 214
  1605. Width = 389
  1606. Height = 99
  1607. Anchors = [akLeft, akTop, akRight]
  1608. Caption = 'Queue list'
  1609. TabOrder = 1
  1610. DesignSize = (
  1611. 389
  1612. 99)
  1613. object QueueViewShowButton: TRadioButton
  1614. Left = 16
  1615. Top = 21
  1616. Width = 369
  1617. Height = 17
  1618. Anchors = [akLeft, akTop, akRight]
  1619. Caption = '&Show'
  1620. TabOrder = 0
  1621. end
  1622. object QueueViewHideWhenEmptyButton: TRadioButton
  1623. Left = 16
  1624. Top = 45
  1625. Width = 369
  1626. Height = 17
  1627. Anchors = [akLeft, akTop, akRight]
  1628. Caption = 'Hide &when empty'
  1629. TabOrder = 1
  1630. end
  1631. object QueueViewHideButton: TRadioButton
  1632. Left = 16
  1633. Top = 69
  1634. Width = 369
  1635. Height = 17
  1636. Anchors = [akLeft, akTop, akRight]
  1637. Caption = '&Hide'
  1638. TabOrder = 2
  1639. end
  1640. end
  1641. end
  1642. object StorageSheet: TTabSheet
  1643. Tag = 13
  1644. HelpType = htKeyword
  1645. HelpKeyword = 'ui_pref_storage'
  1646. Caption = 'Storage'
  1647. ImageIndex = 12
  1648. TabVisible = False
  1649. DesignSize = (
  1650. 405
  1651. 398)
  1652. object StorageGroup: TGroupBox
  1653. Left = 8
  1654. Top = 8
  1655. Width = 389
  1656. Height = 96
  1657. Anchors = [akLeft, akTop, akRight]
  1658. Caption = 'Configuration storage'
  1659. TabOrder = 0
  1660. DesignSize = (
  1661. 389
  1662. 96)
  1663. object AutomaticIniFileStorageLabel: TPathLabel
  1664. Left = 167
  1665. Top = 46
  1666. Width = 209
  1667. Height = 13
  1668. ActiveTextColor = clWindowText
  1669. IndentHorizontal = 0
  1670. IndentVertical = 0
  1671. InactiveTextColor = clGrayText
  1672. OnGetStatus = AutomaticIniFileStorageLabelGetStatus
  1673. Align = alNone
  1674. Anchors = [akLeft, akTop, akRight]
  1675. AutoSize = False
  1676. end
  1677. object RegistryStorageButton: TRadioButton
  1678. Left = 16
  1679. Top = 21
  1680. Width = 360
  1681. Height = 17
  1682. Anchors = [akLeft, akTop, akRight]
  1683. Caption = 'Windows re&gistry'
  1684. TabOrder = 0
  1685. OnClick = ControlChange
  1686. end
  1687. object AutomaticIniFileStorageButton: TRadioButton
  1688. Left = 16
  1689. Top = 45
  1690. Width = 148
  1691. Height = 17
  1692. Anchors = [akLeft, akTop, akRight]
  1693. Caption = '&Automatic INI file'
  1694. TabOrder = 1
  1695. OnClick = ControlChange
  1696. end
  1697. object CustomIniFileStorageButton: TRadioButton
  1698. Left = 16
  1699. Top = 68
  1700. Width = 148
  1701. Height = 17
  1702. Anchors = [akLeft, akTop, akRight]
  1703. Caption = 'Custo&m INI file:'
  1704. TabOrder = 2
  1705. OnClick = CustomIniFileStorageButtonClick
  1706. end
  1707. object CustomIniFileStorageEdit: TFilenameEdit
  1708. Left = 168
  1709. Top = 66
  1710. Width = 208
  1711. Height = 21
  1712. AcceptFiles = True
  1713. OnBeforeDialog = PathEditBeforeDialog
  1714. OnAfterDialog = CustomIniFileStorageEditAfterDialog
  1715. DialogKind = dkSave
  1716. DefaultExt = 'ini'
  1717. Filter = 'INI files (*.ini)|*.ini|All files (*.*)|*.*'
  1718. DialogOptions = [ofHideReadOnly, ofPathMustExist]
  1719. ClickKey = 16397
  1720. Anchors = [akLeft, akTop, akRight]
  1721. TabOrder = 3
  1722. Text = 'CustomIniFileStorageEdit'
  1723. OnChange = ControlChange
  1724. OnExit = CustomIniFileStorageEditExit
  1725. end
  1726. end
  1727. object TemporaryDirectoryGrouo: TGroupBox
  1728. Left = 8
  1729. Top = 112
  1730. Width = 389
  1731. Height = 223
  1732. Anchors = [akLeft, akTop, akRight]
  1733. Caption = 'Temporary directory'
  1734. TabOrder = 1
  1735. DesignSize = (
  1736. 389
  1737. 223)
  1738. object Label6: TLabel
  1739. Left = 16
  1740. Top = 22
  1741. Width = 360
  1742. Height = 23
  1743. Anchors = [akLeft, akTop, akRight]
  1744. AutoSize = False
  1745. Caption = 'Specify where to temporarily store edited and downloaded files.'
  1746. ShowAccelChar = False
  1747. WordWrap = True
  1748. end
  1749. object DDSystemTemporaryDirectoryButton: TRadioButton
  1750. Left = 16
  1751. Top = 45
  1752. Width = 360
  1753. Height = 17
  1754. Anchors = [akLeft, akTop, akRight]
  1755. Caption = '&Use temporary directory of system'
  1756. TabOrder = 0
  1757. OnClick = ControlChange
  1758. end
  1759. object DDCustomTemporaryDirectoryButton: TRadioButton
  1760. Left = 16
  1761. Top = 69
  1762. Width = 148
  1763. Height = 17
  1764. Caption = 'Use this &directory:'
  1765. TabOrder = 1
  1766. OnClick = ControlChange
  1767. end
  1768. object DDTemporaryDirectoryEdit: TDirectoryEdit
  1769. Left = 168
  1770. Top = 65
  1771. Width = 208
  1772. Height = 21
  1773. AcceptFiles = True
  1774. OnBeforeDialog = PathEditBeforeDialog
  1775. OnAfterDialog = PathEditAfterDialog
  1776. DialogText = 'Select directory for temporary drag && drop files.'
  1777. ClickKey = 16397
  1778. Anchors = [akLeft, akTop, akRight]
  1779. TabOrder = 2
  1780. Text = 'DDTemporaryDirectoryEdit'
  1781. OnChange = ControlChange
  1782. end
  1783. object TemporaryDirectoryCleanupCheck: TCheckBox
  1784. Left = 16
  1785. Top = 169
  1786. Width = 360
  1787. Height = 17
  1788. Anchors = [akLeft, akTop, akRight]
  1789. Caption = '&Cleanup obsolete temporary directories on startup'
  1790. TabOrder = 6
  1791. OnClick = ControlChange
  1792. end
  1793. object ConfirmTemporaryDirectoryCleanupCheck: TCheckBox
  1794. Left = 32
  1795. Top = 194
  1796. Width = 344
  1797. Height = 17
  1798. Anchors = [akLeft, akTop, akRight]
  1799. Caption = '&Ask before cleanup'
  1800. TabOrder = 7
  1801. OnClick = ControlChange
  1802. end
  1803. object TemporaryDirectoryAppendSessionCheck: TCheckBox
  1804. Left = 16
  1805. Top = 94
  1806. Width = 360
  1807. Height = 17
  1808. Anchors = [akLeft, akTop, akRight]
  1809. Caption = 'Append &session name to temporary path'
  1810. TabOrder = 3
  1811. OnClick = ControlChange
  1812. end
  1813. object TemporaryDirectoryAppendPathCheck: TCheckBox
  1814. Left = 16
  1815. Top = 119
  1816. Width = 360
  1817. Height = 17
  1818. Anchors = [akLeft, akTop, akRight]
  1819. Caption = 'Append remote &path to temporary path'
  1820. TabOrder = 4
  1821. OnClick = ControlChange
  1822. end
  1823. object TemporaryDirectoryDeterministicCheck: TCheckBox
  1824. Left = 16
  1825. Top = 144
  1826. Width = 360
  1827. Height = 17
  1828. Anchors = [akLeft, akTop, akRight]
  1829. Caption = 'Keep temporary copies of remote files in &deterministic paths'
  1830. TabOrder = 5
  1831. OnClick = ControlChange
  1832. end
  1833. end
  1834. object OtherStorageGroup: TGroupBox
  1835. Left = 8
  1836. Top = 342
  1837. Width = 389
  1838. Height = 53
  1839. Anchors = [akLeft, akTop, akRight]
  1840. Caption = 'Other'
  1841. TabOrder = 2
  1842. DesignSize = (
  1843. 389
  1844. 53)
  1845. object RandomSeedFileLabel: TLabel
  1846. Left = 16
  1847. Top = 24
  1848. Width = 86
  1849. Height = 13
  1850. Caption = '&Random seed file:'
  1851. FocusControl = RandomSeedFileEdit
  1852. end
  1853. object RandomSeedFileEdit: TFilenameEdit
  1854. Left = 144
  1855. Top = 19
  1856. Width = 232
  1857. Height = 21
  1858. AcceptFiles = True
  1859. OnBeforeDialog = PathEditBeforeDialog
  1860. OnAfterDialog = PathEditAfterDialog
  1861. DialogKind = dkSave
  1862. DefaultExt = 'rnd'
  1863. Filter = 'Random seed files (*.rnd)|*.rnd|All files (*.*)|*.*'
  1864. DialogOptions = [ofHideReadOnly, ofPathMustExist]
  1865. DialogTitle = 'Select file for random seed'
  1866. ClickKey = 16397
  1867. Anchors = [akLeft, akTop, akRight]
  1868. TabOrder = 0
  1869. Text = 'RandomSeedFileEdit'
  1870. OnChange = ControlChange
  1871. end
  1872. end
  1873. end
  1874. object TransferEnduranceSheet: TTabSheet
  1875. Tag = 14
  1876. HelpType = htKeyword
  1877. HelpKeyword = 'ui_pref_resume'
  1878. Caption = 'Endurance'
  1879. ImageIndex = 13
  1880. TabVisible = False
  1881. DesignSize = (
  1882. 405
  1883. 398)
  1884. object ResumeBox: TGroupBox
  1885. Left = 8
  1886. Top = 8
  1887. Width = 389
  1888. Height = 123
  1889. Anchors = [akLeft, akTop, akRight]
  1890. Caption = 'Enable transfer resume/transfer to temporary filename for'
  1891. TabOrder = 0
  1892. object ResumeThresholdUnitLabel2: TLabel
  1893. Left = 136
  1894. Top = 71
  1895. Width = 12
  1896. Height = 13
  1897. Caption = 'KB'
  1898. FocusControl = ResumeThresholdEdit
  1899. end
  1900. object ResumeOnButton: TRadioButton
  1901. Left = 16
  1902. Top = 21
  1903. Width = 329
  1904. Height = 17
  1905. Caption = 'A&ll files'
  1906. TabOrder = 0
  1907. OnClick = ControlChange
  1908. end
  1909. object ResumeSmartButton: TRadioButton
  1910. Left = 16
  1911. Top = 45
  1912. Width = 156
  1913. Height = 17
  1914. Caption = 'Files abo&ve:'
  1915. TabOrder = 1
  1916. OnClick = ControlChange
  1917. end
  1918. object ResumeOffButton: TRadioButton
  1919. Left = 16
  1920. Top = 93
  1921. Width = 329
  1922. Height = 17
  1923. Caption = 'Di&sable'
  1924. TabOrder = 3
  1925. OnClick = ControlChange
  1926. end
  1927. object ResumeThresholdEdit: TUpDownEdit
  1928. Left = 45
  1929. Top = 67
  1930. Width = 84
  1931. Height = 21
  1932. Alignment = taRightJustify
  1933. Increment = 10.000000000000000000
  1934. MaxValue = 4194304.000000000000000000
  1935. TabOrder = 2
  1936. OnClick = ControlChange
  1937. end
  1938. end
  1939. object SessionReopenGroup: TGroupBox
  1940. Left = 8
  1941. Top = 139
  1942. Width = 389
  1943. Height = 203
  1944. Anchors = [akLeft, akTop, akRight]
  1945. Caption = 'Automatic reconnect'
  1946. TabOrder = 1
  1947. object SessionReopenAutoLabel: TLabel
  1948. Left = 34
  1949. Top = 48
  1950. Width = 82
  1951. Height = 13
  1952. Caption = '&Reconnect after:'
  1953. FocusControl = SessionReopenAutoEdit
  1954. end
  1955. object SessionReopenAutoSecLabel: TLabel
  1956. Left = 271
  1957. Top = 48
  1958. Width = 39
  1959. Height = 13
  1960. Caption = 'seconds'
  1961. FocusControl = SessionReopenAutoEdit
  1962. end
  1963. object SessionReopenTimeoutLabel: TLabel
  1964. Left = 16
  1965. Top = 176
  1966. Width = 110
  1967. Height = 13
  1968. Caption = '&Keep reconnecting for:'
  1969. FocusControl = SessionReopenTimeoutEdit
  1970. end
  1971. object SessionReopenTimeoutSecLabel: TLabel
  1972. Left = 271
  1973. Top = 176
  1974. Width = 39
  1975. Height = 13
  1976. Caption = 'seconds'
  1977. FocusControl = SessionReopenTimeoutEdit
  1978. end
  1979. object SessionReopenAutoStallLabel: TLabel
  1980. Left = 34
  1981. Top = 149
  1982. Width = 82
  1983. Height = 13
  1984. Caption = 'Re&connect after:'
  1985. FocusControl = SessionReopenAutoStallEdit
  1986. end
  1987. object SessionReopenAutoStallSecLabel: TLabel
  1988. Left = 271
  1989. Top = 149
  1990. Width = 39
  1991. Height = 13
  1992. Caption = 'seconds'
  1993. FocusControl = SessionReopenAutoStallEdit
  1994. end
  1995. object SessionReopenAutoIdleLabel: TLabel
  1996. Left = 34
  1997. Top = 99
  1998. Width = 82
  1999. Height = 13
  2000. Caption = 'Reco&nnect after:'
  2001. FocusControl = SessionReopenAutoIdleEdit
  2002. end
  2003. object SessionReopenAutoIdleSecLabel: TLabel
  2004. Left = 271
  2005. Top = 99
  2006. Width = 39
  2007. Height = 13
  2008. Caption = 'seconds'
  2009. FocusControl = SessionReopenAutoIdleEdit
  2010. end
  2011. object SessionReopenAutoCheck: TCheckBox
  2012. Left = 16
  2013. Top = 21
  2014. Width = 337
  2015. Height = 17
  2016. Caption = '&Automatically reconnect session, if it breaks during transfer'
  2017. TabOrder = 0
  2018. OnClick = ControlChange
  2019. end
  2020. object SessionReopenAutoEdit: TUpDownEdit
  2021. Left = 168
  2022. Top = 43
  2023. Width = 97
  2024. Height = 21
  2025. Alignment = taRightJustify
  2026. Increment = 5.000000000000000000
  2027. MaxValue = 300.000000000000000000
  2028. MinValue = 1.000000000000000000
  2029. Value = 5.000000000000000000
  2030. MaxLength = 3
  2031. TabOrder = 1
  2032. end
  2033. object SessionReopenAutoIdleCheck: TCheckBox
  2034. Left = 16
  2035. Top = 72
  2036. Width = 337
  2037. Height = 17
  2038. Caption = 'Automatically reconnect session, if it breaks &while idle'
  2039. TabOrder = 2
  2040. OnClick = ControlChange
  2041. end
  2042. object SessionReopenTimeoutEdit: TUpDownEdit
  2043. Left = 168
  2044. Top = 171
  2045. Width = 97
  2046. Height = 21
  2047. Alignment = taRightJustify
  2048. Increment = 30.000000000000000000
  2049. MaxValue = 86400.000000000000000000
  2050. MaxLength = 5
  2051. TabOrder = 6
  2052. OnGetValue = SessionReopenTimeoutEditGetValue
  2053. OnSetValue = SessionReopenTimeoutEditSetValue
  2054. end
  2055. object SessionReopenAutoStallCheck: TCheckBox
  2056. Left = 16
  2057. Top = 122
  2058. Width = 337
  2059. Height = 17
  2060. Caption = 'Automatically reconnect session, if it &stalls'
  2061. TabOrder = 4
  2062. OnClick = ControlChange
  2063. end
  2064. object SessionReopenAutoStallEdit: TUpDownEdit
  2065. Left = 168
  2066. Top = 144
  2067. Width = 97
  2068. Height = 21
  2069. Alignment = taRightJustify
  2070. Increment = 5.000000000000000000
  2071. MaxValue = 300.000000000000000000
  2072. MinValue = 1.000000000000000000
  2073. Value = 5.000000000000000000
  2074. MaxLength = 3
  2075. TabOrder = 5
  2076. end
  2077. object SessionReopenAutoIdleEdit: TUpDownEdit
  2078. Left = 168
  2079. Top = 94
  2080. Width = 97
  2081. Height = 21
  2082. Alignment = taRightJustify
  2083. Increment = 5.000000000000000000
  2084. MaxValue = 300.000000000000000000
  2085. MinValue = 1.000000000000000000
  2086. Value = 5.000000000000000000
  2087. MaxLength = 3
  2088. TabOrder = 3
  2089. end
  2090. end
  2091. end
  2092. object UpdatesSheet: TTabSheet
  2093. Tag = 15
  2094. HelpType = htKeyword
  2095. HelpKeyword = 'ui_pref_updates'
  2096. Caption = 'Updates'
  2097. ImageIndex = 14
  2098. TabVisible = False
  2099. DesignSize = (
  2100. 405
  2101. 398)
  2102. object UpdatesGroup2: TGroupBox
  2103. Left = 8
  2104. Top = 8
  2105. Width = 389
  2106. Height = 125
  2107. Anchors = [akLeft, akTop, akRight]
  2108. Caption = 'Automatic updates'
  2109. TabOrder = 0
  2110. DesignSize = (
  2111. 389
  2112. 125)
  2113. object Label12: TLabel
  2114. Left = 16
  2115. Top = 70
  2116. Width = 115
  2117. Height = 13
  2118. Caption = 'Automatic check &period:'
  2119. FocusControl = UpdatesPeriodCombo
  2120. end
  2121. object UpdatesAuthenticationEmailLabel: TLabel
  2122. Left = 16
  2123. Top = 21
  2124. Width = 228
  2125. Height = 13
  2126. Caption = '&Email address authorized to automatic updates:'
  2127. FocusControl = UpdatesAuthenticationEmailEdit
  2128. end
  2129. object UpdatesPeriodCombo: TComboBox
  2130. Left = 278
  2131. Top = 67
  2132. Width = 98
  2133. Height = 21
  2134. Style = csDropDownList
  2135. Anchors = [akTop, akRight]
  2136. TabOrder = 2
  2137. Items.Strings = (
  2138. 'Never'
  2139. 'Daily'
  2140. 'Weekly'
  2141. 'Monthly')
  2142. end
  2143. object UpdatesShowOnStartup: TCheckBox
  2144. Left = 16
  2145. Top = 98
  2146. Width = 262
  2147. Height = 17
  2148. Anchors = [akLeft, akTop, akRight]
  2149. Caption = '&Display information about update on startup'
  2150. TabOrder = 3
  2151. OnClick = ControlChange
  2152. end
  2153. object UpdatesAuthenticationEmailEdit: TEdit
  2154. Left = 16
  2155. Top = 38
  2156. Width = 256
  2157. Height = 21
  2158. Anchors = [akLeft, akTop, akRight]
  2159. TabOrder = 0
  2160. OnChange = ControlChange
  2161. OnExit = UpdatesAuthenticationEmailEditExit
  2162. end
  2163. object UpdatesLink: TStaticText
  2164. Left = 280
  2165. Top = 42
  2166. Width = 58
  2167. Height = 17
  2168. Caption = 'Learn more'
  2169. TabOrder = 1
  2170. TabStop = True
  2171. OnClick = UpdatesLinkClick
  2172. end
  2173. end
  2174. object UpdatesProxyGroup: TGroupBox
  2175. Left = 8
  2176. Top = 226
  2177. Width = 389
  2178. Height = 142
  2179. Anchors = [akLeft, akTop, akRight]
  2180. Caption = 'Connection'
  2181. TabOrder = 2
  2182. DesignSize = (
  2183. 389
  2184. 142)
  2185. object UpdatesProxyHostLabel: TLabel
  2186. Left = 34
  2187. Top = 91
  2188. Width = 85
  2189. Height = 13
  2190. Caption = 'Proxy &host name:'
  2191. FocusControl = UpdatesProxyHostEdit
  2192. end
  2193. object UpdatesProxyPortLabel: TLabel
  2194. Left = 280
  2195. Top = 91
  2196. Width = 63
  2197. Height = 13
  2198. Anchors = [akTop, akRight]
  2199. Caption = 'Po&rt number:'
  2200. FocusControl = UpdatesProxyPortEdit
  2201. end
  2202. object UpdatesProxyPortEdit: TUpDownEdit
  2203. Left = 278
  2204. Top = 108
  2205. Width = 98
  2206. Height = 21
  2207. Alignment = taRightJustify
  2208. MaxValue = 65535.000000000000000000
  2209. MinValue = 1.000000000000000000
  2210. Value = 1.000000000000000000
  2211. Anchors = [akTop, akRight]
  2212. TabOrder = 4
  2213. end
  2214. object UpdatesProxyHostEdit: TEdit
  2215. Left = 34
  2216. Top = 108
  2217. Width = 238
  2218. Height = 21
  2219. Anchors = [akLeft, akTop, akRight]
  2220. MaxLength = 50
  2221. TabOrder = 3
  2222. Text = 'UpdatesProxyHostEdit'
  2223. end
  2224. object UpdatesProxyCheck: TRadioButton
  2225. Left = 16
  2226. Top = 69
  2227. Width = 365
  2228. Height = 17
  2229. Anchors = [akLeft, akTop, akRight]
  2230. Caption = '&Use proxy server'
  2231. TabOrder = 2
  2232. OnClick = ControlChange
  2233. end
  2234. object UpdatesDirectCheck: TRadioButton
  2235. Left = 16
  2236. Top = 21
  2237. Width = 365
  2238. Height = 17
  2239. Anchors = [akLeft, akTop, akRight]
  2240. Caption = 'No &proxy'
  2241. TabOrder = 0
  2242. OnClick = ControlChange
  2243. end
  2244. object UpdatesAutoCheck: TRadioButton
  2245. Left = 16
  2246. Top = 45
  2247. Width = 365
  2248. Height = 17
  2249. Anchors = [akLeft, akTop, akRight]
  2250. Caption = '&Automatically detect proxy settings'
  2251. TabOrder = 1
  2252. OnClick = ControlChange
  2253. end
  2254. end
  2255. object UpdatesOptionsGroup: TGroupBox
  2256. Left = 8
  2257. Top = 139
  2258. Width = 389
  2259. Height = 81
  2260. Anchors = [akLeft, akTop, akRight]
  2261. Caption = 'Options'
  2262. TabOrder = 1
  2263. DesignSize = (
  2264. 389
  2265. 81)
  2266. object UpdatesBetaVersionsLabel: TLabel
  2267. Left = 16
  2268. Top = 23
  2269. Width = 118
  2270. Height = 13
  2271. Caption = 'Check for &beta versions:'
  2272. FocusControl = UpdatesBetaVersionsCombo
  2273. end
  2274. object UpdatesBetaVersionsCombo: TComboBox
  2275. Left = 278
  2276. Top = 18
  2277. Width = 98
  2278. Height = 21
  2279. Style = csDropDownList
  2280. Anchors = [akTop, akRight]
  2281. TabOrder = 0
  2282. end
  2283. object CollectUsageCheck: TCheckBox
  2284. Left = 16
  2285. Top = 49
  2286. Width = 262
  2287. Height = 17
  2288. Anchors = [akLeft, akTop, akRight]
  2289. Caption = 'Allow &anonymous usage statistics'
  2290. TabOrder = 1
  2291. OnClick = ControlChange
  2292. end
  2293. object UsageViewButton: TButton
  2294. Left = 278
  2295. Top = 45
  2296. Width = 98
  2297. Height = 25
  2298. Anchors = [akTop, akRight]
  2299. Caption = 'View &statistics'
  2300. TabOrder = 2
  2301. OnClick = UsageViewButtonClick
  2302. end
  2303. end
  2304. end
  2305. object CopyParamListSheet: TTabSheet
  2306. Tag = 16
  2307. HelpType = htKeyword
  2308. HelpKeyword = 'ui_pref_transfer'
  2309. Caption = 'Transfer'
  2310. ImageIndex = 15
  2311. TabVisible = False
  2312. DesignSize = (
  2313. 405
  2314. 398)
  2315. object CopyParamListGroup: TGroupBox
  2316. Left = 8
  2317. Top = 8
  2318. Width = 389
  2319. Height = 380
  2320. Anchors = [akLeft, akTop, akRight, akBottom]
  2321. Caption = 'Transfer settings presets'
  2322. TabOrder = 0
  2323. DesignSize = (
  2324. 389
  2325. 380)
  2326. object CopyParamLabel: TLabel
  2327. Left = 18
  2328. Top = 228
  2329. Width = 354
  2330. Height = 53
  2331. Anchors = [akLeft, akRight, akBottom]
  2332. AutoSize = False
  2333. Caption = 'CopyParamLabel'
  2334. ShowAccelChar = False
  2335. WordWrap = True
  2336. OnClick = CopyParamLabelClick
  2337. end
  2338. object CopyParamListView: TListView
  2339. Left = 16
  2340. Top = 24
  2341. Width = 356
  2342. Height = 198
  2343. Anchors = [akLeft, akTop, akRight, akBottom]
  2344. Columns = <
  2345. item
  2346. Caption = 'Preset description'
  2347. Width = 100
  2348. end
  2349. item
  2350. Caption = 'Auto'
  2351. Width = 40
  2352. end>
  2353. ColumnClick = False
  2354. DoubleBuffered = True
  2355. DragMode = dmAutomatic
  2356. HideSelection = False
  2357. OwnerData = True
  2358. ReadOnly = True
  2359. RowSelect = True
  2360. ParentDoubleBuffered = False
  2361. TabOrder = 0
  2362. ViewStyle = vsReport
  2363. OnCustomDrawItem = CopyParamListViewCustomDrawItem
  2364. OnData = CopyParamListViewData
  2365. OnDblClick = CopyParamListViewDblClick
  2366. OnEndDrag = ListViewEndDrag
  2367. OnDragDrop = CopyParamListViewDragDrop
  2368. OnDragOver = CopyParamListViewDragOver
  2369. OnKeyDown = CopyParamListViewKeyDown
  2370. OnSelectItem = ListViewSelectItem
  2371. OnStartDrag = ListViewStartDrag
  2372. end
  2373. object AddCopyParamButton: TButton
  2374. Left = 16
  2375. Top = 287
  2376. Width = 83
  2377. Height = 25
  2378. Anchors = [akLeft, akBottom]
  2379. Caption = '&Add...'
  2380. TabOrder = 1
  2381. OnClick = AddCopyParamButtonClick
  2382. end
  2383. object RemoveCopyParamButton: TButton
  2384. Left = 16
  2385. Top = 319
  2386. Width = 83
  2387. Height = 25
  2388. Anchors = [akLeft, akBottom]
  2389. Caption = '&Remove'
  2390. TabOrder = 3
  2391. OnClick = RemoveCopyParamButtonClick
  2392. end
  2393. object UpCopyParamButton: TButton
  2394. Left = 289
  2395. Top = 287
  2396. Width = 83
  2397. Height = 25
  2398. Anchors = [akRight, akBottom]
  2399. Caption = '&Up'
  2400. TabOrder = 5
  2401. OnClick = UpDownCopyParamButtonClick
  2402. end
  2403. object DownCopyParamButton: TButton
  2404. Left = 289
  2405. Top = 319
  2406. Width = 83
  2407. Height = 25
  2408. Anchors = [akRight, akBottom]
  2409. Caption = '&Down'
  2410. TabOrder = 6
  2411. OnClick = UpDownCopyParamButtonClick
  2412. end
  2413. object EditCopyParamButton: TButton
  2414. Left = 112
  2415. Top = 287
  2416. Width = 83
  2417. Height = 25
  2418. Anchors = [akLeft, akBottom]
  2419. Caption = '&Edit...'
  2420. TabOrder = 2
  2421. OnClick = EditCopyParamButtonClick
  2422. end
  2423. object DuplicateCopyParamButton: TButton
  2424. Left = 112
  2425. Top = 319
  2426. Width = 83
  2427. Height = 25
  2428. Anchors = [akLeft, akBottom]
  2429. Caption = 'Du&plicate...'
  2430. TabOrder = 4
  2431. OnClick = DuplicateCopyParamButtonClick
  2432. end
  2433. object CopyParamAutoSelectNoticeCheck: TCheckBox
  2434. Left = 18
  2435. Top = 350
  2436. Width = 354
  2437. Height = 17
  2438. Anchors = [akLeft, akRight, akBottom]
  2439. Caption = '&Announce when transfer settings preset is autoselected'
  2440. TabOrder = 7
  2441. OnClick = ControlChange
  2442. end
  2443. end
  2444. end
  2445. object WindowSheet: TTabSheet
  2446. Tag = 17
  2447. HelpType = htKeyword
  2448. HelpKeyword = 'ui_pref_window'
  2449. Caption = 'Window'
  2450. ImageIndex = 16
  2451. TabVisible = False
  2452. DesignSize = (
  2453. 405
  2454. 398)
  2455. object PathInCaptionGroup: TGroupBox
  2456. Left = 8
  2457. Top = 131
  2458. Width = 389
  2459. Height = 94
  2460. Anchors = [akLeft, akTop, akRight]
  2461. Caption = 'Path in window title'
  2462. TabOrder = 1
  2463. DesignSize = (
  2464. 389
  2465. 94)
  2466. object PathInCaptionFullButton: TRadioButton
  2467. Left = 16
  2468. Top = 21
  2469. Width = 361
  2470. Height = 17
  2471. Anchors = [akLeft, akTop, akRight]
  2472. Caption = 'Show &full path'
  2473. TabOrder = 0
  2474. end
  2475. object PathInCaptionShortButton: TRadioButton
  2476. Left = 16
  2477. Top = 44
  2478. Width = 361
  2479. Height = 17
  2480. Anchors = [akLeft, akTop, akRight]
  2481. Caption = 'Sho&w short path'
  2482. TabOrder = 1
  2483. end
  2484. object PathInCaptionNoneButton: TRadioButton
  2485. Left = 16
  2486. Top = 67
  2487. Width = 361
  2488. Height = 17
  2489. Anchors = [akLeft, akTop, akRight]
  2490. Caption = 'Do &not show'
  2491. TabOrder = 2
  2492. end
  2493. end
  2494. object WindowMiscellaneousGroup: TGroupBox
  2495. Left = 8
  2496. Top = 231
  2497. Width = 389
  2498. Height = 126
  2499. Anchors = [akLeft, akTop, akRight]
  2500. Caption = 'Miscellaneous'
  2501. TabOrder = 2
  2502. DesignSize = (
  2503. 389
  2504. 126)
  2505. object MinimizeToTrayCheck: TCheckBox
  2506. Left = 16
  2507. Top = 21
  2508. Width = 361
  2509. Height = 17
  2510. Anchors = [akLeft, akTop, akRight]
  2511. Caption = '&Minimize main window to taskbar status area (system tray)'
  2512. TabOrder = 0
  2513. OnClick = ControlChange
  2514. end
  2515. object ExternalSessionInExistingInstanceCheck: TCheckBox
  2516. Left = 16
  2517. Top = 45
  2518. Width = 361
  2519. Height = 17
  2520. Anchors = [akLeft, akTop, akRight]
  2521. Caption = 'Open new externally initiated sessions in &existing window'
  2522. TabOrder = 1
  2523. OnClick = ControlChange
  2524. end
  2525. object KeepOpenWhenNoSessionCheck: TCheckBox
  2526. Left = 16
  2527. Top = 69
  2528. Width = 361
  2529. Height = 17
  2530. Anchors = [akLeft, akTop, akRight]
  2531. Caption = '&Keep main window open when the last session is closed'
  2532. TabOrder = 2
  2533. OnClick = ControlChange
  2534. end
  2535. object ShowTipsCheck: TCheckBox
  2536. Left = 16
  2537. Top = 93
  2538. Width = 361
  2539. Height = 17
  2540. Anchors = [akLeft, akTop, akRight]
  2541. Caption = '&Display tips on startup'
  2542. TabOrder = 3
  2543. OnClick = ControlChange
  2544. end
  2545. end
  2546. object WorkspacesGroup: TGroupBox
  2547. Left = 8
  2548. Top = 8
  2549. Width = 389
  2550. Height = 117
  2551. Anchors = [akLeft, akTop, akRight]
  2552. Caption = 'Workspaces'
  2553. TabOrder = 0
  2554. DesignSize = (
  2555. 389
  2556. 117)
  2557. object AutoWorkspaceLabel: TLabel
  2558. Left = 45
  2559. Top = 45
  2560. Width = 122
  2561. Height = 13
  2562. Caption = '&Default workspace name:'
  2563. FocusControl = AutoWorkspaceCombo
  2564. end
  2565. object AutoSaveWorkspaceCheck: TCheckBox
  2566. Left = 16
  2567. Top = 21
  2568. Width = 361
  2569. Height = 17
  2570. Anchors = [akLeft, akTop, akRight]
  2571. Caption = '&Automatically save workspace on exit'
  2572. TabOrder = 0
  2573. OnClick = ControlChange
  2574. end
  2575. object AutoWorkspaceCombo: TComboBox
  2576. Left = 45
  2577. Top = 61
  2578. Width = 332
  2579. Height = 21
  2580. Anchors = [akLeft, akTop, akRight]
  2581. DropDownCount = 16
  2582. TabOrder = 1
  2583. OnClick = ControlChange
  2584. end
  2585. object AutoSaveWorkspacePasswordsCheck: TCheckBox
  2586. Left = 45
  2587. Top = 87
  2588. Width = 332
  2589. Height = 17
  2590. Anchors = [akLeft, akTop, akRight]
  2591. Caption = 'Save &passwords (not recommended) X'
  2592. TabOrder = 2
  2593. OnClick = ControlChange
  2594. end
  2595. end
  2596. end
  2597. object SecuritySheet: TTabSheet
  2598. Tag = 19
  2599. HelpType = htKeyword
  2600. HelpKeyword = 'ui_pref_security'
  2601. Caption = 'Security'
  2602. ImageIndex = 18
  2603. TabVisible = False
  2604. DesignSize = (
  2605. 405
  2606. 398)
  2607. object MasterPasswordGroup: TGroupBox
  2608. Left = 8
  2609. Top = 8
  2610. Width = 389
  2611. Height = 92
  2612. Anchors = [akLeft, akTop, akRight]
  2613. Caption = 'Master password'
  2614. TabOrder = 0
  2615. DesignSize = (
  2616. 389
  2617. 92)
  2618. object SetMasterPasswordButton: TButton
  2619. Left = 16
  2620. Top = 51
  2621. Width = 357
  2622. Height = 25
  2623. Anchors = [akLeft, akTop, akRight]
  2624. Caption = '&Change master password...'
  2625. TabOrder = 1
  2626. OnClick = SetMasterPasswordButtonClick
  2627. end
  2628. object UseMasterPasswordCheck: TCheckBox
  2629. Left = 16
  2630. Top = 21
  2631. Width = 356
  2632. Height = 17
  2633. Anchors = [akLeft, akTop, akRight]
  2634. Caption = '&Use master password'
  2635. TabOrder = 0
  2636. OnClick = UseMasterPasswordCheckClick
  2637. end
  2638. end
  2639. object PasswordGroupBox: TGroupBox
  2640. Left = 8
  2641. Top = 106
  2642. Width = 389
  2643. Height = 52
  2644. Anchors = [akLeft, akTop, akRight]
  2645. Caption = 'Session password'
  2646. TabOrder = 1
  2647. DesignSize = (
  2648. 389
  2649. 52)
  2650. object SessionRememberPasswordCheck: TCheckBox
  2651. Left = 16
  2652. Top = 21
  2653. Width = 356
  2654. Height = 17
  2655. Anchors = [akLeft, akTop, akRight]
  2656. Caption = 'Remember &password for duration of session'
  2657. TabOrder = 0
  2658. end
  2659. end
  2660. end
  2661. object IntegrationAppSheet: TTabSheet
  2662. Tag = 18
  2663. HelpType = htKeyword
  2664. HelpKeyword = 'ui_pref_integration_app'
  2665. Caption = 'Applications'
  2666. ImageIndex = 17
  2667. TabVisible = False
  2668. DesignSize = (
  2669. 405
  2670. 398)
  2671. object ExternalAppsGroup: TGroupBox
  2672. Left = 8
  2673. Top = 8
  2674. Width = 389
  2675. Height = 208
  2676. Anchors = [akLeft, akTop, akRight]
  2677. Caption = 'External applications'
  2678. TabOrder = 0
  2679. DesignSize = (
  2680. 389
  2681. 208)
  2682. object PuttyPathLabel: TLabel
  2683. Left = 16
  2684. Top = 21
  2685. Width = 131
  2686. Height = 13
  2687. Caption = 'PuTTY/Terminal &client path:'
  2688. FocusControl = PuttyPathEdit
  2689. end
  2690. object PuttyRegistryStorageKeyLabel: TLabel
  2691. Left = 16
  2692. Top = 158
  2693. Width = 94
  2694. Height = 13
  2695. Caption = 'PuTTY registry &key:'
  2696. FocusControl = PuttyRegistryStorageKeyEdit
  2697. end
  2698. object PuttyPathEdit: THistoryComboBox
  2699. Left = 16
  2700. Top = 38
  2701. Width = 281
  2702. Height = 21
  2703. Anchors = [akLeft, akTop, akRight]
  2704. TabOrder = 0
  2705. OnChange = PuttyPathEditChange
  2706. OnExit = PuttyPathEditExit
  2707. end
  2708. object PuttyPasswordCheck2: TCheckBox
  2709. Left = 24
  2710. Top = 83
  2711. Width = 353
  2712. Height = 17
  2713. Anchors = [akLeft, akTop, akRight]
  2714. Caption = '&Remember session password and pass it to PuTTY (SSH)'
  2715. TabOrder = 3
  2716. end
  2717. object AutoOpenInPuttyCheck: TCheckBox
  2718. Left = 24
  2719. Top = 133
  2720. Width = 353
  2721. Height = 17
  2722. Anchors = [akLeft, akTop, akRight]
  2723. Caption = 'Automatically &open new sessions in PuTTY'
  2724. TabOrder = 5
  2725. end
  2726. object PuttyPathBrowseButton: TButton
  2727. Left = 303
  2728. Top = 36
  2729. Width = 75
  2730. Height = 25
  2731. Anchors = [akTop, akRight]
  2732. Caption = 'B&rowse...'
  2733. TabOrder = 1
  2734. OnClick = PuttyPathBrowseButtonClick
  2735. end
  2736. object TelnetForFtpInPuttyCheck: TCheckBox
  2737. Left = 24
  2738. Top = 108
  2739. Width = 353
  2740. Height = 17
  2741. Anchors = [akLeft, akTop, akRight]
  2742. Caption = 'Open &Telnet sessions in PuTTY for FTP sessions'
  2743. TabOrder = 4
  2744. end
  2745. object PuttyPathHintText: TStaticText
  2746. Left = 184
  2747. Top = 61
  2748. Width = 113
  2749. Height = 16
  2750. Alignment = taRightJustify
  2751. Anchors = [akTop, akRight]
  2752. AutoSize = False
  2753. Caption = '&patterns'
  2754. TabOrder = 2
  2755. TabStop = True
  2756. end
  2757. object PuttyRegistryStorageKeyEdit: THistoryComboBox
  2758. Left = 16
  2759. Top = 174
  2760. Width = 362
  2761. Height = 21
  2762. Style = csDropDownList
  2763. Anchors = [akLeft, akTop, akRight]
  2764. TabOrder = 6
  2765. OnChange = ControlChange
  2766. end
  2767. end
  2768. end
  2769. object NetworkSheet: TTabSheet
  2770. Tag = 20
  2771. HelpType = htKeyword
  2772. HelpKeyword = 'ui_pref_network'
  2773. Caption = 'Network'
  2774. ImageIndex = 20
  2775. TabVisible = False
  2776. DesignSize = (
  2777. 405
  2778. 398)
  2779. object ExternalIpAddressGroupBox: TGroupBox
  2780. Left = 8
  2781. Top = 8
  2782. Width = 389
  2783. Height = 98
  2784. Anchors = [akLeft, akTop, akRight]
  2785. Caption = 'External IP address'
  2786. TabOrder = 0
  2787. DesignSize = (
  2788. 389
  2789. 98)
  2790. object RetrieveExternalIpAddressButton: TRadioButton
  2791. Left = 16
  2792. Top = 21
  2793. Width = 361
  2794. Height = 17
  2795. Anchors = [akLeft, akTop, akRight]
  2796. Caption = 'Retrieve external IP address from &operating system'
  2797. TabOrder = 0
  2798. OnClick = ControlChange
  2799. end
  2800. object CustomExternalIpAddressButton: TRadioButton
  2801. Left = 16
  2802. Top = 45
  2803. Width = 361
  2804. Height = 17
  2805. Anchors = [akLeft, akTop, akRight]
  2806. Caption = 'Use &following external IP address:'
  2807. TabOrder = 1
  2808. OnClick = ControlChange
  2809. end
  2810. object CustomExternalIpAddressEdit: TEdit
  2811. Left = 45
  2812. Top = 67
  2813. Width = 136
  2814. Height = 21
  2815. TabOrder = 2
  2816. OnClick = ControlChange
  2817. end
  2818. end
  2819. object ConnectionsGroup: TGroupBox
  2820. Left = 8
  2821. Top = 112
  2822. Width = 389
  2823. Height = 53
  2824. Anchors = [akLeft, akTop, akRight]
  2825. Caption = 'Connections'
  2826. TabOrder = 1
  2827. DesignSize = (
  2828. 389
  2829. 53)
  2830. object TryFtpWhenSshFailsCheck: TCheckBox
  2831. Left = 16
  2832. Top = 21
  2833. Width = 361
  2834. Height = 17
  2835. Anchors = [akLeft, akTop, akRight]
  2836. Caption = 'When SFTP connection is &rejected, knock FTP port'
  2837. TabOrder = 0
  2838. OnClick = ControlChange
  2839. end
  2840. end
  2841. end
  2842. object PanelRemoteSheet: TTabSheet
  2843. Tag = 21
  2844. HelpType = htKeyword
  2845. HelpKeyword = 'ui_pref_panels_remote'
  2846. Caption = 'Remote'
  2847. ImageIndex = 20
  2848. TabVisible = False
  2849. DesignSize = (
  2850. 405
  2851. 398)
  2852. object PanelsRemoteDirectoryGroup: TGroupBox
  2853. Left = 8
  2854. Top = 8
  2855. Width = 389
  2856. Height = 99
  2857. Anchors = [akLeft, akTop, akRight]
  2858. Caption = 'Remote panel'
  2859. TabOrder = 0
  2860. DesignSize = (
  2861. 389
  2862. 99)
  2863. object RefreshRemoteDirectoryUnitLabel: TLabel
  2864. Left = 336
  2865. Top = 69
  2866. Width = 5
  2867. Height = 13
  2868. Caption = 's'
  2869. ShowAccelChar = False
  2870. end
  2871. object ShowInaccesibleDirectoriesCheck: TCheckBox
  2872. Left = 16
  2873. Top = 21
  2874. Width = 357
  2875. Height = 17
  2876. Anchors = [akLeft, akTop, akRight]
  2877. Caption = 'Show in&accessible directories'
  2878. TabOrder = 0
  2879. OnClick = ControlChange
  2880. end
  2881. object AutoReadDirectoryAfterOpCheck: TCheckBox
  2882. Left = 16
  2883. Top = 45
  2884. Width = 357
  2885. Height = 17
  2886. Anchors = [akLeft, akTop, akRight]
  2887. Caption = 'Auto&matically refresh directory after operation (Ctrl+Alt+R)'
  2888. TabOrder = 1
  2889. OnClick = ControlChange
  2890. end
  2891. object RefreshRemotePanelCheck: TCheckBox
  2892. Left = 16
  2893. Top = 69
  2894. Width = 266
  2895. Height = 17
  2896. Anchors = [akLeft, akTop, akRight]
  2897. Caption = 'Refresh remote panel &every'
  2898. TabOrder = 2
  2899. OnClick = ControlChange
  2900. end
  2901. object RefreshRemotePanelIntervalEdit: TUpDownEdit
  2902. Left = 256
  2903. Top = 67
  2904. Width = 75
  2905. Height = 21
  2906. Alignment = taRightJustify
  2907. Increment = 15.000000000000000000
  2908. MaxValue = 9999.000000000000000000
  2909. MinValue = 10.000000000000000000
  2910. MaxLength = 3
  2911. TabOrder = 3
  2912. OnChange = ControlChange
  2913. end
  2914. end
  2915. end
  2916. object PanelLocalSheet: TTabSheet
  2917. Tag = 22
  2918. HelpType = htKeyword
  2919. HelpKeyword = 'ui_pref_panels_local'
  2920. Caption = 'Local'
  2921. ImageIndex = 20
  2922. TabVisible = False
  2923. DesignSize = (
  2924. 405
  2925. 398)
  2926. object LocalPanelGroup: TGroupBox
  2927. Left = 8
  2928. Top = 8
  2929. Width = 389
  2930. Height = 99
  2931. Anchors = [akLeft, akTop, akRight]
  2932. Caption = 'Local panel'
  2933. TabOrder = 0
  2934. DesignSize = (
  2935. 389
  2936. 99)
  2937. object PreserveLocalDirectoryCheck: TCheckBox
  2938. Left = 16
  2939. Top = 45
  2940. Width = 357
  2941. Height = 17
  2942. Anchors = [akLeft, akTop, akRight]
  2943. Caption = 'Do not &change state when switching sessions'
  2944. TabOrder = 1
  2945. OnClick = ControlChange
  2946. end
  2947. object SystemContextMenuCheck: TCheckBox
  2948. Left = 16
  2949. Top = 69
  2950. Width = 357
  2951. Height = 17
  2952. Anchors = [akLeft, akTop, akRight]
  2953. Caption = 'Use &system file context menu'
  2954. TabOrder = 2
  2955. OnClick = ControlChange
  2956. end
  2957. object DeleteToRecycleBinCheck: TCheckBox
  2958. Left = 16
  2959. Top = 21
  2960. Width = 357
  2961. Height = 17
  2962. Anchors = [akLeft, akTop, akRight]
  2963. Caption = '&Delete files to recycle bin'
  2964. TabOrder = 0
  2965. OnClick = ControlChange
  2966. end
  2967. end
  2968. end
  2969. object LanguagesSheet: TTabSheet
  2970. Tag = 23
  2971. Caption = 'Languages'
  2972. ImageIndex = 21
  2973. TabVisible = False
  2974. DesignSize = (
  2975. 405
  2976. 398)
  2977. object LanguagesGroup: TGroupBox
  2978. Left = 8
  2979. Top = 8
  2980. Width = 389
  2981. Height = 380
  2982. Anchors = [akLeft, akTop, akRight, akBottom]
  2983. Caption = 'Languages'
  2984. TabOrder = 0
  2985. DesignSize = (
  2986. 389
  2987. 380)
  2988. object LanguageChangeLabel: TLabel
  2989. Left = 16
  2990. Top = 349
  2991. Width = 177
  2992. Height = 13
  2993. Anchors = [akLeft, akBottom]
  2994. Caption = 'Changes will apply on the next start.'
  2995. ShowAccelChar = False
  2996. end
  2997. object LanguagesView: TListView
  2998. Left = 16
  2999. Top = 24
  3000. Width = 356
  3001. Height = 314
  3002. Anchors = [akLeft, akTop, akRight, akBottom]
  3003. Columns = <
  3004. item
  3005. AutoSize = True
  3006. end>
  3007. DoubleBuffered = True
  3008. HideSelection = False
  3009. ReadOnly = True
  3010. RowSelect = True
  3011. ParentDoubleBuffered = False
  3012. ShowColumnHeaders = False
  3013. TabOrder = 0
  3014. ViewStyle = vsReport
  3015. OnCustomDrawItem = LanguagesViewCustomDrawItem
  3016. OnSelectItem = ListViewSelectItem
  3017. end
  3018. object LanguagesGetMoreButton: TButton
  3019. Left = 273
  3020. Top = 344
  3021. Width = 100
  3022. Height = 25
  3023. Anchors = [akRight, akBottom]
  3024. Caption = 'Get &more...'
  3025. TabOrder = 1
  3026. OnClick = LanguagesGetMoreButtonClick
  3027. end
  3028. end
  3029. end
  3030. object EditorInternalSheet: TTabSheet
  3031. Tag = 24
  3032. HelpType = htKeyword
  3033. HelpKeyword = 'ui_pref_editor_internal'
  3034. Caption = 'Internal editor'
  3035. TabVisible = False
  3036. DesignSize = (
  3037. 405
  3038. 398)
  3039. object InternalEditorGroup: TGroupBox
  3040. Left = 8
  3041. Top = 14
  3042. Width = 389
  3043. Height = 146
  3044. Anchors = [akLeft, akRight, akBottom]
  3045. Caption = 'Display'
  3046. TabOrder = 0
  3047. DesignSize = (
  3048. 389
  3049. 146)
  3050. object Label9: TLabel
  3051. Left = 16
  3052. Top = 47
  3053. Width = 71
  3054. Height = 13
  3055. Caption = '&Tabulator size:'
  3056. FocusControl = EditorTabSizeEdit
  3057. end
  3058. object Label11: TLabel
  3059. Left = 16
  3060. Top = 95
  3061. Width = 85
  3062. Height = 13
  3063. Caption = 'Default en&coding:'
  3064. FocusControl = EditorEncodingCombo
  3065. end
  3066. object EditorWordWrapCheck: TCheckBox
  3067. Left = 16
  3068. Top = 20
  3069. Width = 158
  3070. Height = 17
  3071. Anchors = [akLeft, akTop, akRight]
  3072. Caption = '&Wrap long lines'
  3073. TabOrder = 0
  3074. OnClick = ControlChange
  3075. end
  3076. object EditorTabSizeEdit: TUpDownEdit
  3077. Left = 16
  3078. Top = 64
  3079. Width = 145
  3080. Height = 21
  3081. Alignment = taRightJustify
  3082. MaxValue = 99.000000000000000000
  3083. MinValue = 1.000000000000000000
  3084. Value = 1.000000000000000000
  3085. Anchors = [akLeft, akTop, akRight]
  3086. MaxLength = 2
  3087. TabOrder = 1
  3088. OnChange = ControlChange
  3089. end
  3090. object EditorEncodingCombo: TComboBox
  3091. Left = 16
  3092. Top = 112
  3093. Width = 145
  3094. Height = 21
  3095. Style = csDropDownList
  3096. Anchors = [akLeft, akTop, akRight]
  3097. MaxLength = 2
  3098. TabOrder = 2
  3099. OnChange = ControlChange
  3100. end
  3101. end
  3102. object FontGroup: TGroupBox
  3103. Left = 8
  3104. Top = 166
  3105. Width = 389
  3106. Height = 118
  3107. Anchors = [akLeft, akRight, akBottom]
  3108. Caption = 'Font'
  3109. TabOrder = 1
  3110. DesignSize = (
  3111. 389
  3112. 118)
  3113. object EditorFontLabel: TLabel
  3114. Left = 172
  3115. Top = 18
  3116. Width = 204
  3117. Height = 87
  3118. Anchors = [akTop, akRight]
  3119. AutoSize = False
  3120. Caption = 'EditorFontLabel'
  3121. Color = clWhite
  3122. ParentColor = False
  3123. ShowAccelChar = False
  3124. Transparent = False
  3125. OnDblClick = EditorFontLabelDblClick
  3126. end
  3127. object EditorFontButton: TButton
  3128. Left = 16
  3129. Top = 18
  3130. Width = 145
  3131. Height = 25
  3132. Anchors = [akTop, akRight]
  3133. Caption = '&Select font...'
  3134. TabOrder = 0
  3135. OnClick = EditorFontButtonClick
  3136. end
  3137. object EditorFontColorButton: TButton
  3138. Left = 16
  3139. Top = 49
  3140. Width = 145
  3141. Height = 25
  3142. Anchors = [akTop, akRight]
  3143. Caption = '&Text color'
  3144. TabOrder = 1
  3145. OnClick = EditorFontColorButtonClick
  3146. end
  3147. object EditorBackgroundColorButton: TButton
  3148. Left = 16
  3149. Top = 80
  3150. Width = 145
  3151. Height = 25
  3152. Anchors = [akTop, akRight]
  3153. Caption = 'Default &background'
  3154. TabOrder = 2
  3155. OnClick = EditorBackgroundColorButtonClick
  3156. end
  3157. end
  3158. end
  3159. object FileColorsSheet: TTabSheet
  3160. Tag = 25
  3161. HelpType = htKeyword
  3162. HelpKeyword = 'ui_pref_file_colors'
  3163. Caption = 'File colors'
  3164. ImageIndex = 23
  3165. TabVisible = False
  3166. DesignSize = (
  3167. 405
  3168. 398)
  3169. object FileColorsGroup: TGroupBox
  3170. Left = 8
  3171. Top = 8
  3172. Width = 389
  3173. Height = 380
  3174. Anchors = [akLeft, akTop, akRight, akBottom]
  3175. Caption = 'File colors'
  3176. TabOrder = 0
  3177. DesignSize = (
  3178. 389
  3179. 380)
  3180. object FileColorsView: TListView
  3181. Left = 16
  3182. Top = 24
  3183. Width = 356
  3184. Height = 283
  3185. Anchors = [akLeft, akTop, akRight, akBottom]
  3186. Columns = <
  3187. item
  3188. end>
  3189. ColumnClick = False
  3190. DoubleBuffered = True
  3191. DragMode = dmAutomatic
  3192. HideSelection = False
  3193. OwnerData = True
  3194. ReadOnly = True
  3195. RowSelect = True
  3196. ParentDoubleBuffered = False
  3197. ParentShowHint = False
  3198. ShowColumnHeaders = False
  3199. ShowHint = False
  3200. TabOrder = 0
  3201. ViewStyle = vsReport
  3202. OnCustomDrawItem = FileColorsViewCustomDrawItem
  3203. OnData = FileColorsViewData
  3204. OnDblClick = FileColorsViewDblClick
  3205. OnEndDrag = ListViewEndDrag
  3206. OnDragDrop = FileColorsViewDragDrop
  3207. OnDragOver = ListViewDragOver
  3208. OnKeyDown = FileColorsViewKeyDown
  3209. OnSelectItem = ListViewSelectItem
  3210. OnStartDrag = ListViewStartDrag
  3211. end
  3212. object AddFileColorButton: TButton
  3213. Left = 16
  3214. Top = 313
  3215. Width = 83
  3216. Height = 25
  3217. Anchors = [akLeft, akBottom]
  3218. Caption = '&Add...'
  3219. TabOrder = 1
  3220. OnClick = AddEditFileColorButtonClick
  3221. end
  3222. object RemoveFileColorButton: TButton
  3223. Left = 16
  3224. Top = 344
  3225. Width = 83
  3226. Height = 25
  3227. Anchors = [akLeft, akBottom]
  3228. Caption = '&Remove'
  3229. TabOrder = 3
  3230. OnClick = RemoveFileColorButtonClick
  3231. end
  3232. object UpFileColorButton: TButton
  3233. Left = 290
  3234. Top = 313
  3235. Width = 83
  3236. Height = 25
  3237. Anchors = [akRight, akBottom]
  3238. Caption = '&Up'
  3239. TabOrder = 4
  3240. OnClick = UpDownFileColorButtonClick
  3241. end
  3242. object DownFileColorButton: TButton
  3243. Left = 290
  3244. Top = 344
  3245. Width = 83
  3246. Height = 25
  3247. Anchors = [akRight, akBottom]
  3248. Caption = '&Down'
  3249. TabOrder = 5
  3250. OnClick = UpDownFileColorButtonClick
  3251. end
  3252. object EditFileColorButton: TButton
  3253. Left = 112
  3254. Top = 313
  3255. Width = 83
  3256. Height = 25
  3257. Anchors = [akLeft, akBottom]
  3258. Caption = '&Edit...'
  3259. TabOrder = 2
  3260. OnClick = AddEditFileColorButtonClick
  3261. end
  3262. end
  3263. end
  3264. end
  3265. object LeftPanel: TPanel
  3266. Left = 0
  3267. Top = 0
  3268. Width = 132
  3269. Height = 408
  3270. Align = alLeft
  3271. BevelOuter = bvNone
  3272. TabOrder = 0
  3273. DesignSize = (
  3274. 132
  3275. 408)
  3276. object NavigationTree: TTreeView
  3277. Left = 8
  3278. Top = 9
  3279. Width = 116
  3280. Height = 398
  3281. Anchors = [akLeft, akTop, akRight, akBottom]
  3282. DoubleBuffered = True
  3283. HideSelection = False
  3284. HotTrack = True
  3285. Indent = 19
  3286. ParentDoubleBuffered = False
  3287. ReadOnly = True
  3288. ShowButtons = False
  3289. ShowRoot = False
  3290. TabOrder = 0
  3291. OnChange = NavigationTreeChange
  3292. OnChanging = NavigationTreeChanging
  3293. OnCollapsing = NavigationTreeCollapsing
  3294. Items.NodeData = {
  3295. 030B000000360000000000000001000000FFFFFFFFFFFFFFFF00000000000000
  3296. 0005000000010C45006E007600690072006F006E006D0065006E007400580032
  3297. 0000000000000003000000FFFFFFFFFFFFFFFF00000000000000000000000001
  3298. 0A49006E00740065007200660061006300650058002C00000000000000110000
  3299. 00FFFFFFFFFFFFFFFF0000000000000000000000000107570069006E0064006F
  3300. 0077005800320000000000000005000000FFFFFFFFFFFFFFFF00000000000000
  3301. 0000000000010A43006F006D006D0061006E0064006500720058003000000000
  3302. 00000006000000FFFFFFFFFFFFFFFF0000000000000000000000000109450078
  3303. 0070006C006F007200650072005800320000000000000017000000FFFFFFFFFF
  3304. FFFFFF000000000000000000000000010A4C0061006E00670075006100670065
  3305. 00730058002C0000000000000004000000FFFFFFFFFFFFFFFF00000000000000
  3306. 00030000000107500061006E0065006C00730058003600000000000000190000
  3307. 00FFFFFFFFFFFFFFFF000000000000000000000000010C460069006C00650020
  3308. 0063006F006C006F007200730058002C0000000000000015000000FFFFFFFFFF
  3309. FFFFFF0000000000000000000000000107520065006D006F007400650058002A
  3310. 0000000000000016000000FFFFFFFFFFFFFFFF00000000000000000000000001
  3311. 064C006F00630061006C0058002C0000000000000008000000FFFFFFFFFFFFFF
  3312. FF000000000000000001000000010745006400690074006F00720058003E0000
  3313. 000000000018000000FFFFFFFFFFFFFFFF000000000000000000000000011049
  3314. 006E007400650072006E0061006C00200065006400690074006F007200580030
  3315. 0000000000000010000000FFFFFFFFFFFFFFFF00000000000000000300000001
  3316. 095400720061006E007300660065007200580030000000000000000B000000FF
  3317. FFFFFFFFFFFFFF00000000000000000000000001094400720061006700440072
  3318. 006F007000580034000000000000000C000000FFFFFFFFFFFFFFFF0000000000
  3319. 00000000000000010B4200610063006B00670072006F0075006E00640058002C
  3320. 000000000000000E000000FFFFFFFFFFFFFFFF00000000000000000000000001
  3321. 0752006500730075006D00650058002E0000000000000014000000FFFFFFFFFF
  3322. FFFFFF00000000000000000000000001084E006500740077006F0072006B0058
  3323. 00300000000000000013000000FFFFFFFFFFFFFFFF0000000000000000000000
  3324. 0001095300650063007500720069007400790058002E00000000000000020000
  3325. 00FFFFFFFFFFFFFFFF00000000000000000000000001084C006F006700670069
  3326. 006E0067005800360000000000000009000000FFFFFFFFFFFFFFFF0000000000
  3327. 00000001000000010C49006E0074006500670072006100740069006F006E0058
  3328. 00380000000000000012000000FFFFFFFFFFFFFFFF0000000000000000000000
  3329. 00010D4100700070006C00690063006100740069006F006E0073005800300000
  3330. 00000000000A000000FFFFFFFFFFFFFFFF000000000000000000000000010943
  3331. 006F006D006D0061006E006400730058002E000000000000000D000000FFFFFF
  3332. FFFFFFFFFF0000000000000000000000000108530074006F0072006100670065
  3333. 0058002E000000000000000F000000FFFFFFFFFFFFFFFF000000000000000000
  3334. 000000010855007000640061007400650073005800}
  3335. end
  3336. end
  3337. end
  3338. object HelpButton: TButton
  3339. Left = 458
  3340. Top = 414
  3341. Width = 75
  3342. Height = 25
  3343. Anchors = [akRight, akBottom]
  3344. Caption = 'Help'
  3345. TabOrder = 3
  3346. OnClick = HelpButtonClick
  3347. end
  3348. object ComponentsPanel: TPanel
  3349. Left = 0
  3350. Top = 445
  3351. Width = 545
  3352. Height = 50
  3353. Align = alBottom
  3354. BevelOuter = bvNone
  3355. Color = clWindow
  3356. ParentBackground = False
  3357. TabOrder = 4
  3358. end
  3359. object RegisterAsUrlHandlerMenu: TPopupMenu
  3360. Left = 56
  3361. Top = 443
  3362. object RegisterAsUrlHandlerItem: TMenuItem
  3363. Caption = 'Register'
  3364. OnClick = RegisterAsUrlHandlerItemClick
  3365. end
  3366. object MakeDefaultHandlerItem: TMenuItem
  3367. Caption = 'Make WinSCP &default handler...'
  3368. OnClick = MakeDefaultHandlerItemClick
  3369. end
  3370. object UnregisterForDefaultProtocolsItem: TMenuItem
  3371. Caption = 'Unregister'
  3372. OnClick = UnregisterForDefaultProtocolsItemClick
  3373. end
  3374. end
  3375. object AddCommandMenu: TPopupMenu
  3376. Left = 208
  3377. Top = 443
  3378. object AddCustomCommandMenuItem: TMenuItem
  3379. Caption = 'Add &Custom Command...'
  3380. OnClick = AddCustomCommandMenuItemClick
  3381. end
  3382. object AddExtensionMenuItem: TMenuItem
  3383. Caption = 'Add &Extension...'
  3384. OnClick = AddExtensionMenuItemClick
  3385. end
  3386. end
  3387. end