NonVisual.dfm 94 KB

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