NonVisual.dfm 108 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621
  1. object NonVisualDataModule: TNonVisualDataModule
  2. OldCreateOrder = False
  3. Height = 502
  4. Width = 624
  5. object RemoteFilePopup: TTBXPopupMenu
  6. Images = GlyphsModule.ExplorerImages
  7. Options = [tboShowHint]
  8. Left = 424
  9. Top = 336
  10. object TBXItem23: TTBXItem
  11. Action = CurrentAddEditLinkContextAction
  12. end
  13. object RemoteOpenMenuItem: TTBXItem
  14. Action = CurrentOpenAction
  15. end
  16. object RemoteEditMenuItem: TTBXSubmenuItem
  17. Action = CurrentEditFocusedAction
  18. DropdownCombo = True
  19. OnPopup = FocusedEditMenuItemPopup
  20. end
  21. object RemoteCopyMenuItem: TTBXSubmenuItem
  22. Action = RemoteCopyFocusedAction
  23. DropdownCombo = True
  24. object TBXItem72: TTBXItem
  25. Action = RemoteCopyFocusedNonQueueAction
  26. end
  27. object TBXItem69: TTBXItem
  28. Action = RemoteCopyFocusedQueueAction
  29. end
  30. object TBXSeparatorItem9: TTBXSeparatorItem
  31. end
  32. object Moveto1: TTBXItem
  33. Action = RemoteMoveFocusedAction
  34. end
  35. end
  36. object Duplicate3: TTBXItem
  37. Action = RemoteCopyToFocusedAction
  38. end
  39. object Moveto6: TTBXItem
  40. Action = RemoteMoveToFocusedAction
  41. end
  42. object Delete1: TTBXItem
  43. Action = CurrentDeleteFocusedAction
  44. end
  45. object Rename1: TTBXItem
  46. Action = CurrentRenameAction
  47. end
  48. object TBXSeparatorItem12: TTBXSeparatorItem
  49. end
  50. object TBXItem82: TTBXItem
  51. Action = CurrentCopyToClipboardFocusedAction2
  52. end
  53. object N45: TTBXSeparatorItem
  54. end
  55. object RemoteFilePopupCustomCommandsMenu: TTBXSubmenuItem
  56. Action = CustomCommandsFileAction
  57. object TTBXItem
  58. end
  59. end
  60. object FileNames3: TTBXSubmenuItem
  61. Caption = '&File Names'
  62. HelpKeyword = 'filenames'
  63. Hint = 'Operations with name(s) of selected file(s)'
  64. object InserttoCommandLine2: TTBXItem
  65. Action = FileListToCommandLineAction
  66. end
  67. object CopytoClipboard3: TTBXItem
  68. Action = FileListToClipboardAction
  69. end
  70. object CopytoClipboardIncludePaths3: TTBXItem
  71. Action = FullFileListToClipboardAction
  72. end
  73. object CopyURLtoClipboard3: TTBXItem
  74. Action = FileGenerateUrlAction2
  75. end
  76. end
  77. object N1: TTBXSeparatorItem
  78. end
  79. object Properties1: TTBXItem
  80. Action = CurrentPropertiesFocusedAction
  81. end
  82. end
  83. object ExplorerActions: TActionList
  84. Images = GlyphsModule.ExplorerImages
  85. OnExecute = ExplorerActionsExecute
  86. OnUpdate = ExplorerActionsUpdate
  87. Left = 440
  88. Top = 24
  89. object AutoSizeRemoteColumnsAction: TAction
  90. Tag = 12
  91. Category = 'Columns'
  92. Caption = 'Size &Automatically'
  93. HelpKeyword = 'ui_file_panel#width'
  94. Hint = 'Adjust columns width to fit their contents'
  95. ShortCut = 16491
  96. end
  97. object RemoteCopyQueueAction: TAction
  98. Tag = 14
  99. Category = 'Remote Selected Operation'
  100. Caption = 'Download in &Background...'
  101. HelpKeyword = 'task_download'
  102. Hint =
  103. 'Download selected remote file(s) to local directory in backgroun' +
  104. 'd'
  105. ImageIndex = 107
  106. end
  107. object RemoteCopyFocusedQueueAction: TAction
  108. Tag = 12
  109. Category = 'Remote Focused Operation'
  110. Caption = 'Download in &Background...'
  111. HelpKeyword = 'task_download'
  112. Hint =
  113. 'Download selected remote file(s) to local directory in backgroun' +
  114. 'd'
  115. ImageIndex = 107
  116. end
  117. object LocalCopyQueueAction: TAction
  118. Tag = 9
  119. Category = 'Local Selected Operation'
  120. Caption = 'Upload in &Background...'
  121. HelpKeyword = 'task_upload'
  122. Hint = 'Upload selected local file(s) to remote directory in background'
  123. ImageIndex = 108
  124. end
  125. object LocalCopyFocusedQueueAction: TAction
  126. Tag = 8
  127. Category = 'Local Focused Operation'
  128. Caption = 'Upload in &Background...'
  129. HelpKeyword = 'task_upload'
  130. Hint = 'Upload selected local file(s) to remote directory in background'
  131. ImageIndex = 108
  132. end
  133. object RemoteCopyNonQueueAction: TAction
  134. Tag = 14
  135. Category = 'Remote Selected Operation'
  136. Caption = 'Down&load...'
  137. HelpKeyword = 'task_download'
  138. Hint = 'Download|Download selected remote file(s) to local directory'
  139. ImageIndex = 89
  140. end
  141. object RemoteCopyFocusedNonQueueAction: TAction
  142. Tag = 12
  143. Category = 'Remote Focused Operation'
  144. Caption = 'Down&load...'
  145. HelpKeyword = 'task_download'
  146. Hint = 'Download|Download selected remote file(s) to local directory'
  147. ImageIndex = 89
  148. end
  149. object LocalCopyNonQueueAction: TAction
  150. Tag = 9
  151. Category = 'Local Selected Operation'
  152. Caption = 'Up&load...'
  153. HelpKeyword = 'task_upload'
  154. Hint = 'Upload|Upload selected local file(s) to remote directory'
  155. ImageIndex = 88
  156. end
  157. object LocalCopyFocusedNonQueueAction: TAction
  158. Tag = 8
  159. Category = 'Local Focused Operation'
  160. Caption = 'Up&load...'
  161. HelpKeyword = 'task_upload'
  162. Hint = 'Upload|Upload selected local file(s) to remote directory'
  163. ImageIndex = 88
  164. end
  165. object LocalCopyFocusedAction: TAction
  166. Tag = 8
  167. Category = 'Local Focused Operation'
  168. Caption = 'Up&load...'
  169. HelpKeyword = 'task_upload'
  170. Hint = 'Upload|Upload selected local file(s) to remote directory'
  171. ImageIndex = 88
  172. end
  173. object RemoteCopyFocusedAction: TAction
  174. Tag = 12
  175. Category = 'Remote Focused Operation'
  176. Caption = 'Down&load...'
  177. HelpKeyword = 'task_download'
  178. Hint = 'Download|Download selected remote file(s) to local directory'
  179. ImageIndex = 89
  180. end
  181. object RemoteMoveFocusedAction: TAction
  182. Tag = 12
  183. Category = 'Remote Focused Operation'
  184. Caption = 'Download and Dele&te...'
  185. HelpKeyword = 'task_download'
  186. Hint =
  187. 'Download and Delete|Download selected remote file(s) to local di' +
  188. 'rectory and delete original'
  189. ImageIndex = 97
  190. end
  191. object RemoteCopyAction: TAction
  192. Tag = 14
  193. Category = 'Remote Selected Operation'
  194. Caption = 'Down&load...'
  195. HelpKeyword = 'task_download'
  196. Hint = 'Download|Download selected remote file(s) to local directory'
  197. ImageIndex = 89
  198. end
  199. object AutoSizeLocalColumnsAction: TAction
  200. Tag = 8
  201. Category = 'Columns'
  202. Caption = 'Size &Automatically'
  203. HelpKeyword = 'ui_file_panel#width'
  204. Hint = 'Adjust columns width to fit their contents'
  205. ShortCut = 16491
  206. end
  207. object ResetLayoutRemoteColumnsAction: TAction
  208. Tag = 15
  209. Category = 'Columns'
  210. Caption = '&Reset Layout'
  211. HelpKeyword = 'ui_file_panel#width'
  212. Hint = 'Reset to the default layout of file panel columns'
  213. end
  214. object GoToTreeAction: TAction
  215. Tag = 15
  216. Category = 'View'
  217. Caption = 'Go to Tree'
  218. HelpKeyword = 'ui_file_panel#directory_tree'
  219. Hint = 'Go to tree'
  220. ImageIndex = 76
  221. ShortCut = 49236
  222. end
  223. object LocalTreeAction: TAction
  224. Tag = 8
  225. Category = 'View'
  226. Caption = '&Tree'
  227. HelpKeyword = 'ui_file_panel#directory_tree'
  228. Hint = 'Hide/show directory tree'
  229. ImageIndex = 76
  230. ShortCut = 49236
  231. end
  232. object RemoteTreeAction: TAction
  233. Tag = 12
  234. Category = 'View'
  235. Caption = '&Tree'
  236. HelpKeyword = 'ui_file_panel#directory_tree'
  237. Hint = 'Hide/show directory tree'
  238. ImageIndex = 76
  239. ShortCut = 49236
  240. end
  241. object QueueItemQueryAction: TAction
  242. Tag = 12
  243. Category = 'Queue'
  244. Caption = '&Show Query'
  245. HelpKeyword = 'ui_queue#manage'
  246. Hint = 'Show pending query of selected queue item'
  247. ImageIndex = 67
  248. end
  249. object ResetLayoutLocalColumnsAction: TAction
  250. Tag = 15
  251. Category = 'Columns'
  252. Caption = '&Reset Layout'
  253. HelpKeyword = 'ui_file_panel#width'
  254. Hint = 'Reset to the default layout of file panel columns'
  255. end
  256. object QueueItemErrorAction: TAction
  257. Tag = 12
  258. Category = 'Queue'
  259. Caption = '&Show Error'
  260. HelpKeyword = 'ui_queue#manage'
  261. Hint = 'Show pending error message of selected queue item'
  262. ImageIndex = 68
  263. end
  264. object QueueItemPromptAction: TAction
  265. Tag = 12
  266. Category = 'Queue'
  267. Caption = '&Show Prompt'
  268. HelpKeyword = 'ui_queue#manage'
  269. Hint = 'Show pending prompt of selected queue item'
  270. ImageIndex = 69
  271. end
  272. object GoToCommandLineAction: TAction
  273. Tag = 11
  274. Category = 'View'
  275. Caption = 'Go to Comma&nd Line'
  276. HelpKeyword = 'ui_commander#command_line'
  277. Hint = 'Go to command line'
  278. ShortCut = 24653
  279. end
  280. object QueueItemDeleteAction: TAction
  281. Tag = 12
  282. Category = 'Queue'
  283. Caption = '&Cancel'
  284. HelpKeyword = 'ui_queue#manage'
  285. Hint = 'Remove selected queue item'
  286. ImageIndex = 71
  287. end
  288. object QueueItemExecuteAction: TAction
  289. Tag = 12
  290. Category = 'Queue'
  291. Caption = '&Execute Now'
  292. HelpKeyword = 'ui_queue#manage'
  293. Hint =
  294. 'Execute selected queue item immediately by granting it additiona' +
  295. 'l connection'
  296. ImageIndex = 70
  297. end
  298. object SelectOneAction: TAction
  299. Tag = 12
  300. Category = 'Selection'
  301. Caption = '&Select/Unselect'
  302. HelpKeyword = 'ui_file_panel#selecting_files'
  303. Hint = 'Select|Select/unselect focused file'
  304. end
  305. object CurrentRenameAction: TAction
  306. Tag = 15
  307. Category = 'Selected Operation'
  308. Caption = '&Rename'
  309. HelpKeyword = 'task_rename'
  310. Hint = 'Rename|Rename selected file'
  311. ImageIndex = 3
  312. end
  313. object LocalSortAscendingAction2: TAction
  314. Tag = 9
  315. Category = 'Sort'
  316. Caption = '&Ascending'
  317. HelpKeyword = 'ui_file_panel#sorting_files'
  318. Hint =
  319. 'Ascending/descending|Toggle ascending/descending sorting of file' +
  320. 's in the panel'
  321. ImageIndex = 37
  322. end
  323. object CurrentEditAction: TAction
  324. Tag = 15
  325. Category = 'Selected Operation'
  326. Caption = '&Edit'
  327. HelpKeyword = 'task_edit'
  328. Hint = 'Edit|Edit selected file(s)'
  329. ImageIndex = 57
  330. end
  331. object HideColumnAction: TAction
  332. Tag = 15
  333. Category = 'Columns'
  334. Caption = '&Hide Column'
  335. HelpKeyword = 'ui_file_panel#selecting_columns'
  336. Hint = 'Hide column|Hide selected column'
  337. end
  338. object LocalBackAction: TAction
  339. Tag = 9
  340. Category = 'Local Directory'
  341. Caption = '&Back'
  342. HelpKeyword = 'task_navigate#special_commands'
  343. ImageIndex = 6
  344. ShortCut = 32805
  345. end
  346. object RemoteCycleStyleAction: TAction
  347. Tag = 15
  348. Category = 'Style'
  349. Caption = 'View'
  350. HelpKeyword = 'ui_file_panel#view_style'
  351. Hint = 'View|Cycle thru directory view styles'
  352. ImageIndex = 8
  353. end
  354. object RemoteIconAction: TAction
  355. Tag = 15
  356. Category = 'Style'
  357. Caption = '&Large Icons'
  358. HelpKeyword = 'ui_file_panel#view_style'
  359. Hint = 'Large Icons|View large icons'
  360. ImageIndex = 8
  361. end
  362. object RemoteSmallIconAction: TAction
  363. Tag = 15
  364. Category = 'Style'
  365. Caption = '&Small Icons'
  366. HelpKeyword = 'ui_file_panel#view_style'
  367. Hint = 'Small Icons|View small icons'
  368. ImageIndex = 9
  369. end
  370. object RemoteListAction: TAction
  371. Tag = 15
  372. Category = 'Style'
  373. Caption = 'Lis&t'
  374. HelpKeyword = 'ui_file_panel#view_style'
  375. Hint = 'List|View list'
  376. ImageIndex = 10
  377. end
  378. object RemoteReportAction: TAction
  379. Tag = 15
  380. Category = 'Style'
  381. Caption = '&Details'
  382. HelpKeyword = 'ui_file_panel#view_style'
  383. Hint = 'Details|View details'
  384. ImageIndex = 11
  385. end
  386. object RemoteMoveToAction: TAction
  387. Tag = 14
  388. Category = 'Remote Selected Operation'
  389. Caption = 'Mo&ve To...'
  390. HelpKeyword = 'task_move_duplicate#move'
  391. Hint =
  392. 'Move|Move selected remote file(s) to another remote directory or' +
  393. ' another name'
  394. ImageIndex = 100
  395. end
  396. object CurrentDeleteFocusedAction: TAction
  397. Tag = 12
  398. Category = 'Focused Operation'
  399. Caption = '&Delete'
  400. HelpKeyword = 'task_delete'
  401. Hint = 'Delete|Delete selected file(s)'
  402. ImageIndex = 2
  403. end
  404. object CurrentPropertiesFocusedAction: TAction
  405. Tag = 12
  406. Category = 'Focused Operation'
  407. Caption = '&Properties'
  408. HelpKeyword = 'task_properties'
  409. Hint = 'Properties|Display/change properties of selected file(s)'
  410. ImageIndex = 4
  411. end
  412. object CurrentCreateDirAction: TAction
  413. Tag = 15
  414. Category = 'Selected Operation'
  415. Caption = '&Create Directory...'
  416. HelpKeyword = 'task_create_directory'
  417. Hint = 'Create directory|Create new directory'
  418. ImageIndex = 5
  419. end
  420. object CurrentDeleteAction: TAction
  421. Tag = 15
  422. Category = 'Selected Operation'
  423. Caption = '&Delete'
  424. HelpKeyword = 'task_delete'
  425. Hint = 'Delete|Delete selected file(s)'
  426. ImageIndex = 2
  427. end
  428. object CurrentPropertiesAction: TAction
  429. Tag = 15
  430. Category = 'Selected Operation'
  431. Caption = '&Properties'
  432. HelpKeyword = 'task_properties'
  433. Hint = 'Properties|Display/change properties of selected file(s)'
  434. ImageIndex = 4
  435. end
  436. object RemoteBackAction: TAction
  437. Tag = 14
  438. Category = 'Remote Directory'
  439. Caption = '&Back'
  440. HelpKeyword = 'task_navigate#special_commands'
  441. ImageIndex = 6
  442. ShortCut = 32805
  443. end
  444. object RemoteForwardAction: TAction
  445. Tag = 14
  446. Category = 'Remote Directory'
  447. Caption = '&Forward'
  448. HelpKeyword = 'task_navigate#special_commands'
  449. ImageIndex = 7
  450. ShortCut = 32807
  451. end
  452. object CommandLinePanelAction: TAction
  453. Tag = 8
  454. Category = 'View'
  455. Caption = 'Comma&nd Line'
  456. HelpKeyword = 'ui_commander#command_line'
  457. Hint = 'Hide/show command line'
  458. ShortCut = 24653
  459. end
  460. object RemoteParentDirAction: TAction
  461. Tag = 12
  462. Category = 'Remote Directory'
  463. Caption = '&Parent Directory'
  464. HelpKeyword = 'task_navigate#special_commands'
  465. Hint = 'Parent directory|Go to parent directory'
  466. ImageIndex = 12
  467. ShortCut = 8
  468. end
  469. object RemoteRootDirAction: TAction
  470. Tag = 12
  471. Category = 'Remote Directory'
  472. Caption = '&Root Directory'
  473. HelpKeyword = 'task_navigate#special_commands'
  474. Hint = 'Root directory|Go to root directory'
  475. ImageIndex = 13
  476. ShortCut = 16604
  477. end
  478. object RemoteHomeDirAction: TAction
  479. Tag = 14
  480. Category = 'Remote Directory'
  481. Caption = '&Home Directory'
  482. HelpKeyword = 'task_navigate#special_commands'
  483. Hint = 'Home directory|Go to home directory'
  484. ImageIndex = 15
  485. end
  486. object RemoteRefreshAction: TAction
  487. Tag = 14
  488. Category = 'Remote Directory'
  489. Caption = '&Refresh'
  490. Hint = 'Refresh|Refresh directory content'
  491. ImageIndex = 16
  492. end
  493. object AboutAction: TAction
  494. Tag = 15
  495. Category = 'Help'
  496. Caption = '&About...'
  497. HelpKeyword = 'ui_about'
  498. Hint = 'About|Show About box'
  499. ImageIndex = 65
  500. end
  501. object StatusBarAction: TAction
  502. Tag = 15
  503. Category = 'View'
  504. Caption = 'Status &Bar'
  505. Hint = 'Hide/show status bar'
  506. end
  507. object SessionsTabsAction2: TAction
  508. Tag = 15
  509. Category = 'View'
  510. Caption = 'T&abs'
  511. Hint = 'Hide/show tabs'
  512. end
  513. object ExplorerAddressBandAction: TAction
  514. Tag = 7
  515. Category = 'View'
  516. Caption = '&Address'
  517. HelpKeyword = 'ui_toolbars'
  518. Hint = 'Hide/show address toolbar'
  519. end
  520. object ExplorerMenuBandAction: TAction
  521. Tag = 7
  522. Category = 'View'
  523. Caption = '&Menu'
  524. HelpKeyword = 'ui_toolbars'
  525. Hint = 'Hide/show menu'
  526. end
  527. object ExplorerToolbarBandAction: TAction
  528. Tag = 7
  529. Category = 'View'
  530. Caption = '&Standard Buttons'
  531. HelpKeyword = 'ui_toolbars'
  532. Hint = 'Hide/show standard toolbar'
  533. end
  534. object RemoteOpenDirAction: TAction
  535. Tag = 14
  536. Category = 'Remote Directory'
  537. Caption = '&Open Directory/Bookmark...'
  538. HelpKeyword = 'task_navigate#manual'
  539. Hint =
  540. 'Open directory/bookmark|Open specified directory or saved bookma' +
  541. 'rk'
  542. ImageIndex = 18
  543. end
  544. object SelectAction: TAction
  545. Tag = 15
  546. Category = 'Selection'
  547. Caption = 'Sele&ct Files...'
  548. HelpKeyword = 'ui_select'
  549. Hint = 'Select|Select files by mask'
  550. ImageIndex = 19
  551. ShortCut = 107
  552. end
  553. object UnselectAction: TAction
  554. Tag = 15
  555. Category = 'Selection'
  556. Caption = '&Unselect Files...'
  557. HelpKeyword = 'ui_select'
  558. Hint = 'Unselect|Unselect files by mask'
  559. ImageIndex = 20
  560. ShortCut = 109
  561. end
  562. object SelectAllAction: TAction
  563. Tag = 15
  564. Category = 'Selection'
  565. Caption = 'Select &All'
  566. HelpKeyword = 'ui_file_panel#selecting_files'
  567. Hint = 'Select all files'
  568. ImageIndex = 21
  569. ShortCut = 16449
  570. end
  571. object InvertSelectionAction: TAction
  572. Tag = 15
  573. Category = 'Selection'
  574. Caption = '&Invert Selection'
  575. HelpKeyword = 'ui_file_panel#selecting_files'
  576. Hint = 'Invert selection'
  577. ImageIndex = 22
  578. ShortCut = 106
  579. end
  580. object ExplorerSelectionBandAction: TAction
  581. Tag = 7
  582. Category = 'View'
  583. Caption = 'Se&lection Buttons'
  584. HelpKeyword = 'ui_toolbars'
  585. Hint = 'Hide/show selection toolbar'
  586. end
  587. object ClearSelectionAction: TAction
  588. Tag = 15
  589. Category = 'Selection'
  590. Caption = 'C&lear Selection'
  591. HelpKeyword = 'ui_file_panel#selecting_files'
  592. Hint = 'Clear selection'
  593. ImageIndex = 23
  594. ShortCut = 24652
  595. end
  596. object ExplorerSessionBandAction2: TAction
  597. Tag = 7
  598. Category = 'View'
  599. Caption = 'Sessio&ns and Tabs Buttons'
  600. HelpKeyword = 'ui_toolbars'
  601. Hint = 'Hide/show sessions and tabs toolbar'
  602. end
  603. object ExplorerPreferencesBandAction: TAction
  604. Tag = 7
  605. Category = 'View'
  606. Caption = '&Preferences Buttons'
  607. HelpKeyword = 'ui_toolbars'
  608. Hint = 'Hide/show preferences toolbar'
  609. end
  610. object ExplorerSortBandAction: TAction
  611. Tag = 7
  612. Category = 'View'
  613. Caption = 'So&rt Buttons'
  614. HelpKeyword = 'ui_toolbars'
  615. Hint = 'Hide/show sort toolbar'
  616. end
  617. object ExplorerUpdatesBandAction: TAction
  618. Tag = 7
  619. Category = 'View'
  620. Caption = '&Update Button'
  621. HelpKeyword = 'ui_toolbars'
  622. Hint = 'Hide/show updates toolbar'
  623. end
  624. object ExplorerTransferBandAction: TAction
  625. Tag = 7
  626. Category = 'View'
  627. Caption = '&Transfer Settings'
  628. HelpKeyword = 'ui_toolbars'
  629. Hint = 'Hide/show transfer settings toolbar'
  630. end
  631. object ExplorerCustomCommandsBandAction: TAction
  632. Tag = 7
  633. Category = 'View'
  634. Caption = 'Custom Co&mmand Buttons'
  635. HelpKeyword = 'ui_toolbars'
  636. Hint = 'Hide/show custom commands toolbar'
  637. end
  638. object SiteManagerAction: TAction
  639. Tag = 15
  640. Category = 'Session'
  641. Caption = 'Site &Manager...'
  642. HelpKeyword = 'ui_login'
  643. Hint =
  644. 'Site Manager|Opens site manager (hold down Shift to open site ma' +
  645. 'nager in new window)'
  646. end
  647. object CloseTabAction: TAction
  648. Tag = 15
  649. Category = 'Tab'
  650. Caption = '&Close Tab'
  651. HelpKeyword = 'ui_tabs#working'
  652. Hint = 'Close the current tab'
  653. ImageIndex = 26
  654. SecondaryShortCuts.Strings = (
  655. 'Ctrl+W')
  656. ShortCut = 24644
  657. end
  658. object DisconnectSessionAction: TAction
  659. Tag = 15
  660. Category = 'Session'
  661. Caption = '&Disconnect Session'
  662. HelpKeyword = 'task_connections#closing'
  663. Hint = 'Disconnect the current session, but keep the tab opened'
  664. ImageIndex = 116
  665. end
  666. object ReconnectSessionAction: TAction
  667. Tag = 15
  668. Category = 'Session'
  669. Caption = '&Reconnect Session'
  670. HelpKeyword = 'task_connections'
  671. Hint = 'Reconnect the current disconnected session'
  672. ShortCut = 24658
  673. end
  674. object SavedSessionsAction2: TAction
  675. Tag = 15
  676. Category = 'Session'
  677. Caption = 'Si&tes'
  678. HelpKeyword = 'task_connections#opening_additional_connection'
  679. Hint = 'Open site'
  680. ImageIndex = 27
  681. end
  682. object WorkspacesAction: TAction
  683. Tag = 15
  684. Category = 'Tab'
  685. Caption = '&Workspaces'
  686. HelpKeyword = 'workspace'
  687. Hint = 'Open workspace'
  688. ImageIndex = 101
  689. end
  690. object PreferencesAction: TAction
  691. Tag = 15
  692. Category = 'View'
  693. Caption = '&Preferences...'
  694. HelpKeyword = 'ui_preferences'
  695. Hint = 'Preferences|Show/change user preferences'
  696. ImageIndex = 28
  697. ShortCut = 49232
  698. end
  699. object RemoteChangePathAction2: TAction
  700. Tag = 11
  701. Category = 'Remote Directory'
  702. Caption = '&Change Directory'
  703. HelpKeyword = 'task_navigate'
  704. Hint = 'Allows selection of different directory for panel'
  705. ImageIndex = 29
  706. ShortCut = 32881
  707. end
  708. object LocalForwardAction: TAction
  709. Tag = 9
  710. Category = 'Local Directory'
  711. Caption = '&Forward'
  712. HelpKeyword = 'task_navigate#special_commands'
  713. ImageIndex = 7
  714. ShortCut = 32807
  715. end
  716. object LocalParentDirAction: TAction
  717. Tag = 8
  718. Category = 'Local Directory'
  719. Caption = '&Parent Directory'
  720. HelpKeyword = 'task_navigate#special_commands'
  721. Hint = 'Parent directory|Go to parent directory'
  722. ImageIndex = 12
  723. ShortCut = 8
  724. end
  725. object LocalRootDirAction: TAction
  726. Tag = 8
  727. Category = 'Local Directory'
  728. Caption = '&Root Directory'
  729. HelpKeyword = 'task_navigate#special_commands'
  730. Hint = 'Root directory|Go to root directory'
  731. ImageIndex = 14
  732. ShortCut = 16604
  733. end
  734. object LocalHomeDirAction: TAction
  735. Tag = 9
  736. Category = 'Local Directory'
  737. Caption = '&Home Directory'
  738. HelpKeyword = 'task_navigate#special_commands'
  739. Hint = 'Home directory|Go to home directory'
  740. ImageIndex = 15
  741. end
  742. object LocalRefreshAction: TAction
  743. Tag = 9
  744. Category = 'Local Directory'
  745. Caption = '&Refresh'
  746. Hint = 'Refresh|Refresh directory content'
  747. ImageIndex = 16
  748. end
  749. object LocalOpenDirAction: TAction
  750. Tag = 9
  751. Category = 'Local Directory'
  752. Caption = '&Open Directory/Bookmark...'
  753. HelpKeyword = 'task_navigate#manual'
  754. Hint =
  755. 'Open directory/bookmark|Open specified directory or saved bookma' +
  756. 'rk'
  757. ImageIndex = 18
  758. end
  759. object LocalChangePathAction2: TAction
  760. Tag = 11
  761. Category = 'Local Directory'
  762. Caption = '&Change Drive'
  763. HelpKeyword = 'task_navigate'
  764. Hint = 'Allows selection of different drive for panel'
  765. ImageIndex = 30
  766. ShortCut = 32880
  767. end
  768. object ToolBar2Action: TAction
  769. Tag = 11
  770. Category = 'View'
  771. Caption = '&Hot Keys Toolbar'
  772. HelpKeyword = 'ui_toolbars'
  773. Hint = 'Hide/show bottom hot keys toolbar'
  774. end
  775. object CommanderMenuBandAction: TAction
  776. Tag = 11
  777. Category = 'View'
  778. Caption = '&Menu'
  779. HelpKeyword = 'ui_toolbars'
  780. Hint = 'Hide/show menu'
  781. end
  782. object CommanderSessionBandAction2: TAction
  783. Tag = 11
  784. Category = 'View'
  785. Caption = 'Sessio&ns and Tabs Buttons'
  786. HelpKeyword = 'ui_toolbars'
  787. Hint = 'Hide/show sessions and tabs toolbar'
  788. end
  789. object CommanderPreferencesBandAction: TAction
  790. Tag = 11
  791. Category = 'View'
  792. Caption = '&Preferences Buttons'
  793. HelpKeyword = 'ui_toolbars'
  794. Hint = 'Hide/show preferences toolbar'
  795. end
  796. object CommanderSortBandAction: TAction
  797. Tag = 11
  798. Category = 'View'
  799. Caption = 'So&rt Buttons'
  800. HelpKeyword = 'ui_toolbars'
  801. Hint = 'Hide/show sort toolbar'
  802. end
  803. object CommanderUpdatesBandAction: TAction
  804. Tag = 11
  805. Category = 'View'
  806. Caption = '&Update Button'
  807. HelpKeyword = 'ui_toolbars'
  808. Hint = 'Hide/show updates toolbar'
  809. end
  810. object CommanderTransferBandAction: TAction
  811. Tag = 11
  812. Category = 'View'
  813. Caption = '&Transfer Settings'
  814. HelpKeyword = 'ui_toolbars'
  815. Hint = 'Hide/show transfer settings toolbar'
  816. end
  817. object CommanderCommandsBandAction: TAction
  818. Tag = 11
  819. Category = 'View'
  820. Caption = '&Commands Buttons'
  821. HelpKeyword = 'ui_toolbars'
  822. Hint = 'Hide/show commands toolbar'
  823. end
  824. object CommanderCustomCommandsBandAction: TAction
  825. Tag = 11
  826. Category = 'View'
  827. Caption = 'Custom Co&mmand Buttons'
  828. HelpKeyword = 'ui_toolbars'
  829. Hint = 'Hide/show custom commands toolbar'
  830. end
  831. object CommanderLocalHistoryBandAction2: TAction
  832. Tag = 11
  833. Category = 'View'
  834. Caption = '&History Buttons'
  835. HelpKeyword = 'ui_toolbars'
  836. Hint = 'Hide/show history toolbar'
  837. end
  838. object CommanderLocalNavigationBandAction2: TAction
  839. Tag = 11
  840. Category = 'View'
  841. Caption = '&Navigation Buttons'
  842. HelpKeyword = 'ui_toolbars'
  843. Hint = 'Hide/show navigation toolbar'
  844. end
  845. object CommanderLocalFileBandAction2: TAction
  846. Tag = 11
  847. Category = 'View'
  848. Caption = '&File Buttons'
  849. HelpKeyword = 'ui_toolbars'
  850. Hint = 'Hide/show file toolbar'
  851. end
  852. object CommanderLocalSelectionBandAction2: TAction
  853. Tag = 11
  854. Category = 'View'
  855. Caption = 'Se&lection Buttons'
  856. HelpKeyword = 'ui_toolbars'
  857. Hint = 'Hide/show selection toolbar'
  858. end
  859. object CommanderRemoteHistoryBandAction2: TAction
  860. Tag = 11
  861. Category = 'View'
  862. Caption = '&History Buttons'
  863. HelpKeyword = 'ui_toolbars'
  864. Hint = 'Hide/show history toolbar'
  865. end
  866. object CommanderRemoteNavigationBandAction2: TAction
  867. Tag = 11
  868. Category = 'View'
  869. Caption = '&Navigation Buttons'
  870. HelpKeyword = 'ui_toolbars'
  871. Hint = 'Hide/show navigation toolbar'
  872. end
  873. object CommanderRemoteFileBandAction2: TAction
  874. Tag = 11
  875. Category = 'View'
  876. Caption = '&File Buttons'
  877. HelpKeyword = 'ui_toolbars'
  878. Hint = 'Hide/show file toolbar'
  879. end
  880. object CommanderRemoteSelectionBandAction2: TAction
  881. Tag = 11
  882. Category = 'View'
  883. Caption = 'Se&lection Buttons'
  884. HelpKeyword = 'ui_toolbars'
  885. Hint = 'Hide/show selection toolbar'
  886. end
  887. object LocalStatusBarAction2: TAction
  888. Tag = 11
  889. Category = 'View'
  890. Caption = 'Status &Bar'
  891. Hint = 'Hide/show panel status bar'
  892. end
  893. object RemoteStatusBarAction2: TAction
  894. Tag = 11
  895. Category = 'View'
  896. Caption = 'Status &Bar'
  897. Hint = 'Hide/show panel status bar'
  898. end
  899. object LocalSortByNameAction2: TAction
  900. Tag = 9
  901. Category = 'Sort'
  902. Caption = 'By &Name'
  903. HelpKeyword = 'ui_file_panel#sorting_files'
  904. Hint = 'Sort by name|Sort panel by name'
  905. ImageIndex = 31
  906. ShortCut = 16498
  907. end
  908. object LocalSortByExtAction2: TAction
  909. Tag = 9
  910. Category = 'Sort'
  911. Caption = 'By &Extension'
  912. HelpKeyword = 'ui_file_panel#sorting_files'
  913. Hint = 'Sort by extension|Sort panel by file name extension'
  914. ImageIndex = 32
  915. ShortCut = 16499
  916. end
  917. object LocalSortBySizeAction2: TAction
  918. Tag = 9
  919. Category = 'Sort'
  920. Caption = 'By &Size'
  921. HelpKeyword = 'ui_file_panel#sorting_files'
  922. Hint = 'Sort by size|Sort panel by file size'
  923. ImageIndex = 35
  924. ShortCut = 16501
  925. end
  926. object LocalSortByAttrAction2: TAction
  927. Tag = 9
  928. Category = 'Sort'
  929. Caption = 'By A&ttributes'
  930. HelpKeyword = 'ui_file_panel#sorting_files'
  931. Hint = 'Sort by attributes|Sort panel by attributes'
  932. ImageIndex = 36
  933. ShortCut = 16502
  934. end
  935. object LocalSortByTypeAction2: TAction
  936. Tag = 9
  937. Category = 'Sort'
  938. Caption = 'By &Type'
  939. HelpKeyword = 'ui_file_panel#sorting_files'
  940. Hint = 'Sort by type|Sort panel by file type'
  941. ImageIndex = 34
  942. end
  943. object LocalSortByChangedAction2: TAction
  944. Tag = 9
  945. Category = 'Sort'
  946. Caption = 'By &Modification'
  947. HelpKeyword = 'ui_file_panel#sorting_files'
  948. Hint = 'Sort by time|Sort panel by last modification time'
  949. ImageIndex = 33
  950. ShortCut = 16500
  951. end
  952. object RemoteSortAscendingAction2: TAction
  953. Tag = 14
  954. Category = 'Sort'
  955. Caption = '&Ascending'
  956. HelpKeyword = 'ui_file_panel#sorting_files'
  957. Hint =
  958. 'Ascending/descending|Toggle ascending/descending sorting of file' +
  959. 's in the panel'
  960. ImageIndex = 37
  961. end
  962. object RemoteSortByNameAction2: TAction
  963. Tag = 14
  964. Category = 'Sort'
  965. Caption = 'By &Name'
  966. HelpKeyword = 'ui_file_panel#sorting_files'
  967. Hint = 'Sort by name|Sort panel by name'
  968. ImageIndex = 31
  969. ShortCut = 16498
  970. end
  971. object RemoteSortByExtAction2: TAction
  972. Tag = 14
  973. Category = 'Sort'
  974. Caption = 'By &Extension'
  975. HelpKeyword = 'ui_file_panel#sorting_files'
  976. Hint = 'Sort by extension|Sort panel by file name extension'
  977. ImageIndex = 32
  978. ShortCut = 16499
  979. end
  980. object RemoteSortBySizeAction2: TAction
  981. Tag = 14
  982. Category = 'Sort'
  983. Caption = 'By &Size'
  984. HelpKeyword = 'ui_file_panel#sorting_files'
  985. Hint = 'Sort by size|Sort panel by file size'
  986. ImageIndex = 35
  987. ShortCut = 16501
  988. end
  989. object RemoteSortByRightsAction2: TAction
  990. Tag = 14
  991. Category = 'Sort'
  992. Caption = 'By &Permissions/Attributes'
  993. HelpKeyword = 'ui_file_panel#sorting_files'
  994. Hint =
  995. 'Sort by attributes/permissions|Sort panel by attributes/permissi' +
  996. 'ons'
  997. ImageIndex = 36
  998. ShortCut = 16502
  999. end
  1000. object RemoteSortByChangedAction2: TAction
  1001. Tag = 14
  1002. Category = 'Sort'
  1003. Caption = 'By &Modification'
  1004. HelpKeyword = 'ui_file_panel#sorting_files'
  1005. Hint = 'Sort by time|Sort panel by last modification time'
  1006. ImageIndex = 33
  1007. ShortCut = 16500
  1008. end
  1009. object RemoteSortByOwnerAction2: TAction
  1010. Tag = 14
  1011. Category = 'Sort'
  1012. Caption = 'By &Owner'
  1013. HelpKeyword = 'ui_file_panel#sorting_files'
  1014. Hint = 'Sort by owner|Sort panel by file owner'
  1015. ImageIndex = 38
  1016. ShortCut = 16503
  1017. end
  1018. object RemoteSortByGroupAction2: TAction
  1019. Tag = 14
  1020. Category = 'Sort'
  1021. Caption = 'By &Group'
  1022. HelpKeyword = 'ui_file_panel#sorting_files'
  1023. Hint = 'Sort by group|Sort panel by file group'
  1024. ImageIndex = 39
  1025. ShortCut = 16504
  1026. end
  1027. object RemoteSortByTypeAction2: TAction
  1028. Tag = 14
  1029. Category = 'Sort'
  1030. Caption = 'By &Type'
  1031. HelpKeyword = 'ui_file_panel#sorting_files'
  1032. Hint = 'Sort by type|Sort panel by file type'
  1033. ImageIndex = 34
  1034. end
  1035. object CurrentSortAscendingAction: TAction
  1036. Tag = 15
  1037. Category = 'Sort'
  1038. Caption = '&Ascending'
  1039. HelpKeyword = 'ui_file_panel#sorting_files'
  1040. Hint =
  1041. 'Ascending/descending|Toggle ascending/descending sort of current' +
  1042. ' panel'
  1043. ImageIndex = 37
  1044. end
  1045. object CurrentSortByNameAction: TAction
  1046. Tag = 15
  1047. Category = 'Sort'
  1048. Caption = 'By &Name'
  1049. HelpKeyword = 'ui_file_panel#sorting_files'
  1050. Hint = 'Sort by name|Sort current panel by name'
  1051. ImageIndex = 31
  1052. ShortCut = 16498
  1053. end
  1054. object CurrentSortByExtAction: TAction
  1055. Tag = 15
  1056. Category = 'Sort'
  1057. Caption = 'By &Extension'
  1058. HelpKeyword = 'ui_file_panel#sorting_files'
  1059. Hint = 'Sort by extension|Sort current panel by file name extension'
  1060. ImageIndex = 32
  1061. ShortCut = 16499
  1062. end
  1063. object CurrentSortBySizeAction: TAction
  1064. Tag = 15
  1065. Category = 'Sort'
  1066. Caption = 'By &Size'
  1067. HelpKeyword = 'ui_file_panel#sorting_files'
  1068. Hint = 'Sort by size|Sort current panel by file size'
  1069. ImageIndex = 35
  1070. ShortCut = 16501
  1071. end
  1072. object CurrentSortByTypeAction2: TAction
  1073. Tag = 15
  1074. Category = 'Sort'
  1075. Caption = 'By &Type'
  1076. HelpKeyword = 'ui_file_panel#sorting_files'
  1077. Hint = 'Sort by type|Sort current panel by file type'
  1078. ImageIndex = 34
  1079. end
  1080. object CurrentSortByRightsAction: TAction
  1081. Tag = 15
  1082. Category = 'Sort'
  1083. Caption = 'By &Permissions/Attributes'
  1084. HelpKeyword = 'ui_file_panel#sorting_files'
  1085. Hint =
  1086. 'Sort by attributes/permissions|Sort current panel by attributes/' +
  1087. 'permissions'
  1088. ImageIndex = 36
  1089. ShortCut = 16502
  1090. end
  1091. object CurrentSortByChangedAction: TAction
  1092. Tag = 15
  1093. Category = 'Sort'
  1094. Caption = 'By &Modification'
  1095. HelpKeyword = 'ui_file_panel#sorting_files'
  1096. Hint = 'Sort by time|Sort current panel by last modification time'
  1097. ImageIndex = 33
  1098. ShortCut = 16500
  1099. end
  1100. object CurrentSortByOwnerAction: TAction
  1101. Tag = 14
  1102. Category = 'Sort'
  1103. Caption = 'By &Owner'
  1104. HelpKeyword = 'ui_file_panel#sorting_files'
  1105. Hint =
  1106. 'Sort by owner|Sort current panel by file owner (remote panel onl' +
  1107. 'y)'
  1108. ImageIndex = 38
  1109. ShortCut = 16503
  1110. end
  1111. object CurrentSortByGroupAction: TAction
  1112. Tag = 14
  1113. Category = 'Sort'
  1114. Caption = 'By &Group'
  1115. HelpKeyword = 'ui_file_panel#sorting_files'
  1116. Hint =
  1117. 'Sort by group|Sort current panel by file group (remote panel onl' +
  1118. 'y)'
  1119. ImageIndex = 39
  1120. ShortCut = 16504
  1121. end
  1122. object SortColumnAscendingAction: TAction
  1123. Tag = 15
  1124. Category = 'Sort'
  1125. Caption = 'Sort &Ascending'
  1126. HelpKeyword = 'ui_file_panel#sorting_files'
  1127. Hint = 'Sort files ascending by selected column'
  1128. ImageIndex = 41
  1129. end
  1130. object SortColumnDescendingAction: TAction
  1131. Tag = 15
  1132. Category = 'Sort'
  1133. Caption = 'Sort &Descending'
  1134. HelpKeyword = 'ui_file_panel#sorting_files'
  1135. Hint = 'Sort files descending by selected column'
  1136. ImageIndex = 40
  1137. end
  1138. object HomepageAction: TAction
  1139. Tag = 15
  1140. Category = 'Help'
  1141. Caption = 'Product &Homepage'
  1142. Hint = 'Opens web browser and points it to project homepage '
  1143. ImageIndex = 42
  1144. end
  1145. object HistoryPageAction: TAction
  1146. Tag = 15
  1147. Category = 'Help'
  1148. Caption = '&Version History'
  1149. Hint = 'Opens web browser and points it to application history page'
  1150. end
  1151. object SaveCurrentSessionAction2: TAction
  1152. Tag = 15
  1153. Category = 'Session'
  1154. Caption = '&Save Session as Site...'
  1155. HelpKeyword = 'task_connections#saving'
  1156. Hint = 'Save session as site|Save current session as site'
  1157. ImageIndex = 43
  1158. end
  1159. object ShowHideRemoteNameColumnAction2: TAction
  1160. Tag = 15
  1161. Category = 'Columns'
  1162. Caption = '&Name'
  1163. HelpKeyword = 'ui_file_panel#selecting_columns'
  1164. Hint = 'Show/hide name column'
  1165. ImageIndex = 44
  1166. end
  1167. object ShowHideRemoteExtColumnAction2: TAction
  1168. Tag = 15
  1169. Category = 'Columns'
  1170. Caption = '&Extension'
  1171. HelpKeyword = 'ui_file_panel#selecting_columns'
  1172. Hint = 'Show/hide extension column'
  1173. ImageIndex = 45
  1174. end
  1175. object ShowHideRemoteSizeColumnAction2: TAction
  1176. Tag = 15
  1177. Category = 'Columns'
  1178. Caption = '&Size'
  1179. HelpKeyword = 'ui_file_panel#selecting_columns'
  1180. Hint = 'Show/hide size column'
  1181. ImageIndex = 47
  1182. end
  1183. object ShowHideRemoteChangedColumnAction2: TAction
  1184. Tag = 15
  1185. Category = 'Columns'
  1186. Caption = '&Modification'
  1187. HelpKeyword = 'ui_file_panel#selecting_columns'
  1188. Hint = 'Show/hide modification column'
  1189. ImageIndex = 48
  1190. end
  1191. object ShowHideRemoteRightsColumnAction2: TAction
  1192. Tag = 15
  1193. Category = 'Columns'
  1194. Caption = '&Permissions'
  1195. HelpKeyword = 'ui_file_panel#selecting_columns'
  1196. Hint = 'Show/hide permissions column'
  1197. ImageIndex = 49
  1198. end
  1199. object ShowHideRemoteOwnerColumnAction2: TAction
  1200. Tag = 15
  1201. Category = 'Columns'
  1202. Caption = '&Owner'
  1203. HelpKeyword = 'ui_file_panel#selecting_columns'
  1204. Hint = 'Show/hide owner column'
  1205. ImageIndex = 50
  1206. end
  1207. object ShowHideRemoteGroupColumnAction2: TAction
  1208. Tag = 15
  1209. Category = 'Columns'
  1210. Caption = '&Group'
  1211. HelpKeyword = 'ui_file_panel#selecting_columns'
  1212. Hint = 'Show/hide group column'
  1213. ImageIndex = 51
  1214. end
  1215. object ShowHideRemoteLinkTargetColumnAction2: TAction
  1216. Tag = 15
  1217. Category = 'Columns'
  1218. Caption = '&Link Target'
  1219. HelpKeyword = 'ui_file_panel#selecting_columns'
  1220. Hint = 'Show/hide link target column'
  1221. ImageIndex = 82
  1222. end
  1223. object ShowHideRemoteTypeColumnAction2: TAction
  1224. Tag = 15
  1225. Category = 'Columns'
  1226. Caption = '&Type'
  1227. HelpKeyword = 'ui_file_panel#selecting_columns'
  1228. Hint = 'Show/hide type column'
  1229. ImageIndex = 46
  1230. end
  1231. object ShowHideLocalNameColumnAction2: TAction
  1232. Tag = 15
  1233. Category = 'Columns'
  1234. Caption = '&Name'
  1235. HelpKeyword = 'ui_file_panel#selecting_columns'
  1236. Hint = 'Show/hide name column'
  1237. ImageIndex = 44
  1238. end
  1239. object ShowHideLocalExtColumnAction2: TAction
  1240. Tag = 15
  1241. Category = 'Columns'
  1242. Caption = '&Extension'
  1243. HelpKeyword = 'ui_file_panel#selecting_columns'
  1244. Hint = 'Show/hide extension column'
  1245. ImageIndex = 45
  1246. end
  1247. object ShowHideLocalTypeColumnAction2: TAction
  1248. Tag = 15
  1249. Category = 'Columns'
  1250. Caption = '&Type'
  1251. HelpKeyword = 'ui_file_panel#selecting_columns'
  1252. Hint = 'Show/hide type column'
  1253. ImageIndex = 46
  1254. end
  1255. object ShowHideLocalSizeColumnAction2: TAction
  1256. Tag = 15
  1257. Category = 'Columns'
  1258. Caption = '&Size'
  1259. HelpKeyword = 'ui_file_panel#selecting_columns'
  1260. Hint = 'Show/hide size column'
  1261. ImageIndex = 47
  1262. end
  1263. object ShowHideLocalChangedColumnAction2: TAction
  1264. Tag = 15
  1265. Category = 'Columns'
  1266. Caption = '&Modification'
  1267. HelpKeyword = 'ui_file_panel#selecting_columns'
  1268. Hint = 'Show/hide modification column'
  1269. ImageIndex = 48
  1270. end
  1271. object ShowHideLocalAttrColumnAction2: TAction
  1272. Tag = 15
  1273. Category = 'Columns'
  1274. Caption = '&Attributes'
  1275. HelpKeyword = 'ui_file_panel#selecting_columns'
  1276. Hint = 'Show/hide attributes column'
  1277. ImageIndex = 49
  1278. end
  1279. object CompareDirectoriesAction2: TAction
  1280. Tag = 11
  1281. Category = 'Command'
  1282. Caption = '&Compare Directories'
  1283. HelpKeyword = 'task_compare_directories'
  1284. Hint = 'Compare directories|Mark different files between files panels'
  1285. ImageIndex = 52
  1286. ShortCut = 8305
  1287. end
  1288. object SynchronizeAction: TAction
  1289. Tag = 15
  1290. Category = 'Command'
  1291. Caption = '&Keep Remote Directory up to Date...'
  1292. HelpKeyword = 'task_keep_up_to_date'
  1293. Hint =
  1294. 'Keep remote directory up to date|Keep remote directory up to dat' +
  1295. 'e'
  1296. ImageIndex = 53
  1297. ShortCut = 16469
  1298. end
  1299. object ForumPageAction: TAction
  1300. Tag = 15
  1301. Category = 'Help'
  1302. Caption = '&Support Forum'
  1303. Hint = 'Opens web browser and points it to support forum page'
  1304. end
  1305. object LocalAddBookmarkAction2: TAction
  1306. Tag = 9
  1307. Category = 'Local Directory'
  1308. Caption = '&Add Path to Bookmarks'
  1309. HelpKeyword = 'task_navigate#bookmarks'
  1310. Hint = 'Add to bookmarks|Add the current directory to bookmark list'
  1311. ImageIndex = 54
  1312. ShortCut = 16450
  1313. end
  1314. object RemoteAddBookmarkAction2: TAction
  1315. Tag = 14
  1316. Category = 'Remote Directory'
  1317. Caption = '&Add Path to Bookmarks'
  1318. HelpKeyword = 'task_navigate#bookmarks'
  1319. Hint = 'Add to bookmarks|Add the current directory to bookmark list'
  1320. ImageIndex = 54
  1321. ShortCut = 16450
  1322. end
  1323. object ConsoleAction: TAction
  1324. Tag = 15
  1325. Category = 'Command'
  1326. Caption = 'Open &Terminal'
  1327. HelpKeyword = 'ui_console'
  1328. Hint =
  1329. 'Open terminal|Open terminal window that allow executing arbitrar' +
  1330. 'y command (with exception of commands that require user input)'
  1331. ImageIndex = 55
  1332. ShortCut = 24660
  1333. end
  1334. object PuttyAction: TAction
  1335. Tag = 15
  1336. Category = 'Command'
  1337. Caption = 'Open in &PuTTY'
  1338. HelpKeyword = 'integration_putty#open_putty'
  1339. Hint =
  1340. 'Open session in PuTTY|Execute PuTTY SSH terminal and opens curre' +
  1341. 'nt session with it'
  1342. ImageIndex = 64
  1343. ShortCut = 16464
  1344. end
  1345. object LocalExploreDirectoryAction: TAction
  1346. Tag = 9
  1347. Category = 'Local Directory'
  1348. Caption = '&Explore Directory'
  1349. Hint = 'Opens Windows File Explorer with the current local directory'
  1350. ImageIndex = 56
  1351. ShortCut = 49221
  1352. end
  1353. object CurrentOpenAction: TAction
  1354. Tag = 15
  1355. Category = 'Focused Operation'
  1356. Caption = '&Open'
  1357. HelpKeyword = 'task_edit'
  1358. Hint =
  1359. 'Open document|Open selected document using application associate' +
  1360. 'd with document type'
  1361. ImageIndex = 58
  1362. end
  1363. object SynchronizeBrowsingAction2: TAction
  1364. Tag = 11
  1365. Category = 'Command'
  1366. AutoCheck = True
  1367. Caption = 'Synchronize &Browsing'
  1368. HelpKeyword = 'task_navigate#synchronize_browsing'
  1369. Hint = 'Synchronize browsing|Synchronize browsing between both panels'
  1370. ImageIndex = 59
  1371. ShortCut = 49218
  1372. end
  1373. object CurrentAddEditLinkAction: TAction
  1374. Tag = 15
  1375. Category = 'Selected Operation'
  1376. Caption = 'Edit &Link...'
  1377. HelpKeyword = 'task_link'
  1378. Hint =
  1379. 'Add/edit link|Add new link/shortcut or edit selected link/shortc' +
  1380. 'ut'
  1381. ImageIndex = 60
  1382. end
  1383. object CurrentAddEditLinkContextAction: TAction
  1384. Tag = 15
  1385. Category = 'Selected Operation'
  1386. Caption = 'Edit &Link...'
  1387. HelpKeyword = 'task_link'
  1388. Hint = 'Edit link|Edit selected link/shortcut'
  1389. ImageIndex = 60
  1390. end
  1391. object CloseApplicationAction2: TAction
  1392. Tag = 15
  1393. Category = 'Command'
  1394. Caption = '&Quit'
  1395. Hint =
  1396. 'Exit application|Close application (any opened sessions are clos' +
  1397. 'ed)'
  1398. ImageIndex = 61
  1399. end
  1400. object OpenedTabsAction: TAction
  1401. Tag = 15
  1402. Category = 'Tab'
  1403. Caption = '&Opened Tabs'
  1404. HelpKeyword = 'ui_tabs#switch'
  1405. Hint = 'Select tab|Select tab to activate'
  1406. ImageIndex = 62
  1407. end
  1408. object DuplicateTabAction: TAction
  1409. Tag = 15
  1410. Category = 'Tab'
  1411. Caption = 'Du&plicate Tab'
  1412. HelpKeyword = 'ui_tabs'
  1413. Hint =
  1414. 'Duplicate tab|Open new tab with the same folder (hold down Shift' +
  1415. ' to open the tab in new window)'
  1416. ImageIndex = 91
  1417. end
  1418. object NewLinkAction: TAction
  1419. Tag = 12
  1420. Category = 'Command'
  1421. Caption = '&Link...'
  1422. HelpKeyword = 'task_link'
  1423. Hint = 'Create link|Create new link/shortcut'
  1424. ImageIndex = 60
  1425. end
  1426. object CustomCommandsFileAction: TAction
  1427. Tag = 14
  1428. Category = 'Command'
  1429. Caption = 'File &Custom Commands'
  1430. HelpKeyword = 'custom_command'
  1431. Hint = 'Execute custom commands with selected file(s)'
  1432. end
  1433. object CustomCommandsNonFileAction: TAction
  1434. Tag = 15
  1435. Category = 'Command'
  1436. Caption = 'Static &Custom Commands'
  1437. HelpKeyword = 'custom_command'
  1438. Hint = 'Execute custom commands that do not operate with files'
  1439. end
  1440. object CustomCommandsCustomizeAction: TAction
  1441. Tag = 15
  1442. Category = 'Command'
  1443. Caption = '&Customize...'
  1444. HelpKeyword = 'ui_pref_commands'
  1445. Hint = 'Customize custom commands'
  1446. ImageIndex = 28
  1447. end
  1448. object CustomCommandsEnterAction: TAction
  1449. Tag = 15
  1450. Category = 'Command'
  1451. Caption = '&Enter...'
  1452. HelpKeyword = 'custom_command#executing_and_configuring'
  1453. Hint = 'Enter ad hoc custom command'
  1454. ImageIndex = 90
  1455. end
  1456. object CustomCommandsEnterFocusedAction: TAction
  1457. Tag = 12
  1458. Category = 'Command'
  1459. Caption = '&Enter...'
  1460. HelpKeyword = 'custom_command#executing_and_configuring'
  1461. Hint = 'Enter ad hoc custom command'
  1462. ImageIndex = 90
  1463. end
  1464. object CheckForUpdatesAction: TAction
  1465. Tag = 15
  1466. Category = 'Help'
  1467. Caption = '&Check for Updates'
  1468. HelpKeyword = 'updates'
  1469. Hint = 'Queries application homepage for updates'
  1470. ImageIndex = 63
  1471. end
  1472. object DonatePageAction: TAction
  1473. Tag = 15
  1474. Category = 'Help'
  1475. Caption = '&Donate'
  1476. Hint = 'Opens web browser and points it to project donation page'
  1477. end
  1478. object CustomCommandsLastAction: TAction
  1479. Tag = 15
  1480. Category = 'Command'
  1481. Caption = 'CustomCommandsLastAction'
  1482. HelpKeyword = 'custom_command#executing_and_configuring'
  1483. end
  1484. object CustomCommandsLastFocusedAction: TAction
  1485. Tag = 12
  1486. Category = 'Command'
  1487. Caption = 'CustomCommandsLastFocusedAction'
  1488. HelpKeyword = 'custom_command#executing_and_configuring'
  1489. end
  1490. object FileSystemInfoAction: TAction
  1491. Tag = 15
  1492. Category = 'Command'
  1493. Caption = 'Server/Protocol &Information'
  1494. HelpKeyword = 'ui_fsinfo'
  1495. Hint = 'Display server/protocol information'
  1496. ImageIndex = 17
  1497. end
  1498. object ClearCachesAction: TAction
  1499. Tag = 15
  1500. Category = 'Command'
  1501. Caption = 'Clea&r Caches'
  1502. HelpKeyword = 'directory_cache'
  1503. Hint = 'Clear directory listing and directory changes caches'
  1504. end
  1505. object FullSynchronizeAction: TAction
  1506. Tag = 15
  1507. Category = 'Command'
  1508. Caption = '&Synchronize...'
  1509. HelpKeyword = 'task_synchronize_full'
  1510. Hint = 'Synchronize local directory with remote directory'
  1511. ImageIndex = 66
  1512. ShortCut = 16467
  1513. end
  1514. object RemoteMoveToFocusedAction: TAction
  1515. Tag = 12
  1516. Category = 'Remote Focused Operation'
  1517. Caption = 'Mo&ve To...'
  1518. HelpKeyword = 'task_move_duplicate#move'
  1519. Hint =
  1520. 'Move|Move selected remote file(s) to another remote directory or' +
  1521. ' another name'
  1522. ImageIndex = 100
  1523. end
  1524. object ShowHiddenFilesAction: TAction
  1525. Tag = 15
  1526. Category = 'View'
  1527. Caption = 'Show/Hide &Hidden Files'
  1528. HelpKeyword = 'ui_file_panel#hidden_files'
  1529. Hint = 'Toggle showing hidden files in panel(s)'
  1530. ShortCut = 49224
  1531. end
  1532. object FormatSizeBytesNoneAction: TAction
  1533. Tag = 15
  1534. Category = 'View'
  1535. Caption = '&Bytes'
  1536. HelpKeyword = 'ui_pref_panels#common'
  1537. Hint = 'Show files sizes in bytes'
  1538. end
  1539. object LocalPathToClipboardAction2: TAction
  1540. Tag = 15
  1541. Category = 'Local Directory'
  1542. Caption = 'Copy &Path to Clipboard'
  1543. HelpKeyword = 'filenames#cwd'
  1544. Hint = 'Copy the current path to the clipboard'
  1545. end
  1546. object RemotePathToClipboardAction2: TAction
  1547. Tag = 15
  1548. Category = 'Remote Directory'
  1549. Caption = 'Copy &Path to Clipboard'
  1550. HelpKeyword = 'filenames#cwd'
  1551. Hint = 'Copy the current path to the clipboard'
  1552. end
  1553. object FileListToCommandLineAction: TAction
  1554. Tag = 11
  1555. Category = 'Selected Operation'
  1556. Caption = 'Insert to Command &Line'
  1557. HelpKeyword = 'filenames#command_line'
  1558. Hint = 'Insert name(s) of selected file(s) to command line'
  1559. ShortCut = 16397
  1560. end
  1561. object FileListToClipboardAction: TAction
  1562. Tag = 15
  1563. Category = 'Selected Operation'
  1564. Caption = 'Copy to &Clipboard'
  1565. HelpKeyword = 'filenames#file_name'
  1566. Hint = 'Copy name(s) of selected file(s) to clipboard'
  1567. ShortCut = 24643
  1568. end
  1569. object FullFileListToClipboardAction: TAction
  1570. Tag = 15
  1571. Category = 'Selected Operation'
  1572. Caption = 'Copy to Clipboard (Include &Paths)'
  1573. HelpKeyword = 'filenames#file_name'
  1574. Hint = 'Copy name(s) including path of selected file(s) to clipboard'
  1575. ShortCut = 49219
  1576. end
  1577. object QueueGoToAction: TAction
  1578. Tag = 15
  1579. Category = 'Queue'
  1580. Caption = '&Go To'
  1581. HelpKeyword = 'ui_queue#manage'
  1582. Hint = 'Go to transfer queue list'
  1583. ImageIndex = 74
  1584. ShortCut = 16465
  1585. end
  1586. object QueueItemUpAction: TAction
  1587. Tag = 12
  1588. Category = 'Queue'
  1589. Caption = 'Move &Up'
  1590. HelpKeyword = 'ui_queue#manage'
  1591. Hint = 'Move selected queue item up to be processed earlier'
  1592. ImageIndex = 72
  1593. end
  1594. object QueueItemDownAction: TAction
  1595. Tag = 12
  1596. Category = 'Queue'
  1597. Caption = 'Move &Down'
  1598. HelpKeyword = 'ui_queue#manage'
  1599. Hint = 'Move selected queue item down to be processed later'
  1600. ImageIndex = 73
  1601. end
  1602. object QueueToggleShowAction: TAction
  1603. Tag = 12
  1604. Category = 'Queue'
  1605. Caption = '&Queue'
  1606. Hint = 'Show/hide queue list'
  1607. ImageIndex = 74
  1608. end
  1609. object QueueShowAction: TAction
  1610. Tag = 12
  1611. Category = 'Queue'
  1612. Caption = '&Show'
  1613. HelpKeyword = 'ui_queue'
  1614. Hint = 'Show queue list'
  1615. end
  1616. object QueueHideWhenEmptyAction: TAction
  1617. Tag = 12
  1618. Category = 'Queue'
  1619. Caption = 'Hide when &Empty'
  1620. HelpKeyword = 'ui_queue'
  1621. Hint = 'Hide queue list when it is empty'
  1622. end
  1623. object QueueHideAction: TAction
  1624. Tag = 12
  1625. Category = 'Queue'
  1626. Caption = '&Hide'
  1627. HelpKeyword = 'ui_queue'
  1628. Hint = 'Hide queue list'
  1629. end
  1630. object QueueToolbarAction: TAction
  1631. Tag = 12
  1632. Category = 'Queue'
  1633. Caption = '&Toolbar'
  1634. Hint = 'Hide/show queue list toolbar (on queue list panel)'
  1635. end
  1636. object QueueFileListAction: TAction
  1637. Tag = 12
  1638. Category = 'Queue'
  1639. Caption = '&File List'
  1640. Hint = 'Hide/show full queue file list'
  1641. end
  1642. object QueueResetLayoutColumnsAction: TAction
  1643. Tag = 12
  1644. Category = 'Queue'
  1645. Caption = '&Reset Columns Layout'
  1646. Hint = 'Reset to the default layout of list columns'
  1647. end
  1648. object QueuePreferencesAction: TAction
  1649. Tag = 12
  1650. Category = 'Queue'
  1651. Caption = '&Customize...'
  1652. HelpKeyword = 'ui_pref_background'
  1653. Hint = 'Customize queue list'
  1654. ImageIndex = 28
  1655. end
  1656. object PasteAction3: TAction
  1657. Tag = 15
  1658. Category = 'Command'
  1659. Caption = '&Paste from Clipboard'
  1660. HelpKeyword = 'clipboard'
  1661. Hint =
  1662. 'Paste files from the clipboard to the current directory in the a' +
  1663. 'ctive panel; or open a path from the clipboard in the active pan' +
  1664. 'el; or open a session URL from the clipboard'
  1665. ImageIndex = 75
  1666. ShortCut = 16470
  1667. end
  1668. object NewFileAction: TAction
  1669. Tag = 15
  1670. Category = 'Command'
  1671. Caption = '&File...'
  1672. HelpKeyword = 'task_edit'
  1673. Hint = 'Create file|Create new file and open it in editor'
  1674. ImageIndex = 77
  1675. end
  1676. object EditorListCustomizeAction: TAction
  1677. Tag = 15
  1678. Category = 'Command'
  1679. Caption = '&Configure...'
  1680. HelpKeyword = 'ui_pref_editor'
  1681. Hint = 'Customize editors'
  1682. ImageIndex = 28
  1683. end
  1684. object RemoteCopyToFocusedAction: TAction
  1685. Tag = 12
  1686. Category = 'Remote Focused Operation'
  1687. Caption = '&Duplicate...'
  1688. HelpKeyword = 'task_move_duplicate#duplicate'
  1689. Hint =
  1690. 'Duplicate|Duplicate selected remote file(s) to another remote di' +
  1691. 'rectory or another name'
  1692. ImageIndex = 78
  1693. end
  1694. object RemoteCopyToAction: TAction
  1695. Tag = 14
  1696. Category = 'Remote Selected Operation'
  1697. Caption = 'Du&plicate...'
  1698. HelpKeyword = 'task_move_duplicate#duplicate'
  1699. Hint =
  1700. 'Duplicate|Duplicate selected remote file(s) to another remote di' +
  1701. 'rectory or another name'
  1702. ImageIndex = 78
  1703. end
  1704. object FileGenerateUrlAction2: TAction
  1705. Tag = 15
  1706. Category = 'Selected Operation'
  1707. Caption = 'Generate File &URL...'
  1708. HelpKeyword = 'ui_generateurl'
  1709. Hint = 'Generate URL'#39's of selected file(s)'
  1710. end
  1711. object TableOfContentsAction: TAction
  1712. Tag = 12
  1713. Category = 'Help'
  1714. Caption = '&Contents'
  1715. Hint =
  1716. 'Opens web browser and points it to documentation table of conten' +
  1717. 'ts'
  1718. ImageIndex = 79
  1719. ShortCut = 112
  1720. end
  1721. object FileListFromClipboardAction: TAction
  1722. Tag = 15
  1723. Category = 'Selected Operation'
  1724. Caption = '&Transfer Files in Clipboard'
  1725. HelpKeyword = 'clipboard'
  1726. Hint = 'Transfer files whose names are in clipboard'
  1727. end
  1728. object LocalCopyAction: TAction
  1729. Tag = 9
  1730. Category = 'Local Selected Operation'
  1731. Caption = 'Up&load...'
  1732. HelpKeyword = 'task_upload'
  1733. Hint = 'Upload|Upload selected local file(s) to remote directory'
  1734. ImageIndex = 88
  1735. end
  1736. object CurrentDeleteAlternativeAction: TAction
  1737. Tag = 15
  1738. Category = 'Selected Operation'
  1739. Caption = '&Delete'
  1740. HelpKeyword = 'task_delete'
  1741. Hint = 'Delete|Delete selected file(s)'
  1742. ImageIndex = 2
  1743. end
  1744. object CurrentEditWithAction: TAction
  1745. Tag = 15
  1746. Category = 'Selected Operation'
  1747. Caption = 'Edit &With...'
  1748. HelpKeyword = 'task_edit'
  1749. Hint = 'Edit With|Edit selected file(s) using editor of your choice'
  1750. end
  1751. object DownloadPageAction: TAction
  1752. Tag = 15
  1753. Category = 'Help'
  1754. Caption = '&Download'
  1755. Hint = 'Opens web browser and points it to application download page'
  1756. end
  1757. object UpdatesPreferencesAction: TAction
  1758. Tag = 15
  1759. Category = 'Help'
  1760. Caption = 'Confi&gure...'
  1761. HelpKeyword = 'ui_pref_updates'
  1762. Hint = 'Configure automatic check for application updates'
  1763. ImageIndex = 28
  1764. end
  1765. object FormatSizeBytesKilobytesAction: TAction
  1766. Tag = 15
  1767. Category = 'View'
  1768. Caption = '&Kilobytes'
  1769. HelpKeyword = 'ui_pref_panels#common'
  1770. Hint = 'Show files sizes in kilobytes'
  1771. end
  1772. object FormatSizeBytesShortAction: TAction
  1773. Tag = 15
  1774. Category = 'View'
  1775. Caption = '&Short format'
  1776. HelpKeyword = 'ui_pref_panels#common'
  1777. Hint = 'Show files sizes in short format'
  1778. end
  1779. object PresetsPreferencesAction: TAction
  1780. Tag = 15
  1781. Category = 'View'
  1782. Caption = '&Configure...'
  1783. HelpKeyword = 'ui_pref_transfer'
  1784. Hint = 'Configure transfers settings presets'
  1785. ImageIndex = 28
  1786. end
  1787. object LockToolbarsAction: TAction
  1788. Tag = 15
  1789. Category = 'View'
  1790. Caption = '&Lock Toolbars'
  1791. HelpKeyword = 'ui_toolbars'
  1792. Hint = 'Prevents moving and (un)docking of all toolbars'
  1793. end
  1794. object SelectiveToolbarTextAction: TAction
  1795. Tag = 15
  1796. Category = 'View'
  1797. Caption = '&Show Selective Text Labels'
  1798. HelpKeyword = 'ui_toolbars'
  1799. Hint = 'Show text labels for selected important commands on toolbars'
  1800. end
  1801. object ToolbarIconSizeAction: TAction
  1802. Tag = 15
  1803. Category = 'View'
  1804. Caption = 'T&oolbar Icons Size'
  1805. HelpKeyword = 'ui_toolbars'
  1806. Hint = 'Change toolbar icons size'
  1807. end
  1808. object ToolbarIconSizeNormalAction: TAction
  1809. Tag = 15
  1810. Category = 'View'
  1811. Caption = '&Normal'
  1812. HelpKeyword = 'ui_toolbars'
  1813. Hint = 'Show normal toolbar icons'
  1814. end
  1815. object ToolbarIconSizeLargeAction: TAction
  1816. Tag = 15
  1817. Category = 'View'
  1818. Caption = '&Large'
  1819. HelpKeyword = 'ui_toolbars'
  1820. Hint = 'Show large toolbar icons'
  1821. end
  1822. object ToolbarIconSizeVeryLargeAction: TAction
  1823. Tag = 15
  1824. Category = 'View'
  1825. Caption = '&Very Large'
  1826. HelpKeyword = 'ui_toolbars'
  1827. Hint = 'Show very large toolbar icons'
  1828. end
  1829. object CustomCommandsBandAction: TAction
  1830. Tag = 15
  1831. Category = 'View'
  1832. Caption = 'Custom Co&mmand Buttons'
  1833. HelpKeyword = 'ui_toolbars'
  1834. Hint = 'Hide/show custom commands toolbar'
  1835. end
  1836. object ColorMenuAction2: TAction
  1837. Tag = 15
  1838. Category = 'View'
  1839. Caption = 'C&olor'
  1840. HelpKeyword = 'task_connections#session_color'
  1841. Hint = 'Change color of the current tab'
  1842. end
  1843. object AutoReadDirectoryAfterOpAction: TAction
  1844. Tag = 15
  1845. Category = 'View'
  1846. Caption = 'Auto&matically Reload Directory'
  1847. Hint = 'Toggle automatic reload of remote directory after operation'
  1848. ShortCut = 49234
  1849. end
  1850. object QueueItemPauseAction: TAction
  1851. Tag = 12
  1852. Category = 'Queue'
  1853. Caption = '&Suspend'
  1854. HelpKeyword = 'ui_queue#manage'
  1855. Hint = 'Suspend selected queue item'
  1856. ImageIndex = 83
  1857. end
  1858. object QueueItemResumeAction: TAction
  1859. Tag = 12
  1860. Category = 'Queue'
  1861. Caption = '&Resume'
  1862. HelpKeyword = 'ui_queue#manage'
  1863. Hint = 'Resume selected suspended queue item'
  1864. ImageIndex = 70
  1865. end
  1866. object QueuePauseAllAction: TAction
  1867. Tag = 12
  1868. Category = 'Queue'
  1869. Caption = '&Suspend All'
  1870. HelpKeyword = 'ui_queue#manage'
  1871. Hint = 'Suspend all running queue items'
  1872. ImageIndex = 84
  1873. end
  1874. object QueueResumeAllAction: TAction
  1875. Tag = 12
  1876. Category = 'Queue'
  1877. Caption = '&Resume All'
  1878. HelpKeyword = 'ui_queue#manage'
  1879. Hint = 'Resume all suspended queue items'
  1880. ImageIndex = 85
  1881. end
  1882. object QueueDeleteAllDoneAction: TAction
  1883. Tag = 12
  1884. Category = 'Queue'
  1885. Caption = 'Delete All &Completed'
  1886. HelpKeyword = 'ui_queue#manage'
  1887. Hint = 'Remove all completed queue items'
  1888. ImageIndex = 99
  1889. end
  1890. object QueueEnableAction: TAction
  1891. Tag = 15
  1892. Category = 'Queue'
  1893. Caption = '&Process Queue'
  1894. HelpKeyword = 'ui_queue#manage'
  1895. Hint =
  1896. 'Enable queue processing|Enable queue processing (pending queue i' +
  1897. 'tems will not start, when queue processing is disabled)'
  1898. ImageIndex = 96
  1899. ShortCut = 24657
  1900. end
  1901. object QueueDisconnectOnceEmptyAction2: TAction
  1902. Tag = 12
  1903. Category = 'Queue'
  1904. Caption = '&Disconnect Session'
  1905. HelpKeyword = 'ui_queue'
  1906. Hint = 'Disconnect the session once the queue is empty'
  1907. ImageIndex = 87
  1908. end
  1909. object RestoreSelectionAction: TAction
  1910. Tag = 15
  1911. Category = 'Selection'
  1912. Caption = '&Restore Selection'
  1913. HelpKeyword = 'ui_file_panel#selecting_files'
  1914. Hint = 'Restore previous selection'
  1915. ImageIndex = 86
  1916. ShortCut = 24659
  1917. end
  1918. object LocalSelectAction2: TAction
  1919. Tag = 12
  1920. Category = 'Selection'
  1921. Caption = 'Sele&ct Files...'
  1922. HelpKeyword = 'ui_select'
  1923. Hint = 'Select|Select files by mask'
  1924. ImageIndex = 19
  1925. end
  1926. object LocalUnselectAction2: TAction
  1927. Tag = 12
  1928. Category = 'Selection'
  1929. Caption = '&Unselect Files...'
  1930. HelpKeyword = 'ui_select'
  1931. Hint = 'Unselect|Unselect files by mask'
  1932. ImageIndex = 20
  1933. end
  1934. object LocalSelectAllAction2: TAction
  1935. Tag = 12
  1936. Category = 'Selection'
  1937. Caption = 'Select &All'
  1938. HelpKeyword = 'ui_file_panel#selecting_files'
  1939. Hint = 'Select all files'
  1940. ImageIndex = 21
  1941. end
  1942. object CurrentEditFocusedAction: TAction
  1943. Tag = 15
  1944. Category = 'Focused Operation'
  1945. Caption = '&Edit'
  1946. HelpKeyword = 'task_edit'
  1947. Hint = 'Edit|Edit selected file(s)'
  1948. ImageIndex = 57
  1949. end
  1950. object CurrentEditWithFocusedAction: TAction
  1951. Tag = 15
  1952. Category = 'Focused Operation'
  1953. Caption = 'Edit &With...'
  1954. HelpKeyword = 'task_edit'
  1955. Hint = 'Edit With|Edit selected file(s) using editor of your choice'
  1956. end
  1957. object NewDirAction: TAction
  1958. Tag = 12
  1959. Category = 'Command'
  1960. Caption = '&Directory...'
  1961. HelpKeyword = 'task_create_directory'
  1962. Hint = 'Create directory|Create new directory'
  1963. ImageIndex = 5
  1964. end
  1965. object QueueShutDownOnceEmptyAction2: TAction
  1966. Tag = 12
  1967. Category = 'Queue'
  1968. Caption = '&Shut Down Computer'
  1969. HelpKeyword = 'ui_queue'
  1970. Hint = 'Shut down the computer once the queue is empty'
  1971. ImageIndex = 93
  1972. end
  1973. object QueueSuspendOnceEmptyAction2: TAction
  1974. Tag = 12
  1975. Category = 'Queue'
  1976. Caption = 'Slee&p Computer'
  1977. HelpKeyword = 'ui_queue'
  1978. Hint = 'Put the computer into sleep mode once the queue is empty'
  1979. ImageIndex = 105
  1980. end
  1981. object QueueIdleOnceEmptyAction: TAction
  1982. Tag = 12
  1983. Category = 'Queue'
  1984. Caption = '&Stay Idle'
  1985. Checked = True
  1986. HelpKeyword = 'ui_queue'
  1987. Hint = 'Stay idle once the queue is empty'
  1988. ImageIndex = 94
  1989. end
  1990. object QueueCycleOnceEmptyAction: TAction
  1991. Tag = 12
  1992. Category = 'Queue'
  1993. Caption = 'Once &Empty'
  1994. HelpKeyword = 'ui_queue'
  1995. Hint = 'Toggle action to perform once the queue list is empty'
  1996. ImageIndex = 94
  1997. end
  1998. object QueueItemSpeedAction: TTBEditAction
  1999. Tag = 12
  2000. Category = 'Queue'
  2001. HelpKeyword = 'ui_queue#manage'
  2002. Hint = 'Change speed limit of selected queue item'
  2003. ImageIndex = 109
  2004. EditCaption = '&Speed'
  2005. end
  2006. object QueueDeleteAllAction: TAction
  2007. Tag = 12
  2008. Category = 'Queue'
  2009. Caption = '&Cancel All'
  2010. HelpKeyword = 'ui_queue#manage'
  2011. Hint = 'Remove all queue items'
  2012. ImageIndex = 106
  2013. end
  2014. object LocalFilterAction: TAction
  2015. Tag = 9
  2016. Category = 'Local Directory'
  2017. Caption = '&Filter...'
  2018. HelpKeyword = 'ui_file_panel#filtering'
  2019. Hint = 'Filter|Filter displayed files'
  2020. ImageIndex = 92
  2021. ShortCut = 49222
  2022. end
  2023. object RemoteFilterAction: TAction
  2024. Tag = 14
  2025. Category = 'Remote Directory'
  2026. Caption = '&Filter...'
  2027. HelpKeyword = 'ui_file_panel#filtering'
  2028. Hint = 'Filter|Filter displayed files'
  2029. ImageIndex = 92
  2030. ShortCut = 49222
  2031. end
  2032. object RemoteFindFilesAction2: TAction
  2033. Tag = 15
  2034. Category = 'Remote Directory'
  2035. Caption = '&Find Files...'
  2036. HelpKeyword = 'task_find'
  2037. Hint = 'Find files|Find files and directories'
  2038. ImageIndex = 95
  2039. end
  2040. object CurrentEditInternalAction: TAction
  2041. Tag = 15
  2042. Category = 'Selected Operation'
  2043. Caption = '&Internal editor'
  2044. HelpKeyword = 'task_edit'
  2045. Hint = 'Edit (internal)|Edit selected file(s) using internal editor'
  2046. end
  2047. object SaveWorkspaceAction: TAction
  2048. Tag = 15
  2049. Category = 'Tab'
  2050. Caption = 'Save Wor&kspace...'
  2051. HelpKeyword = 'workspace'
  2052. Hint = 'Save workspace|Save workspace'
  2053. ImageIndex = 102
  2054. end
  2055. object LocalRenameAction2: TAction
  2056. Tag = 12
  2057. Category = 'Local Selected Operation'
  2058. Caption = '&Rename'
  2059. HelpKeyword = 'task_rename'
  2060. Hint = 'Rename|Rename selected file'
  2061. ImageIndex = 3
  2062. end
  2063. object LocalEditAction2: TAction
  2064. Tag = 12
  2065. Category = 'Local Selected Operation'
  2066. Caption = '&Edit'
  2067. HelpKeyword = 'task_edit'
  2068. Hint = 'Edit|Edit selected file(s)'
  2069. ImageIndex = 57
  2070. end
  2071. object LocalMoveAction: TAction
  2072. Tag = 9
  2073. Category = 'Local Selected Operation'
  2074. Caption = 'Upload and Dele&te...'
  2075. HelpKeyword = 'task_upload'
  2076. Hint =
  2077. 'Upload and Delete|Upload selected local file(s) to remote direct' +
  2078. 'ory and delete original'
  2079. ImageIndex = 98
  2080. end
  2081. object LocalCreateDirAction3: TAction
  2082. Tag = 12
  2083. Category = 'Local Selected Operation'
  2084. Caption = '&Directory...'
  2085. HelpKeyword = 'task_create_directory'
  2086. Hint = 'Create directory|Create new directory'
  2087. ImageIndex = 5
  2088. end
  2089. object LocalDeleteAction2: TAction
  2090. Tag = 12
  2091. Category = 'Local Selected Operation'
  2092. Caption = '&Delete'
  2093. HelpKeyword = 'task_delete'
  2094. Hint = 'Delete|Delete selected file(s)'
  2095. ImageIndex = 2
  2096. end
  2097. object LocalPropertiesAction2: TAction
  2098. Tag = 12
  2099. Category = 'Local Selected Operation'
  2100. Caption = '&Properties'
  2101. HelpKeyword = 'task_properties'
  2102. Hint = 'Properties|Display/change properties of selected file(s)'
  2103. ImageIndex = 4
  2104. end
  2105. object LocalAddEditLinkAction3: TAction
  2106. Tag = 12
  2107. Category = 'Local Selected Operation'
  2108. Caption = '&Shortcut...'
  2109. HelpKeyword = 'task_link'
  2110. Hint =
  2111. 'Add/edit link|Add new link/shortcut or edit selected link/shortc' +
  2112. 'ut'
  2113. ImageIndex = 60
  2114. end
  2115. object RemoteRenameAction2: TAction
  2116. Tag = 12
  2117. Category = 'Remote Selected Operation'
  2118. Caption = '&Rename'
  2119. HelpKeyword = 'task_rename'
  2120. Hint = 'Rename|Rename selected file'
  2121. ImageIndex = 3
  2122. end
  2123. object RemoteEditAction2: TAction
  2124. Tag = 12
  2125. Category = 'Remote Selected Operation'
  2126. Caption = '&Edit'
  2127. HelpKeyword = 'task_edit'
  2128. Hint = 'Edit|Edit selected file(s)'
  2129. ImageIndex = 57
  2130. end
  2131. object RemoteMoveAction: TAction
  2132. Tag = 14
  2133. Category = 'Remote Selected Operation'
  2134. Caption = 'Download and Dele&te...'
  2135. HelpKeyword = 'task_download'
  2136. Hint =
  2137. 'Download and Delete|Download selected remote file(s) to local di' +
  2138. 'rectory and delete original'
  2139. ImageIndex = 97
  2140. end
  2141. object RemoteCreateDirAction3: TAction
  2142. Tag = 12
  2143. Category = 'Remote Selected Operation'
  2144. Caption = '&Directory...'
  2145. HelpKeyword = 'task_create_directory'
  2146. Hint = 'Create directory|Create new directory'
  2147. ImageIndex = 5
  2148. end
  2149. object RemoteDeleteAction2: TAction
  2150. Tag = 12
  2151. Category = 'Remote Selected Operation'
  2152. Caption = '&Delete'
  2153. HelpKeyword = 'task_delete'
  2154. Hint = 'Delete|Delete selected file(s)'
  2155. ImageIndex = 2
  2156. end
  2157. object RemotePropertiesAction2: TAction
  2158. Tag = 12
  2159. Category = 'Remote Selected Operation'
  2160. Caption = '&Properties'
  2161. HelpKeyword = 'task_properties'
  2162. Hint = 'Properties|Display/change properties of selected file(s)'
  2163. ImageIndex = 4
  2164. end
  2165. object RemoteAddEditLinkAction3: TAction
  2166. Tag = 12
  2167. Category = 'Remote Selected Operation'
  2168. Caption = '&Link...'
  2169. HelpKeyword = 'task_link'
  2170. Hint =
  2171. 'Add/edit link|Add new link/shortcut or edit selected link/shortc' +
  2172. 'ut'
  2173. ImageIndex = 60
  2174. end
  2175. object RemoteSelectAction2: TAction
  2176. Tag = 12
  2177. Category = 'Selection'
  2178. Caption = 'Sele&ct Files...'
  2179. HelpKeyword = 'ui_select'
  2180. Hint = 'Select|Select files by mask'
  2181. ImageIndex = 19
  2182. end
  2183. object RemoteUnselectAction2: TAction
  2184. Tag = 12
  2185. Category = 'Selection'
  2186. Caption = '&Unselect Files...'
  2187. HelpKeyword = 'ui_select'
  2188. Hint = 'Unselect|Unselect files by mask'
  2189. ImageIndex = 20
  2190. end
  2191. object RemoteSelectAllAction2: TAction
  2192. Tag = 12
  2193. Category = 'Selection'
  2194. Caption = 'Select &All'
  2195. HelpKeyword = 'ui_file_panel#selecting_files'
  2196. Hint = 'Select all files'
  2197. ImageIndex = 21
  2198. end
  2199. object LocalMoveFocusedAction: TAction
  2200. Tag = 8
  2201. Category = 'Local Focused Operation'
  2202. Caption = 'Upload and Dele&te...'
  2203. HelpKeyword = 'task_upload'
  2204. Hint =
  2205. 'Upload and Delete|Upload selected local file(s) to remote direct' +
  2206. 'ory and delete original'
  2207. ImageIndex = 98
  2208. end
  2209. object CurrentEditInternalFocusedAction: TAction
  2210. Tag = 15
  2211. Category = 'Focused Operation'
  2212. Caption = '&Internal editor'
  2213. HelpKeyword = 'task_edit'
  2214. Hint = 'Edit (internal)|Edit selected file(s) using internal editor'
  2215. end
  2216. object CurrentSystemMenuFocusedAction: TAction
  2217. Tag = 12
  2218. Category = 'Focused Operation'
  2219. Caption = '&System Menu'
  2220. Hint =
  2221. 'Display system file context menu (in Properties you can opt to d' +
  2222. 'isplay it by default instead of built-in menu)'
  2223. end
  2224. object SessionGenerateUrlAction2: TAction
  2225. Tag = 15
  2226. Category = 'Session'
  2227. Caption = 'Generate Session &URL/Code...'
  2228. HelpKeyword = 'ui_generateurl'
  2229. Hint = 'Generate URL or code for current session'
  2230. end
  2231. object SelectSameExtAction: TAction
  2232. Tag = 15
  2233. Category = 'Selection'
  2234. Caption = 'Select Files with Same &Extension'
  2235. Hint =
  2236. 'Select all files with the same extension as currently focused fi' +
  2237. 'le'
  2238. ShortCut = 32875
  2239. end
  2240. object UnselectSameExtAction: TAction
  2241. Tag = 15
  2242. Category = 'Selection'
  2243. Caption = 'Unselect Files with Same E&xtension'
  2244. Hint =
  2245. 'Unselect all files with the same extension as currently focused ' +
  2246. 'file'
  2247. ShortCut = 32877
  2248. end
  2249. object GoToAddressAction: TAction
  2250. Tag = 15
  2251. Category = 'Command'
  2252. Caption = 'GoToAddressAction'
  2253. SecondaryShortCuts.Strings = (
  2254. 'Alt+D')
  2255. ShortCut = 16460
  2256. end
  2257. object LockAction: TAction
  2258. Tag = 15
  2259. Category = 'Selected Operation'
  2260. Caption = '&Lock'
  2261. Hint = 'Lock selected file(s)'
  2262. end
  2263. object UnlockAction: TAction
  2264. Tag = 15
  2265. Category = 'Selected Operation'
  2266. Caption = '&Unlock'
  2267. Hint = 'Unlock selected file(s)'
  2268. end
  2269. object TipsAction: TAction
  2270. Tag = 15
  2271. Category = 'Help'
  2272. Caption = 'Show &Tips'
  2273. HelpKeyword = 'ui_tips'
  2274. Hint = 'Displays tips on using WinSCP'
  2275. ImageIndex = 110
  2276. end
  2277. object ChangePasswordAction: TAction
  2278. Tag = 15
  2279. Category = 'Session'
  2280. Caption = '&Change Password...'
  2281. HelpKeyword = 'task_change_password'
  2282. Hint = 'Change account password'
  2283. end
  2284. object PrivateKeyUploadAction: TAction
  2285. Tag = 15
  2286. Category = 'Session'
  2287. Caption = '&Install Public Key into Server...'
  2288. HelpKeyword = 'guide_public_key'
  2289. Hint = 'Install public key for authentication into the server'
  2290. end
  2291. object RemoteNewFileAction: TAction
  2292. Tag = 15
  2293. Category = 'Remote Selected Operation'
  2294. Caption = '&File...'
  2295. HelpKeyword = 'task_edit'
  2296. Hint = 'Create file|Create new file and open it in editor'
  2297. ImageIndex = 77
  2298. end
  2299. object RemoteCalculateDirectorySizesAction: TAction
  2300. Tag = 12
  2301. Category = 'Remote Selected Operation'
  2302. Caption = '&Calculate Directory Sizes'
  2303. HelpKeyword = 'ui_file_panel#directory_sizes'
  2304. Hint =
  2305. 'Calculate sizes of the selected directories and display them in ' +
  2306. 'the file panel'
  2307. ShortCut = 40973
  2308. end
  2309. object LocalNewFileAction: TAction
  2310. Tag = 15
  2311. Category = 'Local Selected Operation'
  2312. Caption = '&File...'
  2313. HelpKeyword = 'task_edit'
  2314. Hint = 'Create file|Create new file and open it in editor'
  2315. ImageIndex = 77
  2316. end
  2317. object CustomizeToolbarAction: TAction
  2318. Tag = 15
  2319. Category = 'View'
  2320. Caption = '&Customize Toolbar'
  2321. HelpKeyword = 'ui_toolbars'
  2322. Hint = 'Show/hide toolbar buttons'
  2323. end
  2324. object RenameTabAction: TAction
  2325. Tag = 15
  2326. Category = 'Tab'
  2327. Caption = '&Rename Tab'
  2328. HelpKeyword = 'ui_tabs#renaming'
  2329. Hint = 'Rename tab|Change the name of the current tab'
  2330. end
  2331. object CurrentCopyToClipboardAction2: TAction
  2332. Tag = 15
  2333. Category = 'Selected Operation'
  2334. Caption = '&Copy to Clipboard'
  2335. HelpKeyword = 'clipboard#copy'
  2336. Hint = 'Copy the selected files to the clipboard'
  2337. ImageIndex = 111
  2338. ShortCut = 16451
  2339. end
  2340. object FileColorsPreferencesAction: TAction
  2341. Tag = 15
  2342. Category = 'View'
  2343. Caption = 'File &Colors...'
  2344. HelpKeyword = 'ui_pref_file_colors'
  2345. Hint = 'Configure file color rules'
  2346. end
  2347. object CurrentCopyToClipboardFocusedAction2: TAction
  2348. Tag = 12
  2349. Category = 'Focused Operation'
  2350. Caption = '&Copy to Clipboard'
  2351. HelpKeyword = 'clipboard#copy'
  2352. Hint = 'Copy the selected files to the clipboard'
  2353. ImageIndex = 111
  2354. ShortCut = 16451
  2355. end
  2356. object CommanderLocalPanelAction: TAction
  2357. Tag = 11
  2358. Category = 'View'
  2359. Caption = '&Left Panel'
  2360. HelpKeyword = 'ui_file_panel'
  2361. Hint = 'Change left panel layout'
  2362. end
  2363. object CommanderRemotePanelAction: TAction
  2364. Tag = 11
  2365. Category = 'View'
  2366. Caption = '&Right Panel'
  2367. HelpKeyword = 'ui_file_panel'
  2368. Hint = 'Change right panel layout'
  2369. end
  2370. object RemoteExploreDirectoryAction: TAction
  2371. Tag = 14
  2372. Category = 'Remote Directory'
  2373. Caption = '&Explore Directory'
  2374. Hint = 'Open Windows File Explorer with the current local directory'
  2375. ImageIndex = 56
  2376. ShortCut = 49221
  2377. end
  2378. object LocalLocalCopyAction: TAction
  2379. Tag = 9
  2380. Category = 'Local Selected Operation'
  2381. Caption = '&Copy...'
  2382. Hint = 'Copy the selected file(s) to another directory or another name'
  2383. ImageIndex = 78
  2384. end
  2385. object LocalLocalMoveAction: TAction
  2386. Tag = 9
  2387. Category = 'Local Selected Operation'
  2388. Caption = '&Move...'
  2389. Hint = 'Move the selected file(s) to another directory or rename them'
  2390. ImageIndex = 100
  2391. end
  2392. object LocalOtherCopyAction: TAction
  2393. Tag = 14
  2394. Category = 'Local Selected Operation'
  2395. Caption = '&Copy...'
  2396. Hint = 'Copy the selected file(s) to another directory or another name'
  2397. ImageIndex = 112
  2398. end
  2399. object LocalOtherMoveAction: TAction
  2400. Tag = 14
  2401. Category = 'Local Selected Operation'
  2402. Caption = '&Move...'
  2403. Hint = 'Move the selected file(s) to another directory or rename them'
  2404. ImageIndex = 113
  2405. end
  2406. object LocalCalculateDirectorySizesAction: TAction
  2407. Tag = 12
  2408. Category = 'Local Selected Operation'
  2409. Caption = '&Calculate Directory Sizes'
  2410. HelpKeyword = 'ui_file_panel#directory_sizes'
  2411. Hint =
  2412. 'Calculate sizes of the selected directories and display them in ' +
  2413. 'the file panel'
  2414. ShortCut = 40973
  2415. end
  2416. object LocalLocalCopyFocusedAction: TAction
  2417. Tag = 8
  2418. Category = 'Local Focused Operation'
  2419. Caption = '&Copy...'
  2420. Hint = 'Copy the selected file(s) to another directory or another name'
  2421. ImageIndex = 78
  2422. end
  2423. object LocalLocalMoveFocusedAction: TAction
  2424. Tag = 8
  2425. Category = 'Local Focused Operation'
  2426. Caption = '&Move...'
  2427. Hint = 'Move the selected file(s) to another directory or rename them'
  2428. ImageIndex = 100
  2429. end
  2430. object NewTabAction: TAction
  2431. Tag = 15
  2432. Category = 'Tab'
  2433. Caption = '&New Tab'
  2434. HelpKeyword = 'ui_tabs#working'
  2435. Hint = 'Open new tab'
  2436. ImageIndex = 115
  2437. end
  2438. object NewLocalTabAction: TAction
  2439. Tag = 11
  2440. Category = 'Tab'
  2441. Caption = '&Local Tab'
  2442. HelpKeyword = 'ui_tabs#working'
  2443. Hint = 'Open new tab with two local panels'
  2444. ImageIndex = 115
  2445. ShortCut = 24654
  2446. end
  2447. object NewRemoteTabAction: TAction
  2448. Tag = 11
  2449. Category = 'Tab'
  2450. Caption = '&Remote Tab'
  2451. HelpKeyword = 'ui_tabs#working'
  2452. Hint = 'Open new tab with one local panel and one remote session panel'
  2453. ImageIndex = 25
  2454. ShortCut = 16462
  2455. end
  2456. object DefaultToNewRemoteTabAction: TAction
  2457. Tag = 11
  2458. Category = 'Tab'
  2459. Caption = '&Default to Remote Tab'
  2460. Hint =
  2461. 'When turned on, the New Tab command opens a new remote tab. Othe' +
  2462. 'rwise it opens a new local tab.'
  2463. end
  2464. object CalculateDirectorySizesAction: TAction
  2465. Tag = 15
  2466. Category = 'Selected Operation'
  2467. Caption = '&Calculate Directory Sizes'
  2468. HelpKeyword = 'ui_file_panel#directory_sizes'
  2469. Hint =
  2470. 'Calculate sizes of the selected directories and display them in ' +
  2471. 'the file panel'
  2472. ShortCut = 40973
  2473. end
  2474. object LocalOtherDirAction: TAction
  2475. Tag = 9
  2476. Category = 'Local Directory'
  2477. Caption = 'Path fro&m Other Panel'
  2478. HelpKeyword = 'task_navigate#special_commands'
  2479. Hint = 'Open the same directory as in the other panel'
  2480. ShortCut = 16574
  2481. end
  2482. object RemoteOtherDirAction: TAction
  2483. Tag = 14
  2484. Category = 'Remote Directory'
  2485. Caption = 'Path fro&m Other Panel'
  2486. HelpKeyword = 'task_navigate#special_commands'
  2487. Hint = 'Open the same directory as in the other panel'
  2488. ShortCut = 16574
  2489. end
  2490. object IncrementalSearchStartAction: TAction
  2491. Tag = 11
  2492. Category = 'Command'
  2493. Caption = 'IncrementalSearchStartAction'
  2494. ShortCut = 16454
  2495. end
  2496. object RemoteThumbnailAction: TAction
  2497. Tag = 15
  2498. Category = 'Style'
  2499. Caption = '&Thumbnails'
  2500. HelpKeyword = 'ui_file_panel#view_style'
  2501. Hint = 'Thumbnails|View thumbnails'
  2502. end
  2503. object LocalReportAction: TAction
  2504. Tag = 15
  2505. Category = 'Style'
  2506. Caption = '&Details'
  2507. HelpKeyword = 'ui_file_panel#view_style'
  2508. Hint = 'Details|View details'
  2509. ImageIndex = 11
  2510. end
  2511. object LocalThumbnailAction: TAction
  2512. Tag = 15
  2513. Category = 'Style'
  2514. Caption = '&Thumbnails'
  2515. HelpKeyword = 'ui_file_panel#view_style'
  2516. Hint = 'Thumbnails|View thumbnails'
  2517. end
  2518. end
  2519. object ExplorerBarPopup: TTBXPopupMenu
  2520. Images = GlyphsModule.ExplorerImages
  2521. Options = [tboShowHint]
  2522. Left = 192
  2523. Top = 336
  2524. object Address2: TTBXItem
  2525. Action = ExplorerAddressBandAction
  2526. end
  2527. object StandardButtons1: TTBXItem
  2528. Action = ExplorerToolbarBandAction
  2529. end
  2530. object SelectionButtons1: TTBXItem
  2531. Action = ExplorerSelectionBandAction
  2532. end
  2533. object SessionButtons2: TTBXItem
  2534. Action = ExplorerSessionBandAction2
  2535. end
  2536. object PreferencesButtons1: TTBXItem
  2537. Action = ExplorerPreferencesBandAction
  2538. end
  2539. object SortButtons3: TTBXItem
  2540. Action = ExplorerSortBandAction
  2541. end
  2542. object TBXItem3: TTBXItem
  2543. Action = ExplorerUpdatesBandAction
  2544. end
  2545. object TBXItem4: TTBXItem
  2546. Action = ExplorerTransferBandAction
  2547. end
  2548. object TBXItem16: TTBXItem
  2549. Action = ExplorerCustomCommandsBandAction
  2550. end
  2551. object TBXSeparatorItem27: TTBXSeparatorItem
  2552. end
  2553. object TBXItem7: TTBXItem
  2554. Action = LockToolbarsAction
  2555. end
  2556. object TBXItem48: TTBXItem
  2557. Action = SelectiveToolbarTextAction
  2558. end
  2559. object TBXSubmenuItem15: TTBXSubmenuItem
  2560. Action = ToolbarIconSizeAction
  2561. object TBXItem127: TTBXItem
  2562. Action = ToolbarIconSizeNormalAction
  2563. RadioItem = True
  2564. end
  2565. object TBXItem120: TTBXItem
  2566. Action = ToolbarIconSizeLargeAction
  2567. RadioItem = True
  2568. end
  2569. object TBXItem128: TTBXItem
  2570. Action = ToolbarIconSizeVeryLargeAction
  2571. RadioItem = True
  2572. end
  2573. end
  2574. object TBXSubmenuItem4: TTBXSubmenuItem
  2575. Action = CustomizeToolbarAction
  2576. end
  2577. object N5: TTBXSeparatorItem
  2578. end
  2579. object SessionsTabs2: TTBXItem
  2580. Action = SessionsTabsAction2
  2581. end
  2582. object StatusBar2: TTBXItem
  2583. Action = StatusBarAction
  2584. end
  2585. object N72: TTBXSeparatorItem
  2586. end
  2587. object Queue7: TTBXSubmenuItem
  2588. Caption = '&Queue'
  2589. HelpKeyword = 'ui_queue'
  2590. Hint = 'Configure queue list'
  2591. object Show6: TTBXItem
  2592. Action = QueueShowAction
  2593. RadioItem = True
  2594. end
  2595. object HidewhenEmpty6: TTBXItem
  2596. Action = QueueHideWhenEmptyAction
  2597. RadioItem = True
  2598. end
  2599. object Hide5: TTBXItem
  2600. Action = QueueHideAction
  2601. RadioItem = True
  2602. end
  2603. object N71: TTBXSeparatorItem
  2604. end
  2605. object Toolbar5: TTBXItem
  2606. Action = QueueToolbarAction
  2607. end
  2608. object TBXItem85: TTBXItem
  2609. Action = QueueFileListAction
  2610. end
  2611. object N70: TTBXSeparatorItem
  2612. end
  2613. object Customize5: TTBXItem
  2614. Action = QueuePreferencesAction
  2615. end
  2616. end
  2617. object Tree4: TTBXItem
  2618. Action = RemoteTreeAction
  2619. end
  2620. end
  2621. object SessionIdleTimer: TTimer
  2622. Enabled = False
  2623. Interval = 500
  2624. OnTimer = SessionIdleTimerTimer
  2625. Left = 32
  2626. Top = 336
  2627. end
  2628. object CommanderBarPopup: TTBXPopupMenu
  2629. Images = GlyphsModule.ExplorerImages
  2630. Options = [tboShowHint]
  2631. Left = 424
  2632. Top = 264
  2633. object CommandsButtons2: TTBXItem
  2634. Action = CommanderCommandsBandAction
  2635. end
  2636. object SessionButtons5: TTBXItem
  2637. Action = CommanderSessionBandAction2
  2638. end
  2639. object PreferencesButtons4: TTBXItem
  2640. Action = CommanderPreferencesBandAction
  2641. end
  2642. object SortButtons2: TTBXItem
  2643. Action = CommanderSortBandAction
  2644. end
  2645. object TBXItem2: TTBXItem
  2646. Action = CommanderUpdatesBandAction
  2647. end
  2648. object TBXItem5: TTBXItem
  2649. Action = CommanderTransferBandAction
  2650. end
  2651. object TBXItem15: TTBXItem
  2652. Action = CommanderCustomCommandsBandAction
  2653. end
  2654. object TBXSeparatorItem24: TTBXSeparatorItem
  2655. end
  2656. object TBXItem6: TTBXItem
  2657. Action = LockToolbarsAction
  2658. end
  2659. object TBXItem46: TTBXItem
  2660. Action = SelectiveToolbarTextAction
  2661. end
  2662. object TBXSubmenuItem14: TTBXSubmenuItem
  2663. Action = ToolbarIconSizeAction
  2664. object TBXItem123: TTBXItem
  2665. Action = ToolbarIconSizeNormalAction
  2666. RadioItem = True
  2667. end
  2668. object TBXItem117: TTBXItem
  2669. Action = ToolbarIconSizeLargeAction
  2670. RadioItem = True
  2671. end
  2672. object TBXItem126: TTBXItem
  2673. Action = ToolbarIconSizeVeryLargeAction
  2674. RadioItem = True
  2675. end
  2676. end
  2677. object TBXItem77: TTBXSubmenuItem
  2678. Action = CustomizeToolbarAction
  2679. end
  2680. object N26: TTBXSeparatorItem
  2681. end
  2682. object SessionsTabs1: TTBXItem
  2683. Action = SessionsTabsAction2
  2684. end
  2685. object CommandLine2: TTBXItem
  2686. Action = CommandLinePanelAction
  2687. end
  2688. object CommandsToolbar1: TTBXItem
  2689. Action = ToolBar2Action
  2690. end
  2691. object StatusBar8: TTBXItem
  2692. Action = StatusBarAction
  2693. end
  2694. object N27: TTBXSeparatorItem
  2695. end
  2696. object LocalPanel1: TTBXSubmenuItem
  2697. Action = CommanderLocalPanelAction
  2698. object HistoryButtons3: TTBXItem
  2699. Action = CommanderLocalHistoryBandAction2
  2700. end
  2701. object NavigationButtons3: TTBXItem
  2702. Action = CommanderLocalNavigationBandAction2
  2703. end
  2704. object TBXItem40: TTBXItem
  2705. Action = CommanderLocalFileBandAction2
  2706. end
  2707. object TBXItem43: TTBXItem
  2708. Action = CommanderLocalSelectionBandAction2
  2709. end
  2710. object N23: TTBXSeparatorItem
  2711. end
  2712. object Tree7: TTBXItem
  2713. Action = LocalTreeAction
  2714. end
  2715. object N77: TTBXSeparatorItem
  2716. end
  2717. object StatusBar6: TTBXItem
  2718. Action = LocalStatusBarAction2
  2719. end
  2720. end
  2721. object RemotePanel2: TTBXSubmenuItem
  2722. Action = CommanderRemotePanelAction
  2723. object HistoryButtons4: TTBXItem
  2724. Action = CommanderRemoteHistoryBandAction2
  2725. end
  2726. object NavigationButtons4: TTBXItem
  2727. Action = CommanderRemoteNavigationBandAction2
  2728. end
  2729. object TBXItem41: TTBXItem
  2730. Action = CommanderRemoteFileBandAction2
  2731. end
  2732. object TBXItem42: TTBXItem
  2733. Action = CommanderRemoteSelectionBandAction2
  2734. end
  2735. object N25: TTBXSeparatorItem
  2736. end
  2737. object Tree8: TTBXItem
  2738. Action = RemoteTreeAction
  2739. end
  2740. object N78: TTBXSeparatorItem
  2741. end
  2742. object StatusBar7: TTBXItem
  2743. Action = RemoteStatusBarAction2
  2744. end
  2745. end
  2746. object Options1: TTBXSubmenuItem
  2747. Caption = '&Queue'
  2748. HelpKeyword = 'ui_queue'
  2749. Hint = 'Configure queue list'
  2750. object Show5: TTBXItem
  2751. Action = QueueShowAction
  2752. RadioItem = True
  2753. end
  2754. object HidewhenEmpty5: TTBXItem
  2755. Action = QueueHideWhenEmptyAction
  2756. RadioItem = True
  2757. end
  2758. object Hide4: TTBXItem
  2759. Action = QueueHideAction
  2760. RadioItem = True
  2761. end
  2762. object N69: TTBXSeparatorItem
  2763. end
  2764. object Toolbar4: TTBXItem
  2765. Action = QueueToolbarAction
  2766. end
  2767. object TBXItem84: TTBXItem
  2768. Action = QueueFileListAction
  2769. end
  2770. object N68: TTBXSeparatorItem
  2771. end
  2772. object Customize4: TTBXItem
  2773. Action = QueuePreferencesAction
  2774. end
  2775. end
  2776. end
  2777. object RemotePanelPopup: TTBXPopupMenu
  2778. Images = GlyphsModule.ExplorerImages
  2779. Options = [tboShowHint]
  2780. Left = 312
  2781. Top = 264
  2782. object TBXSubmenuItem8: TTBXSubmenuItem
  2783. Caption = '&Go To'
  2784. HelpKeyword = 'task_navigate'
  2785. Hint = 'Go to directory'
  2786. object TBXItem86: TTBXItem
  2787. Action = RemoteOpenDirAction
  2788. end
  2789. object TBXItem99: TTBXItem
  2790. Action = RemoteExploreDirectoryAction
  2791. end
  2792. object TBXSeparatorItem13: TTBXSeparatorItem
  2793. end
  2794. object TBXItem87: TTBXItem
  2795. Action = RemoteParentDirAction
  2796. end
  2797. object TBXItem88: TTBXItem
  2798. Action = RemoteRootDirAction
  2799. end
  2800. object TBXItem89: TTBXItem
  2801. Action = RemoteHomeDirAction
  2802. end
  2803. object TBXItem109: TTBXItem
  2804. Action = RemoteOtherDirAction
  2805. end
  2806. object TBXSeparatorItem14: TTBXSeparatorItem
  2807. end
  2808. object TBXItem90: TTBXItem
  2809. Action = RemoteBackAction
  2810. end
  2811. object TBXItem91: TTBXItem
  2812. Action = RemoteForwardAction
  2813. end
  2814. end
  2815. object TBXItem32: TTBXItem
  2816. Action = RemoteRefreshAction
  2817. end
  2818. object TBXItem30: TTBXItem
  2819. Action = RemoteAddBookmarkAction2
  2820. end
  2821. object TBXItem26: TTBXItem
  2822. Action = RemoteFilterAction
  2823. end
  2824. object CopyPathtoClipboard1: TTBXItem
  2825. Action = RemotePathToClipboardAction2
  2826. end
  2827. object N51: TTBXSeparatorItem
  2828. end
  2829. object HistoryButtons5: TTBXItem
  2830. Action = CommanderRemoteHistoryBandAction2
  2831. end
  2832. object NavigationButtons5: TTBXItem
  2833. Action = CommanderRemoteNavigationBandAction2
  2834. end
  2835. object TBXItem14: TTBXItem
  2836. Action = CommanderRemoteFileBandAction2
  2837. end
  2838. object TBXItem45: TTBXItem
  2839. Action = CommanderRemoteSelectionBandAction2
  2840. end
  2841. object TBXSeparatorItem26: TTBXSeparatorItem
  2842. end
  2843. object TBXItem37: TTBXItem
  2844. Action = LockToolbarsAction
  2845. end
  2846. object TBXItem49: TTBXItem
  2847. Action = SelectiveToolbarTextAction
  2848. end
  2849. object TBXSubmenuItem13: TTBXSubmenuItem
  2850. Action = ToolbarIconSizeAction
  2851. object TBXItem121: TTBXItem
  2852. Action = ToolbarIconSizeNormalAction
  2853. RadioItem = True
  2854. end
  2855. object TBXItem119: TTBXItem
  2856. Action = ToolbarIconSizeLargeAction
  2857. RadioItem = True
  2858. end
  2859. object TBXItem122: TTBXItem
  2860. Action = ToolbarIconSizeVeryLargeAction
  2861. RadioItem = True
  2862. end
  2863. end
  2864. object TBXSubmenuItem9: TTBXSubmenuItem
  2865. Action = CustomizeToolbarAction
  2866. end
  2867. object N28: TTBXSeparatorItem
  2868. end
  2869. object Tree5: TTBXItem
  2870. Action = RemoteTreeAction
  2871. end
  2872. object N75: TTBXSeparatorItem
  2873. end
  2874. object StatusBar9: TTBXItem
  2875. Action = RemoteStatusBarAction2
  2876. end
  2877. end
  2878. object LocalPanelPopup: TTBXPopupMenu
  2879. Images = GlyphsModule.ExplorerImages
  2880. Options = [tboShowHint]
  2881. Left = 312
  2882. Top = 336
  2883. object TBXSubmenuItem10: TTBXSubmenuItem
  2884. Caption = '&Go To'
  2885. HelpKeyword = 'task_navigate'
  2886. Hint = 'Go to directory'
  2887. object TBXItem92: TTBXItem
  2888. Action = LocalOpenDirAction
  2889. end
  2890. object TBXItem93: TTBXItem
  2891. Action = LocalExploreDirectoryAction
  2892. end
  2893. object TBXSeparatorItem15: TTBXSeparatorItem
  2894. end
  2895. object TBXItem94: TTBXItem
  2896. Action = LocalParentDirAction
  2897. end
  2898. object TBXItem95: TTBXItem
  2899. Action = LocalRootDirAction
  2900. end
  2901. object TBXItem96: TTBXItem
  2902. Action = LocalHomeDirAction
  2903. end
  2904. object TBXItem113: TTBXItem
  2905. Action = LocalOtherDirAction
  2906. end
  2907. object TBXSeparatorItem16: TTBXSeparatorItem
  2908. end
  2909. object TBXItem97: TTBXItem
  2910. Action = LocalBackAction
  2911. end
  2912. object TBXItem98: TTBXItem
  2913. Action = LocalForwardAction
  2914. end
  2915. end
  2916. object TBXItem34: TTBXItem
  2917. Action = LocalRefreshAction
  2918. end
  2919. object TBXItem27: TTBXItem
  2920. Action = LocalFilterAction
  2921. end
  2922. object TBXItem31: TTBXItem
  2923. Action = LocalAddBookmarkAction2
  2924. end
  2925. object CopyPathtoClipboard2: TTBXItem
  2926. Action = LocalPathToClipboardAction2
  2927. end
  2928. object N52: TTBXSeparatorItem
  2929. end
  2930. object HistoryButtons6: TTBXItem
  2931. Action = CommanderLocalHistoryBandAction2
  2932. end
  2933. object NavigationButtons6: TTBXItem
  2934. Action = CommanderLocalNavigationBandAction2
  2935. end
  2936. object TBXItem39: TTBXItem
  2937. Action = CommanderLocalFileBandAction2
  2938. end
  2939. object TBXItem44: TTBXItem
  2940. Action = CommanderLocalSelectionBandAction2
  2941. end
  2942. object TBXSeparatorItem25: TTBXSeparatorItem
  2943. end
  2944. object TBXItem38: TTBXItem
  2945. Action = LockToolbarsAction
  2946. end
  2947. object TBXItem47: TTBXItem
  2948. Action = SelectiveToolbarTextAction
  2949. end
  2950. object TBXSubmenuItem16: TTBXSubmenuItem
  2951. Action = ToolbarIconSizeAction
  2952. object TBXItem129: TTBXItem
  2953. Action = ToolbarIconSizeNormalAction
  2954. RadioItem = True
  2955. end
  2956. object TBXItem118: TTBXItem
  2957. Action = ToolbarIconSizeLargeAction
  2958. RadioItem = True
  2959. end
  2960. object TBXItem130: TTBXItem
  2961. Action = ToolbarIconSizeVeryLargeAction
  2962. RadioItem = True
  2963. end
  2964. end
  2965. object TBXSubmenuItem6: TTBXSubmenuItem
  2966. Action = CustomizeToolbarAction
  2967. end
  2968. object N29: TTBXSeparatorItem
  2969. end
  2970. object Tree6: TTBXItem
  2971. Action = LocalTreeAction
  2972. end
  2973. object N76: TTBXSeparatorItem
  2974. end
  2975. object StatusBar10: TTBXItem
  2976. Action = LocalStatusBarAction2
  2977. end
  2978. end
  2979. object LocalDirViewColumnPopup: TTBXPopupMenu
  2980. Images = GlyphsModule.ExplorerImages
  2981. Options = [tboShowHint]
  2982. Left = 248
  2983. Top = 88
  2984. object SortAscending1: TTBXItem
  2985. Action = SortColumnAscendingAction
  2986. end
  2987. object SortDescending1: TTBXItem
  2988. Action = SortColumnDescendingAction
  2989. end
  2990. object LocalSortByExtColumnPopupItem: TTBXItem
  2991. Action = LocalSortByExtAction2
  2992. end
  2993. object Hidecolumn1: TTBXItem
  2994. Action = HideColumnAction
  2995. end
  2996. object N37: TTBXSeparatorItem
  2997. end
  2998. object LocalFormatSizeBytesPopupItem: TTBXSubmenuItem
  2999. Caption = 'Show File Si&zes In'
  3000. HelpKeyword = 'ui_pref_panels#common'
  3001. Hint = 'Select files sizes display format'
  3002. object TBXItem64: TTBXItem
  3003. Action = FormatSizeBytesNoneAction
  3004. end
  3005. object TBXItem65: TTBXItem
  3006. Action = FormatSizeBytesKilobytesAction
  3007. end
  3008. object TBXItem66: TTBXItem
  3009. Action = FormatSizeBytesShortAction
  3010. end
  3011. end
  3012. object LocalCalculateDirectorySizesPopupItem: TTBXItem
  3013. Action = LocalCalculateDirectorySizesAction
  3014. end
  3015. object TBXSeparatorItem8: TTBXSeparatorItem
  3016. end
  3017. object LocalColumnsSubmenuItem: TTBXSubmenuItem
  3018. Caption = '&Columns'
  3019. HelpKeyword = 'ui_file_panel#selecting_columns'
  3020. object Name3: TTBXItem
  3021. Action = ShowHideLocalNameColumnAction2
  3022. end
  3023. object Size3: TTBXItem
  3024. Action = ShowHideLocalSizeColumnAction2
  3025. end
  3026. object Type2: TTBXItem
  3027. Action = ShowHideLocalTypeColumnAction2
  3028. end
  3029. object Modification3: TTBXItem
  3030. Action = ShowHideLocalChangedColumnAction2
  3031. end
  3032. object Attributes3: TTBXItem
  3033. Action = ShowHideLocalAttrColumnAction2
  3034. end
  3035. object TBXSeparatorItem73: TTBXSeparatorItem
  3036. end
  3037. object TBXItem264: TTBXItem
  3038. Action = AutoSizeLocalColumnsAction
  3039. end
  3040. object TBXItem112: TTBXItem
  3041. Action = ResetLayoutLocalColumnsAction
  3042. end
  3043. end
  3044. end
  3045. object RemoteDirViewColumnPopup: TTBXPopupMenu
  3046. Images = GlyphsModule.ExplorerImages
  3047. Options = [tboShowHint]
  3048. Left = 424
  3049. Top = 88
  3050. object MenuItem1: TTBXItem
  3051. Action = SortColumnAscendingAction
  3052. RadioItem = True
  3053. end
  3054. object MenuItem2: TTBXItem
  3055. Action = SortColumnDescendingAction
  3056. RadioItem = True
  3057. end
  3058. object RemoteSortByExtColumnPopupItem: TTBXItem
  3059. Action = RemoteSortByExtAction2
  3060. end
  3061. object Hidecolumn2: TTBXItem
  3062. Action = HideColumnAction
  3063. end
  3064. object N38: TTBXSeparatorItem
  3065. end
  3066. object RemoteFormatSizeBytesPopupItem: TTBXSubmenuItem
  3067. Caption = 'Show File Si&zes In'
  3068. HelpKeyword = 'ui_pref_panels#common'
  3069. Hint = 'Select files sizes display format'
  3070. object TBXItem67: TTBXItem
  3071. Action = FormatSizeBytesNoneAction
  3072. end
  3073. object TBXItem53: TTBXItem
  3074. Action = FormatSizeBytesKilobytesAction
  3075. end
  3076. object TBXItem55: TTBXItem
  3077. Action = FormatSizeBytesShortAction
  3078. end
  3079. end
  3080. object RemoteCalculateDirectorySizesPopupItem: TTBXItem
  3081. Action = RemoteCalculateDirectorySizesAction
  3082. end
  3083. object TBXSeparatorItem7: TTBXSeparatorItem
  3084. end
  3085. object RemoteColumnsSubmenuItem: TTBXSubmenuItem
  3086. Caption = '&Columns'
  3087. HelpKeyword = 'ui_file_panel#selecting_columns'
  3088. object Name4: TTBXItem
  3089. Action = ShowHideRemoteNameColumnAction2
  3090. end
  3091. object Size4: TTBXItem
  3092. Action = ShowHideRemoteSizeColumnAction2
  3093. end
  3094. object TBXItem8: TTBXItem
  3095. Action = ShowHideRemoteTypeColumnAction2
  3096. end
  3097. object Modification4: TTBXItem
  3098. Action = ShowHideRemoteChangedColumnAction2
  3099. end
  3100. object Permissions1: TTBXItem
  3101. Action = ShowHideRemoteRightsColumnAction2
  3102. end
  3103. object Owner2: TTBXItem
  3104. Action = ShowHideRemoteOwnerColumnAction2
  3105. end
  3106. object Group2: TTBXItem
  3107. Action = ShowHideRemoteGroupColumnAction2
  3108. end
  3109. object TBXItem1: TTBXItem
  3110. Action = ShowHideRemoteLinkTargetColumnAction2
  3111. end
  3112. object TBXSeparatorItem20: TTBXSeparatorItem
  3113. end
  3114. object TBXItem114: TTBXItem
  3115. Action = AutoSizeRemoteColumnsAction
  3116. end
  3117. object TBXItem115: TTBXItem
  3118. Action = ResetLayoutRemoteColumnsAction
  3119. end
  3120. end
  3121. end
  3122. object QueuePopup: TTBXPopupMenu
  3123. Images = GlyphsModule.ExplorerImages
  3124. OnPopup = QueuePopupPopup
  3125. Options = [tboShowHint]
  3126. Left = 360
  3127. Top = 176
  3128. object ShowQuery1: TTBXItem
  3129. Action = QueueItemQueryAction
  3130. end
  3131. object ShowError1: TTBXItem
  3132. Action = QueueItemErrorAction
  3133. end
  3134. object ShowPrompt1: TTBXItem
  3135. Action = QueueItemPromptAction
  3136. end
  3137. object N53: TTBXSeparatorItem
  3138. end
  3139. object ExecuteNow1: TTBXItem
  3140. Action = QueueItemExecuteAction
  3141. end
  3142. object TBXItem9: TTBXItem
  3143. Action = QueueItemPauseAction
  3144. end
  3145. object TBXItem10: TTBXItem
  3146. Action = QueueItemResumeAction
  3147. end
  3148. object Delete4: TTBXItem
  3149. Action = QueueItemDeleteAction
  3150. end
  3151. object QueuePopupSpeedComboBoxItem: TTBXComboBoxItem
  3152. Action = QueueItemSpeedAction
  3153. ShowImage = True
  3154. OnAdjustImageIndex = QueuePopupSpeedComboBoxItemAdjustImageIndex
  3155. end
  3156. object N54: TTBXSeparatorItem
  3157. end
  3158. object MoveUp1: TTBXItem
  3159. Action = QueueItemUpAction
  3160. end
  3161. object MoveDown1: TTBXItem
  3162. Action = QueueItemDownAction
  3163. end
  3164. object N67: TTBXSeparatorItem
  3165. end
  3166. object QueueEnableItem: TTBXItem
  3167. Action = QueueEnableAction
  3168. end
  3169. object TBXSubmenuItem1: TTBXSubmenuItem
  3170. Caption = '&All'
  3171. HelpKeyword = 'ui_queue#manage'
  3172. Hint = 'Mass queue management commands'
  3173. object TBXItem11: TTBXItem
  3174. Action = QueuePauseAllAction
  3175. end
  3176. object TBXItem12: TTBXItem
  3177. Action = QueueResumeAllAction
  3178. end
  3179. object TBXItem142: TTBXItem
  3180. Action = QueueDeleteAllAction
  3181. end
  3182. object TBXSeparatorItem5: TTBXSeparatorItem
  3183. end
  3184. object TBXItem51: TTBXItem
  3185. Action = QueueDeleteAllDoneAction
  3186. end
  3187. end
  3188. object TBXSubmenuItem3: TTBXSubmenuItem
  3189. Action = QueueCycleOnceEmptyAction
  3190. DropdownCombo = True
  3191. object TBXItem28: TTBXItem
  3192. Action = QueueIdleOnceEmptyAction
  3193. RadioItem = True
  3194. end
  3195. object TBXItem13: TTBXItem
  3196. Action = QueueDisconnectOnceEmptyAction2
  3197. RadioItem = True
  3198. end
  3199. object TBXItem68: TTBXItem
  3200. Action = QueueSuspendOnceEmptyAction2
  3201. RadioItem = True
  3202. end
  3203. object TBXItem29: TTBXItem
  3204. Action = QueueShutDownOnceEmptyAction2
  3205. RadioItem = True
  3206. end
  3207. end
  3208. object Queue2: TTBXSubmenuItem
  3209. Caption = '&Options'
  3210. HelpKeyword = 'ui_queue'
  3211. Hint = 'Configure queue list'
  3212. object Show4: TTBXItem
  3213. Action = QueueShowAction
  3214. RadioItem = True
  3215. end
  3216. object HidewhenEmpty4: TTBXItem
  3217. Action = QueueHideWhenEmptyAction
  3218. RadioItem = True
  3219. end
  3220. object Hide3: TTBXItem
  3221. Action = QueueHideAction
  3222. RadioItem = True
  3223. end
  3224. object N66: TTBXSeparatorItem
  3225. end
  3226. object Toolbar3: TTBXItem
  3227. Action = QueueToolbarAction
  3228. end
  3229. object TBXItem83: TTBXItem
  3230. Action = QueueFileListAction
  3231. end
  3232. object TBXSeparatorItem23: TTBXSeparatorItem
  3233. end
  3234. object TBXItem116: TTBXItem
  3235. Action = QueueResetLayoutColumnsAction
  3236. end
  3237. object N65: TTBXSeparatorItem
  3238. end
  3239. object Customize3: TTBXItem
  3240. Action = QueuePreferencesAction
  3241. end
  3242. end
  3243. end
  3244. object RemoteDirViewPopup: TTBXPopupMenu
  3245. AutoPopup = False
  3246. Images = GlyphsModule.ExplorerImages
  3247. Options = [tboShowHint]
  3248. Left = 360
  3249. Top = 400
  3250. object GoTo4: TTBXSubmenuItem
  3251. Caption = '&Go To'
  3252. HelpKeyword = 'task_navigate'
  3253. Hint = 'Go to directory'
  3254. object OpenDirectoryBookmark3: TTBXItem
  3255. Action = RemoteOpenDirAction
  3256. end
  3257. object TBXItem100: TTBXItem
  3258. Action = RemoteExploreDirectoryAction
  3259. end
  3260. object N81: TTBXSeparatorItem
  3261. end
  3262. object ParentDirectory4: TTBXItem
  3263. Action = RemoteParentDirAction
  3264. end
  3265. object RootDirectory4: TTBXItem
  3266. Action = RemoteRootDirAction
  3267. end
  3268. object HomeDirectory4: TTBXItem
  3269. Action = RemoteHomeDirAction
  3270. end
  3271. object N80: TTBXSeparatorItem
  3272. end
  3273. object Back4: TTBXItem
  3274. Action = RemoteBackAction
  3275. end
  3276. object Forward4: TTBXItem
  3277. Action = RemoteForwardAction
  3278. end
  3279. end
  3280. object Refresh4: TTBXItem
  3281. Action = RemoteRefreshAction
  3282. end
  3283. object AddToBookmarks4: TTBXItem
  3284. Action = RemoteAddBookmarkAction2
  3285. end
  3286. object TBXItem35: TTBXItem
  3287. Action = RemoteFilterAction
  3288. end
  3289. object CopyPathtoClipboard6: TTBXItem
  3290. Action = RemotePathToClipboardAction2
  3291. end
  3292. object N79: TTBXSeparatorItem
  3293. end
  3294. object TBXSubmenuItem26: TTBXSubmenuItem
  3295. Caption = '&New'
  3296. HelpKeyword = 'task_index'
  3297. Hint = 'Create object|Create new object'
  3298. object TBXItem135: TTBXItem
  3299. Action = NewFileAction
  3300. end
  3301. object TBXItem136: TTBXItem
  3302. Action = NewDirAction
  3303. end
  3304. object TBXItem209: TTBXItem
  3305. Action = NewLinkAction
  3306. end
  3307. end
  3308. object TBXItem75: TTBXItem
  3309. Action = PasteAction3
  3310. end
  3311. object RemoteDirViewPopupCustomCommandsMenu: TTBXSubmenuItem
  3312. Action = CustomCommandsNonFileAction
  3313. end
  3314. end
  3315. object LocalDirViewPopup: TTBXPopupMenu
  3316. AutoPopup = False
  3317. Images = GlyphsModule.ExplorerImages
  3318. Options = [tboShowHint]
  3319. Left = 480
  3320. Top = 400
  3321. object GoTo5: TTBXSubmenuItem
  3322. Caption = '&Go To'
  3323. HelpKeyword = 'task_navigate'
  3324. Hint = 'Go to directory'
  3325. object OpenDirectoryBookmark4: TTBXItem
  3326. Action = LocalOpenDirAction
  3327. end
  3328. object ExploreDirectory2: TTBXItem
  3329. Action = LocalExploreDirectoryAction
  3330. end
  3331. object N84: TTBXSeparatorItem
  3332. end
  3333. object ParentDirectory5: TTBXItem
  3334. Action = LocalParentDirAction
  3335. end
  3336. object RootDirectory5: TTBXItem
  3337. Action = LocalRootDirAction
  3338. end
  3339. object HomeDirectory5: TTBXItem
  3340. Action = LocalHomeDirAction
  3341. end
  3342. object N83: TTBXSeparatorItem
  3343. end
  3344. object Back5: TTBXItem
  3345. Action = LocalBackAction
  3346. end
  3347. object Forward5: TTBXItem
  3348. Action = LocalForwardAction
  3349. end
  3350. end
  3351. object Refresh5: TTBXItem
  3352. Action = LocalRefreshAction
  3353. end
  3354. object TBXItem36: TTBXItem
  3355. Action = LocalFilterAction
  3356. end
  3357. object AddToBookmarks5: TTBXItem
  3358. Action = LocalAddBookmarkAction2
  3359. end
  3360. object CopyPathtoClipboard7: TTBXItem
  3361. Action = LocalPathToClipboardAction2
  3362. end
  3363. object N82: TTBXSeparatorItem
  3364. end
  3365. object TBXSubmenuItem7: TTBXSubmenuItem
  3366. Caption = '&New'
  3367. HelpKeyword = 'task_index'
  3368. Hint = 'Create object|Create new object'
  3369. object TBXItem70: TTBXItem
  3370. Action = NewFileAction
  3371. end
  3372. object TBXItem71: TTBXItem
  3373. Action = NewDirAction
  3374. end
  3375. end
  3376. object TBXItem76: TTBXItem
  3377. Action = PasteAction3
  3378. end
  3379. end
  3380. object RemoteAddressPopup: TTBXPopupMenu
  3381. Images = GlyphsModule.ExplorerImages
  3382. Options = [tboShowHint]
  3383. Left = 248
  3384. Top = 400
  3385. object TBXItem33: TTBXItem
  3386. Action = RemoteRefreshAction
  3387. end
  3388. object TBXItem24: TTBXItem
  3389. Action = RemoteAddBookmarkAction2
  3390. end
  3391. object TBXItem25: TTBXItem
  3392. Action = RemotePathToClipboardAction2
  3393. end
  3394. object TBXSeparatorItem1: TTBXSeparatorItem
  3395. end
  3396. object TBXItem17: TTBXItem
  3397. Action = RemoteOpenDirAction
  3398. end
  3399. object TBXSubmenuItem2: TTBXSubmenuItem
  3400. Caption = '&Go To'
  3401. HelpKeyword = 'task_navigate'
  3402. Hint = 'Go to directory'
  3403. object TBXItem18: TTBXItem
  3404. Action = RemoteParentDirAction
  3405. end
  3406. object TBXItem19: TTBXItem
  3407. Action = RemoteRootDirAction
  3408. end
  3409. object TBXItem20: TTBXItem
  3410. Action = RemoteHomeDirAction
  3411. end
  3412. object TBXSeparatorItem2: TTBXSeparatorItem
  3413. end
  3414. object TBXItem21: TTBXItem
  3415. Action = RemoteBackAction
  3416. end
  3417. object TBXItem22: TTBXItem
  3418. Action = RemoteForwardAction
  3419. end
  3420. end
  3421. end
  3422. object SessionsPopup: TTBXPopupMenu
  3423. Images = GlyphsModule.ExplorerImages
  3424. Options = [tboShowHint]
  3425. Left = 456
  3426. Top = 176
  3427. object TBXItem124: TTBXItem
  3428. Action = CloseTabAction
  3429. end
  3430. object TBXItem219: TTBXItem
  3431. Action = DuplicateTabAction
  3432. end
  3433. object TBXItem78: TTBXItem
  3434. Action = RenameTabAction
  3435. end
  3436. object TBXSeparatorItem17: TTBXSeparatorItem
  3437. end
  3438. object ColorMenuItem: TTBXColorItem
  3439. Action = ColorMenuAction2
  3440. Color = clNone
  3441. end
  3442. object TBXSeparatorItem52: TTBXSeparatorItem
  3443. end
  3444. object TBXItem79: TTBXItem
  3445. Action = DisconnectSessionAction
  3446. end
  3447. object TBXItem80: TTBXItem
  3448. Action = ReconnectSessionAction
  3449. end
  3450. object TBXItem125: TTBXItem
  3451. Action = SaveCurrentSessionAction2
  3452. end
  3453. object TBXSeparatorItem6: TTBXSeparatorItem
  3454. end
  3455. object TBXItem56: TTBXItem
  3456. Action = FileSystemInfoAction
  3457. end
  3458. object TBXItem52: TTBXItem
  3459. Action = SessionGenerateUrlAction2
  3460. end
  3461. object TBXSeparatorItem34: TTBXSeparatorItem
  3462. end
  3463. object SessionsNewTabItem: TTBXSubmenuItem
  3464. Action = NewTabAction
  3465. DropdownCombo = True
  3466. object TBXItem104: TTBXItem
  3467. Action = NewRemoteTabAction
  3468. end
  3469. object TBXItem105: TTBXItem
  3470. Action = NewLocalTabAction
  3471. end
  3472. object TBXSeparatorItem18: TTBXSeparatorItem
  3473. end
  3474. object TBXItem106: TTBXItem
  3475. Action = DefaultToNewRemoteTabAction
  3476. end
  3477. end
  3478. object TBXSubmenuItem23: TTBXSubmenuItem
  3479. Action = SavedSessionsAction2
  3480. Options = [tboDropdownArrow]
  3481. end
  3482. object TBXSeparatorItem35: TTBXSeparatorItem
  3483. end
  3484. object SessionsTabs4: TTBXItem
  3485. Action = SessionsTabsAction2
  3486. end
  3487. end
  3488. object LocalFilePopup: TTBXPopupMenu
  3489. Images = GlyphsModule.ExplorerImages
  3490. Options = [tboShowHint]
  3491. Left = 536
  3492. Top = 336
  3493. object LocalOpenMenuItem: TTBXItem
  3494. Action = CurrentOpenAction
  3495. end
  3496. object LocalEditMenuItem: TTBXSubmenuItem
  3497. Action = CurrentEditFocusedAction
  3498. DropdownCombo = True
  3499. OnPopup = FocusedEditMenuItemPopup
  3500. end
  3501. object LocalCopyMenuItem: TTBXSubmenuItem
  3502. Action = LocalCopyFocusedAction
  3503. DropdownCombo = True
  3504. object TBXItem73: TTBXItem
  3505. Action = LocalCopyFocusedNonQueueAction
  3506. end
  3507. object TBXItem74: TTBXItem
  3508. Action = LocalCopyFocusedQueueAction
  3509. end
  3510. object TBXSeparatorItem10: TTBXSeparatorItem
  3511. end
  3512. object TBXItem54: TTBXItem
  3513. Action = LocalMoveFocusedAction
  3514. end
  3515. end
  3516. object LocalLocalCopyMenuItem: TTBXItem
  3517. Action = LocalLocalCopyFocusedAction
  3518. end
  3519. object TBXItem101: TTBXItem
  3520. Action = LocalLocalMoveFocusedAction
  3521. end
  3522. object TBXItem57: TTBXItem
  3523. Action = CurrentDeleteFocusedAction
  3524. end
  3525. object TBXItem58: TTBXItem
  3526. Action = CurrentRenameAction
  3527. end
  3528. object TBXSeparatorItem11: TTBXSeparatorItem
  3529. end
  3530. object TBXItem81: TTBXItem
  3531. Action = CurrentCopyToClipboardFocusedAction2
  3532. end
  3533. object TBXSeparatorItem3: TTBXSeparatorItem
  3534. end
  3535. object LocalFilePopupCustomCommandsMenu: TTBXSubmenuItem
  3536. Action = CustomCommandsFileAction
  3537. object TTBXItem
  3538. end
  3539. end
  3540. object TBXSubmenuItem5: TTBXSubmenuItem
  3541. Caption = '&File Names'
  3542. HelpKeyword = 'filenames'
  3543. Hint = 'Operations with name(s) of selected file(s)'
  3544. object TBXItem59: TTBXItem
  3545. Action = FileListToCommandLineAction
  3546. end
  3547. object TBXItem60: TTBXItem
  3548. Action = FileListToClipboardAction
  3549. end
  3550. object TBXItem61: TTBXItem
  3551. Action = FullFileListToClipboardAction
  3552. end
  3553. end
  3554. object TBXSeparatorItem4: TTBXSeparatorItem
  3555. end
  3556. object TBXItem63: TTBXItem
  3557. Action = CurrentPropertiesFocusedAction
  3558. end
  3559. object TBXItem50: TTBXItem
  3560. Action = CurrentSystemMenuFocusedAction
  3561. end
  3562. end
  3563. object LocalBrowserPopup: TTBXPopupMenu
  3564. Images = GlyphsModule.ExplorerImages
  3565. Options = [tboShowHint]
  3566. Left = 552
  3567. Top = 176
  3568. object TBXItem62: TTBXItem
  3569. Action = CloseTabAction
  3570. end
  3571. object TBXItem102: TTBXItem
  3572. Action = DuplicateTabAction
  3573. end
  3574. object TBXItem103: TTBXItem
  3575. Action = RenameTabAction
  3576. end
  3577. object TBXSeparatorItem21: TTBXSeparatorItem
  3578. end
  3579. object TBXSubmenuItem12: TTBXSubmenuItem
  3580. Action = NewTabAction
  3581. DropdownCombo = True
  3582. object TBXItem107: TTBXItem
  3583. Action = NewRemoteTabAction
  3584. end
  3585. object TBXItem108: TTBXItem
  3586. Action = NewLocalTabAction
  3587. end
  3588. object TBXSeparatorItem19: TTBXSeparatorItem
  3589. end
  3590. object TBXItem111: TTBXItem
  3591. Action = DefaultToNewRemoteTabAction
  3592. end
  3593. end
  3594. object TBXSubmenuItem11: TTBXSubmenuItem
  3595. Action = SavedSessionsAction2
  3596. Options = [tboDropdownArrow]
  3597. end
  3598. object TBXSeparatorItem22: TTBXSeparatorItem
  3599. end
  3600. object TBXItem110: TTBXItem
  3601. Action = SessionsTabsAction2
  3602. end
  3603. end
  3604. object NewTabPopup: TTBXPopupMenu
  3605. Images = GlyphsModule.ExplorerImages
  3606. Options = [tboShowHint]
  3607. Left = 256
  3608. Top = 176
  3609. object NewRemoteTabItem: TTBXItem
  3610. Action = NewRemoteTabAction
  3611. end
  3612. object NewLocalTabItem: TTBXItem
  3613. Action = NewLocalTabAction
  3614. end
  3615. object TBXSeparatorItem67: TTBXSeparatorItem
  3616. end
  3617. object TBXItem232: TTBXItem
  3618. Action = DefaultToNewRemoteTabAction
  3619. end
  3620. end
  3621. end