NonVisual.dfm 89 KB

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