NonVisual.dfm 102 KB

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