NonVisual.dfm 97 KB

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