NonVisual.dfm 105 KB

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