NonVisual.dfm 95 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162
  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 = RemoteCopyToAction
  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 = CurrentCopyToClipboardFocusedAction
  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 = 24654
  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 LocalSortAscendingAction: 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 sort of local p' +
  296. 'anel'
  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 = 24654
  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 SessionsTabsAction: TAction
  483. Tag = 15
  484. Category = 'View'
  485. Caption = 'Sessions Tabs'
  486. Hint = 'Hide/show sessions 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. end
  527. object UnselectAction: TAction
  528. Tag = 15
  529. Category = 'Selection'
  530. Caption = '&Unselect Files...'
  531. HelpKeyword = 'ui_select'
  532. Hint = 'Unselect|Unselect files by mask'
  533. ImageIndex = 20
  534. end
  535. object SelectAllAction: TAction
  536. Tag = 15
  537. Category = 'Selection'
  538. Caption = 'Select &All'
  539. HelpKeyword = 'ui_file_panel#selecting_files'
  540. Hint = 'Select all files'
  541. ImageIndex = 21
  542. end
  543. object InvertSelectionAction: TAction
  544. Tag = 15
  545. Category = 'Selection'
  546. Caption = '&Invert Selection'
  547. HelpKeyword = 'ui_file_panel#selecting_files'
  548. Hint = 'Invert selection'
  549. ImageIndex = 22
  550. end
  551. object ExplorerSelectionBandAction: TAction
  552. Tag = 7
  553. Category = 'View'
  554. Caption = 'Se&lection Buttons'
  555. HelpKeyword = 'ui_toolbars'
  556. Hint = 'Hide/show selection toolbar'
  557. end
  558. object ClearSelectionAction: TAction
  559. Tag = 15
  560. Category = 'Selection'
  561. Caption = 'C&lear Selection'
  562. HelpKeyword = 'ui_file_panel#selecting_files'
  563. Hint = 'Clear selection'
  564. ImageIndex = 23
  565. end
  566. object ExplorerSessionBandAction: TAction
  567. Tag = 7
  568. Category = 'View'
  569. Caption = 'Sessio&n Buttons'
  570. HelpKeyword = 'ui_toolbars'
  571. Hint = 'Hide/show session toolbar'
  572. end
  573. object ExplorerPreferencesBandAction: TAction
  574. Tag = 7
  575. Category = 'View'
  576. Caption = '&Preferences Buttons'
  577. HelpKeyword = 'ui_toolbars'
  578. Hint = 'Hide/show preferences toolbar'
  579. end
  580. object ExplorerSortBandAction: TAction
  581. Tag = 7
  582. Category = 'View'
  583. Caption = 'So&rt Buttons'
  584. HelpKeyword = 'ui_toolbars'
  585. Hint = 'Hide/show sort toolbar'
  586. end
  587. object ExplorerUpdatesBandAction: TAction
  588. Tag = 7
  589. Category = 'View'
  590. Caption = '&Update Button'
  591. HelpKeyword = 'ui_toolbars'
  592. Hint = 'Hide/show updates toolbar'
  593. end
  594. object ExplorerTransferBandAction: TAction
  595. Tag = 7
  596. Category = 'View'
  597. Caption = '&Transfer Settings'
  598. HelpKeyword = 'ui_toolbars'
  599. Hint = 'Hide/show transfer settings toolbar'
  600. end
  601. object ExplorerCustomCommandsBandAction: TAction
  602. Tag = 7
  603. Category = 'View'
  604. Caption = 'Custom Co&mmand Buttons'
  605. HelpKeyword = 'ui_toolbars'
  606. Hint = 'Hide/show custom commands toolbar'
  607. end
  608. object NewSessionAction: TAction
  609. Tag = 15
  610. Category = 'Session'
  611. Caption = '&New Session...'
  612. HelpKeyword = 'task_connections#opening_additional_connection'
  613. Hint =
  614. 'New session|Opens new session (hold down Shift to open session i' +
  615. 'n new window)'
  616. ImageIndex = 25
  617. SecondaryShortCuts.Strings = (
  618. 'Ctrl+Shift+N')
  619. ShortCut = 16462
  620. end
  621. object SiteManagerAction: TAction
  622. Tag = 15
  623. Category = 'Session'
  624. Caption = 'Site &Manager...'
  625. HelpKeyword = 'ui_login'
  626. Hint =
  627. 'Site Manager|Opens site manager (hold down Shift to open site ma' +
  628. 'nager in new window)'
  629. end
  630. object CloseSessionAction2: TAction
  631. Tag = 15
  632. Category = 'Session'
  633. Caption = '&Close Session'
  634. HelpKeyword = 'task_connections#closing'
  635. Hint = 'Terminate the current session and close the tab'
  636. ImageIndex = 26
  637. SecondaryShortCuts.Strings = (
  638. 'Ctrl+W')
  639. ShortCut = 24644
  640. end
  641. object DisconnectSessionAction: TAction
  642. Tag = 15
  643. Category = 'Session'
  644. Caption = '&Disconnect Session'
  645. HelpKeyword = 'task_connections#closing'
  646. Hint = 'Disconnect the current session, but keep the tab opened'
  647. end
  648. object ReconnectSessionAction: TAction
  649. Tag = 15
  650. Category = 'Session'
  651. Caption = '&Reconnect Session'
  652. HelpKeyword = 'task_connections'
  653. Hint = 'Reconnect the current disconnected session'
  654. end
  655. object SavedSessionsAction2: TAction
  656. Tag = 15
  657. Category = 'Session'
  658. Caption = 'Si&tes'
  659. HelpKeyword = 'task_connections#opening_additional_connection'
  660. Hint = 'Open site'
  661. ImageIndex = 27
  662. end
  663. object WorkspacesAction: TAction
  664. Tag = 15
  665. Category = 'Session'
  666. Caption = '&Workspaces'
  667. HelpKeyword = 'workspace'
  668. Hint = 'Open workspace'
  669. ImageIndex = 101
  670. end
  671. object PreferencesAction: TAction
  672. Tag = 15
  673. Category = 'View'
  674. Caption = '&Preferences...'
  675. HelpKeyword = 'ui_preferences'
  676. Hint = 'Preferences|Show/change user preferences'
  677. ImageIndex = 28
  678. ShortCut = 49232
  679. end
  680. object RemoteChangePathAction: TAction
  681. Tag = 11
  682. Category = 'Remote Directory'
  683. Caption = '&Change Directory'
  684. HelpKeyword = 'task_navigate'
  685. Hint = 'Allows selection of different directory for remote panel'
  686. ImageIndex = 29
  687. ShortCut = 32881
  688. end
  689. object LocalForwardAction: TAction
  690. Tag = 9
  691. Category = 'Local Directory'
  692. Caption = '&Forward'
  693. HelpKeyword = 'task_navigate#special_commands'
  694. ImageIndex = 7
  695. ShortCut = 32807
  696. end
  697. object LocalParentDirAction: TAction
  698. Tag = 8
  699. Category = 'Local Directory'
  700. Caption = '&Parent Directory'
  701. HelpKeyword = 'task_navigate#special_commands'
  702. Hint = 'Parent directory|Go to parent directory'
  703. ImageIndex = 12
  704. end
  705. object LocalRootDirAction: TAction
  706. Tag = 8
  707. Category = 'Local Directory'
  708. Caption = '&Root Directory'
  709. HelpKeyword = 'task_navigate#special_commands'
  710. Hint = 'Root directory|Go to root directory'
  711. ImageIndex = 14
  712. ShortCut = 16604
  713. end
  714. object LocalHomeDirAction: TAction
  715. Tag = 9
  716. Category = 'Local Directory'
  717. Caption = '&Home Directory'
  718. HelpKeyword = 'task_navigate#special_commands'
  719. Hint = 'Home directory|Go to home directory'
  720. ImageIndex = 15
  721. end
  722. object LocalRefreshAction: TAction
  723. Tag = 9
  724. Category = 'Local Directory'
  725. Caption = '&Refresh'
  726. Hint = 'Refresh|Refresh directory content'
  727. ImageIndex = 16
  728. end
  729. object LocalOpenDirAction: TAction
  730. Tag = 9
  731. Category = 'Local Directory'
  732. Caption = '&Open Directory/Bookmark...'
  733. HelpKeyword = 'task_navigate#manual'
  734. Hint =
  735. 'Open directory/bookmark|Open specified directory or saved bookma' +
  736. 'rk'
  737. ImageIndex = 18
  738. end
  739. object LocalChangePathAction: TAction
  740. Tag = 11
  741. Category = 'Local Directory'
  742. Caption = '&Change Drive'
  743. HelpKeyword = 'task_navigate'
  744. Hint = 'Allows selection of different drive for local panel'
  745. ImageIndex = 30
  746. ShortCut = 32880
  747. end
  748. object ToolBar2Action: TAction
  749. Tag = 11
  750. Category = 'View'
  751. Caption = '&Hot Keys Toolbar'
  752. HelpKeyword = 'ui_toolbars'
  753. Hint = 'Hide/show bottom hot keys toolbar'
  754. end
  755. object CommanderMenuBandAction: TAction
  756. Tag = 11
  757. Category = 'View'
  758. Caption = '&Menu'
  759. HelpKeyword = 'ui_toolbars'
  760. Hint = 'Hide/show menu'
  761. end
  762. object CommanderSessionBandAction: TAction
  763. Tag = 11
  764. Category = 'View'
  765. Caption = 'Sessio&n Buttons'
  766. HelpKeyword = 'ui_toolbars'
  767. Hint = 'Hide/show session toolbar'
  768. end
  769. object CommanderPreferencesBandAction: TAction
  770. Tag = 11
  771. Category = 'View'
  772. Caption = '&Preferences Buttons'
  773. HelpKeyword = 'ui_toolbars'
  774. Hint = 'Hide/show preferences toolbar'
  775. end
  776. object CommanderSortBandAction: TAction
  777. Tag = 11
  778. Category = 'View'
  779. Caption = 'So&rt Buttons'
  780. HelpKeyword = 'ui_toolbars'
  781. Hint = 'Hide/show sort toolbar'
  782. end
  783. object CommanderUpdatesBandAction: TAction
  784. Tag = 11
  785. Category = 'View'
  786. Caption = '&Update Button'
  787. HelpKeyword = 'ui_toolbars'
  788. Hint = 'Hide/show updates toolbar'
  789. end
  790. object CommanderTransferBandAction: TAction
  791. Tag = 11
  792. Category = 'View'
  793. Caption = '&Transfer Settings'
  794. HelpKeyword = 'ui_toolbars'
  795. Hint = 'Hide/show transfer settings toolbar'
  796. end
  797. object CommanderCommandsBandAction: TAction
  798. Tag = 11
  799. Category = 'View'
  800. Caption = '&Commands Buttons'
  801. HelpKeyword = 'ui_toolbars'
  802. Hint = 'Hide/show commands toolbar'
  803. end
  804. object CommanderCustomCommandsBandAction: TAction
  805. Tag = 11
  806. Category = 'View'
  807. Caption = 'Custom Co&mmand Buttons'
  808. HelpKeyword = 'ui_toolbars'
  809. Hint = 'Hide/show custom commands toolbar'
  810. end
  811. object CommanderLocalHistoryBandAction: TAction
  812. Tag = 11
  813. Category = 'View'
  814. Caption = '&History Buttons'
  815. HelpKeyword = 'ui_toolbars'
  816. Hint = 'Hide/show local history toolbar'
  817. end
  818. object CommanderLocalNavigationBandAction: TAction
  819. Tag = 11
  820. Category = 'View'
  821. Caption = '&Navigation Buttons'
  822. HelpKeyword = 'ui_toolbars'
  823. Hint = 'Hide/show local navigation toolbar'
  824. end
  825. object CommanderLocalFileBandAction: TAction
  826. Tag = 11
  827. Category = 'View'
  828. Caption = '&File Buttons'
  829. HelpKeyword = 'ui_toolbars'
  830. Hint = 'Hide/show local file toolbar'
  831. end
  832. object CommanderLocalSelectionBandAction: TAction
  833. Tag = 11
  834. Category = 'View'
  835. Caption = 'Se&lection Buttons'
  836. HelpKeyword = 'ui_toolbars'
  837. Hint = 'Hide/show local selection toolbar'
  838. end
  839. object CommanderRemoteHistoryBandAction: TAction
  840. Tag = 11
  841. Category = 'View'
  842. Caption = '&History Buttons'
  843. HelpKeyword = 'ui_toolbars'
  844. Hint = 'Hide/show remote history toolbar'
  845. end
  846. object CommanderRemoteNavigationBandAction: TAction
  847. Tag = 11
  848. Category = 'View'
  849. Caption = '&Navigation Buttons'
  850. HelpKeyword = 'ui_toolbars'
  851. Hint = 'Hide/show remote navigation toolbar'
  852. end
  853. object CommanderRemoteFileBandAction: TAction
  854. Tag = 11
  855. Category = 'View'
  856. Caption = '&File Buttons'
  857. HelpKeyword = 'ui_toolbars'
  858. Hint = 'Hide/show remote file toolbar'
  859. end
  860. object CommanderRemoteSelectionBandAction: TAction
  861. Tag = 11
  862. Category = 'View'
  863. Caption = 'Se&lection Buttons'
  864. HelpKeyword = 'ui_toolbars'
  865. Hint = 'Hide/show remote selection toolbar'
  866. end
  867. object LocalStatusBarAction: TAction
  868. Tag = 11
  869. Category = 'View'
  870. Caption = 'Status &Bar'
  871. Hint = 'Hide/show local panel status bar'
  872. end
  873. object RemoteStatusBarAction: TAction
  874. Tag = 11
  875. Category = 'View'
  876. Caption = 'Status &Bar'
  877. Hint = 'Hide/show remote panel status bar'
  878. end
  879. object LocalSortByNameAction: TAction
  880. Tag = 9
  881. Category = 'Sort'
  882. Caption = 'By &Name'
  883. HelpKeyword = 'ui_file_panel#sorting_files'
  884. Hint = 'Sort by name|Sort local panel by name'
  885. ImageIndex = 31
  886. ShortCut = 16498
  887. end
  888. object LocalSortByExtAction: TAction
  889. Tag = 9
  890. Category = 'Sort'
  891. Caption = 'By &Extension'
  892. HelpKeyword = 'ui_file_panel#sorting_files'
  893. Hint = 'Sort by extension|Sort local panel by file name extension'
  894. ImageIndex = 32
  895. ShortCut = 16499
  896. end
  897. object LocalSortBySizeAction: TAction
  898. Tag = 9
  899. Category = 'Sort'
  900. Caption = 'By &Size'
  901. HelpKeyword = 'ui_file_panel#sorting_files'
  902. Hint = 'Sort by size|Sort local panel by file size'
  903. ImageIndex = 35
  904. ShortCut = 16501
  905. end
  906. object LocalSortByAttrAction: TAction
  907. Tag = 9
  908. Category = 'Sort'
  909. Caption = 'By A&ttributes'
  910. HelpKeyword = 'ui_file_panel#sorting_files'
  911. Hint = 'Sort by attributes|Sort local panel by attributes'
  912. ImageIndex = 36
  913. ShortCut = 16502
  914. end
  915. object LocalSortByTypeAction: TAction
  916. Tag = 9
  917. Category = 'Sort'
  918. Caption = 'By &Type'
  919. HelpKeyword = 'ui_file_panel#sorting_files'
  920. Hint = 'Sort by type|Sort local panel by file type'
  921. ImageIndex = 34
  922. end
  923. object LocalSortByChangedAction: TAction
  924. Tag = 9
  925. Category = 'Sort'
  926. Caption = 'By &Modification'
  927. HelpKeyword = 'ui_file_panel#sorting_files'
  928. Hint = 'Sort by time|Sort local panel by last modification time'
  929. ImageIndex = 33
  930. ShortCut = 16500
  931. end
  932. object RemoteSortAscendingAction: TAction
  933. Tag = 14
  934. Category = 'Sort'
  935. Caption = '&Ascending'
  936. HelpKeyword = 'ui_file_panel#sorting_files'
  937. Hint =
  938. 'Ascending/descending|Toggle ascending/descending sort of remote ' +
  939. 'panel'
  940. ImageIndex = 37
  941. end
  942. object RemoteSortByNameAction: TAction
  943. Tag = 14
  944. Category = 'Sort'
  945. Caption = 'By &Name'
  946. HelpKeyword = 'ui_file_panel#sorting_files'
  947. Hint = 'Sort by name|Sort remote panel by name'
  948. ImageIndex = 31
  949. ShortCut = 16498
  950. end
  951. object RemoteSortByExtAction: TAction
  952. Tag = 14
  953. Category = 'Sort'
  954. Caption = 'By &Extension'
  955. HelpKeyword = 'ui_file_panel#sorting_files'
  956. Hint = 'Sort by extension|Sort remote panel by file name extension'
  957. ImageIndex = 32
  958. ShortCut = 16499
  959. end
  960. object RemoteSortBySizeAction: TAction
  961. Tag = 14
  962. Category = 'Sort'
  963. Caption = 'By &Size'
  964. HelpKeyword = 'ui_file_panel#sorting_files'
  965. Hint = 'Sort by size|Sort remote panel by file size'
  966. ImageIndex = 35
  967. ShortCut = 16501
  968. end
  969. object RemoteSortByRightsAction: TAction
  970. Tag = 14
  971. Category = 'Sort'
  972. Caption = 'By &Permissions'
  973. HelpKeyword = 'ui_file_panel#sorting_files'
  974. Hint = 'Sort by permissions|Sort remote panel by permissions'
  975. ImageIndex = 36
  976. ShortCut = 16502
  977. end
  978. object RemoteSortByChangedAction: TAction
  979. Tag = 14
  980. Category = 'Sort'
  981. Caption = 'By &Modification'
  982. HelpKeyword = 'ui_file_panel#sorting_files'
  983. Hint = 'Sort by time|Sort remote panel by last modification time'
  984. ImageIndex = 33
  985. ShortCut = 16500
  986. end
  987. object RemoteSortByOwnerAction: TAction
  988. Tag = 14
  989. Category = 'Sort'
  990. Caption = 'By &Owner'
  991. HelpKeyword = 'ui_file_panel#sorting_files'
  992. Hint = 'Sort by owner|Sort remote panel by file owner'
  993. ImageIndex = 38
  994. ShortCut = 16503
  995. end
  996. object RemoteSortByGroupAction: TAction
  997. Tag = 14
  998. Category = 'Sort'
  999. Caption = 'By &Group'
  1000. HelpKeyword = 'ui_file_panel#sorting_files'
  1001. Hint = 'Sort by group|Sort remote panel by file group'
  1002. ImageIndex = 39
  1003. ShortCut = 16504
  1004. end
  1005. object RemoteSortByTypeAction: TAction
  1006. Tag = 14
  1007. Category = 'Sort'
  1008. Caption = 'By &Type'
  1009. HelpKeyword = 'ui_file_panel#sorting_files'
  1010. Hint = 'Sort by type|Sort remote panel by file type'
  1011. ImageIndex = 34
  1012. end
  1013. object CurrentSortAscendingAction: TAction
  1014. Tag = 15
  1015. Category = 'Sort'
  1016. Caption = '&Ascending'
  1017. HelpKeyword = 'ui_file_panel#sorting_files'
  1018. Hint =
  1019. 'Ascending/descending|Toggle ascending/descending sort of current' +
  1020. ' panel'
  1021. ImageIndex = 37
  1022. end
  1023. object CurrentSortByNameAction: TAction
  1024. Tag = 15
  1025. Category = 'Sort'
  1026. Caption = 'By &Name'
  1027. HelpKeyword = 'ui_file_panel#sorting_files'
  1028. Hint = 'Sort by name|Sort current panel by name'
  1029. ImageIndex = 31
  1030. ShortCut = 16498
  1031. end
  1032. object CurrentSortByExtAction: TAction
  1033. Tag = 15
  1034. Category = 'Sort'
  1035. Caption = 'By &Extension'
  1036. HelpKeyword = 'ui_file_panel#sorting_files'
  1037. Hint = 'Sort by extension|Sort current panel by file name extension'
  1038. ImageIndex = 32
  1039. ShortCut = 16499
  1040. end
  1041. object CurrentSortBySizeAction: TAction
  1042. Tag = 15
  1043. Category = 'Sort'
  1044. Caption = 'By &Size'
  1045. HelpKeyword = 'ui_file_panel#sorting_files'
  1046. Hint = 'Sort by size|Sort current panel by file size'
  1047. ImageIndex = 35
  1048. ShortCut = 16501
  1049. end
  1050. object CurrentSortByTypeAction: TAction
  1051. Tag = 15
  1052. Category = 'Sort'
  1053. Caption = 'By &Type'
  1054. HelpKeyword = 'ui_file_panel#sorting_files'
  1055. Hint = 'Sort by type|Sort current panel by file type (local panel only)'
  1056. ImageIndex = 34
  1057. end
  1058. object CurrentSortByRightsAction: TAction
  1059. Tag = 15
  1060. Category = 'Sort'
  1061. Caption = 'By &Attributes'
  1062. HelpKeyword = 'ui_file_panel#sorting_files'
  1063. Hint =
  1064. 'Sort by attributes/permissions|Sort current panel by attributes/' +
  1065. 'permissions'
  1066. ImageIndex = 36
  1067. ShortCut = 16502
  1068. end
  1069. object CurrentSortByChangedAction: TAction
  1070. Tag = 15
  1071. Category = 'Sort'
  1072. Caption = 'By &Modification'
  1073. HelpKeyword = 'ui_file_panel#sorting_files'
  1074. Hint = 'Sort by time|Sort current panel by last modification time'
  1075. ImageIndex = 33
  1076. ShortCut = 16500
  1077. end
  1078. object CurrentSortByOwnerAction: TAction
  1079. Tag = 14
  1080. Category = 'Sort'
  1081. Caption = 'By &Owner'
  1082. HelpKeyword = 'ui_file_panel#sorting_files'
  1083. Hint =
  1084. 'Sort by owner|Sort current panel by file owner (remote panel onl' +
  1085. 'y)'
  1086. ImageIndex = 38
  1087. ShortCut = 16503
  1088. end
  1089. object CurrentSortByGroupAction: TAction
  1090. Tag = 14
  1091. Category = 'Sort'
  1092. Caption = 'By &Group'
  1093. HelpKeyword = 'ui_file_panel#sorting_files'
  1094. Hint =
  1095. 'Sort by group|Sort current panel by file group (remote panel onl' +
  1096. 'y)'
  1097. ImageIndex = 39
  1098. ShortCut = 16504
  1099. end
  1100. object SortColumnAscendingAction: TAction
  1101. Tag = 15
  1102. Category = 'Sort'
  1103. Caption = 'Sort &Ascending'
  1104. HelpKeyword = 'ui_file_panel#sorting_files'
  1105. Hint = 'Sort files ascending by selected column'
  1106. ImageIndex = 41
  1107. end
  1108. object SortColumnDescendingAction: TAction
  1109. Tag = 15
  1110. Category = 'Sort'
  1111. Caption = 'Sort &Descending'
  1112. HelpKeyword = 'ui_file_panel#sorting_files'
  1113. Hint = 'Sort files descending by selected column'
  1114. ImageIndex = 40
  1115. end
  1116. object HomepageAction: TAction
  1117. Tag = 15
  1118. Category = 'Help'
  1119. Caption = 'Product &Homepage'
  1120. Hint = 'Opens web browser and points it to project homepage '
  1121. ImageIndex = 42
  1122. end
  1123. object HistoryPageAction: TAction
  1124. Tag = 15
  1125. Category = 'Help'
  1126. Caption = '&Version History'
  1127. Hint = 'Opens web browser and points it to application history page'
  1128. end
  1129. object SaveCurrentSessionAction2: TAction
  1130. Tag = 15
  1131. Category = 'Session'
  1132. Caption = '&Save Session as Site...'
  1133. HelpKeyword = 'task_connections#saving'
  1134. Hint = 'Save session as site|Save current session as site'
  1135. ImageIndex = 43
  1136. end
  1137. object ShowHideRemoteNameColumnAction: TAction
  1138. Tag = 15
  1139. Category = 'Columns'
  1140. Caption = '&Name'
  1141. HelpKeyword = 'ui_file_panel#selecting_columns'
  1142. Hint = 'Show/hide name|Show/hide name column on remote panel'
  1143. ImageIndex = 44
  1144. end
  1145. object ShowHideRemoteExtColumnAction: TAction
  1146. Tag = 15
  1147. Category = 'Columns'
  1148. Caption = '&Extension'
  1149. HelpKeyword = 'ui_file_panel#selecting_columns'
  1150. Hint = 'Show/hide extension|Show/hide extension column on remote panel'
  1151. ImageIndex = 45
  1152. end
  1153. object ShowHideRemoteSizeColumnAction: TAction
  1154. Tag = 15
  1155. Category = 'Columns'
  1156. Caption = '&Size'
  1157. HelpKeyword = 'ui_file_panel#selecting_columns'
  1158. Hint = 'Show/hide size|Show/hide size column on remote panel'
  1159. ImageIndex = 47
  1160. end
  1161. object ShowHideRemoteChangedColumnAction: TAction
  1162. Tag = 15
  1163. Category = 'Columns'
  1164. Caption = '&Modification'
  1165. HelpKeyword = 'ui_file_panel#selecting_columns'
  1166. Hint =
  1167. 'Show/hide modification|Show/hide modification column on remote p' +
  1168. 'anel'
  1169. ImageIndex = 48
  1170. end
  1171. object ShowHideRemoteRightsColumnAction: TAction
  1172. Tag = 15
  1173. Category = 'Columns'
  1174. Caption = '&Permissions'
  1175. HelpKeyword = 'ui_file_panel#selecting_columns'
  1176. Hint =
  1177. 'Show/hide permissions|Show/hide permissions column on remote pan' +
  1178. 'el'
  1179. ImageIndex = 49
  1180. end
  1181. object ShowHideRemoteOwnerColumnAction: TAction
  1182. Tag = 15
  1183. Category = 'Columns'
  1184. Caption = '&Owner'
  1185. HelpKeyword = 'ui_file_panel#selecting_columns'
  1186. Hint = 'Show/hide owner|Show/hide owner column on remote panel'
  1187. ImageIndex = 50
  1188. end
  1189. object ShowHideRemoteGroupColumnAction: TAction
  1190. Tag = 15
  1191. Category = 'Columns'
  1192. Caption = '&Group'
  1193. HelpKeyword = 'ui_file_panel#selecting_columns'
  1194. Hint = 'Show/hide group|Show/hide group column on remote panel'
  1195. ImageIndex = 51
  1196. end
  1197. object ShowHideRemoteLinkTargetColumnAction: TAction
  1198. Tag = 15
  1199. Category = 'Columns'
  1200. Caption = '&Link Target'
  1201. HelpKeyword = 'ui_file_panel#selecting_columns'
  1202. Hint =
  1203. 'Show/hide link target|Show/hide link target column on remote pan' +
  1204. 'el'
  1205. ImageIndex = 82
  1206. end
  1207. object ShowHideRemoteTypeColumnAction: TAction
  1208. Tag = 15
  1209. Category = 'Columns'
  1210. Caption = '&Type'
  1211. HelpKeyword = 'ui_file_panel#selecting_columns'
  1212. Hint = 'Show/hide type|Show/hide type column on remote panel'
  1213. ImageIndex = 46
  1214. end
  1215. object ShowHideLocalNameColumnAction: TAction
  1216. Tag = 15
  1217. Category = 'Columns'
  1218. Caption = '&Name'
  1219. HelpKeyword = 'ui_file_panel#selecting_columns'
  1220. Hint = 'Show/hide name|Show/hide name column on local panel'
  1221. ImageIndex = 44
  1222. end
  1223. object ShowHideLocalExtColumnAction: TAction
  1224. Tag = 15
  1225. Category = 'Columns'
  1226. Caption = '&Extension'
  1227. HelpKeyword = 'ui_file_panel#selecting_columns'
  1228. Hint = 'Show/hide extension|Show/hide extension column on local panel'
  1229. ImageIndex = 45
  1230. end
  1231. object ShowHideLocalTypeColumnAction: TAction
  1232. Tag = 15
  1233. Category = 'Columns'
  1234. Caption = '&Type'
  1235. HelpKeyword = 'ui_file_panel#selecting_columns'
  1236. Hint = 'Show/hide type|Show/hide type column on local panel'
  1237. ImageIndex = 46
  1238. end
  1239. object ShowHideLocalSizeColumnAction: TAction
  1240. Tag = 15
  1241. Category = 'Columns'
  1242. Caption = '&Size'
  1243. HelpKeyword = 'ui_file_panel#selecting_columns'
  1244. Hint = 'Show/hide size|Show/hide size column on local panel'
  1245. ImageIndex = 47
  1246. end
  1247. object ShowHideLocalChangedColumnAction: TAction
  1248. Tag = 15
  1249. Category = 'Columns'
  1250. Caption = '&Modification'
  1251. HelpKeyword = 'ui_file_panel#selecting_columns'
  1252. Hint =
  1253. 'Show/hide modification|Show/hide modification column on local pa' +
  1254. 'nel'
  1255. ImageIndex = 48
  1256. end
  1257. object ShowHideLocalAttrColumnAction: TAction
  1258. Tag = 15
  1259. Category = 'Columns'
  1260. Caption = '&Attributes'
  1261. HelpKeyword = 'ui_file_panel#selecting_columns'
  1262. Hint = 'Show/hide attributes|Show/hide attributes column on local panel'
  1263. ImageIndex = 49
  1264. end
  1265. object CompareDirectoriesAction: TAction
  1266. Tag = 11
  1267. Category = 'Command'
  1268. Caption = '&Compare Directories'
  1269. HelpKeyword = 'task_compare_directories'
  1270. Hint =
  1271. 'Compare directories|Mark different files in local and remote dir' +
  1272. 'ectory'
  1273. ImageIndex = 52
  1274. ShortCut = 8305
  1275. end
  1276. object SynchronizeAction: TAction
  1277. Tag = 15
  1278. Category = 'Command'
  1279. Caption = '&Keep Remote Directory up to Date...'
  1280. HelpKeyword = 'task_keep_up_to_date'
  1281. Hint =
  1282. 'Keep remote directory up to date|Keep remote directory up to dat' +
  1283. 'e'
  1284. ImageIndex = 53
  1285. ShortCut = 16469
  1286. end
  1287. object ForumPageAction: TAction
  1288. Tag = 15
  1289. Category = 'Help'
  1290. Caption = '&Support Forum'
  1291. Hint = 'Opens web browser and points it to support forum page'
  1292. end
  1293. object LocalAddBookmarkAction: TAction
  1294. Tag = 9
  1295. Category = 'Local Directory'
  1296. Caption = '&Add Path to Bookmarks'
  1297. HelpKeyword = 'task_navigate#bookmarks'
  1298. Hint = 'Add to bookmarks|Add current local directory to bookmark list'
  1299. ImageIndex = 54
  1300. ShortCut = 16450
  1301. end
  1302. object RemoteAddBookmarkAction: TAction
  1303. Tag = 14
  1304. Category = 'Remote Directory'
  1305. Caption = '&Add Path to Bookmarks'
  1306. HelpKeyword = 'task_navigate#bookmarks'
  1307. Hint = 'Add to bookmarks|Add current remote directory to bookmark list'
  1308. ImageIndex = 54
  1309. ShortCut = 16450
  1310. end
  1311. object ConsoleAction: TAction
  1312. Tag = 15
  1313. Category = 'Command'
  1314. Caption = 'Open &Terminal'
  1315. HelpKeyword = 'ui_console'
  1316. Hint =
  1317. 'Open terminal|Open terminal window that allow executing arbitrar' +
  1318. 'y command (with exception of commands that require user input)'
  1319. ImageIndex = 55
  1320. ShortCut = 24660
  1321. end
  1322. object PuttyAction: TAction
  1323. Tag = 15
  1324. Category = 'Command'
  1325. Caption = 'Open in &PuTTY'
  1326. HelpKeyword = 'integration_putty#open_putty'
  1327. Hint =
  1328. 'Open session in PuTTY|Execute PuTTY SSH terminal and opens curre' +
  1329. 'nt session with it'
  1330. ImageIndex = 64
  1331. ShortCut = 16464
  1332. end
  1333. object LocalExploreDirectoryAction: TAction
  1334. Tag = 15
  1335. Category = 'Local Directory'
  1336. Caption = '&Explore Directory'
  1337. Hint = 'Opens Windows File Explorer with current local directory'
  1338. ImageIndex = 56
  1339. ShortCut = 49221
  1340. end
  1341. object CurrentOpenAction: TAction
  1342. Tag = 15
  1343. Category = 'Focused Operation'
  1344. Caption = '&Open'
  1345. HelpKeyword = 'task_edit'
  1346. Hint =
  1347. 'Open document|Open selected document using application associate' +
  1348. 'd with document type'
  1349. ImageIndex = 58
  1350. end
  1351. object SynchronizeBrowsingAction: TAction
  1352. Tag = 11
  1353. Category = 'Command'
  1354. AutoCheck = True
  1355. Caption = 'Synchronize &Browsing'
  1356. HelpKeyword = 'task_navigate#synchronize_browsing'
  1357. Hint =
  1358. 'Synchronize browsing|Synchronize local and remote directory brow' +
  1359. 'sing'
  1360. ImageIndex = 59
  1361. ShortCut = 49218
  1362. end
  1363. object CurrentAddEditLinkAction: TAction
  1364. Tag = 15
  1365. Category = 'Selected Operation'
  1366. Caption = 'Edit &Link...'
  1367. HelpKeyword = 'task_link'
  1368. Hint =
  1369. 'Add/edit link|Add new link/shortcut or edit selected link/shortc' +
  1370. 'ut'
  1371. ImageIndex = 60
  1372. end
  1373. object CurrentAddEditLinkContextAction: TAction
  1374. Tag = 15
  1375. Category = 'Selected Operation'
  1376. Caption = 'Edit &Link...'
  1377. HelpKeyword = 'task_link'
  1378. Hint = 'Edit link|Edit selected link/shortcut'
  1379. ImageIndex = 60
  1380. end
  1381. object CloseApplicationAction: TAction
  1382. Tag = 15
  1383. Category = 'Command'
  1384. Caption = '&Quit'
  1385. Hint =
  1386. 'Exit application|Terminate opened session(s) and close applicati' +
  1387. 'on'
  1388. end
  1389. object OpenedSessionsAction: TAction
  1390. Tag = 15
  1391. Category = 'Session'
  1392. Caption = '&Opened Sessions'
  1393. HelpKeyword = 'task_connections#switch'
  1394. Hint = 'Select session|Select opened session to activate'
  1395. ImageIndex = 62
  1396. end
  1397. object DuplicateSessionAction: TAction
  1398. Tag = 15
  1399. Category = 'Session'
  1400. Caption = 'Du&plicate Session'
  1401. HelpKeyword = 'task_connections'
  1402. Hint =
  1403. 'Duplicate session|Opens the same session again (hold down Shift ' +
  1404. 'to open session in new window)'
  1405. ImageIndex = 91
  1406. end
  1407. object NewLinkAction: TAction
  1408. Tag = 12
  1409. Category = 'Command'
  1410. Caption = '&Link...'
  1411. HelpKeyword = 'task_link'
  1412. Hint = 'Create link|Create new link/shortcut'
  1413. ImageIndex = 60
  1414. end
  1415. object CustomCommandsFileAction: TAction
  1416. Tag = 14
  1417. Category = 'Command'
  1418. Caption = 'File &Custom Commands'
  1419. HelpKeyword = 'custom_command'
  1420. Hint = 'Execute custom commands with selected file(s)'
  1421. end
  1422. object CustomCommandsNonFileAction: TAction
  1423. Tag = 15
  1424. Category = 'Command'
  1425. Caption = 'Static &Custom Commands'
  1426. HelpKeyword = 'custom_command'
  1427. Hint = 'Execute custom commands that do not operate with files'
  1428. end
  1429. object CustomCommandsCustomizeAction: TAction
  1430. Tag = 15
  1431. Category = 'Command'
  1432. Caption = '&Customize...'
  1433. HelpKeyword = 'ui_pref_commands'
  1434. Hint = 'Customize custom commands'
  1435. ImageIndex = 28
  1436. end
  1437. object CustomCommandsEnterAction: TAction
  1438. Tag = 15
  1439. Category = 'Command'
  1440. Caption = '&Enter...'
  1441. HelpKeyword = 'custom_command#executing_and_configuring'
  1442. Hint = 'Enter ad hoc custom command'
  1443. ImageIndex = 90
  1444. end
  1445. object CustomCommandsEnterFocusedAction: TAction
  1446. Tag = 12
  1447. Category = 'Command'
  1448. Caption = '&Enter...'
  1449. HelpKeyword = 'custom_command#executing_and_configuring'
  1450. Hint = 'Enter ad hoc custom command'
  1451. ImageIndex = 90
  1452. end
  1453. object CheckForUpdatesAction: TAction
  1454. Tag = 15
  1455. Category = 'Help'
  1456. Caption = '&Check for Updates'
  1457. HelpKeyword = 'updates'
  1458. Hint = 'Queries application homepage for updates'
  1459. ImageIndex = 63
  1460. end
  1461. object DonatePageAction: TAction
  1462. Tag = 15
  1463. Category = 'Help'
  1464. Caption = '&Donate'
  1465. Hint = 'Opens web browser and points it to project donation page'
  1466. end
  1467. object CustomCommandsLastAction: TAction
  1468. Tag = 15
  1469. Category = 'Command'
  1470. Caption = 'CustomCommandsLastAction'
  1471. HelpKeyword = 'custom_command#executing_and_configuring'
  1472. end
  1473. object CustomCommandsLastFocusedAction: TAction
  1474. Tag = 12
  1475. Category = 'Command'
  1476. Caption = 'CustomCommandsLastFocusedAction'
  1477. HelpKeyword = 'custom_command#executing_and_configuring'
  1478. end
  1479. object FileSystemInfoAction: TAction
  1480. Tag = 15
  1481. Category = 'Command'
  1482. Caption = 'Server/Protocol &Information'
  1483. HelpKeyword = 'ui_fsinfo'
  1484. Hint = 'Display server/protocol information'
  1485. ImageIndex = 17
  1486. end
  1487. object ClearCachesAction: TAction
  1488. Tag = 15
  1489. Category = 'Command'
  1490. Caption = 'Clea&r Caches'
  1491. HelpKeyword = 'directory_cache'
  1492. Hint = 'Clear directory listing and directory changes caches'
  1493. end
  1494. object FullSynchronizeAction: TAction
  1495. Tag = 15
  1496. Category = 'Command'
  1497. Caption = '&Synchronize...'
  1498. HelpKeyword = 'task_synchronize_full'
  1499. Hint = 'Synchronize local directory with remote directory'
  1500. ImageIndex = 66
  1501. ShortCut = 16467
  1502. end
  1503. object RemoteMoveToFocusedAction: TAction
  1504. Tag = 14
  1505. Category = 'Remote Focused Operation'
  1506. Caption = 'Mo&ve To...'
  1507. HelpKeyword = 'task_move_duplicate#move'
  1508. Hint =
  1509. 'Move|Move selected remote file(s) to another remote directory or' +
  1510. ' another name'
  1511. ImageIndex = 100
  1512. end
  1513. object ShowHiddenFilesAction: TAction
  1514. Tag = 15
  1515. Category = 'View'
  1516. Caption = 'Show/Hide &Hidden Files'
  1517. HelpKeyword = 'ui_file_panel#special_files'
  1518. Hint = 'Toggle showing hidden files in panel(s)'
  1519. ShortCut = 49224
  1520. end
  1521. object FormatSizeBytesNoneAction: TAction
  1522. Tag = 15
  1523. Category = 'View'
  1524. Caption = '&Bytes'
  1525. HelpKeyword = 'ui_pref_panels#common'
  1526. Hint = 'Show files sizes in bytes'
  1527. end
  1528. object LocalPathToClipboardAction: TAction
  1529. Tag = 15
  1530. Category = 'Local Directory'
  1531. Caption = 'Copy &Path to Clipboard'
  1532. HelpKeyword = 'filenames#cwd'
  1533. Hint = 'Copy current local path to clipboard'
  1534. end
  1535. object RemotePathToClipboardAction: TAction
  1536. Tag = 15
  1537. Category = 'Remote Directory'
  1538. Caption = 'Copy &Path to Clipboard'
  1539. HelpKeyword = 'filenames#cwd'
  1540. Hint = 'Copy current remote path to clipboard'
  1541. end
  1542. object FileListToCommandLineAction: TAction
  1543. Tag = 11
  1544. Category = 'Selected Operation'
  1545. Caption = 'Insert to Command &Line'
  1546. HelpKeyword = 'filenames#command_line'
  1547. Hint = 'Insert name(s) of selected file(s) to command line'
  1548. ShortCut = 16397
  1549. end
  1550. object FileListToClipboardAction: TAction
  1551. Tag = 15
  1552. Category = 'Selected Operation'
  1553. Caption = 'Copy to &Clipboard'
  1554. HelpKeyword = 'filenames#file_name'
  1555. Hint = 'Copy name(s) of selected file(s) to clipboard'
  1556. ShortCut = 24643
  1557. end
  1558. object FullFileListToClipboardAction: TAction
  1559. Tag = 15
  1560. Category = 'Selected Operation'
  1561. Caption = 'Copy to Clipboard (Include &Paths)'
  1562. HelpKeyword = 'filenames#file_name'
  1563. Hint = 'Copy name(s) including path of selected file(s) to clipboard'
  1564. ShortCut = 49219
  1565. end
  1566. object QueueGoToAction: TAction
  1567. Tag = 15
  1568. Category = 'Queue'
  1569. Caption = '&Go To'
  1570. HelpKeyword = 'ui_queue#manage'
  1571. Hint = 'Go to transfer queue list'
  1572. ImageIndex = 74
  1573. ShortCut = 16465
  1574. end
  1575. object QueueItemUpAction: TAction
  1576. Tag = 12
  1577. Category = 'Queue'
  1578. Caption = 'Move &Up'
  1579. HelpKeyword = 'ui_queue#manage'
  1580. Hint = 'Move selected queue item up to be processed earlier'
  1581. ImageIndex = 72
  1582. end
  1583. object QueueItemDownAction: TAction
  1584. Tag = 12
  1585. Category = 'Queue'
  1586. Caption = 'Move &Down'
  1587. HelpKeyword = 'ui_queue#manage'
  1588. Hint = 'Move selected queue item down to be processed later'
  1589. ImageIndex = 73
  1590. end
  1591. object QueueToggleShowAction: TAction
  1592. Tag = 12
  1593. Category = 'Queue'
  1594. Caption = '&Queue'
  1595. Hint = 'Show/hide queue list'
  1596. ImageIndex = 74
  1597. end
  1598. object QueueShowAction: TAction
  1599. Tag = 12
  1600. Category = 'Queue'
  1601. Caption = '&Show'
  1602. HelpKeyword = 'ui_queue'
  1603. Hint = 'Show queue list'
  1604. end
  1605. object QueueHideWhenEmptyAction: TAction
  1606. Tag = 12
  1607. Category = 'Queue'
  1608. Caption = 'Hide when &Empty'
  1609. HelpKeyword = 'ui_queue'
  1610. Hint = 'Hide queue list when it is empty'
  1611. end
  1612. object QueueHideAction: TAction
  1613. Tag = 12
  1614. Category = 'Queue'
  1615. Caption = '&Hide'
  1616. HelpKeyword = 'ui_queue'
  1617. Hint = 'Hide queue list'
  1618. end
  1619. object QueueToolbarAction: TAction
  1620. Tag = 12
  1621. Category = 'Queue'
  1622. Caption = '&Toolbar'
  1623. Hint = 'Hide/show queue list toolbar (on queue list panel)'
  1624. end
  1625. object QueuePreferencesAction: TAction
  1626. Tag = 12
  1627. Category = 'Queue'
  1628. Caption = '&Customize...'
  1629. HelpKeyword = 'ui_pref_background'
  1630. Hint = 'Customize queue list'
  1631. ImageIndex = 28
  1632. end
  1633. object PasteAction2: TAction
  1634. Tag = 15
  1635. Category = 'Command'
  1636. Caption = '&Paste'
  1637. HelpKeyword = 'task_upload#using_copy_amp:paste'
  1638. Hint =
  1639. 'Paste files from clipboard to current directory in active panel;' +
  1640. ' or opens path from clipboard in active panel; or opens session ' +
  1641. 'URL from clipboard'
  1642. ImageIndex = 75
  1643. ShortCut = 16470
  1644. end
  1645. object NewFileAction: TAction
  1646. Tag = 15
  1647. Category = 'Command'
  1648. Caption = '&File...'
  1649. HelpKeyword = 'task_edit'
  1650. Hint = 'Create file|Create new file and open it in editor'
  1651. ImageIndex = 77
  1652. end
  1653. object EditorListCustomizeAction: TAction
  1654. Tag = 15
  1655. Category = 'Command'
  1656. Caption = '&Configure...'
  1657. HelpKeyword = 'ui_pref_editor'
  1658. Hint = 'Customize editors'
  1659. ImageIndex = 28
  1660. end
  1661. object RemoteCopyToFocusedAction: TAction
  1662. Tag = 14
  1663. Category = 'Remote Focused Operation'
  1664. Caption = '&Duplicate...'
  1665. HelpKeyword = 'task_move_duplicate#duplicate'
  1666. Hint =
  1667. 'Duplicate|Duplicate selected remote file(s) to another remote di' +
  1668. 'rectory or another name'
  1669. ImageIndex = 78
  1670. end
  1671. object RemoteCopyToAction: TAction
  1672. Tag = 14
  1673. Category = 'Remote Selected Operation'
  1674. Caption = 'Du&plicate...'
  1675. HelpKeyword = 'task_move_duplicate#duplicate'
  1676. Hint =
  1677. 'Duplicate|Duplicate selected remote file(s) to another remote di' +
  1678. 'rectory or another name'
  1679. ImageIndex = 78
  1680. end
  1681. object FileGenerateUrlAction2: TAction
  1682. Tag = 15
  1683. Category = 'Selected Operation'
  1684. Caption = 'Generate File &URL...'
  1685. HelpKeyword = 'ui_generateurl'
  1686. Hint = 'Generate URL'#39's of selected file(s)'
  1687. end
  1688. object TableOfContentsAction: TAction
  1689. Tag = 12
  1690. Category = 'Help'
  1691. Caption = '&Contents'
  1692. Hint =
  1693. 'Opens web browser and points it to documentation table of conten' +
  1694. 'ts'
  1695. ImageIndex = 79
  1696. ShortCut = 112
  1697. end
  1698. object FileListFromClipboardAction: TAction
  1699. Tag = 15
  1700. Category = 'Selected Operation'
  1701. Caption = '&Transfer Files in Clipboard'
  1702. Hint = 'Transfer files whose names are in clipboard'
  1703. end
  1704. object LocalCopyAction: TAction
  1705. Tag = 9
  1706. Category = 'Local Selected Operation'
  1707. Caption = 'Up&load...'
  1708. HelpKeyword = 'task_upload'
  1709. Hint = 'Upload|Upload selected local file(s) to remote directory'
  1710. ImageIndex = 88
  1711. end
  1712. object CurrentDeleteAlternativeAction: TAction
  1713. Tag = 15
  1714. Category = 'Selected Operation'
  1715. Caption = '&Delete'
  1716. HelpKeyword = 'task_delete'
  1717. Hint = 'Delete|Delete selected file(s)'
  1718. ImageIndex = 2
  1719. end
  1720. object CurrentEditWithAction: TAction
  1721. Tag = 15
  1722. Category = 'Selected Operation'
  1723. Caption = 'Edit &With...'
  1724. HelpKeyword = 'task_edit'
  1725. Hint = 'Edit With|Edit selected file(s) using editor of your choice'
  1726. end
  1727. object DownloadPageAction: TAction
  1728. Tag = 15
  1729. Category = 'Help'
  1730. Caption = '&Download'
  1731. Hint = 'Opens web browser and points it to application download page'
  1732. end
  1733. object UpdatesPreferencesAction: TAction
  1734. Tag = 15
  1735. Category = 'Help'
  1736. Caption = 'Confi&gure...'
  1737. HelpKeyword = 'ui_pref_updates'
  1738. Hint = 'Configure automatic check for application updates'
  1739. ImageIndex = 28
  1740. end
  1741. object FormatSizeBytesKilobytesAction: TAction
  1742. Tag = 15
  1743. Category = 'View'
  1744. Caption = '&Kilobytes'
  1745. HelpKeyword = 'ui_pref_panels#common'
  1746. Hint = 'Show files sizes in kilobytes'
  1747. end
  1748. object FormatSizeBytesShortAction: TAction
  1749. Tag = 15
  1750. Category = 'View'
  1751. Caption = '&Short format'
  1752. HelpKeyword = 'ui_pref_panels#common'
  1753. Hint = 'Show files sizes in short format'
  1754. end
  1755. object PresetsPreferencesAction: TAction
  1756. Tag = 15
  1757. Category = 'View'
  1758. Caption = '&Configure...'
  1759. HelpKeyword = 'ui_pref_transfer'
  1760. Hint = 'Configure transfers settings presets'
  1761. ImageIndex = 28
  1762. end
  1763. object LockToolbarsAction: TAction
  1764. Tag = 15
  1765. Category = 'View'
  1766. Caption = '&Lock Toolbars'
  1767. HelpKeyword = 'ui_toolbars'
  1768. Hint = 'Prevents moving and (un)docking of all toolbars'
  1769. end
  1770. object SelectiveToolbarTextAction: TAction
  1771. Tag = 15
  1772. Category = 'View'
  1773. Caption = '&Show Selective Text Labels'
  1774. HelpKeyword = 'ui_toolbars'
  1775. Hint = 'Show text labels for selected important commands on toolbars'
  1776. end
  1777. object CustomCommandsBandAction: TAction
  1778. Tag = 15
  1779. Category = 'View'
  1780. Caption = 'Custom Co&mmand Buttons'
  1781. HelpKeyword = 'ui_toolbars'
  1782. Hint = 'Hide/show custom commands toolbar'
  1783. end
  1784. object ColorMenuAction: TAction
  1785. Tag = 15
  1786. Category = 'View'
  1787. Caption = 'C&olor'
  1788. HelpKeyword = 'task_connections#session_color'
  1789. Hint = 'Change color of current session'
  1790. end
  1791. object AutoReadDirectoryAfterOpAction: TAction
  1792. Tag = 15
  1793. Category = 'View'
  1794. Caption = 'Auto&matically Reload Directory'
  1795. Hint = 'Toggle automatic reload of remote directory after operation'
  1796. ShortCut = 49234
  1797. end
  1798. object QueueItemPauseAction: TAction
  1799. Tag = 12
  1800. Category = 'Queue'
  1801. Caption = '&Suspend'
  1802. HelpKeyword = 'ui_queue#manage'
  1803. Hint = 'Suspend selected queue item'
  1804. ImageIndex = 83
  1805. end
  1806. object QueueItemResumeAction: TAction
  1807. Tag = 12
  1808. Category = 'Queue'
  1809. Caption = '&Resume'
  1810. HelpKeyword = 'ui_queue#manage'
  1811. Hint = 'Resume selected suspended queue item'
  1812. ImageIndex = 70
  1813. end
  1814. object QueuePauseAllAction: TAction
  1815. Tag = 12
  1816. Category = 'Queue'
  1817. Caption = '&Suspend All'
  1818. HelpKeyword = 'ui_queue#manage'
  1819. Hint = 'Suspend all running queue items'
  1820. ImageIndex = 84
  1821. end
  1822. object QueueResumeAllAction: TAction
  1823. Tag = 12
  1824. Category = 'Queue'
  1825. Caption = '&Resume All'
  1826. HelpKeyword = 'ui_queue#manage'
  1827. Hint = 'Resume all suspended queue items'
  1828. ImageIndex = 85
  1829. end
  1830. object QueueDeleteAllDoneAction: TAction
  1831. Tag = 12
  1832. Category = 'Queue'
  1833. Caption = 'Delete All &Completed'
  1834. HelpKeyword = 'ui_queue#manage'
  1835. Hint = 'Remove all completed queue items'
  1836. ImageIndex = 99
  1837. end
  1838. object QueueEnableAction: TAction
  1839. Tag = 15
  1840. Category = 'Queue'
  1841. Caption = '&Process Queue'
  1842. HelpKeyword = 'ui_queue#manage'
  1843. Hint =
  1844. 'Enable queue processing|Enable queue processing (pending queue i' +
  1845. 'tems will not start, when queue processing is disabled)'
  1846. ImageIndex = 96
  1847. ShortCut = 24657
  1848. end
  1849. object QueueDisconnectOnceEmptyAction2: TAction
  1850. Tag = 12
  1851. Category = 'Queue'
  1852. Caption = '&Disconnect Session'
  1853. HelpKeyword = 'ui_queue'
  1854. Hint = 'Disconnect the session once the queue is empty'
  1855. ImageIndex = 87
  1856. end
  1857. object RestoreSelectionAction: TAction
  1858. Tag = 15
  1859. Category = 'Selection'
  1860. Caption = '&Restore Selection'
  1861. HelpKeyword = 'ui_file_panel#selecting_files'
  1862. Hint = 'Restore previous selection'
  1863. ImageIndex = 86
  1864. end
  1865. object LocalSelectAction: TAction
  1866. Tag = 12
  1867. Category = 'Selection'
  1868. Caption = 'Sele&ct Files...'
  1869. HelpKeyword = 'ui_select'
  1870. Hint = 'Select|Select local files by mask'
  1871. ImageIndex = 19
  1872. end
  1873. object LocalUnselectAction: TAction
  1874. Tag = 12
  1875. Category = 'Selection'
  1876. Caption = '&Unselect Files...'
  1877. HelpKeyword = 'ui_select'
  1878. Hint = 'Unselect|Unselect local files by mask'
  1879. ImageIndex = 20
  1880. end
  1881. object LocalSelectAllAction: TAction
  1882. Tag = 12
  1883. Category = 'Selection'
  1884. Caption = 'Select &All'
  1885. HelpKeyword = 'ui_file_panel#selecting_files'
  1886. Hint = 'Select all local files'
  1887. ImageIndex = 21
  1888. end
  1889. object CurrentEditFocusedAction: TAction
  1890. Tag = 15
  1891. Category = 'Focused Operation'
  1892. Caption = '&Edit'
  1893. HelpKeyword = 'task_edit'
  1894. Hint = 'Edit|Edit selected file(s)'
  1895. ImageIndex = 57
  1896. end
  1897. object CurrentEditWithFocusedAction: TAction
  1898. Tag = 15
  1899. Category = 'Focused Operation'
  1900. Caption = 'Edit &With...'
  1901. HelpKeyword = 'task_edit'
  1902. Hint = 'Edit With|Edit selected file(s) using editor of your choice'
  1903. end
  1904. object NewDirAction: TAction
  1905. Tag = 12
  1906. Category = 'Command'
  1907. Caption = '&Directory...'
  1908. HelpKeyword = 'task_create_directory'
  1909. Hint = 'Create directory|Create new directory'
  1910. ImageIndex = 5
  1911. end
  1912. object QueueShutDownOnceEmptyAction2: TAction
  1913. Tag = 12
  1914. Category = 'Queue'
  1915. Caption = '&Shut Down Computer'
  1916. HelpKeyword = 'ui_queue'
  1917. Hint = 'Shut down the computer once the queue is empty'
  1918. ImageIndex = 93
  1919. end
  1920. object QueueSuspendOnceEmptyAction2: TAction
  1921. Tag = 12
  1922. Category = 'Queue'
  1923. Caption = 'Slee&p Computer'
  1924. HelpKeyword = 'ui_queue'
  1925. Hint = 'Put the computer into sleep mode once the queue is empty'
  1926. ImageIndex = 105
  1927. end
  1928. object QueueIdleOnceEmptyAction: TAction
  1929. Tag = 12
  1930. Category = 'Queue'
  1931. Caption = '&Stay Idle'
  1932. Checked = True
  1933. HelpKeyword = 'ui_queue'
  1934. Hint = 'Stay idle once the queue is empty'
  1935. ImageIndex = 94
  1936. end
  1937. object QueueCycleOnceEmptyAction: TAction
  1938. Tag = 12
  1939. Category = 'Queue'
  1940. Caption = 'Once &Empty'
  1941. HelpKeyword = 'ui_queue'
  1942. Hint = 'Toggle action to perform once the queue list is empty'
  1943. ImageIndex = 94
  1944. end
  1945. object QueueItemSpeedAction: TTBEditAction
  1946. Tag = 12
  1947. Category = 'Queue'
  1948. HelpKeyword = 'ui_queue#manage'
  1949. Hint = 'Change speed limit of selected queue item'
  1950. ImageIndex = 109
  1951. EditCaption = '&Speed'
  1952. end
  1953. object QueueDeleteAllAction: TAction
  1954. Tag = 12
  1955. Category = 'Queue'
  1956. Caption = '&Cancel All'
  1957. HelpKeyword = 'ui_queue#manage'
  1958. Hint = 'Remove all queue items'
  1959. ImageIndex = 106
  1960. end
  1961. object LocalFilterAction: TAction
  1962. Tag = 9
  1963. Category = 'Local Directory'
  1964. Caption = '&Filter...'
  1965. HelpKeyword = 'ui_file_panel#filtering'
  1966. Hint = 'Filter|Filter displayed files'
  1967. ImageIndex = 92
  1968. ShortCut = 49222
  1969. end
  1970. object RemoteFilterAction: TAction
  1971. Tag = 14
  1972. Category = 'Remote Directory'
  1973. Caption = '&Filter...'
  1974. HelpKeyword = 'ui_file_panel#filtering'
  1975. Hint = 'Filter|Filter displayed files'
  1976. ImageIndex = 92
  1977. ShortCut = 49222
  1978. end
  1979. object RemoteFindFilesAction: TAction
  1980. Tag = 15
  1981. Category = 'Remote Directory'
  1982. Caption = '&Find Files...'
  1983. HelpKeyword = 'task_find'
  1984. Hint = 'Find files|Find remote files and directories'
  1985. ImageIndex = 95
  1986. end
  1987. object CurrentEditInternalAction: TAction
  1988. Tag = 15
  1989. Category = 'Selected Operation'
  1990. Caption = '&Internal editor'
  1991. HelpKeyword = 'task_edit'
  1992. Hint = 'Edit (internal)|Edit selected file(s) using internal editor'
  1993. end
  1994. object SaveWorkspaceAction: TAction
  1995. Tag = 15
  1996. Category = 'Session'
  1997. Caption = 'Save Wor&kspace...'
  1998. HelpKeyword = 'workspace'
  1999. Hint = 'Save workspace|Save workspace'
  2000. ImageIndex = 102
  2001. end
  2002. object LocalRenameAction: TAction
  2003. Tag = 12
  2004. Category = 'Local Selected Operation'
  2005. Caption = '&Rename'
  2006. HelpKeyword = 'task_rename'
  2007. Hint = 'Rename|Rename selected local file'
  2008. ImageIndex = 3
  2009. end
  2010. object LocalEditAction: TAction
  2011. Tag = 12
  2012. Category = 'Local Selected Operation'
  2013. Caption = '&Edit'
  2014. HelpKeyword = 'task_edit'
  2015. Hint = 'Edit|Edit selected local file(s)'
  2016. ImageIndex = 57
  2017. end
  2018. object LocalMoveAction: TAction
  2019. Tag = 9
  2020. Category = 'Local Selected Operation'
  2021. Caption = 'Upload and Dele&te...'
  2022. HelpKeyword = 'task_upload'
  2023. Hint =
  2024. 'Upload and Delete|Upload selected local file(s) to remote direct' +
  2025. 'ory and delete original'
  2026. ImageIndex = 98
  2027. end
  2028. object LocalCreateDirAction2: TAction
  2029. Tag = 12
  2030. Category = 'Local Selected Operation'
  2031. Caption = '&Directory...'
  2032. HelpKeyword = 'task_create_directory'
  2033. Hint = 'Create directory|Create new local directory'
  2034. ImageIndex = 5
  2035. end
  2036. object LocalDeleteAction: TAction
  2037. Tag = 12
  2038. Category = 'Local Selected Operation'
  2039. Caption = '&Delete'
  2040. HelpKeyword = 'task_delete'
  2041. Hint = 'Delete|Delete selected local file(s)'
  2042. ImageIndex = 2
  2043. end
  2044. object LocalPropertiesAction: TAction
  2045. Tag = 12
  2046. Category = 'Local Selected Operation'
  2047. Caption = '&Properties'
  2048. HelpKeyword = 'task_properties'
  2049. Hint = 'Properties|Display/change properties of selected local file(s)'
  2050. ImageIndex = 4
  2051. end
  2052. object LocalAddEditLinkAction2: TAction
  2053. Tag = 12
  2054. Category = 'Local Selected Operation'
  2055. Caption = '&Shortcut...'
  2056. HelpKeyword = 'task_link'
  2057. Hint =
  2058. 'Add/edit shortcut|Add new local shortcut or edit selected local ' +
  2059. 'shortcut'
  2060. ImageIndex = 60
  2061. end
  2062. object RemoteRenameAction: TAction
  2063. Tag = 12
  2064. Category = 'Remote Selected Operation'
  2065. Caption = '&Rename'
  2066. HelpKeyword = 'task_rename'
  2067. Hint = 'Rename|Rename selected remote file'
  2068. ImageIndex = 3
  2069. end
  2070. object RemoteEditAction: TAction
  2071. Tag = 12
  2072. Category = 'Remote Selected Operation'
  2073. Caption = '&Edit'
  2074. HelpKeyword = 'task_edit'
  2075. Hint = 'Edit|Edit selected remote file(s)'
  2076. ImageIndex = 57
  2077. end
  2078. object RemoteMoveAction: TAction
  2079. Tag = 14
  2080. Category = 'Remote Selected Operation'
  2081. Caption = 'Download and Dele&te...'
  2082. HelpKeyword = 'task_download'
  2083. Hint =
  2084. 'Download and Delete|Download selected remote file(s) to local di' +
  2085. 'rectory and delete original'
  2086. ImageIndex = 97
  2087. end
  2088. object RemoteCreateDirAction2: TAction
  2089. Tag = 12
  2090. Category = 'Remote Selected Operation'
  2091. Caption = '&Directory...'
  2092. HelpKeyword = 'task_create_directory'
  2093. Hint = 'Create directory|Create new remote directory'
  2094. ImageIndex = 5
  2095. end
  2096. object RemoteDeleteAction: TAction
  2097. Tag = 12
  2098. Category = 'Remote Selected Operation'
  2099. Caption = '&Delete'
  2100. HelpKeyword = 'task_delete'
  2101. Hint = 'Delete|Delete selected remote file(s)'
  2102. ImageIndex = 2
  2103. end
  2104. object RemotePropertiesAction: TAction
  2105. Tag = 12
  2106. Category = 'Remote Selected Operation'
  2107. Caption = '&Properties'
  2108. HelpKeyword = 'task_properties'
  2109. Hint =
  2110. 'Properties|Display/change permissions, ownership or other proper' +
  2111. 'ties of selected remote file(s) '
  2112. ImageIndex = 4
  2113. end
  2114. object RemoteAddEditLinkAction2: TAction
  2115. Tag = 12
  2116. Category = 'Remote Selected Operation'
  2117. Caption = '&Link...'
  2118. HelpKeyword = 'task_link'
  2119. Hint = 'Add/edit link|Add new remote link or edit selected remote link'
  2120. ImageIndex = 60
  2121. end
  2122. object RemoteSelectAction: TAction
  2123. Tag = 12
  2124. Category = 'Selection'
  2125. Caption = 'Sele&ct Files...'
  2126. HelpKeyword = 'ui_select'
  2127. Hint = 'Select|Select remote files by mask'
  2128. ImageIndex = 19
  2129. end
  2130. object RemoteUnselectAction: TAction
  2131. Tag = 12
  2132. Category = 'Selection'
  2133. Caption = '&Unselect Files...'
  2134. HelpKeyword = 'ui_select'
  2135. Hint = 'Unselect|Unselect remote files by mask'
  2136. ImageIndex = 20
  2137. end
  2138. object RemoteSelectAllAction: TAction
  2139. Tag = 12
  2140. Category = 'Selection'
  2141. Caption = 'Select &All'
  2142. HelpKeyword = 'ui_file_panel#selecting_files'
  2143. Hint = 'Select all remote files'
  2144. ImageIndex = 21
  2145. end
  2146. object LocalMoveFocusedAction: TAction
  2147. Tag = 8
  2148. Category = 'Local Focused Operation'
  2149. Caption = 'Upload and Dele&te...'
  2150. HelpKeyword = 'task_upload'
  2151. Hint =
  2152. 'Upload and Delete|Upload selected local file(s) to remote direct' +
  2153. 'ory and delete original'
  2154. ImageIndex = 98
  2155. end
  2156. object CurrentEditInternalFocusedAction: TAction
  2157. Tag = 15
  2158. Category = 'Focused Operation'
  2159. Caption = '&Internal editor'
  2160. HelpKeyword = 'task_edit'
  2161. Hint = 'Edit (internal)|Edit selected file(s) using internal editor'
  2162. end
  2163. object CurrentSystemMenuFocusedAction: TAction
  2164. Tag = 12
  2165. Category = 'Focused Operation'
  2166. Caption = '&System Menu'
  2167. Hint =
  2168. 'Display system file context menu (in Properties you can opt to d' +
  2169. 'isplay it by default instead of built-in menu)'
  2170. end
  2171. object SessionGenerateUrlAction2: TAction
  2172. Tag = 15
  2173. Category = 'Session'
  2174. Caption = 'Generate Session &URL/Code...'
  2175. HelpKeyword = 'ui_generateurl'
  2176. Hint = 'Generate URL or code for current session'
  2177. end
  2178. object SelectSameExtAction: TAction
  2179. Tag = 15
  2180. Category = 'Selection'
  2181. Caption = 'Select Files with Same &Extension'
  2182. Hint =
  2183. 'Select all files with the same extension as currently focused fi' +
  2184. 'le'
  2185. ShortCut = 32875
  2186. end
  2187. object UnselectSameExtAction: TAction
  2188. Tag = 15
  2189. Category = 'Selection'
  2190. Caption = 'Unselect Files with Same E&xtension'
  2191. Hint =
  2192. 'Unselect all files with the same extension as currently focused ' +
  2193. 'file'
  2194. ShortCut = 32877
  2195. end
  2196. object GoToAddressAction: TAction
  2197. Tag = 15
  2198. Category = 'Command'
  2199. Caption = 'GoToAddressAction'
  2200. SecondaryShortCuts.Strings = (
  2201. 'Alt+D')
  2202. ShortCut = 16460
  2203. end
  2204. object LockAction: TAction
  2205. Tag = 15
  2206. Category = 'Selected Operation'
  2207. Caption = '&Lock'
  2208. Hint = 'Lock selected file(s)'
  2209. end
  2210. object UnlockAction: TAction
  2211. Tag = 15
  2212. Category = 'Selected Operation'
  2213. Caption = '&Unlock'
  2214. Hint = 'Unlock selected file(s)'
  2215. end
  2216. object TipsAction: TAction
  2217. Tag = 15
  2218. Category = 'Help'
  2219. Caption = 'Show &Tips'
  2220. HelpKeyword = 'ui_tips'
  2221. Hint = 'Displays tips on using WinSCP'
  2222. ImageIndex = 110
  2223. end
  2224. object ChangePasswordAction: TAction
  2225. Tag = 15
  2226. Category = 'Session'
  2227. Caption = '&Change Password...'
  2228. HelpKeyword = 'task_change_password'
  2229. Hint = 'Change account password'
  2230. end
  2231. object PrivateKeyUploadAction: TAction
  2232. Tag = 15
  2233. Category = 'Session'
  2234. Caption = '&Install Public Key into Server...'
  2235. HelpKeyword = 'guide_public_key'
  2236. Hint = 'Install public key for authentication into the server'
  2237. end
  2238. object RemoteNewFileAction: TAction
  2239. Tag = 15
  2240. Category = 'Remote Selected Operation'
  2241. Caption = '&File...'
  2242. HelpKeyword = 'task_edit'
  2243. Hint = 'Create file|Create new file and open it in editor'
  2244. ImageIndex = 77
  2245. end
  2246. object LocalNewFileAction: TAction
  2247. Tag = 15
  2248. Category = 'Local Selected Operation'
  2249. Caption = '&File...'
  2250. HelpKeyword = 'task_edit'
  2251. Hint = 'Create file|Create new file and open it in editor'
  2252. ImageIndex = 77
  2253. end
  2254. object CustomizeToolbarAction: TAction
  2255. Tag = 15
  2256. Category = 'View'
  2257. Caption = '&Customize Toolbar'
  2258. HelpKeyword = 'ui_toolbars'
  2259. Hint = 'Show/hide toolbar buttons'
  2260. end
  2261. object RenameSessionAction: TAction
  2262. Tag = 15
  2263. Category = 'Session'
  2264. Caption = '&Rename Session'
  2265. HelpKeyword = 'task_connections#renaming'
  2266. Hint = 'Rename session|Changes name of the current session'
  2267. end
  2268. object CurrentCopyToClipboardAction: TAction
  2269. Tag = 15
  2270. Category = 'Selected Operation'
  2271. Caption = '&Copy'
  2272. Hint = 'Copy|Copy the selected files to clipboard'
  2273. ImageIndex = 111
  2274. ShortCut = 16451
  2275. end
  2276. object FileColorsPreferencesAction: TAction
  2277. Tag = 15
  2278. Category = 'View'
  2279. Caption = 'File &Colors...'
  2280. HelpKeyword = 'ui_pref_file_colors'
  2281. Hint = 'Configure file color rules'
  2282. end
  2283. object CurrentCopyToClipboardFocusedAction: TAction
  2284. Tag = 12
  2285. Category = 'Focused Operation'
  2286. Caption = '&Copy'
  2287. Hint = 'Copy|Copy the selected files to clipboard'
  2288. ImageIndex = 111
  2289. ShortCut = 16451
  2290. end
  2291. end
  2292. object ExplorerBarPopup: TTBXPopupMenu
  2293. Images = GlyphsModule.ExplorerImages
  2294. Options = [tboShowHint]
  2295. Left = 192
  2296. Top = 336
  2297. object Address2: TTBXItem
  2298. Action = ExplorerAddressBandAction
  2299. end
  2300. object StandardButtons1: TTBXItem
  2301. Action = ExplorerToolbarBandAction
  2302. end
  2303. object SelectionButtons1: TTBXItem
  2304. Action = ExplorerSelectionBandAction
  2305. end
  2306. object SessionButtons2: TTBXItem
  2307. Action = ExplorerSessionBandAction
  2308. end
  2309. object PreferencesButtons1: TTBXItem
  2310. Action = ExplorerPreferencesBandAction
  2311. end
  2312. object SortButtons3: TTBXItem
  2313. Action = ExplorerSortBandAction
  2314. end
  2315. object TBXItem3: TTBXItem
  2316. Action = ExplorerUpdatesBandAction
  2317. end
  2318. object TBXItem4: TTBXItem
  2319. Action = ExplorerTransferBandAction
  2320. end
  2321. object TBXItem16: TTBXItem
  2322. Action = ExplorerCustomCommandsBandAction
  2323. end
  2324. object TBXItem7: TTBXItem
  2325. Action = LockToolbarsAction
  2326. end
  2327. object TBXItem48: TTBXItem
  2328. Action = SelectiveToolbarTextAction
  2329. end
  2330. object TBXSubmenuItem4: TTBXSubmenuItem
  2331. Action = CustomizeToolbarAction
  2332. end
  2333. object N5: TTBXSeparatorItem
  2334. end
  2335. object SessionsTabsAction2: TTBXItem
  2336. Action = SessionsTabsAction
  2337. end
  2338. object StatusBar2: TTBXItem
  2339. Action = StatusBarAction
  2340. end
  2341. object N72: TTBXSeparatorItem
  2342. end
  2343. object Queue7: TTBXSubmenuItem
  2344. Caption = '&Queue'
  2345. HelpKeyword = 'ui_queue'
  2346. Hint = 'Configure queue list'
  2347. object Show6: TTBXItem
  2348. Action = QueueShowAction
  2349. RadioItem = True
  2350. end
  2351. object HidewhenEmpty6: TTBXItem
  2352. Action = QueueHideWhenEmptyAction
  2353. RadioItem = True
  2354. end
  2355. object Hide5: TTBXItem
  2356. Action = QueueHideAction
  2357. RadioItem = True
  2358. end
  2359. object N71: TTBXSeparatorItem
  2360. end
  2361. object Toolbar5: TTBXItem
  2362. Action = QueueToolbarAction
  2363. end
  2364. object N70: TTBXSeparatorItem
  2365. end
  2366. object Customize5: TTBXItem
  2367. Action = QueuePreferencesAction
  2368. end
  2369. end
  2370. object Tree4: TTBXItem
  2371. Action = RemoteTreeAction
  2372. end
  2373. end
  2374. object SessionIdleTimer: TTimer
  2375. Enabled = False
  2376. Interval = 500
  2377. OnTimer = SessionIdleTimerTimer
  2378. Left = 32
  2379. Top = 336
  2380. end
  2381. object CommanderBarPopup: TTBXPopupMenu
  2382. Images = GlyphsModule.ExplorerImages
  2383. Options = [tboShowHint]
  2384. Left = 424
  2385. Top = 264
  2386. object CommandsButtons2: TTBXItem
  2387. Action = CommanderCommandsBandAction
  2388. end
  2389. object SessionButtons5: TTBXItem
  2390. Action = CommanderSessionBandAction
  2391. end
  2392. object PreferencesButtons4: TTBXItem
  2393. Action = CommanderPreferencesBandAction
  2394. end
  2395. object SortButtons2: TTBXItem
  2396. Action = CommanderSortBandAction
  2397. end
  2398. object TBXItem2: TTBXItem
  2399. Action = CommanderUpdatesBandAction
  2400. end
  2401. object TBXItem5: TTBXItem
  2402. Action = CommanderTransferBandAction
  2403. end
  2404. object TBXItem15: TTBXItem
  2405. Action = CommanderCustomCommandsBandAction
  2406. end
  2407. object TBXItem6: TTBXItem
  2408. Action = LockToolbarsAction
  2409. end
  2410. object TBXItem46: TTBXItem
  2411. Action = SelectiveToolbarTextAction
  2412. end
  2413. object TBXItem77: TTBXSubmenuItem
  2414. Action = CustomizeToolbarAction
  2415. end
  2416. object N26: TTBXSeparatorItem
  2417. end
  2418. object SessionsTabsAction1: TTBXItem
  2419. Action = SessionsTabsAction
  2420. end
  2421. object CommandLine2: TTBXItem
  2422. Action = CommandLinePanelAction
  2423. end
  2424. object CommandsToolbar1: TTBXItem
  2425. Action = ToolBar2Action
  2426. end
  2427. object StatusBar8: TTBXItem
  2428. Action = StatusBarAction
  2429. end
  2430. object N27: TTBXSeparatorItem
  2431. end
  2432. object LocalPanel1: TTBXSubmenuItem
  2433. Caption = '&Local Panel'
  2434. HelpKeyword = 'ui_file_panel'
  2435. Hint = 'Change local panel layout'
  2436. object HistoryButtons3: TTBXItem
  2437. Action = CommanderLocalHistoryBandAction
  2438. end
  2439. object NavigationButtons3: TTBXItem
  2440. Action = CommanderLocalNavigationBandAction
  2441. end
  2442. object TBXItem40: TTBXItem
  2443. Action = CommanderLocalFileBandAction
  2444. end
  2445. object TBXItem43: TTBXItem
  2446. Action = CommanderLocalSelectionBandAction
  2447. end
  2448. object N23: TTBXSeparatorItem
  2449. end
  2450. object Tree7: TTBXItem
  2451. Action = LocalTreeAction
  2452. end
  2453. object N77: TTBXSeparatorItem
  2454. end
  2455. object StatusBar6: TTBXItem
  2456. Action = LocalStatusBarAction
  2457. end
  2458. end
  2459. object RemotePanel2: TTBXSubmenuItem
  2460. Caption = '&Remote Panel'
  2461. HelpKeyword = 'ui_file_panel'
  2462. Hint = 'Change remote panel layout'
  2463. object HistoryButtons4: TTBXItem
  2464. Action = CommanderRemoteHistoryBandAction
  2465. end
  2466. object NavigationButtons4: TTBXItem
  2467. Action = CommanderRemoteNavigationBandAction
  2468. end
  2469. object TBXItem41: TTBXItem
  2470. Action = CommanderRemoteFileBandAction
  2471. end
  2472. object TBXItem42: TTBXItem
  2473. Action = CommanderRemoteSelectionBandAction
  2474. end
  2475. object N25: TTBXSeparatorItem
  2476. end
  2477. object Tree8: TTBXItem
  2478. Action = RemoteTreeAction
  2479. end
  2480. object N78: TTBXSeparatorItem
  2481. end
  2482. object StatusBar7: TTBXItem
  2483. Action = RemoteStatusBarAction
  2484. end
  2485. end
  2486. object Options1: TTBXSubmenuItem
  2487. Caption = '&Queue'
  2488. HelpKeyword = 'ui_queue'
  2489. Hint = 'Configure queue list'
  2490. object Show5: TTBXItem
  2491. Action = QueueShowAction
  2492. RadioItem = True
  2493. end
  2494. object HidewhenEmpty5: TTBXItem
  2495. Action = QueueHideWhenEmptyAction
  2496. RadioItem = True
  2497. end
  2498. object Hide4: TTBXItem
  2499. Action = QueueHideAction
  2500. RadioItem = True
  2501. end
  2502. object N69: TTBXSeparatorItem
  2503. end
  2504. object Toolbar4: TTBXItem
  2505. Action = QueueToolbarAction
  2506. end
  2507. object N68: TTBXSeparatorItem
  2508. end
  2509. object Customize4: TTBXItem
  2510. Action = QueuePreferencesAction
  2511. end
  2512. end
  2513. end
  2514. object RemotePanelPopup: TTBXPopupMenu
  2515. Images = GlyphsModule.ExplorerImages
  2516. Options = [tboShowHint]
  2517. Left = 312
  2518. Top = 264
  2519. object TBXItem32: TTBXItem
  2520. Action = RemoteRefreshAction
  2521. end
  2522. object TBXItem30: TTBXItem
  2523. Action = RemoteAddBookmarkAction
  2524. end
  2525. object CopyPathtoClipboard1: TTBXItem
  2526. Action = RemotePathToClipboardAction
  2527. end
  2528. object OpenDirectoryBookmark1: TTBXItem
  2529. Action = RemoteOpenDirAction
  2530. end
  2531. object TBXItem26: TTBXItem
  2532. Action = RemoteFilterAction
  2533. end
  2534. object N51: TTBXSeparatorItem
  2535. end
  2536. object HistoryButtons5: TTBXItem
  2537. Action = CommanderRemoteHistoryBandAction
  2538. end
  2539. object NavigationButtons5: TTBXItem
  2540. Action = CommanderRemoteNavigationBandAction
  2541. end
  2542. object TBXItem14: TTBXItem
  2543. Action = CommanderRemoteFileBandAction
  2544. end
  2545. object TBXItem45: TTBXItem
  2546. Action = CommanderRemoteSelectionBandAction
  2547. end
  2548. object TBXItem37: TTBXItem
  2549. Action = LockToolbarsAction
  2550. end
  2551. object TBXItem49: TTBXItem
  2552. Action = SelectiveToolbarTextAction
  2553. end
  2554. object TBXSubmenuItem9: TTBXSubmenuItem
  2555. Action = CustomizeToolbarAction
  2556. end
  2557. object N28: TTBXSeparatorItem
  2558. end
  2559. object Tree5: TTBXItem
  2560. Action = RemoteTreeAction
  2561. end
  2562. object N75: TTBXSeparatorItem
  2563. end
  2564. object StatusBar9: TTBXItem
  2565. Action = RemoteStatusBarAction
  2566. end
  2567. end
  2568. object LocalPanelPopup: TTBXPopupMenu
  2569. Images = GlyphsModule.ExplorerImages
  2570. Options = [tboShowHint]
  2571. Left = 312
  2572. Top = 336
  2573. object TBXItem34: TTBXItem
  2574. Action = LocalRefreshAction
  2575. end
  2576. object TBXItem31: TTBXItem
  2577. Action = LocalAddBookmarkAction
  2578. end
  2579. object CopyPathtoClipboard2: TTBXItem
  2580. Action = LocalPathToClipboardAction
  2581. end
  2582. object OpenDirectoryBookmark2: TTBXItem
  2583. Action = LocalOpenDirAction
  2584. end
  2585. object TBXItem27: TTBXItem
  2586. Action = LocalFilterAction
  2587. end
  2588. object N52: TTBXSeparatorItem
  2589. end
  2590. object HistoryButtons6: TTBXItem
  2591. Action = CommanderLocalHistoryBandAction
  2592. end
  2593. object NavigationButtons6: TTBXItem
  2594. Action = CommanderLocalNavigationBandAction
  2595. end
  2596. object TBXItem39: TTBXItem
  2597. Action = CommanderLocalFileBandAction
  2598. end
  2599. object TBXItem44: TTBXItem
  2600. Action = CommanderLocalSelectionBandAction
  2601. end
  2602. object TBXItem38: TTBXItem
  2603. Action = LockToolbarsAction
  2604. end
  2605. object TBXItem47: TTBXItem
  2606. Action = SelectiveToolbarTextAction
  2607. end
  2608. object TBXSubmenuItem6: TTBXSubmenuItem
  2609. Action = CustomizeToolbarAction
  2610. end
  2611. object N29: TTBXSeparatorItem
  2612. end
  2613. object Tree6: TTBXItem
  2614. Action = LocalTreeAction
  2615. end
  2616. object N76: TTBXSeparatorItem
  2617. end
  2618. object StatusBar10: TTBXItem
  2619. Action = LocalStatusBarAction
  2620. end
  2621. end
  2622. object LocalDirViewColumnPopup: TTBXPopupMenu
  2623. Images = GlyphsModule.ExplorerImages
  2624. Options = [tboShowHint]
  2625. Left = 248
  2626. Top = 88
  2627. object SortAscending1: TTBXItem
  2628. Action = SortColumnAscendingAction
  2629. end
  2630. object SortDescending1: TTBXItem
  2631. Action = SortColumnDescendingAction
  2632. end
  2633. object LocalSortByExtColumnPopupItem: TTBXItem
  2634. Action = LocalSortByExtAction
  2635. end
  2636. object Hidecolumn1: TTBXItem
  2637. Action = HideColumnAction
  2638. end
  2639. object N37: TTBXSeparatorItem
  2640. end
  2641. object LocalFormatSizeBytesPopupItem: TTBXSubmenuItem
  2642. Caption = 'Show File Si&zes In'
  2643. HelpKeyword = 'ui_pref_panels#common'
  2644. Hint = 'Select files sizes display format'
  2645. object TBXItem64: TTBXItem
  2646. Action = FormatSizeBytesNoneAction
  2647. end
  2648. object TBXItem65: TTBXItem
  2649. Action = FormatSizeBytesKilobytesAction
  2650. end
  2651. object TBXItem66: TTBXItem
  2652. Action = FormatSizeBytesShortAction
  2653. end
  2654. end
  2655. object TBXSeparatorItem8: TTBXSeparatorItem
  2656. end
  2657. object Showcolumns3: TTBXSubmenuItem
  2658. Caption = 'Show &Columns'
  2659. HelpKeyword = 'ui_file_panel#selecting_columns'
  2660. Hint = 'Select columns to show in panel'
  2661. object Name3: TTBXItem
  2662. Action = ShowHideLocalNameColumnAction
  2663. end
  2664. object Size3: TTBXItem
  2665. Action = ShowHideLocalSizeColumnAction
  2666. end
  2667. object Type2: TTBXItem
  2668. Action = ShowHideLocalTypeColumnAction
  2669. end
  2670. object Modification3: TTBXItem
  2671. Action = ShowHideLocalChangedColumnAction
  2672. end
  2673. object Attributes3: TTBXItem
  2674. Action = ShowHideLocalAttrColumnAction
  2675. end
  2676. end
  2677. end
  2678. object RemoteDirViewColumnPopup: TTBXPopupMenu
  2679. Images = GlyphsModule.ExplorerImages
  2680. Options = [tboShowHint]
  2681. Left = 424
  2682. Top = 88
  2683. object MenuItem1: TTBXItem
  2684. Action = SortColumnAscendingAction
  2685. RadioItem = True
  2686. end
  2687. object MenuItem2: TTBXItem
  2688. Action = SortColumnDescendingAction
  2689. RadioItem = True
  2690. end
  2691. object RemoteSortByExtColumnPopupItem: TTBXItem
  2692. Action = RemoteSortByExtAction
  2693. end
  2694. object Hidecolumn2: TTBXItem
  2695. Action = HideColumnAction
  2696. end
  2697. object N38: TTBXSeparatorItem
  2698. end
  2699. object RemoteFormatSizeBytesPopupItem: TTBXSubmenuItem
  2700. Caption = 'Show File Si&zes In'
  2701. HelpKeyword = 'ui_pref_panels#common'
  2702. Hint = 'Select files sizes display format'
  2703. object TBXItem67: TTBXItem
  2704. Action = FormatSizeBytesNoneAction
  2705. end
  2706. object TBXItem53: TTBXItem
  2707. Action = FormatSizeBytesKilobytesAction
  2708. end
  2709. object TBXItem55: TTBXItem
  2710. Action = FormatSizeBytesShortAction
  2711. end
  2712. end
  2713. object TBXSeparatorItem7: TTBXSeparatorItem
  2714. end
  2715. object Showcolumns4: TTBXSubmenuItem
  2716. Caption = 'Show &Columns'
  2717. HelpKeyword = 'ui_file_panel#selecting_columns'
  2718. Hint = 'Select columns to show in panel'
  2719. object Name4: TTBXItem
  2720. Action = ShowHideRemoteNameColumnAction
  2721. end
  2722. object Size4: TTBXItem
  2723. Action = ShowHideRemoteSizeColumnAction
  2724. end
  2725. object TBXItem8: TTBXItem
  2726. Action = ShowHideRemoteTypeColumnAction
  2727. end
  2728. object Modification4: TTBXItem
  2729. Action = ShowHideRemoteChangedColumnAction
  2730. end
  2731. object Permissions1: TTBXItem
  2732. Action = ShowHideRemoteRightsColumnAction
  2733. end
  2734. object Owner2: TTBXItem
  2735. Action = ShowHideRemoteOwnerColumnAction
  2736. end
  2737. object Group2: TTBXItem
  2738. Action = ShowHideRemoteGroupColumnAction
  2739. end
  2740. object TBXItem1: TTBXItem
  2741. Action = ShowHideRemoteLinkTargetColumnAction
  2742. end
  2743. end
  2744. end
  2745. object QueuePopup: TTBXPopupMenu
  2746. Images = GlyphsModule.ExplorerImages
  2747. OnPopup = QueuePopupPopup
  2748. Options = [tboShowHint]
  2749. Left = 392
  2750. Top = 176
  2751. object ShowQuery1: TTBXItem
  2752. Action = QueueItemQueryAction
  2753. end
  2754. object ShowError1: TTBXItem
  2755. Action = QueueItemErrorAction
  2756. end
  2757. object ShowPrompt1: TTBXItem
  2758. Action = QueueItemPromptAction
  2759. end
  2760. object N53: TTBXSeparatorItem
  2761. end
  2762. object ExecuteNow1: TTBXItem
  2763. Action = QueueItemExecuteAction
  2764. end
  2765. object TBXItem9: TTBXItem
  2766. Action = QueueItemPauseAction
  2767. end
  2768. object TBXItem10: TTBXItem
  2769. Action = QueueItemResumeAction
  2770. end
  2771. object Delete4: TTBXItem
  2772. Action = QueueItemDeleteAction
  2773. end
  2774. object QueuePopupSpeedComboBoxItem: TTBXComboBoxItem
  2775. Action = QueueItemSpeedAction
  2776. ShowImage = True
  2777. OnAdjustImageIndex = QueuePopupSpeedComboBoxItemAdjustImageIndex
  2778. end
  2779. object N54: TTBXSeparatorItem
  2780. end
  2781. object MoveUp1: TTBXItem
  2782. Action = QueueItemUpAction
  2783. end
  2784. object MoveDown1: TTBXItem
  2785. Action = QueueItemDownAction
  2786. end
  2787. object N67: TTBXSeparatorItem
  2788. end
  2789. object QueueEnableItem: TTBXItem
  2790. Action = QueueEnableAction
  2791. end
  2792. object TBXSubmenuItem1: TTBXSubmenuItem
  2793. Caption = '&All'
  2794. HelpKeyword = 'ui_queue#manage'
  2795. Hint = 'Mass queue management commands'
  2796. object TBXItem11: TTBXItem
  2797. Action = QueuePauseAllAction
  2798. end
  2799. object TBXItem12: TTBXItem
  2800. Action = QueueResumeAllAction
  2801. end
  2802. object TBXItem142: TTBXItem
  2803. Action = QueueDeleteAllAction
  2804. end
  2805. object TBXSeparatorItem5: TTBXSeparatorItem
  2806. end
  2807. object TBXItem51: TTBXItem
  2808. Action = QueueDeleteAllDoneAction
  2809. end
  2810. end
  2811. object TBXSubmenuItem3: TTBXSubmenuItem
  2812. Action = QueueCycleOnceEmptyAction
  2813. DropdownCombo = True
  2814. object TBXItem28: TTBXItem
  2815. Action = QueueIdleOnceEmptyAction
  2816. RadioItem = True
  2817. end
  2818. object TBXItem13: TTBXItem
  2819. Action = QueueDisconnectOnceEmptyAction2
  2820. RadioItem = True
  2821. end
  2822. object TBXItem68: TTBXItem
  2823. Action = QueueSuspendOnceEmptyAction2
  2824. RadioItem = True
  2825. end
  2826. object TBXItem29: TTBXItem
  2827. Action = QueueShutDownOnceEmptyAction2
  2828. RadioItem = True
  2829. end
  2830. end
  2831. object Queue2: TTBXSubmenuItem
  2832. Caption = '&Options'
  2833. HelpKeyword = 'ui_queue'
  2834. Hint = 'Configure queue list'
  2835. object Show4: TTBXItem
  2836. Action = QueueShowAction
  2837. RadioItem = True
  2838. end
  2839. object HidewhenEmpty4: TTBXItem
  2840. Action = QueueHideWhenEmptyAction
  2841. RadioItem = True
  2842. end
  2843. object Hide3: TTBXItem
  2844. Action = QueueHideAction
  2845. RadioItem = True
  2846. end
  2847. object N66: TTBXSeparatorItem
  2848. end
  2849. object Toolbar3: TTBXItem
  2850. Action = QueueToolbarAction
  2851. end
  2852. object N65: TTBXSeparatorItem
  2853. end
  2854. object Customize3: TTBXItem
  2855. Action = QueuePreferencesAction
  2856. end
  2857. end
  2858. end
  2859. object RemoteDirViewPopup: TTBXPopupMenu
  2860. AutoPopup = False
  2861. Images = GlyphsModule.ExplorerImages
  2862. Options = [tboShowHint]
  2863. Left = 360
  2864. Top = 400
  2865. object GoTo4: TTBXSubmenuItem
  2866. Caption = '&Go To'
  2867. HelpKeyword = 'task_navigate'
  2868. Hint = 'Go to directory'
  2869. object OpenDirectoryBookmark3: TTBXItem
  2870. Action = RemoteOpenDirAction
  2871. end
  2872. object N81: TTBXSeparatorItem
  2873. end
  2874. object ParentDirectory4: TTBXItem
  2875. Action = RemoteParentDirAction
  2876. end
  2877. object RootDirectory4: TTBXItem
  2878. Action = RemoteRootDirAction
  2879. end
  2880. object HomeDirectory4: TTBXItem
  2881. Action = RemoteHomeDirAction
  2882. end
  2883. object N80: TTBXSeparatorItem
  2884. end
  2885. object Back4: TTBXItem
  2886. Action = RemoteBackAction
  2887. end
  2888. object Forward4: TTBXItem
  2889. Action = RemoteForwardAction
  2890. end
  2891. end
  2892. object Refresh4: TTBXItem
  2893. Action = RemoteRefreshAction
  2894. end
  2895. object AddToBookmarks4: TTBXItem
  2896. Action = RemoteAddBookmarkAction
  2897. end
  2898. object TBXItem35: TTBXItem
  2899. Action = RemoteFilterAction
  2900. end
  2901. object CopyPathtoClipboard6: TTBXItem
  2902. Action = RemotePathToClipboardAction
  2903. end
  2904. object N79: TTBXSeparatorItem
  2905. end
  2906. object TBXSubmenuItem26: TTBXSubmenuItem
  2907. Caption = '&New'
  2908. HelpKeyword = 'task_index'
  2909. Hint = 'Create object|Create new object'
  2910. object TBXItem135: TTBXItem
  2911. Action = NewFileAction
  2912. end
  2913. object TBXItem136: TTBXItem
  2914. Action = NewDirAction
  2915. end
  2916. object TBXItem209: TTBXItem
  2917. Action = NewLinkAction
  2918. end
  2919. end
  2920. object TBXItem75: TTBXItem
  2921. Action = PasteAction2
  2922. end
  2923. object RemoteDirViewPopupCustomCommandsMenu: TTBXSubmenuItem
  2924. Action = CustomCommandsNonFileAction
  2925. end
  2926. end
  2927. object LocalDirViewPopup: TTBXPopupMenu
  2928. AutoPopup = False
  2929. Images = GlyphsModule.ExplorerImages
  2930. Options = [tboShowHint]
  2931. Left = 480
  2932. Top = 400
  2933. object GoTo5: TTBXSubmenuItem
  2934. Caption = '&Go To'
  2935. HelpKeyword = 'task_navigate'
  2936. Hint = 'Go to directory'
  2937. object OpenDirectoryBookmark4: TTBXItem
  2938. Action = LocalOpenDirAction
  2939. end
  2940. object ExploreDirectory2: TTBXItem
  2941. Action = LocalExploreDirectoryAction
  2942. end
  2943. object N84: TTBXSeparatorItem
  2944. end
  2945. object ParentDirectory5: TTBXItem
  2946. Action = LocalParentDirAction
  2947. end
  2948. object RootDirectory5: TTBXItem
  2949. Action = LocalRootDirAction
  2950. end
  2951. object HomeDirectory5: TTBXItem
  2952. Action = LocalHomeDirAction
  2953. end
  2954. object N83: TTBXSeparatorItem
  2955. end
  2956. object Back5: TTBXItem
  2957. Action = LocalBackAction
  2958. end
  2959. object Forward5: TTBXItem
  2960. Action = LocalForwardAction
  2961. end
  2962. end
  2963. object Refresh5: TTBXItem
  2964. Action = LocalRefreshAction
  2965. end
  2966. object TBXItem36: TTBXItem
  2967. Action = LocalFilterAction
  2968. end
  2969. object AddToBookmarks5: TTBXItem
  2970. Action = LocalAddBookmarkAction
  2971. end
  2972. object CopyPathtoClipboard7: TTBXItem
  2973. Action = LocalPathToClipboardAction
  2974. end
  2975. object N82: TTBXSeparatorItem
  2976. end
  2977. object TBXSubmenuItem7: TTBXSubmenuItem
  2978. Caption = '&New'
  2979. HelpKeyword = 'task_index'
  2980. Hint = 'Create object|Create new object'
  2981. object TBXItem70: TTBXItem
  2982. Action = NewFileAction
  2983. end
  2984. object TBXItem71: TTBXItem
  2985. Action = NewDirAction
  2986. end
  2987. end
  2988. object TBXItem76: TTBXItem
  2989. Action = PasteAction2
  2990. end
  2991. end
  2992. object RemoteAddressPopup: TTBXPopupMenu
  2993. Images = GlyphsModule.ExplorerImages
  2994. Options = [tboShowHint]
  2995. Left = 248
  2996. Top = 400
  2997. object TBXItem33: TTBXItem
  2998. Action = RemoteRefreshAction
  2999. end
  3000. object TBXItem24: TTBXItem
  3001. Action = RemoteAddBookmarkAction
  3002. end
  3003. object TBXItem25: TTBXItem
  3004. Action = RemotePathToClipboardAction
  3005. end
  3006. object TBXSeparatorItem1: TTBXSeparatorItem
  3007. end
  3008. object TBXItem17: TTBXItem
  3009. Action = RemoteOpenDirAction
  3010. end
  3011. object TBXSubmenuItem2: TTBXSubmenuItem
  3012. Caption = '&Go To'
  3013. HelpKeyword = 'task_navigate'
  3014. Hint = 'Go to directory'
  3015. object TBXItem18: TTBXItem
  3016. Action = RemoteParentDirAction
  3017. end
  3018. object TBXItem19: TTBXItem
  3019. Action = RemoteRootDirAction
  3020. end
  3021. object TBXItem20: TTBXItem
  3022. Action = RemoteHomeDirAction
  3023. end
  3024. object TBXSeparatorItem2: TTBXSeparatorItem
  3025. end
  3026. object TBXItem21: TTBXItem
  3027. Action = RemoteBackAction
  3028. end
  3029. object TBXItem22: TTBXItem
  3030. Action = RemoteForwardAction
  3031. end
  3032. end
  3033. end
  3034. object SessionsPopup: TTBXPopupMenu
  3035. Images = GlyphsModule.ExplorerImages
  3036. Options = [tboShowHint]
  3037. Left = 480
  3038. Top = 176
  3039. object TBXItem124: TTBXItem
  3040. Action = CloseSessionAction2
  3041. end
  3042. object TBXItem79: TTBXItem
  3043. Action = DisconnectSessionAction
  3044. end
  3045. object TBXItem80: TTBXItem
  3046. Action = ReconnectSessionAction
  3047. end
  3048. object TBXItem219: TTBXItem
  3049. Action = DuplicateSessionAction
  3050. end
  3051. object TBXItem78: TTBXItem
  3052. Action = RenameSessionAction
  3053. end
  3054. object TBXItem125: TTBXItem
  3055. Action = SaveCurrentSessionAction2
  3056. end
  3057. object TBXSeparatorItem6: TTBXSeparatorItem
  3058. end
  3059. object TBXItem56: TTBXItem
  3060. Action = FileSystemInfoAction
  3061. end
  3062. object TBXItem52: TTBXItem
  3063. Action = SessionGenerateUrlAction2
  3064. end
  3065. object TBXSeparatorItem52: TTBXSeparatorItem
  3066. end
  3067. object ColorMenuItem: TTBXColorItem
  3068. Action = ColorMenuAction
  3069. Color = clNone
  3070. end
  3071. object TBXSeparatorItem34: TTBXSeparatorItem
  3072. end
  3073. object TBXItem123: TTBXItem
  3074. Action = NewSessionAction
  3075. end
  3076. object TBXSubmenuItem23: TTBXSubmenuItem
  3077. Action = SavedSessionsAction2
  3078. Options = [tboDropdownArrow]
  3079. end
  3080. object TBXSeparatorItem35: TTBXSeparatorItem
  3081. end
  3082. object SessionsTabsAction4: TTBXItem
  3083. Action = SessionsTabsAction
  3084. end
  3085. end
  3086. object ShellResources: TShellResources
  3087. Left = 48
  3088. Top = 424
  3089. end
  3090. object LocalFilePopup: TTBXPopupMenu
  3091. Images = GlyphsModule.ExplorerImages
  3092. Options = [tboShowHint]
  3093. Left = 536
  3094. Top = 336
  3095. object LocalOpenMenuItem: TTBXItem
  3096. Action = CurrentOpenAction
  3097. end
  3098. object LocalEditMenuItem: TTBXSubmenuItem
  3099. Action = CurrentEditFocusedAction
  3100. DropdownCombo = True
  3101. OnPopup = FocusedEditMenuItemPopup
  3102. end
  3103. object LocalCopyMenuItem: TTBXSubmenuItem
  3104. Action = LocalCopyFocusedAction
  3105. DropdownCombo = True
  3106. object TBXItem73: TTBXItem
  3107. Action = LocalCopyFocusedNonQueueAction
  3108. end
  3109. object TBXItem74: TTBXItem
  3110. Action = LocalCopyFocusedQueueAction
  3111. end
  3112. object TBXSeparatorItem10: TTBXSeparatorItem
  3113. end
  3114. object TBXItem54: TTBXItem
  3115. Action = LocalMoveFocusedAction
  3116. end
  3117. end
  3118. object TBXItem57: TTBXItem
  3119. Action = CurrentDeleteFocusedAction
  3120. end
  3121. object TBXItem58: TTBXItem
  3122. Action = CurrentRenameAction
  3123. end
  3124. object TBXSeparatorItem11: TTBXSeparatorItem
  3125. end
  3126. object TBXItem81: TTBXItem
  3127. Action = CurrentCopyToClipboardFocusedAction
  3128. end
  3129. object TBXSeparatorItem3: TTBXSeparatorItem
  3130. end
  3131. object LocalFilePopupCustomCommandsMenu: TTBXSubmenuItem
  3132. Action = CustomCommandsFileAction
  3133. object TTBXItem
  3134. end
  3135. end
  3136. object TBXSubmenuItem5: TTBXSubmenuItem
  3137. Caption = '&File Names'
  3138. HelpKeyword = 'filenames'
  3139. Hint = 'Operations with name(s) of selected file(s)'
  3140. object TBXItem59: TTBXItem
  3141. Action = FileListToCommandLineAction
  3142. end
  3143. object TBXItem60: TTBXItem
  3144. Action = FileListToClipboardAction
  3145. end
  3146. object TBXItem61: TTBXItem
  3147. Action = FullFileListToClipboardAction
  3148. end
  3149. object TBXItem62: TTBXItem
  3150. Action = FileGenerateUrlAction2
  3151. end
  3152. end
  3153. object TBXSeparatorItem4: TTBXSeparatorItem
  3154. end
  3155. object TBXItem63: TTBXItem
  3156. Action = CurrentPropertiesFocusedAction
  3157. end
  3158. object TBXItem50: TTBXItem
  3159. Action = CurrentSystemMenuFocusedAction
  3160. end
  3161. end
  3162. end