NonVisual.dfm 97 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228
  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#hidden_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 QueueFileListAction: TAction
  1626. Tag = 12
  1627. Category = 'Queue'
  1628. Caption = '&File List'
  1629. Hint = 'Hide/show full queue file list'
  1630. end
  1631. object QueuePreferencesAction: TAction
  1632. Tag = 12
  1633. Category = 'Queue'
  1634. Caption = '&Customize...'
  1635. HelpKeyword = 'ui_pref_background'
  1636. Hint = 'Customize queue list'
  1637. ImageIndex = 28
  1638. end
  1639. object PasteAction2: TAction
  1640. Tag = 15
  1641. Category = 'Command'
  1642. Caption = '&Paste'
  1643. HelpKeyword = 'task_upload#using_copy_amp:paste'
  1644. Hint =
  1645. 'Paste files from clipboard to current directory in active panel;' +
  1646. ' or opens path from clipboard in active panel; or opens session ' +
  1647. 'URL from clipboard'
  1648. ImageIndex = 75
  1649. ShortCut = 16470
  1650. end
  1651. object NewFileAction: TAction
  1652. Tag = 15
  1653. Category = 'Command'
  1654. Caption = '&File...'
  1655. HelpKeyword = 'task_edit'
  1656. Hint = 'Create file|Create new file and open it in editor'
  1657. ImageIndex = 77
  1658. end
  1659. object EditorListCustomizeAction: TAction
  1660. Tag = 15
  1661. Category = 'Command'
  1662. Caption = '&Configure...'
  1663. HelpKeyword = 'ui_pref_editor'
  1664. Hint = 'Customize editors'
  1665. ImageIndex = 28
  1666. end
  1667. object RemoteCopyToFocusedAction: TAction
  1668. Tag = 14
  1669. Category = 'Remote Focused Operation'
  1670. Caption = '&Duplicate...'
  1671. HelpKeyword = 'task_move_duplicate#duplicate'
  1672. Hint =
  1673. 'Duplicate|Duplicate selected remote file(s) to another remote di' +
  1674. 'rectory or another name'
  1675. ImageIndex = 78
  1676. end
  1677. object RemoteCopyToAction: TAction
  1678. Tag = 14
  1679. Category = 'Remote Selected Operation'
  1680. Caption = 'Du&plicate...'
  1681. HelpKeyword = 'task_move_duplicate#duplicate'
  1682. Hint =
  1683. 'Duplicate|Duplicate selected remote file(s) to another remote di' +
  1684. 'rectory or another name'
  1685. ImageIndex = 78
  1686. end
  1687. object FileGenerateUrlAction2: TAction
  1688. Tag = 15
  1689. Category = 'Selected Operation'
  1690. Caption = 'Generate File &URL...'
  1691. HelpKeyword = 'ui_generateurl'
  1692. Hint = 'Generate URL'#39's of selected file(s)'
  1693. end
  1694. object TableOfContentsAction: TAction
  1695. Tag = 12
  1696. Category = 'Help'
  1697. Caption = '&Contents'
  1698. Hint =
  1699. 'Opens web browser and points it to documentation table of conten' +
  1700. 'ts'
  1701. ImageIndex = 79
  1702. ShortCut = 112
  1703. end
  1704. object FileListFromClipboardAction: TAction
  1705. Tag = 15
  1706. Category = 'Selected Operation'
  1707. Caption = '&Transfer Files in Clipboard'
  1708. Hint = 'Transfer files whose names are in clipboard'
  1709. end
  1710. object LocalCopyAction: TAction
  1711. Tag = 9
  1712. Category = 'Local Selected Operation'
  1713. Caption = 'Up&load...'
  1714. HelpKeyword = 'task_upload'
  1715. Hint = 'Upload|Upload selected local file(s) to remote directory'
  1716. ImageIndex = 88
  1717. end
  1718. object CurrentDeleteAlternativeAction: TAction
  1719. Tag = 15
  1720. Category = 'Selected Operation'
  1721. Caption = '&Delete'
  1722. HelpKeyword = 'task_delete'
  1723. Hint = 'Delete|Delete selected file(s)'
  1724. ImageIndex = 2
  1725. end
  1726. object CurrentEditWithAction: TAction
  1727. Tag = 15
  1728. Category = 'Selected Operation'
  1729. Caption = 'Edit &With...'
  1730. HelpKeyword = 'task_edit'
  1731. Hint = 'Edit With|Edit selected file(s) using editor of your choice'
  1732. end
  1733. object DownloadPageAction: TAction
  1734. Tag = 15
  1735. Category = 'Help'
  1736. Caption = '&Download'
  1737. Hint = 'Opens web browser and points it to application download page'
  1738. end
  1739. object UpdatesPreferencesAction: TAction
  1740. Tag = 15
  1741. Category = 'Help'
  1742. Caption = 'Confi&gure...'
  1743. HelpKeyword = 'ui_pref_updates'
  1744. Hint = 'Configure automatic check for application updates'
  1745. ImageIndex = 28
  1746. end
  1747. object FormatSizeBytesKilobytesAction: TAction
  1748. Tag = 15
  1749. Category = 'View'
  1750. Caption = '&Kilobytes'
  1751. HelpKeyword = 'ui_pref_panels#common'
  1752. Hint = 'Show files sizes in kilobytes'
  1753. end
  1754. object FormatSizeBytesShortAction: TAction
  1755. Tag = 15
  1756. Category = 'View'
  1757. Caption = '&Short format'
  1758. HelpKeyword = 'ui_pref_panels#common'
  1759. Hint = 'Show files sizes in short format'
  1760. end
  1761. object PresetsPreferencesAction: TAction
  1762. Tag = 15
  1763. Category = 'View'
  1764. Caption = '&Configure...'
  1765. HelpKeyword = 'ui_pref_transfer'
  1766. Hint = 'Configure transfers settings presets'
  1767. ImageIndex = 28
  1768. end
  1769. object LockToolbarsAction: TAction
  1770. Tag = 15
  1771. Category = 'View'
  1772. Caption = '&Lock Toolbars'
  1773. HelpKeyword = 'ui_toolbars'
  1774. Hint = 'Prevents moving and (un)docking of all toolbars'
  1775. end
  1776. object SelectiveToolbarTextAction: TAction
  1777. Tag = 15
  1778. Category = 'View'
  1779. Caption = '&Show Selective Text Labels'
  1780. HelpKeyword = 'ui_toolbars'
  1781. Hint = 'Show text labels for selected important commands on toolbars'
  1782. end
  1783. object CustomCommandsBandAction: TAction
  1784. Tag = 15
  1785. Category = 'View'
  1786. Caption = 'Custom Co&mmand Buttons'
  1787. HelpKeyword = 'ui_toolbars'
  1788. Hint = 'Hide/show custom commands toolbar'
  1789. end
  1790. object ColorMenuAction: TAction
  1791. Tag = 15
  1792. Category = 'View'
  1793. Caption = 'C&olor'
  1794. HelpKeyword = 'task_connections#session_color'
  1795. Hint = 'Change color of current session'
  1796. end
  1797. object AutoReadDirectoryAfterOpAction: TAction
  1798. Tag = 15
  1799. Category = 'View'
  1800. Caption = 'Auto&matically Reload Directory'
  1801. Hint = 'Toggle automatic reload of remote directory after operation'
  1802. ShortCut = 49234
  1803. end
  1804. object QueueItemPauseAction: TAction
  1805. Tag = 12
  1806. Category = 'Queue'
  1807. Caption = '&Suspend'
  1808. HelpKeyword = 'ui_queue#manage'
  1809. Hint = 'Suspend selected queue item'
  1810. ImageIndex = 83
  1811. end
  1812. object QueueItemResumeAction: TAction
  1813. Tag = 12
  1814. Category = 'Queue'
  1815. Caption = '&Resume'
  1816. HelpKeyword = 'ui_queue#manage'
  1817. Hint = 'Resume selected suspended queue item'
  1818. ImageIndex = 70
  1819. end
  1820. object QueuePauseAllAction: TAction
  1821. Tag = 12
  1822. Category = 'Queue'
  1823. Caption = '&Suspend All'
  1824. HelpKeyword = 'ui_queue#manage'
  1825. Hint = 'Suspend all running queue items'
  1826. ImageIndex = 84
  1827. end
  1828. object QueueResumeAllAction: TAction
  1829. Tag = 12
  1830. Category = 'Queue'
  1831. Caption = '&Resume All'
  1832. HelpKeyword = 'ui_queue#manage'
  1833. Hint = 'Resume all suspended queue items'
  1834. ImageIndex = 85
  1835. end
  1836. object QueueDeleteAllDoneAction: TAction
  1837. Tag = 12
  1838. Category = 'Queue'
  1839. Caption = 'Delete All &Completed'
  1840. HelpKeyword = 'ui_queue#manage'
  1841. Hint = 'Remove all completed queue items'
  1842. ImageIndex = 99
  1843. end
  1844. object QueueEnableAction: TAction
  1845. Tag = 15
  1846. Category = 'Queue'
  1847. Caption = '&Process Queue'
  1848. HelpKeyword = 'ui_queue#manage'
  1849. Hint =
  1850. 'Enable queue processing|Enable queue processing (pending queue i' +
  1851. 'tems will not start, when queue processing is disabled)'
  1852. ImageIndex = 96
  1853. ShortCut = 24657
  1854. end
  1855. object QueueDisconnectOnceEmptyAction2: TAction
  1856. Tag = 12
  1857. Category = 'Queue'
  1858. Caption = '&Disconnect Session'
  1859. HelpKeyword = 'ui_queue'
  1860. Hint = 'Disconnect the session once the queue is empty'
  1861. ImageIndex = 87
  1862. end
  1863. object RestoreSelectionAction: TAction
  1864. Tag = 15
  1865. Category = 'Selection'
  1866. Caption = '&Restore Selection'
  1867. HelpKeyword = 'ui_file_panel#selecting_files'
  1868. Hint = 'Restore previous selection'
  1869. ImageIndex = 86
  1870. end
  1871. object LocalSelectAction: TAction
  1872. Tag = 12
  1873. Category = 'Selection'
  1874. Caption = 'Sele&ct Files...'
  1875. HelpKeyword = 'ui_select'
  1876. Hint = 'Select|Select local files by mask'
  1877. ImageIndex = 19
  1878. end
  1879. object LocalUnselectAction: TAction
  1880. Tag = 12
  1881. Category = 'Selection'
  1882. Caption = '&Unselect Files...'
  1883. HelpKeyword = 'ui_select'
  1884. Hint = 'Unselect|Unselect local files by mask'
  1885. ImageIndex = 20
  1886. end
  1887. object LocalSelectAllAction: TAction
  1888. Tag = 12
  1889. Category = 'Selection'
  1890. Caption = 'Select &All'
  1891. HelpKeyword = 'ui_file_panel#selecting_files'
  1892. Hint = 'Select all local files'
  1893. ImageIndex = 21
  1894. end
  1895. object CurrentEditFocusedAction: TAction
  1896. Tag = 15
  1897. Category = 'Focused Operation'
  1898. Caption = '&Edit'
  1899. HelpKeyword = 'task_edit'
  1900. Hint = 'Edit|Edit selected file(s)'
  1901. ImageIndex = 57
  1902. end
  1903. object CurrentEditWithFocusedAction: TAction
  1904. Tag = 15
  1905. Category = 'Focused Operation'
  1906. Caption = 'Edit &With...'
  1907. HelpKeyword = 'task_edit'
  1908. Hint = 'Edit With|Edit selected file(s) using editor of your choice'
  1909. end
  1910. object NewDirAction: TAction
  1911. Tag = 12
  1912. Category = 'Command'
  1913. Caption = '&Directory...'
  1914. HelpKeyword = 'task_create_directory'
  1915. Hint = 'Create directory|Create new directory'
  1916. ImageIndex = 5
  1917. end
  1918. object QueueShutDownOnceEmptyAction2: TAction
  1919. Tag = 12
  1920. Category = 'Queue'
  1921. Caption = '&Shut Down Computer'
  1922. HelpKeyword = 'ui_queue'
  1923. Hint = 'Shut down the computer once the queue is empty'
  1924. ImageIndex = 93
  1925. end
  1926. object QueueSuspendOnceEmptyAction2: TAction
  1927. Tag = 12
  1928. Category = 'Queue'
  1929. Caption = 'Slee&p Computer'
  1930. HelpKeyword = 'ui_queue'
  1931. Hint = 'Put the computer into sleep mode once the queue is empty'
  1932. ImageIndex = 105
  1933. end
  1934. object QueueIdleOnceEmptyAction: TAction
  1935. Tag = 12
  1936. Category = 'Queue'
  1937. Caption = '&Stay Idle'
  1938. Checked = True
  1939. HelpKeyword = 'ui_queue'
  1940. Hint = 'Stay idle once the queue is empty'
  1941. ImageIndex = 94
  1942. end
  1943. object QueueCycleOnceEmptyAction: TAction
  1944. Tag = 12
  1945. Category = 'Queue'
  1946. Caption = 'Once &Empty'
  1947. HelpKeyword = 'ui_queue'
  1948. Hint = 'Toggle action to perform once the queue list is empty'
  1949. ImageIndex = 94
  1950. end
  1951. object QueueItemSpeedAction: TTBEditAction
  1952. Tag = 12
  1953. Category = 'Queue'
  1954. HelpKeyword = 'ui_queue#manage'
  1955. Hint = 'Change speed limit of selected queue item'
  1956. ImageIndex = 109
  1957. EditCaption = '&Speed'
  1958. end
  1959. object QueueDeleteAllAction: TAction
  1960. Tag = 12
  1961. Category = 'Queue'
  1962. Caption = '&Cancel All'
  1963. HelpKeyword = 'ui_queue#manage'
  1964. Hint = 'Remove all queue items'
  1965. ImageIndex = 106
  1966. end
  1967. object LocalFilterAction: TAction
  1968. Tag = 9
  1969. Category = 'Local Directory'
  1970. Caption = '&Filter...'
  1971. HelpKeyword = 'ui_file_panel#filtering'
  1972. Hint = 'Filter|Filter displayed files'
  1973. ImageIndex = 92
  1974. ShortCut = 49222
  1975. end
  1976. object RemoteFilterAction: TAction
  1977. Tag = 14
  1978. Category = 'Remote Directory'
  1979. Caption = '&Filter...'
  1980. HelpKeyword = 'ui_file_panel#filtering'
  1981. Hint = 'Filter|Filter displayed files'
  1982. ImageIndex = 92
  1983. ShortCut = 49222
  1984. end
  1985. object RemoteFindFilesAction: TAction
  1986. Tag = 15
  1987. Category = 'Remote Directory'
  1988. Caption = '&Find Files...'
  1989. HelpKeyword = 'task_find'
  1990. Hint = 'Find files|Find remote files and directories'
  1991. ImageIndex = 95
  1992. end
  1993. object CurrentEditInternalAction: TAction
  1994. Tag = 15
  1995. Category = 'Selected Operation'
  1996. Caption = '&Internal editor'
  1997. HelpKeyword = 'task_edit'
  1998. Hint = 'Edit (internal)|Edit selected file(s) using internal editor'
  1999. end
  2000. object SaveWorkspaceAction: TAction
  2001. Tag = 15
  2002. Category = 'Session'
  2003. Caption = 'Save Wor&kspace...'
  2004. HelpKeyword = 'workspace'
  2005. Hint = 'Save workspace|Save workspace'
  2006. ImageIndex = 102
  2007. end
  2008. object LocalRenameAction: TAction
  2009. Tag = 12
  2010. Category = 'Local Selected Operation'
  2011. Caption = '&Rename'
  2012. HelpKeyword = 'task_rename'
  2013. Hint = 'Rename|Rename selected local file'
  2014. ImageIndex = 3
  2015. end
  2016. object LocalEditAction: TAction
  2017. Tag = 12
  2018. Category = 'Local Selected Operation'
  2019. Caption = '&Edit'
  2020. HelpKeyword = 'task_edit'
  2021. Hint = 'Edit|Edit selected local file(s)'
  2022. ImageIndex = 57
  2023. end
  2024. object LocalMoveAction: TAction
  2025. Tag = 9
  2026. Category = 'Local Selected Operation'
  2027. Caption = 'Upload and Dele&te...'
  2028. HelpKeyword = 'task_upload'
  2029. Hint =
  2030. 'Upload and Delete|Upload selected local file(s) to remote direct' +
  2031. 'ory and delete original'
  2032. ImageIndex = 98
  2033. end
  2034. object LocalCreateDirAction2: TAction
  2035. Tag = 12
  2036. Category = 'Local Selected Operation'
  2037. Caption = '&Directory...'
  2038. HelpKeyword = 'task_create_directory'
  2039. Hint = 'Create directory|Create new local directory'
  2040. ImageIndex = 5
  2041. end
  2042. object LocalDeleteAction: TAction
  2043. Tag = 12
  2044. Category = 'Local Selected Operation'
  2045. Caption = '&Delete'
  2046. HelpKeyword = 'task_delete'
  2047. Hint = 'Delete|Delete selected local file(s)'
  2048. ImageIndex = 2
  2049. end
  2050. object LocalPropertiesAction: TAction
  2051. Tag = 12
  2052. Category = 'Local Selected Operation'
  2053. Caption = '&Properties'
  2054. HelpKeyword = 'task_properties'
  2055. Hint = 'Properties|Display/change properties of selected local file(s)'
  2056. ImageIndex = 4
  2057. end
  2058. object LocalAddEditLinkAction2: TAction
  2059. Tag = 12
  2060. Category = 'Local Selected Operation'
  2061. Caption = '&Shortcut...'
  2062. HelpKeyword = 'task_link'
  2063. Hint =
  2064. 'Add/edit shortcut|Add new local shortcut or edit selected local ' +
  2065. 'shortcut'
  2066. ImageIndex = 60
  2067. end
  2068. object RemoteRenameAction: TAction
  2069. Tag = 12
  2070. Category = 'Remote Selected Operation'
  2071. Caption = '&Rename'
  2072. HelpKeyword = 'task_rename'
  2073. Hint = 'Rename|Rename selected remote file'
  2074. ImageIndex = 3
  2075. end
  2076. object RemoteEditAction: TAction
  2077. Tag = 12
  2078. Category = 'Remote Selected Operation'
  2079. Caption = '&Edit'
  2080. HelpKeyword = 'task_edit'
  2081. Hint = 'Edit|Edit selected remote file(s)'
  2082. ImageIndex = 57
  2083. end
  2084. object RemoteMoveAction: TAction
  2085. Tag = 14
  2086. Category = 'Remote Selected Operation'
  2087. Caption = 'Download and Dele&te...'
  2088. HelpKeyword = 'task_download'
  2089. Hint =
  2090. 'Download and Delete|Download selected remote file(s) to local di' +
  2091. 'rectory and delete original'
  2092. ImageIndex = 97
  2093. end
  2094. object RemoteCreateDirAction2: TAction
  2095. Tag = 12
  2096. Category = 'Remote Selected Operation'
  2097. Caption = '&Directory...'
  2098. HelpKeyword = 'task_create_directory'
  2099. Hint = 'Create directory|Create new remote directory'
  2100. ImageIndex = 5
  2101. end
  2102. object RemoteDeleteAction: TAction
  2103. Tag = 12
  2104. Category = 'Remote Selected Operation'
  2105. Caption = '&Delete'
  2106. HelpKeyword = 'task_delete'
  2107. Hint = 'Delete|Delete selected remote file(s)'
  2108. ImageIndex = 2
  2109. end
  2110. object RemotePropertiesAction: TAction
  2111. Tag = 12
  2112. Category = 'Remote Selected Operation'
  2113. Caption = '&Properties'
  2114. HelpKeyword = 'task_properties'
  2115. Hint =
  2116. 'Properties|Display/change permissions, ownership or other proper' +
  2117. 'ties of selected remote file(s) '
  2118. ImageIndex = 4
  2119. end
  2120. object RemoteAddEditLinkAction2: TAction
  2121. Tag = 12
  2122. Category = 'Remote Selected Operation'
  2123. Caption = '&Link...'
  2124. HelpKeyword = 'task_link'
  2125. Hint = 'Add/edit link|Add new remote link or edit selected remote link'
  2126. ImageIndex = 60
  2127. end
  2128. object RemoteSelectAction: TAction
  2129. Tag = 12
  2130. Category = 'Selection'
  2131. Caption = 'Sele&ct Files...'
  2132. HelpKeyword = 'ui_select'
  2133. Hint = 'Select|Select remote files by mask'
  2134. ImageIndex = 19
  2135. end
  2136. object RemoteUnselectAction: TAction
  2137. Tag = 12
  2138. Category = 'Selection'
  2139. Caption = '&Unselect Files...'
  2140. HelpKeyword = 'ui_select'
  2141. Hint = 'Unselect|Unselect remote files by mask'
  2142. ImageIndex = 20
  2143. end
  2144. object RemoteSelectAllAction: TAction
  2145. Tag = 12
  2146. Category = 'Selection'
  2147. Caption = 'Select &All'
  2148. HelpKeyword = 'ui_file_panel#selecting_files'
  2149. Hint = 'Select all remote files'
  2150. ImageIndex = 21
  2151. end
  2152. object LocalMoveFocusedAction: TAction
  2153. Tag = 8
  2154. Category = 'Local Focused Operation'
  2155. Caption = 'Upload and Dele&te...'
  2156. HelpKeyword = 'task_upload'
  2157. Hint =
  2158. 'Upload and Delete|Upload selected local file(s) to remote direct' +
  2159. 'ory and delete original'
  2160. ImageIndex = 98
  2161. end
  2162. object CurrentEditInternalFocusedAction: TAction
  2163. Tag = 15
  2164. Category = 'Focused Operation'
  2165. Caption = '&Internal editor'
  2166. HelpKeyword = 'task_edit'
  2167. Hint = 'Edit (internal)|Edit selected file(s) using internal editor'
  2168. end
  2169. object CurrentSystemMenuFocusedAction: TAction
  2170. Tag = 12
  2171. Category = 'Focused Operation'
  2172. Caption = '&System Menu'
  2173. Hint =
  2174. 'Display system file context menu (in Properties you can opt to d' +
  2175. 'isplay it by default instead of built-in menu)'
  2176. end
  2177. object SessionGenerateUrlAction2: TAction
  2178. Tag = 15
  2179. Category = 'Session'
  2180. Caption = 'Generate Session &URL/Code...'
  2181. HelpKeyword = 'ui_generateurl'
  2182. Hint = 'Generate URL or code for current session'
  2183. end
  2184. object SelectSameExtAction: TAction
  2185. Tag = 15
  2186. Category = 'Selection'
  2187. Caption = 'Select Files with Same &Extension'
  2188. Hint =
  2189. 'Select all files with the same extension as currently focused fi' +
  2190. 'le'
  2191. ShortCut = 32875
  2192. end
  2193. object UnselectSameExtAction: TAction
  2194. Tag = 15
  2195. Category = 'Selection'
  2196. Caption = 'Unselect Files with Same E&xtension'
  2197. Hint =
  2198. 'Unselect all files with the same extension as currently focused ' +
  2199. 'file'
  2200. ShortCut = 32877
  2201. end
  2202. object GoToAddressAction: TAction
  2203. Tag = 15
  2204. Category = 'Command'
  2205. Caption = 'GoToAddressAction'
  2206. SecondaryShortCuts.Strings = (
  2207. 'Alt+D')
  2208. ShortCut = 16460
  2209. end
  2210. object LockAction: TAction
  2211. Tag = 15
  2212. Category = 'Selected Operation'
  2213. Caption = '&Lock'
  2214. Hint = 'Lock selected file(s)'
  2215. end
  2216. object UnlockAction: TAction
  2217. Tag = 15
  2218. Category = 'Selected Operation'
  2219. Caption = '&Unlock'
  2220. Hint = 'Unlock selected file(s)'
  2221. end
  2222. object TipsAction: TAction
  2223. Tag = 15
  2224. Category = 'Help'
  2225. Caption = 'Show &Tips'
  2226. HelpKeyword = 'ui_tips'
  2227. Hint = 'Displays tips on using WinSCP'
  2228. ImageIndex = 110
  2229. end
  2230. object ChangePasswordAction: TAction
  2231. Tag = 15
  2232. Category = 'Session'
  2233. Caption = '&Change Password...'
  2234. HelpKeyword = 'task_change_password'
  2235. Hint = 'Change account password'
  2236. end
  2237. object PrivateKeyUploadAction: TAction
  2238. Tag = 15
  2239. Category = 'Session'
  2240. Caption = '&Install Public Key into Server...'
  2241. HelpKeyword = 'guide_public_key'
  2242. Hint = 'Install public key for authentication into the server'
  2243. end
  2244. object RemoteNewFileAction: TAction
  2245. Tag = 15
  2246. Category = 'Remote Selected Operation'
  2247. Caption = '&File...'
  2248. HelpKeyword = 'task_edit'
  2249. Hint = 'Create file|Create new file and open it in editor'
  2250. ImageIndex = 77
  2251. end
  2252. object LocalNewFileAction: TAction
  2253. Tag = 15
  2254. Category = 'Local Selected Operation'
  2255. Caption = '&File...'
  2256. HelpKeyword = 'task_edit'
  2257. Hint = 'Create file|Create new file and open it in editor'
  2258. ImageIndex = 77
  2259. end
  2260. object CustomizeToolbarAction: TAction
  2261. Tag = 15
  2262. Category = 'View'
  2263. Caption = '&Customize Toolbar'
  2264. HelpKeyword = 'ui_toolbars'
  2265. Hint = 'Show/hide toolbar buttons'
  2266. end
  2267. object RenameSessionAction: TAction
  2268. Tag = 15
  2269. Category = 'Session'
  2270. Caption = '&Rename Session'
  2271. HelpKeyword = 'task_connections#renaming'
  2272. Hint = 'Rename session|Changes name of the current session'
  2273. end
  2274. object CurrentCopyToClipboardAction: TAction
  2275. Tag = 15
  2276. Category = 'Selected Operation'
  2277. Caption = '&Copy'
  2278. Hint = 'Copy|Copy the selected files to clipboard'
  2279. ImageIndex = 111
  2280. ShortCut = 16451
  2281. end
  2282. object FileColorsPreferencesAction: TAction
  2283. Tag = 15
  2284. Category = 'View'
  2285. Caption = 'File &Colors...'
  2286. HelpKeyword = 'ui_pref_file_colors'
  2287. Hint = 'Configure file color rules'
  2288. end
  2289. object CurrentCopyToClipboardFocusedAction: TAction
  2290. Tag = 12
  2291. Category = 'Focused Operation'
  2292. Caption = '&Copy'
  2293. Hint = 'Copy|Copy the selected files to clipboard'
  2294. ImageIndex = 111
  2295. ShortCut = 16451
  2296. end
  2297. end
  2298. object ExplorerBarPopup: TTBXPopupMenu
  2299. Images = GlyphsModule.ExplorerImages
  2300. Options = [tboShowHint]
  2301. Left = 192
  2302. Top = 336
  2303. object Address2: TTBXItem
  2304. Action = ExplorerAddressBandAction
  2305. end
  2306. object StandardButtons1: TTBXItem
  2307. Action = ExplorerToolbarBandAction
  2308. end
  2309. object SelectionButtons1: TTBXItem
  2310. Action = ExplorerSelectionBandAction
  2311. end
  2312. object SessionButtons2: TTBXItem
  2313. Action = ExplorerSessionBandAction
  2314. end
  2315. object PreferencesButtons1: TTBXItem
  2316. Action = ExplorerPreferencesBandAction
  2317. end
  2318. object SortButtons3: TTBXItem
  2319. Action = ExplorerSortBandAction
  2320. end
  2321. object TBXItem3: TTBXItem
  2322. Action = ExplorerUpdatesBandAction
  2323. end
  2324. object TBXItem4: TTBXItem
  2325. Action = ExplorerTransferBandAction
  2326. end
  2327. object TBXItem16: TTBXItem
  2328. Action = ExplorerCustomCommandsBandAction
  2329. end
  2330. object TBXItem7: TTBXItem
  2331. Action = LockToolbarsAction
  2332. end
  2333. object TBXItem48: TTBXItem
  2334. Action = SelectiveToolbarTextAction
  2335. end
  2336. object TBXSubmenuItem4: TTBXSubmenuItem
  2337. Action = CustomizeToolbarAction
  2338. end
  2339. object N5: TTBXSeparatorItem
  2340. end
  2341. object SessionsTabsAction2: TTBXItem
  2342. Action = SessionsTabsAction
  2343. end
  2344. object StatusBar2: TTBXItem
  2345. Action = StatusBarAction
  2346. end
  2347. object N72: TTBXSeparatorItem
  2348. end
  2349. object Queue7: TTBXSubmenuItem
  2350. Caption = '&Queue'
  2351. HelpKeyword = 'ui_queue'
  2352. Hint = 'Configure queue list'
  2353. object Show6: TTBXItem
  2354. Action = QueueShowAction
  2355. RadioItem = True
  2356. end
  2357. object HidewhenEmpty6: TTBXItem
  2358. Action = QueueHideWhenEmptyAction
  2359. RadioItem = True
  2360. end
  2361. object Hide5: TTBXItem
  2362. Action = QueueHideAction
  2363. RadioItem = True
  2364. end
  2365. object N71: TTBXSeparatorItem
  2366. end
  2367. object Toolbar5: TTBXItem
  2368. Action = QueueToolbarAction
  2369. end
  2370. object TBXItem85: TTBXItem
  2371. Action = QueueFileListAction
  2372. end
  2373. object N70: TTBXSeparatorItem
  2374. end
  2375. object Customize5: TTBXItem
  2376. Action = QueuePreferencesAction
  2377. end
  2378. end
  2379. object Tree4: TTBXItem
  2380. Action = RemoteTreeAction
  2381. end
  2382. end
  2383. object SessionIdleTimer: TTimer
  2384. Enabled = False
  2385. Interval = 500
  2386. OnTimer = SessionIdleTimerTimer
  2387. Left = 32
  2388. Top = 336
  2389. end
  2390. object CommanderBarPopup: TTBXPopupMenu
  2391. Images = GlyphsModule.ExplorerImages
  2392. Options = [tboShowHint]
  2393. Left = 424
  2394. Top = 264
  2395. object CommandsButtons2: TTBXItem
  2396. Action = CommanderCommandsBandAction
  2397. end
  2398. object SessionButtons5: TTBXItem
  2399. Action = CommanderSessionBandAction
  2400. end
  2401. object PreferencesButtons4: TTBXItem
  2402. Action = CommanderPreferencesBandAction
  2403. end
  2404. object SortButtons2: TTBXItem
  2405. Action = CommanderSortBandAction
  2406. end
  2407. object TBXItem2: TTBXItem
  2408. Action = CommanderUpdatesBandAction
  2409. end
  2410. object TBXItem5: TTBXItem
  2411. Action = CommanderTransferBandAction
  2412. end
  2413. object TBXItem15: TTBXItem
  2414. Action = CommanderCustomCommandsBandAction
  2415. end
  2416. object TBXItem6: TTBXItem
  2417. Action = LockToolbarsAction
  2418. end
  2419. object TBXItem46: TTBXItem
  2420. Action = SelectiveToolbarTextAction
  2421. end
  2422. object TBXItem77: TTBXSubmenuItem
  2423. Action = CustomizeToolbarAction
  2424. end
  2425. object N26: TTBXSeparatorItem
  2426. end
  2427. object SessionsTabsAction1: TTBXItem
  2428. Action = SessionsTabsAction
  2429. end
  2430. object CommandLine2: TTBXItem
  2431. Action = CommandLinePanelAction
  2432. end
  2433. object CommandsToolbar1: TTBXItem
  2434. Action = ToolBar2Action
  2435. end
  2436. object StatusBar8: TTBXItem
  2437. Action = StatusBarAction
  2438. end
  2439. object N27: TTBXSeparatorItem
  2440. end
  2441. object LocalPanel1: TTBXSubmenuItem
  2442. Caption = '&Local Panel'
  2443. HelpKeyword = 'ui_file_panel'
  2444. Hint = 'Change local panel layout'
  2445. object HistoryButtons3: TTBXItem
  2446. Action = CommanderLocalHistoryBandAction
  2447. end
  2448. object NavigationButtons3: TTBXItem
  2449. Action = CommanderLocalNavigationBandAction
  2450. end
  2451. object TBXItem40: TTBXItem
  2452. Action = CommanderLocalFileBandAction
  2453. end
  2454. object TBXItem43: TTBXItem
  2455. Action = CommanderLocalSelectionBandAction
  2456. end
  2457. object N23: TTBXSeparatorItem
  2458. end
  2459. object Tree7: TTBXItem
  2460. Action = LocalTreeAction
  2461. end
  2462. object N77: TTBXSeparatorItem
  2463. end
  2464. object StatusBar6: TTBXItem
  2465. Action = LocalStatusBarAction
  2466. end
  2467. end
  2468. object RemotePanel2: TTBXSubmenuItem
  2469. Caption = '&Remote Panel'
  2470. HelpKeyword = 'ui_file_panel'
  2471. Hint = 'Change remote panel layout'
  2472. object HistoryButtons4: TTBXItem
  2473. Action = CommanderRemoteHistoryBandAction
  2474. end
  2475. object NavigationButtons4: TTBXItem
  2476. Action = CommanderRemoteNavigationBandAction
  2477. end
  2478. object TBXItem41: TTBXItem
  2479. Action = CommanderRemoteFileBandAction
  2480. end
  2481. object TBXItem42: TTBXItem
  2482. Action = CommanderRemoteSelectionBandAction
  2483. end
  2484. object N25: TTBXSeparatorItem
  2485. end
  2486. object Tree8: TTBXItem
  2487. Action = RemoteTreeAction
  2488. end
  2489. object N78: TTBXSeparatorItem
  2490. end
  2491. object StatusBar7: TTBXItem
  2492. Action = RemoteStatusBarAction
  2493. end
  2494. end
  2495. object Options1: TTBXSubmenuItem
  2496. Caption = '&Queue'
  2497. HelpKeyword = 'ui_queue'
  2498. Hint = 'Configure queue list'
  2499. object Show5: TTBXItem
  2500. Action = QueueShowAction
  2501. RadioItem = True
  2502. end
  2503. object HidewhenEmpty5: TTBXItem
  2504. Action = QueueHideWhenEmptyAction
  2505. RadioItem = True
  2506. end
  2507. object Hide4: TTBXItem
  2508. Action = QueueHideAction
  2509. RadioItem = True
  2510. end
  2511. object N69: TTBXSeparatorItem
  2512. end
  2513. object Toolbar4: TTBXItem
  2514. Action = QueueToolbarAction
  2515. end
  2516. object TBXItem84: TTBXItem
  2517. Action = QueueFileListAction
  2518. end
  2519. object N68: TTBXSeparatorItem
  2520. end
  2521. object Customize4: TTBXItem
  2522. Action = QueuePreferencesAction
  2523. end
  2524. end
  2525. end
  2526. object RemotePanelPopup: TTBXPopupMenu
  2527. Images = GlyphsModule.ExplorerImages
  2528. Options = [tboShowHint]
  2529. Left = 312
  2530. Top = 264
  2531. object TBXSubmenuItem8: TTBXSubmenuItem
  2532. Caption = '&Go To'
  2533. HelpKeyword = 'task_navigate'
  2534. Hint = 'Go to directory'
  2535. object TBXItem86: TTBXItem
  2536. Action = RemoteOpenDirAction
  2537. end
  2538. object TBXSeparatorItem13: TTBXSeparatorItem
  2539. end
  2540. object TBXItem87: TTBXItem
  2541. Action = RemoteParentDirAction
  2542. end
  2543. object TBXItem88: TTBXItem
  2544. Action = RemoteRootDirAction
  2545. end
  2546. object TBXItem89: TTBXItem
  2547. Action = RemoteHomeDirAction
  2548. end
  2549. object TBXSeparatorItem14: TTBXSeparatorItem
  2550. end
  2551. object TBXItem90: TTBXItem
  2552. Action = RemoteBackAction
  2553. end
  2554. object TBXItem91: TTBXItem
  2555. Action = RemoteForwardAction
  2556. end
  2557. end
  2558. object TBXItem32: TTBXItem
  2559. Action = RemoteRefreshAction
  2560. end
  2561. object TBXItem30: TTBXItem
  2562. Action = RemoteAddBookmarkAction
  2563. end
  2564. object TBXItem26: TTBXItem
  2565. Action = RemoteFilterAction
  2566. end
  2567. object CopyPathtoClipboard1: TTBXItem
  2568. Action = RemotePathToClipboardAction
  2569. end
  2570. object N51: TTBXSeparatorItem
  2571. end
  2572. object HistoryButtons5: TTBXItem
  2573. Action = CommanderRemoteHistoryBandAction
  2574. end
  2575. object NavigationButtons5: TTBXItem
  2576. Action = CommanderRemoteNavigationBandAction
  2577. end
  2578. object TBXItem14: TTBXItem
  2579. Action = CommanderRemoteFileBandAction
  2580. end
  2581. object TBXItem45: TTBXItem
  2582. Action = CommanderRemoteSelectionBandAction
  2583. end
  2584. object TBXItem37: TTBXItem
  2585. Action = LockToolbarsAction
  2586. end
  2587. object TBXItem49: TTBXItem
  2588. Action = SelectiveToolbarTextAction
  2589. end
  2590. object TBXSubmenuItem9: TTBXSubmenuItem
  2591. Action = CustomizeToolbarAction
  2592. end
  2593. object N28: TTBXSeparatorItem
  2594. end
  2595. object Tree5: TTBXItem
  2596. Action = RemoteTreeAction
  2597. end
  2598. object N75: TTBXSeparatorItem
  2599. end
  2600. object StatusBar9: TTBXItem
  2601. Action = RemoteStatusBarAction
  2602. end
  2603. end
  2604. object LocalPanelPopup: TTBXPopupMenu
  2605. Images = GlyphsModule.ExplorerImages
  2606. Options = [tboShowHint]
  2607. Left = 312
  2608. Top = 336
  2609. object TBXSubmenuItem10: TTBXSubmenuItem
  2610. Caption = '&Go To'
  2611. HelpKeyword = 'task_navigate'
  2612. Hint = 'Go to directory'
  2613. object TBXItem92: TTBXItem
  2614. Action = LocalOpenDirAction
  2615. end
  2616. object TBXItem93: TTBXItem
  2617. Action = LocalExploreDirectoryAction2
  2618. end
  2619. object TBXSeparatorItem15: TTBXSeparatorItem
  2620. end
  2621. object TBXItem94: TTBXItem
  2622. Action = LocalParentDirAction
  2623. end
  2624. object TBXItem95: TTBXItem
  2625. Action = LocalRootDirAction
  2626. end
  2627. object TBXItem96: TTBXItem
  2628. Action = LocalHomeDirAction
  2629. end
  2630. object TBXSeparatorItem16: TTBXSeparatorItem
  2631. end
  2632. object TBXItem97: TTBXItem
  2633. Action = LocalBackAction
  2634. end
  2635. object TBXItem98: TTBXItem
  2636. Action = LocalForwardAction
  2637. end
  2638. end
  2639. object TBXItem34: TTBXItem
  2640. Action = LocalRefreshAction
  2641. end
  2642. object TBXItem27: TTBXItem
  2643. Action = LocalFilterAction
  2644. end
  2645. object TBXItem31: TTBXItem
  2646. Action = LocalAddBookmarkAction
  2647. end
  2648. object CopyPathtoClipboard2: TTBXItem
  2649. Action = LocalPathToClipboardAction
  2650. end
  2651. object N52: TTBXSeparatorItem
  2652. end
  2653. object HistoryButtons6: TTBXItem
  2654. Action = CommanderLocalHistoryBandAction
  2655. end
  2656. object NavigationButtons6: TTBXItem
  2657. Action = CommanderLocalNavigationBandAction
  2658. end
  2659. object TBXItem39: TTBXItem
  2660. Action = CommanderLocalFileBandAction
  2661. end
  2662. object TBXItem44: TTBXItem
  2663. Action = CommanderLocalSelectionBandAction
  2664. end
  2665. object TBXItem38: TTBXItem
  2666. Action = LockToolbarsAction
  2667. end
  2668. object TBXItem47: TTBXItem
  2669. Action = SelectiveToolbarTextAction
  2670. end
  2671. object TBXSubmenuItem6: TTBXSubmenuItem
  2672. Action = CustomizeToolbarAction
  2673. end
  2674. object N29: TTBXSeparatorItem
  2675. end
  2676. object Tree6: TTBXItem
  2677. Action = LocalTreeAction
  2678. end
  2679. object N76: TTBXSeparatorItem
  2680. end
  2681. object StatusBar10: TTBXItem
  2682. Action = LocalStatusBarAction
  2683. end
  2684. end
  2685. object LocalDirViewColumnPopup: TTBXPopupMenu
  2686. Images = GlyphsModule.ExplorerImages
  2687. Options = [tboShowHint]
  2688. Left = 248
  2689. Top = 88
  2690. object SortAscending1: TTBXItem
  2691. Action = SortColumnAscendingAction
  2692. end
  2693. object SortDescending1: TTBXItem
  2694. Action = SortColumnDescendingAction
  2695. end
  2696. object LocalSortByExtColumnPopupItem: TTBXItem
  2697. Action = LocalSortByExtAction
  2698. end
  2699. object Hidecolumn1: TTBXItem
  2700. Action = HideColumnAction
  2701. end
  2702. object N37: TTBXSeparatorItem
  2703. end
  2704. object LocalFormatSizeBytesPopupItem: TTBXSubmenuItem
  2705. Caption = 'Show File Si&zes In'
  2706. HelpKeyword = 'ui_pref_panels#common'
  2707. Hint = 'Select files sizes display format'
  2708. object TBXItem64: TTBXItem
  2709. Action = FormatSizeBytesNoneAction
  2710. end
  2711. object TBXItem65: TTBXItem
  2712. Action = FormatSizeBytesKilobytesAction
  2713. end
  2714. object TBXItem66: TTBXItem
  2715. Action = FormatSizeBytesShortAction
  2716. end
  2717. end
  2718. object TBXSeparatorItem8: TTBXSeparatorItem
  2719. end
  2720. object Showcolumns3: TTBXSubmenuItem
  2721. Caption = 'Show &Columns'
  2722. HelpKeyword = 'ui_file_panel#selecting_columns'
  2723. Hint = 'Select columns to show in panel'
  2724. object Name3: TTBXItem
  2725. Action = ShowHideLocalNameColumnAction
  2726. end
  2727. object Size3: TTBXItem
  2728. Action = ShowHideLocalSizeColumnAction
  2729. end
  2730. object Type2: TTBXItem
  2731. Action = ShowHideLocalTypeColumnAction
  2732. end
  2733. object Modification3: TTBXItem
  2734. Action = ShowHideLocalChangedColumnAction
  2735. end
  2736. object Attributes3: TTBXItem
  2737. Action = ShowHideLocalAttrColumnAction
  2738. end
  2739. end
  2740. end
  2741. object RemoteDirViewColumnPopup: TTBXPopupMenu
  2742. Images = GlyphsModule.ExplorerImages
  2743. Options = [tboShowHint]
  2744. Left = 424
  2745. Top = 88
  2746. object MenuItem1: TTBXItem
  2747. Action = SortColumnAscendingAction
  2748. RadioItem = True
  2749. end
  2750. object MenuItem2: TTBXItem
  2751. Action = SortColumnDescendingAction
  2752. RadioItem = True
  2753. end
  2754. object RemoteSortByExtColumnPopupItem: TTBXItem
  2755. Action = RemoteSortByExtAction
  2756. end
  2757. object Hidecolumn2: TTBXItem
  2758. Action = HideColumnAction
  2759. end
  2760. object N38: TTBXSeparatorItem
  2761. end
  2762. object RemoteFormatSizeBytesPopupItem: TTBXSubmenuItem
  2763. Caption = 'Show File Si&zes In'
  2764. HelpKeyword = 'ui_pref_panels#common'
  2765. Hint = 'Select files sizes display format'
  2766. object TBXItem67: TTBXItem
  2767. Action = FormatSizeBytesNoneAction
  2768. end
  2769. object TBXItem53: TTBXItem
  2770. Action = FormatSizeBytesKilobytesAction
  2771. end
  2772. object TBXItem55: TTBXItem
  2773. Action = FormatSizeBytesShortAction
  2774. end
  2775. end
  2776. object TBXSeparatorItem7: TTBXSeparatorItem
  2777. end
  2778. object Showcolumns4: TTBXSubmenuItem
  2779. Caption = 'Show &Columns'
  2780. HelpKeyword = 'ui_file_panel#selecting_columns'
  2781. Hint = 'Select columns to show in panel'
  2782. object Name4: TTBXItem
  2783. Action = ShowHideRemoteNameColumnAction
  2784. end
  2785. object Size4: TTBXItem
  2786. Action = ShowHideRemoteSizeColumnAction
  2787. end
  2788. object TBXItem8: TTBXItem
  2789. Action = ShowHideRemoteTypeColumnAction
  2790. end
  2791. object Modification4: TTBXItem
  2792. Action = ShowHideRemoteChangedColumnAction
  2793. end
  2794. object Permissions1: TTBXItem
  2795. Action = ShowHideRemoteRightsColumnAction
  2796. end
  2797. object Owner2: TTBXItem
  2798. Action = ShowHideRemoteOwnerColumnAction
  2799. end
  2800. object Group2: TTBXItem
  2801. Action = ShowHideRemoteGroupColumnAction
  2802. end
  2803. object TBXItem1: TTBXItem
  2804. Action = ShowHideRemoteLinkTargetColumnAction
  2805. end
  2806. end
  2807. end
  2808. object QueuePopup: TTBXPopupMenu
  2809. Images = GlyphsModule.ExplorerImages
  2810. OnPopup = QueuePopupPopup
  2811. Options = [tboShowHint]
  2812. Left = 392
  2813. Top = 176
  2814. object ShowQuery1: TTBXItem
  2815. Action = QueueItemQueryAction
  2816. end
  2817. object ShowError1: TTBXItem
  2818. Action = QueueItemErrorAction
  2819. end
  2820. object ShowPrompt1: TTBXItem
  2821. Action = QueueItemPromptAction
  2822. end
  2823. object N53: TTBXSeparatorItem
  2824. end
  2825. object ExecuteNow1: TTBXItem
  2826. Action = QueueItemExecuteAction
  2827. end
  2828. object TBXItem9: TTBXItem
  2829. Action = QueueItemPauseAction
  2830. end
  2831. object TBXItem10: TTBXItem
  2832. Action = QueueItemResumeAction
  2833. end
  2834. object Delete4: TTBXItem
  2835. Action = QueueItemDeleteAction
  2836. end
  2837. object QueuePopupSpeedComboBoxItem: TTBXComboBoxItem
  2838. Action = QueueItemSpeedAction
  2839. ShowImage = True
  2840. OnAdjustImageIndex = QueuePopupSpeedComboBoxItemAdjustImageIndex
  2841. end
  2842. object N54: TTBXSeparatorItem
  2843. end
  2844. object MoveUp1: TTBXItem
  2845. Action = QueueItemUpAction
  2846. end
  2847. object MoveDown1: TTBXItem
  2848. Action = QueueItemDownAction
  2849. end
  2850. object N67: TTBXSeparatorItem
  2851. end
  2852. object QueueEnableItem: TTBXItem
  2853. Action = QueueEnableAction
  2854. end
  2855. object TBXSubmenuItem1: TTBXSubmenuItem
  2856. Caption = '&All'
  2857. HelpKeyword = 'ui_queue#manage'
  2858. Hint = 'Mass queue management commands'
  2859. object TBXItem11: TTBXItem
  2860. Action = QueuePauseAllAction
  2861. end
  2862. object TBXItem12: TTBXItem
  2863. Action = QueueResumeAllAction
  2864. end
  2865. object TBXItem142: TTBXItem
  2866. Action = QueueDeleteAllAction
  2867. end
  2868. object TBXSeparatorItem5: TTBXSeparatorItem
  2869. end
  2870. object TBXItem51: TTBXItem
  2871. Action = QueueDeleteAllDoneAction
  2872. end
  2873. end
  2874. object TBXSubmenuItem3: TTBXSubmenuItem
  2875. Action = QueueCycleOnceEmptyAction
  2876. DropdownCombo = True
  2877. object TBXItem28: TTBXItem
  2878. Action = QueueIdleOnceEmptyAction
  2879. RadioItem = True
  2880. end
  2881. object TBXItem13: TTBXItem
  2882. Action = QueueDisconnectOnceEmptyAction2
  2883. RadioItem = True
  2884. end
  2885. object TBXItem68: TTBXItem
  2886. Action = QueueSuspendOnceEmptyAction2
  2887. RadioItem = True
  2888. end
  2889. object TBXItem29: TTBXItem
  2890. Action = QueueShutDownOnceEmptyAction2
  2891. RadioItem = True
  2892. end
  2893. end
  2894. object Queue2: TTBXSubmenuItem
  2895. Caption = '&Options'
  2896. HelpKeyword = 'ui_queue'
  2897. Hint = 'Configure queue list'
  2898. object Show4: TTBXItem
  2899. Action = QueueShowAction
  2900. RadioItem = True
  2901. end
  2902. object HidewhenEmpty4: TTBXItem
  2903. Action = QueueHideWhenEmptyAction
  2904. RadioItem = True
  2905. end
  2906. object Hide3: TTBXItem
  2907. Action = QueueHideAction
  2908. RadioItem = True
  2909. end
  2910. object N66: TTBXSeparatorItem
  2911. end
  2912. object Toolbar3: TTBXItem
  2913. Action = QueueToolbarAction
  2914. end
  2915. object TBXItem83: TTBXItem
  2916. Action = QueueFileListAction
  2917. end
  2918. object N65: TTBXSeparatorItem
  2919. end
  2920. object Customize3: TTBXItem
  2921. Action = QueuePreferencesAction
  2922. end
  2923. end
  2924. end
  2925. object RemoteDirViewPopup: TTBXPopupMenu
  2926. AutoPopup = False
  2927. Images = GlyphsModule.ExplorerImages
  2928. Options = [tboShowHint]
  2929. Left = 360
  2930. Top = 400
  2931. object GoTo4: TTBXSubmenuItem
  2932. Caption = '&Go To'
  2933. HelpKeyword = 'task_navigate'
  2934. Hint = 'Go to directory'
  2935. object OpenDirectoryBookmark3: TTBXItem
  2936. Action = RemoteOpenDirAction
  2937. end
  2938. object N81: TTBXSeparatorItem
  2939. end
  2940. object ParentDirectory4: TTBXItem
  2941. Action = RemoteParentDirAction
  2942. end
  2943. object RootDirectory4: TTBXItem
  2944. Action = RemoteRootDirAction
  2945. end
  2946. object HomeDirectory4: TTBXItem
  2947. Action = RemoteHomeDirAction
  2948. end
  2949. object N80: TTBXSeparatorItem
  2950. end
  2951. object Back4: TTBXItem
  2952. Action = RemoteBackAction
  2953. end
  2954. object Forward4: TTBXItem
  2955. Action = RemoteForwardAction
  2956. end
  2957. end
  2958. object Refresh4: TTBXItem
  2959. Action = RemoteRefreshAction
  2960. end
  2961. object AddToBookmarks4: TTBXItem
  2962. Action = RemoteAddBookmarkAction
  2963. end
  2964. object TBXItem35: TTBXItem
  2965. Action = RemoteFilterAction
  2966. end
  2967. object CopyPathtoClipboard6: TTBXItem
  2968. Action = RemotePathToClipboardAction
  2969. end
  2970. object N79: TTBXSeparatorItem
  2971. end
  2972. object TBXSubmenuItem26: TTBXSubmenuItem
  2973. Caption = '&New'
  2974. HelpKeyword = 'task_index'
  2975. Hint = 'Create object|Create new object'
  2976. object TBXItem135: TTBXItem
  2977. Action = NewFileAction
  2978. end
  2979. object TBXItem136: TTBXItem
  2980. Action = NewDirAction
  2981. end
  2982. object TBXItem209: TTBXItem
  2983. Action = NewLinkAction
  2984. end
  2985. end
  2986. object TBXItem75: TTBXItem
  2987. Action = PasteAction2
  2988. end
  2989. object RemoteDirViewPopupCustomCommandsMenu: TTBXSubmenuItem
  2990. Action = CustomCommandsNonFileAction
  2991. end
  2992. end
  2993. object LocalDirViewPopup: TTBXPopupMenu
  2994. AutoPopup = False
  2995. Images = GlyphsModule.ExplorerImages
  2996. Options = [tboShowHint]
  2997. Left = 480
  2998. Top = 400
  2999. object GoTo5: TTBXSubmenuItem
  3000. Caption = '&Go To'
  3001. HelpKeyword = 'task_navigate'
  3002. Hint = 'Go to directory'
  3003. object OpenDirectoryBookmark4: TTBXItem
  3004. Action = LocalOpenDirAction
  3005. end
  3006. object ExploreDirectory2: TTBXItem
  3007. Action = LocalExploreDirectoryAction
  3008. end
  3009. object N84: TTBXSeparatorItem
  3010. end
  3011. object ParentDirectory5: TTBXItem
  3012. Action = LocalParentDirAction
  3013. end
  3014. object RootDirectory5: TTBXItem
  3015. Action = LocalRootDirAction
  3016. end
  3017. object HomeDirectory5: TTBXItem
  3018. Action = LocalHomeDirAction
  3019. end
  3020. object N83: TTBXSeparatorItem
  3021. end
  3022. object Back5: TTBXItem
  3023. Action = LocalBackAction
  3024. end
  3025. object Forward5: TTBXItem
  3026. Action = LocalForwardAction
  3027. end
  3028. end
  3029. object Refresh5: TTBXItem
  3030. Action = LocalRefreshAction
  3031. end
  3032. object TBXItem36: TTBXItem
  3033. Action = LocalFilterAction
  3034. end
  3035. object AddToBookmarks5: TTBXItem
  3036. Action = LocalAddBookmarkAction
  3037. end
  3038. object CopyPathtoClipboard7: TTBXItem
  3039. Action = LocalPathToClipboardAction
  3040. end
  3041. object N82: TTBXSeparatorItem
  3042. end
  3043. object TBXSubmenuItem7: TTBXSubmenuItem
  3044. Caption = '&New'
  3045. HelpKeyword = 'task_index'
  3046. Hint = 'Create object|Create new object'
  3047. object TBXItem70: TTBXItem
  3048. Action = NewFileAction
  3049. end
  3050. object TBXItem71: TTBXItem
  3051. Action = NewDirAction
  3052. end
  3053. end
  3054. object TBXItem76: TTBXItem
  3055. Action = PasteAction2
  3056. end
  3057. end
  3058. object RemoteAddressPopup: TTBXPopupMenu
  3059. Images = GlyphsModule.ExplorerImages
  3060. Options = [tboShowHint]
  3061. Left = 248
  3062. Top = 400
  3063. object TBXItem33: TTBXItem
  3064. Action = RemoteRefreshAction
  3065. end
  3066. object TBXItem24: TTBXItem
  3067. Action = RemoteAddBookmarkAction
  3068. end
  3069. object TBXItem25: TTBXItem
  3070. Action = RemotePathToClipboardAction
  3071. end
  3072. object TBXSeparatorItem1: TTBXSeparatorItem
  3073. end
  3074. object TBXItem17: TTBXItem
  3075. Action = RemoteOpenDirAction
  3076. end
  3077. object TBXSubmenuItem2: TTBXSubmenuItem
  3078. Caption = '&Go To'
  3079. HelpKeyword = 'task_navigate'
  3080. Hint = 'Go to directory'
  3081. object TBXItem18: TTBXItem
  3082. Action = RemoteParentDirAction
  3083. end
  3084. object TBXItem19: TTBXItem
  3085. Action = RemoteRootDirAction
  3086. end
  3087. object TBXItem20: TTBXItem
  3088. Action = RemoteHomeDirAction
  3089. end
  3090. object TBXSeparatorItem2: TTBXSeparatorItem
  3091. end
  3092. object TBXItem21: TTBXItem
  3093. Action = RemoteBackAction
  3094. end
  3095. object TBXItem22: TTBXItem
  3096. Action = RemoteForwardAction
  3097. end
  3098. end
  3099. end
  3100. object SessionsPopup: TTBXPopupMenu
  3101. Images = GlyphsModule.ExplorerImages
  3102. Options = [tboShowHint]
  3103. Left = 480
  3104. Top = 176
  3105. object TBXItem124: TTBXItem
  3106. Action = CloseSessionAction2
  3107. end
  3108. object TBXItem79: TTBXItem
  3109. Action = DisconnectSessionAction
  3110. end
  3111. object TBXItem80: TTBXItem
  3112. Action = ReconnectSessionAction
  3113. end
  3114. object TBXItem219: TTBXItem
  3115. Action = DuplicateSessionAction
  3116. end
  3117. object TBXItem78: TTBXItem
  3118. Action = RenameSessionAction
  3119. end
  3120. object TBXItem125: TTBXItem
  3121. Action = SaveCurrentSessionAction2
  3122. end
  3123. object TBXSeparatorItem6: TTBXSeparatorItem
  3124. end
  3125. object TBXItem56: TTBXItem
  3126. Action = FileSystemInfoAction
  3127. end
  3128. object TBXItem52: TTBXItem
  3129. Action = SessionGenerateUrlAction2
  3130. end
  3131. object TBXSeparatorItem52: TTBXSeparatorItem
  3132. end
  3133. object ColorMenuItem: TTBXColorItem
  3134. Action = ColorMenuAction
  3135. Color = clNone
  3136. end
  3137. object TBXSeparatorItem34: TTBXSeparatorItem
  3138. end
  3139. object TBXItem123: TTBXItem
  3140. Action = NewSessionAction
  3141. end
  3142. object TBXSubmenuItem23: TTBXSubmenuItem
  3143. Action = SavedSessionsAction2
  3144. Options = [tboDropdownArrow]
  3145. end
  3146. object TBXSeparatorItem35: TTBXSeparatorItem
  3147. end
  3148. object SessionsTabsAction4: TTBXItem
  3149. Action = SessionsTabsAction
  3150. end
  3151. end
  3152. object ShellResources: TShellResources
  3153. Left = 48
  3154. Top = 424
  3155. end
  3156. object LocalFilePopup: TTBXPopupMenu
  3157. Images = GlyphsModule.ExplorerImages
  3158. Options = [tboShowHint]
  3159. Left = 536
  3160. Top = 336
  3161. object LocalOpenMenuItem: TTBXItem
  3162. Action = CurrentOpenAction
  3163. end
  3164. object LocalEditMenuItem: TTBXSubmenuItem
  3165. Action = CurrentEditFocusedAction
  3166. DropdownCombo = True
  3167. OnPopup = FocusedEditMenuItemPopup
  3168. end
  3169. object LocalCopyMenuItem: TTBXSubmenuItem
  3170. Action = LocalCopyFocusedAction
  3171. DropdownCombo = True
  3172. object TBXItem73: TTBXItem
  3173. Action = LocalCopyFocusedNonQueueAction
  3174. end
  3175. object TBXItem74: TTBXItem
  3176. Action = LocalCopyFocusedQueueAction
  3177. end
  3178. object TBXSeparatorItem10: TTBXSeparatorItem
  3179. end
  3180. object TBXItem54: TTBXItem
  3181. Action = LocalMoveFocusedAction
  3182. end
  3183. end
  3184. object TBXItem57: TTBXItem
  3185. Action = CurrentDeleteFocusedAction
  3186. end
  3187. object TBXItem58: TTBXItem
  3188. Action = CurrentRenameAction
  3189. end
  3190. object TBXSeparatorItem11: TTBXSeparatorItem
  3191. end
  3192. object TBXItem81: TTBXItem
  3193. Action = CurrentCopyToClipboardFocusedAction
  3194. end
  3195. object TBXSeparatorItem3: TTBXSeparatorItem
  3196. end
  3197. object LocalFilePopupCustomCommandsMenu: TTBXSubmenuItem
  3198. Action = CustomCommandsFileAction
  3199. object TTBXItem
  3200. end
  3201. end
  3202. object TBXSubmenuItem5: TTBXSubmenuItem
  3203. Caption = '&File Names'
  3204. HelpKeyword = 'filenames'
  3205. Hint = 'Operations with name(s) of selected file(s)'
  3206. object TBXItem59: TTBXItem
  3207. Action = FileListToCommandLineAction
  3208. end
  3209. object TBXItem60: TTBXItem
  3210. Action = FileListToClipboardAction
  3211. end
  3212. object TBXItem61: TTBXItem
  3213. Action = FullFileListToClipboardAction
  3214. end
  3215. object TBXItem62: TTBXItem
  3216. Action = FileGenerateUrlAction2
  3217. end
  3218. end
  3219. object TBXSeparatorItem4: TTBXSeparatorItem
  3220. end
  3221. object TBXItem63: TTBXItem
  3222. Action = CurrentPropertiesFocusedAction
  3223. end
  3224. object TBXItem50: TTBXItem
  3225. Action = CurrentSystemMenuFocusedAction
  3226. end
  3227. end
  3228. end