mainwindow.ui 23 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <ui version="4.0">
  3. <class>MainWindow</class>
  4. <widget class="QMainWindow" name="MainWindow">
  5. <property name="enabled">
  6. <bool>true</bool>
  7. </property>
  8. <property name="geometry">
  9. <rect>
  10. <x>0</x>
  11. <y>0</y>
  12. <width>750</width>
  13. <height>738</height>
  14. </rect>
  15. </property>
  16. <property name="sizePolicy">
  17. <sizepolicy hsizetype="Preferred" vsizetype="Preferred">
  18. <horstretch>0</horstretch>
  19. <verstretch>0</verstretch>
  20. </sizepolicy>
  21. </property>
  22. <property name="minimumSize">
  23. <size>
  24. <width>0</width>
  25. <height>0</height>
  26. </size>
  27. </property>
  28. <property name="acceptDrops">
  29. <bool>true</bool>
  30. </property>
  31. <property name="windowTitle">
  32. <string>Script Canvas</string>
  33. </property>
  34. <property name="toolButtonStyle">
  35. <enum>Qt::ToolButtonIconOnly</enum>
  36. </property>
  37. <property name="documentMode">
  38. <bool>false</bool>
  39. </property>
  40. <property name="dockNestingEnabled">
  41. <bool>true</bool>
  42. </property>
  43. <property name="unifiedTitleAndToolBarOnMac">
  44. <bool>false</bool>
  45. </property>
  46. <widget class="QMenuBar" name="menubar">
  47. <property name="geometry">
  48. <rect>
  49. <x>0</x>
  50. <y>0</y>
  51. <width>750</width>
  52. <height>21</height>
  53. </rect>
  54. </property>
  55. <widget class="QMenu" name="menuFile">
  56. <property name="title">
  57. <string>&amp;File</string>
  58. </property>
  59. <addaction name="action_New_Script"/>
  60. <addaction name="action_Open"/>
  61. <addaction name="action_Save"/>
  62. <addaction name="action_Save_As"/>
  63. <addaction name="action_Close"/>
  64. </widget>
  65. <widget class="QMenu" name="menuEdit">
  66. <property name="title">
  67. <string>&amp;Edit</string>
  68. </property>
  69. <widget class="QMenu" name="menuRemove_Unused">
  70. <property name="title">
  71. <string>Remove Unused</string>
  72. </property>
  73. <addaction name="action_RemoveUnusedVariables"/>
  74. <addaction name="action_RemoveUnusedNodes"/>
  75. <addaction name="action_RemoveUnusedElements"/>
  76. </widget>
  77. <widget class="QMenu" name="menuAlign">
  78. <property name="title">
  79. <string>Align</string>
  80. </property>
  81. <addaction name="action_AlignTop"/>
  82. <addaction name="action_AlignBottom"/>
  83. <addaction name="action_AlignLeft"/>
  84. <addaction name="action_AlignRight"/>
  85. </widget>
  86. <widget class="QMenu" name="menuSelect">
  87. <property name="title">
  88. <string>Select</string>
  89. </property>
  90. <addaction name="action_SelectAll"/>
  91. <addaction name="action_SelectInputs"/>
  92. <addaction name="action_SelectOutputs"/>
  93. <addaction name="action_SelectConnected"/>
  94. </widget>
  95. <addaction name="action_Undo"/>
  96. <addaction name="action_Redo"/>
  97. <addaction name="separator"/>
  98. <addaction name="action_Cut"/>
  99. <addaction name="action_Copy"/>
  100. <addaction name="action_Paste"/>
  101. <addaction name="action_Duplicate"/>
  102. <addaction name="action_Delete"/>
  103. <addaction name="separator"/>
  104. <addaction name="action_Screenshot"/>
  105. <addaction name="separator"/>
  106. <addaction name="menuSelect"/>
  107. <addaction name="action_ClearSelection"/>
  108. <addaction name="separator"/>
  109. <addaction name="action_EnableSelection"/>
  110. <addaction name="action_DisableSelection"/>
  111. <addaction name="separator"/>
  112. <addaction name="menuAlign"/>
  113. <addaction name="separator"/>
  114. <addaction name="menuRemove_Unused"/>
  115. </widget>
  116. <widget class="QMenu" name="menuTools_2">
  117. <property name="title">
  118. <string>&amp;Tools</string>
  119. </property>
  120. <addaction name="action_ViewNodePalette"/>
  121. <addaction name="action_ViewProperties"/>
  122. <addaction name="action_ViewDebugger"/>
  123. <addaction name="action_ViewCommandLine"/>
  124. <addaction name="action_ViewGraphOutliner"/>
  125. <addaction name="action_ViewLog"/>
  126. <addaction name="action_ViewBookmarks"/>
  127. <addaction name="action_ViewMiniMap"/>
  128. <addaction name="action_ViewVariableManager"/>
  129. <addaction name="action_GraphValidation"/>
  130. <addaction name="action_Interpreter"/>
  131. <addaction name="action_Debugging"/>
  132. <addaction name="separator"/>
  133. <addaction name="action_UpgradeTool"/>
  134. <addaction name="action_ViewUnitTestManager"/>
  135. <addaction name="action_NodeStatistics"/>
  136. <addaction name="action_PresetsEditor"/>
  137. <addaction name="separator"/>
  138. </widget>
  139. <widget class="QMenu" name="menuSettings_2">
  140. <property name="title">
  141. <string>&amp;Preferences</string>
  142. </property>
  143. <addaction name="action_GlobalPreferences"/>
  144. <addaction name="action_GraphPreferences"/>
  145. </widget>
  146. <widget class="QMenu" name="menuView_2">
  147. <property name="title">
  148. <string>&amp;View</string>
  149. </property>
  150. <widget class="QMenu" name="menuGo_To">
  151. <property name="title">
  152. <string>Go To</string>
  153. </property>
  154. <addaction name="action_GotoStartOfChain"/>
  155. <addaction name="action_GotoEndOfChain"/>
  156. </widget>
  157. <addaction name="action_ZoomIn"/>
  158. <addaction name="action_ZoomOut"/>
  159. <addaction name="action_ZoomSelection"/>
  160. <addaction name="action_ShowEntireGraph"/>
  161. <addaction name="separator"/>
  162. <addaction name="menuGo_To"/>
  163. <addaction name="separator"/>
  164. <addaction name="action_ViewRestoreDefaultLayout"/>
  165. </widget>
  166. <addaction name="menuFile"/>
  167. <addaction name="menuEdit"/>
  168. <addaction name="menuView_2"/>
  169. <addaction name="menuTools_2"/>
  170. <addaction name="menuSettings_2"/>
  171. </widget>
  172. <widget class="QStatusBar" name="statusBar"/>
  173. <action name="action_New_Script">
  174. <property name="text">
  175. <string>&amp;New Script</string>
  176. </property>
  177. </action>
  178. <action name="action_New_Editor_Graph">
  179. <property name="text">
  180. <string>&amp;Editor Graph</string>
  181. </property>
  182. </action>
  183. <action name="action_Save">
  184. <property name="text">
  185. <string>&amp;Save</string>
  186. </property>
  187. <property name="enabled">
  188. <bool>false</bool>
  189. </property>
  190. </action>
  191. <action name="action_Save_As">
  192. <property name="text">
  193. <string>&amp;Save As...</string>
  194. </property>
  195. <property name="enabled">
  196. <bool>false</bool>
  197. </property>
  198. </action>
  199. <action name="action_Open">
  200. <property name="text">
  201. <string>&amp;Open</string>
  202. </property>
  203. </action>
  204. <action name="action_ViewLog">
  205. <property name="checkable">
  206. <bool>true</bool>
  207. </property>
  208. <property name="checked">
  209. <bool>false</bool>
  210. </property>
  211. <property name="icon">
  212. <iconset>
  213. <normaloff>:/ScriptCanvasEditorResources/Resources/scriptcanvas_log.png</normaloff>:/ScriptCanvasEditorResources/Resources/scriptcanvas_log.png</iconset>
  214. </property>
  215. <property name="text">
  216. <string>Log</string>
  217. </property>
  218. <property name="shortcut">
  219. <string>Ctrl+L</string>
  220. </property>
  221. <property name="autoRepeat">
  222. <bool>false</bool>
  223. </property>
  224. <property name="visible">
  225. <bool>false</bool>
  226. </property>
  227. </action>
  228. <action name="action_ViewCommandLine">
  229. <property name="checkable">
  230. <bool>true</bool>
  231. </property>
  232. <property name="checked">
  233. <bool>false</bool>
  234. </property>
  235. <property name="icon">
  236. <iconset resource="ScriptCanvasEditorResources.qrc">
  237. <normaloff>:/ScriptCanvasEditorResources/Resources/scriptcanvas_commandline.png</normaloff>:/ScriptCanvasEditorResources/Resources/scriptcanvas_commandline.png</iconset>
  238. </property>
  239. <property name="text">
  240. <string>Command Line (Experimental)</string>
  241. </property>
  242. <property name="shortcut">
  243. <string>Ctrl+P</string>
  244. </property>
  245. <property name="autoRepeat">
  246. <bool>false</bool>
  247. </property>
  248. <property name="visible">
  249. <bool>false</bool>
  250. </property>
  251. </action>
  252. <action name="action_ViewNodePalette">
  253. <property name="checkable">
  254. <bool>true</bool>
  255. </property>
  256. <property name="checked">
  257. <bool>true</bool>
  258. </property>
  259. <property name="text">
  260. <string>Node Palette</string>
  261. </property>
  262. <property name="shortcut">
  263. <string>Ctrl+Shift+L</string>
  264. </property>
  265. <property name="autoRepeat">
  266. <bool>false</bool>
  267. </property>
  268. </action>
  269. <action name="action_ViewOutline">
  270. <property name="checkable">
  271. <bool>true</bool>
  272. </property>
  273. <property name="checked">
  274. <bool>true</bool>
  275. </property>
  276. <property name="text">
  277. <string>&amp;Node Outliner</string>
  278. </property>
  279. <property name="shortcut">
  280. <string>Ctrl+Shift+O</string>
  281. </property>
  282. <property name="autoRepeat">
  283. <bool>false</bool>
  284. </property>
  285. </action>
  286. <action name="action_ViewDynamicEBusAssets">
  287. <property name="checkable">
  288. <bool>true</bool>
  289. </property>
  290. <property name="checked">
  291. <bool>true</bool>
  292. </property>
  293. <property name="text">
  294. <string>&amp;Dynamic EBus</string>
  295. </property>
  296. <property name="shortcut">
  297. <string>Ctrl+Shift+E</string>
  298. </property>
  299. <property name="autoRepeat">
  300. <bool>false</bool>
  301. </property>
  302. </action>
  303. <action name="action_ViewProperties">
  304. <property name="checkable">
  305. <bool>true</bool>
  306. </property>
  307. <property name="checked">
  308. <bool>true</bool>
  309. </property>
  310. <property name="text">
  311. <string>Node Inspector</string>
  312. </property>
  313. <property name="shortcut">
  314. <string>Ctrl+Shift+I</string>
  315. </property>
  316. <property name="autoRepeat">
  317. <bool>false</bool>
  318. </property>
  319. </action>
  320. <action name="action_ViewDebugger">
  321. <property name="checkable">
  322. <bool>true</bool>
  323. </property>
  324. <property name="checked">
  325. <bool>true</bool>
  326. </property>
  327. <property name="icon">
  328. <iconset resource="ScriptCanvasEditorResources.qrc">
  329. <normaloff>:/ScriptCanvasEditorResources/Resources/scriptcanvas_debugger_off.png</normaloff>
  330. <disabledoff>:/ScriptCanvasEditorResources/Resources/scriptcanvas_debugger.png</disabledoff>
  331. <disabledon>:/ScriptCanvasEditorResources/Resources/scriptcanvas_debugger_off.png</disabledon>:/ScriptCanvasEditorResources/Resources/scriptcanvas_debugger_off.png</iconset>
  332. </property>
  333. <property name="text">
  334. <string>&amp;Debugger</string>
  335. </property>
  336. <property name="shortcut">
  337. <string>Ctrl+Shift+D</string>
  338. </property>
  339. <property name="autoRepeat">
  340. <bool>false</bool>
  341. </property>
  342. <property name="visible">
  343. <bool>false</bool>
  344. </property>
  345. </action>
  346. <action name="action_ViewRestoreDefaultLayout">
  347. <property name="text">
  348. <string>Restore Default Layout</string>
  349. </property>
  350. </action>
  351. <action name="action_Close">
  352. <property name="text">
  353. <string>Close Graph</string>
  354. </property>
  355. </action>
  356. <action name="action_Undo">
  357. <property name="enabled">
  358. <bool>false</bool>
  359. </property>
  360. <property name="text">
  361. <string>Undo</string>
  362. </property>
  363. <property name="autoRepeat">
  364. <bool>false</bool>
  365. </property>
  366. </action>
  367. <action name="action_Redo">
  368. <property name="enabled">
  369. <bool>false</bool>
  370. </property>
  371. <property name="text">
  372. <string>Redo</string>
  373. </property>
  374. <property name="shortcut">
  375. <string>Ctrl+Shift+Z</string>
  376. </property>
  377. <property name="autoRepeat">
  378. <bool>false</bool>
  379. </property>
  380. </action>
  381. <action name="action_Cut">
  382. <property name="enabled">
  383. <bool>false</bool>
  384. </property>
  385. <property name="text">
  386. <string>Cut</string>
  387. </property>
  388. <property name="autoRepeat">
  389. <bool>false</bool>
  390. </property>
  391. </action>
  392. <action name="action_Copy">
  393. <property name="enabled">
  394. <bool>false</bool>
  395. </property>
  396. <property name="text">
  397. <string>Copy</string>
  398. </property>
  399. <property name="autoRepeat">
  400. <bool>false</bool>
  401. </property>
  402. </action>
  403. <action name="action_Paste">
  404. <property name="enabled">
  405. <bool>false</bool>
  406. </property>
  407. <property name="text">
  408. <string>Paste</string>
  409. </property>
  410. <property name="autoRepeat">
  411. <bool>false</bool>
  412. </property>
  413. </action>
  414. <action name="action_Duplicate">
  415. <property name="enabled">
  416. <bool>false</bool>
  417. </property>
  418. <property name="text">
  419. <string>Duplicate</string>
  420. </property>
  421. <property name="shortcut">
  422. <string>Ctrl+D</string>
  423. </property>
  424. <property name="shortcutContext">
  425. <enum>Qt::WidgetWithChildrenShortcut</enum>
  426. </property>
  427. <property name="autoRepeat">
  428. <bool>false</bool>
  429. </property>
  430. </action>
  431. <action name="action_Delete">
  432. <property name="enabled">
  433. <bool>false</bool>
  434. </property>
  435. <property name="text">
  436. <string>Delete</string>
  437. </property>
  438. <property name="shortcutContext">
  439. <enum>Qt::WidgetWithChildrenShortcut</enum>
  440. </property>
  441. <property name="autoRepeat">
  442. <bool>false</bool>
  443. </property>
  444. </action>
  445. <action name="action_GlobalPreferences">
  446. <property name="text">
  447. <string>Global Preferences</string>
  448. </property>
  449. </action>
  450. <action name="action_GraphPreferences">
  451. <property name="enabled">
  452. <bool>false</bool>
  453. </property>
  454. <property name="text">
  455. <string>Graph Preferences</string>
  456. </property>
  457. </action>
  458. <action name="action_ViewGraphOutliner">
  459. <property name="checkable">
  460. <bool>true</bool>
  461. </property>
  462. <property name="checked">
  463. <bool>true</bool>
  464. </property>
  465. <property name="text">
  466. <string>GraphOutliner</string>
  467. </property>
  468. <property name="shortcut">
  469. <string>Ctrl+F</string>
  470. </property>
  471. <property name="autoRepeat">
  472. <bool>false</bool>
  473. </property>
  474. </action>
  475. <action name="action_ViewBookmarks">
  476. <property name="checkable">
  477. <bool>true</bool>
  478. </property>
  479. <property name="checked">
  480. <bool>true</bool>
  481. </property>
  482. <property name="text">
  483. <string>Bookmarks</string>
  484. </property>
  485. <property name="shortcut">
  486. <string>Ctrl+Shift+B</string>
  487. </property>
  488. <property name="autoRepeat">
  489. <bool>false</bool>
  490. </property>
  491. </action>
  492. <action name="action_ViewMiniMap">
  493. <property name="checkable">
  494. <bool>true</bool>
  495. </property>
  496. <property name="checked">
  497. <bool>true</bool>
  498. </property>
  499. <property name="text">
  500. <string>&amp;MiniMap</string>
  501. </property>
  502. <property name="shortcut">
  503. <string>Ctrl+Shift+M</string>
  504. </property>
  505. <property name="autoRepeat">
  506. <bool>false</bool>
  507. </property>
  508. </action>
  509. <action name="action_ViewVariableManager">
  510. <property name="checkable">
  511. <bool>true</bool>
  512. </property>
  513. <property name="checked">
  514. <bool>true</bool>
  515. </property>
  516. <property name="text">
  517. <string>Variable Manager</string>
  518. </property>
  519. <property name="shortcut">
  520. <string>Ctrl+Shift+V</string>
  521. </property>
  522. <property name="autoRepeat">
  523. <bool>false</bool>
  524. </property>
  525. </action>
  526. <action name="action_ViewLogWindow">
  527. <property name="checkable">
  528. <bool>true</bool>
  529. </property>
  530. <property name="text">
  531. <string>&amp;Log</string>
  532. </property>
  533. </action>
  534. <action name="action_GraphValidation">
  535. <property name="checkable">
  536. <bool>true</bool>
  537. </property>
  538. <property name="checked">
  539. <bool>true</bool>
  540. </property>
  541. <property name="text">
  542. <string>Graph Validation</string>
  543. </property>
  544. </action>
  545. <action name="action_ViewUnitTestManager">
  546. <property name="checkable">
  547. <bool>false</bool>
  548. </property>
  549. <property name="checked">
  550. <bool>false</bool>
  551. </property>
  552. <property name="enabled">
  553. <bool>false</bool>
  554. </property>
  555. <property name="text">
  556. <string>Test Manager</string>
  557. </property>
  558. <property name="shortcut">
  559. <string>Ctrl+Shift+T</string>
  560. </property>
  561. <property name="autoRepeat">
  562. <bool>false</bool>
  563. </property>
  564. </action>
  565. <action name="action_Debugging">
  566. <property name="checkable">
  567. <bool>true</bool>
  568. </property>
  569. <property name="checked">
  570. <bool>false</bool>
  571. </property>
  572. <property name="text">
  573. <string>Debugging</string>
  574. </property>
  575. </action>
  576. <action name="action_NodeStatistics">
  577. <property name="text">
  578. <string>Statistics</string>
  579. </property>
  580. </action>
  581. <action name="action_RemoveUnusedNodes">
  582. <property name="enabled">
  583. <bool>false</bool>
  584. </property>
  585. <property name="text">
  586. <string>Nodes</string>
  587. </property>
  588. <property name="toolTip">
  589. <string>Removes all unused nodes from the active graph</string>
  590. </property>
  591. </action>
  592. <action name="action_RemoveUnusedVariables">
  593. <property name="enabled">
  594. <bool>false</bool>
  595. </property>
  596. <property name="text">
  597. <string>Variables</string>
  598. </property>
  599. <property name="toolTip">
  600. <string>Removes all unused variables from the active graph</string>
  601. </property>
  602. </action>
  603. <action name="action_RemoveUnusedElements">
  604. <property name="enabled">
  605. <bool>false</bool>
  606. </property>
  607. <property name="text">
  608. <string>All</string>
  609. </property>
  610. <property name="toolTip">
  611. <string>Removes all unused elements from the active graph</string>
  612. </property>
  613. </action>
  614. <action name="action_PresetsEditor">
  615. <property name="text">
  616. <string>Presets Editor</string>
  617. </property>
  618. </action>
  619. <action name="action_UpgradeTool">
  620. <property name="text">
  621. <string>Upgrade Graphs</string>
  622. </property>
  623. <property name="toolTip">
  624. <string>Utility tool to upgrade the active project's Script Canvas graphs.</string>
  625. </property>
  626. </action>
  627. <action name="action_GraphRecreator">
  628. <property name="text">
  629. <string>Graph Recreator</string>
  630. </property>
  631. <property name="toolTip">
  632. <string>Will recreate the specified directory of graphs in a new target location.</string>
  633. </property>
  634. </action>
  635. <action name="action_Screenshot">
  636. <property name="text">
  637. <string>Screenshot</string>
  638. </property>
  639. <property name="toolTip">
  640. <string>Takes a picture of the current selection in the active graph, or the entire graph if there is no selection.</string>
  641. </property>
  642. <property name="shortcut">
  643. <string>Ctrl+Shift+P</string>
  644. </property>
  645. <property name="autoRepeat">
  646. <bool>false</bool>
  647. </property>
  648. </action>
  649. <action name="action_SelectInputs">
  650. <property name="text">
  651. <string>Inputs</string>
  652. </property>
  653. <property name="toolTip">
  654. <string>Selects all of the nodes that are connected to the current selection via input connections</string>
  655. </property>
  656. <property name="shortcut">
  657. <string>Ctrl+Left</string>
  658. </property>
  659. </action>
  660. <action name="action_SelectOutputs">
  661. <property name="text">
  662. <string>Outputs</string>
  663. </property>
  664. <property name="shortcut">
  665. <string>Ctrl+Right</string>
  666. </property>
  667. </action>
  668. <action name="action_SelectConnected">
  669. <property name="text">
  670. <string>Connected</string>
  671. </property>
  672. <property name="shortcut">
  673. <string>Ctrl+Up</string>
  674. </property>
  675. </action>
  676. <action name="action_ShowEntireGraph">
  677. <property name="text">
  678. <string>Show Entire Graph</string>
  679. </property>
  680. <property name="shortcut">
  681. <string>Ctrl+Shift+Down</string>
  682. </property>
  683. </action>
  684. <action name="action_ZoomIn">
  685. <property name="text">
  686. <string>Zoom In</string>
  687. </property>
  688. <property name="shortcut">
  689. <string>Ctrl++</string>
  690. </property>
  691. </action>
  692. <action name="action_ZoomOut">
  693. <property name="text">
  694. <string>Zoom Out</string>
  695. </property>
  696. <property name="shortcut">
  697. <string>Ctrl+-</string>
  698. </property>
  699. </action>
  700. <action name="action_AlignLeft">
  701. <property name="text">
  702. <string>Align Left</string>
  703. </property>
  704. <property name="shortcut">
  705. <string>Shift+Left</string>
  706. </property>
  707. <property name="enabled">
  708. <bool>false</bool>
  709. </property>
  710. </action>
  711. <action name="action_AlignRight">
  712. <property name="text">
  713. <string>Align Right</string>
  714. </property>
  715. <property name="shortcut">
  716. <string>Shift+Right</string>
  717. </property>
  718. <property name="enabled">
  719. <bool>false</bool>
  720. </property>
  721. </action>
  722. <action name="action_AlignTop">
  723. <property name="text">
  724. <string>Align Top</string>
  725. </property>
  726. <property name="shortcut">
  727. <string>Shift+Up</string>
  728. </property>
  729. <property name="enabled">
  730. <bool>false</bool>
  731. </property>
  732. </action>
  733. <action name="action_AlignBottom">
  734. <property name="text">
  735. <string>Align Bottom</string>
  736. </property>
  737. <property name="shortcut">
  738. <string>Shift+Down</string>
  739. </property>
  740. <property name="enabled">
  741. <bool>false</bool>
  742. </property>
  743. </action>
  744. <action name="action_SelectAll">
  745. <property name="text">
  746. <string>All</string>
  747. </property>
  748. <property name="toolTip">
  749. <string>Select All of the Nodes in the currently active graph</string>
  750. </property>
  751. <property name="shortcut">
  752. <string>Ctrl+A</string>
  753. </property>
  754. </action>
  755. <action name="actionNone">
  756. <property name="text">
  757. <string>None</string>
  758. </property>
  759. </action>
  760. <action name="action_ClearSelection">
  761. <property name="text">
  762. <string>Clear Selection</string>
  763. </property>
  764. <property name="shortcut">
  765. <string>Esc</string>
  766. </property>
  767. <property name="enabled">
  768. <bool>false</bool>
  769. </property>
  770. </action>
  771. <action name="action_GotoStartOfChain">
  772. <property name="text">
  773. <string>Start of Chain</string>
  774. </property>
  775. <property name="shortcut">
  776. <string>Ctrl+Shift+Left</string>
  777. </property>
  778. <property name="enabled">
  779. <bool>false</bool>
  780. </property>
  781. </action>
  782. <action name="action_GotoEndOfChain">
  783. <property name="text">
  784. <string>End of Chain</string>
  785. </property>
  786. <property name="shortcut">
  787. <string>Ctrl+Shift+Right</string>
  788. </property>
  789. <property name="enabled">
  790. <bool>false</bool>
  791. </property>
  792. </action>
  793. <action name="actionZoom_To">
  794. <property name="text">
  795. <string>Zoom Selection</string>
  796. </property>
  797. </action>
  798. <action name="action_ZoomSelection">
  799. <property name="text">
  800. <string>Show Selection</string>
  801. </property>
  802. <property name="shortcut">
  803. <string>Ctrl+Shift+Up</string>
  804. </property>
  805. <property name="enabled">
  806. <bool>false</bool>
  807. </property>
  808. </action>
  809. <action name="action_EnableSelection">
  810. <property name="text">
  811. <string>Enable Selection</string>
  812. </property>
  813. <property name="shortcut">
  814. <string>Ctrl+K, Ctrl+U</string>
  815. </property>
  816. <property name="enabled">
  817. <bool>false</bool>
  818. </property>
  819. </action>
  820. <action name="action_DisableSelection">
  821. <property name="text">
  822. <string>Disable Selection</string>
  823. </property>
  824. <property name="shortcut">
  825. <string>Ctrl+K, Ctrl+C</string>
  826. </property>
  827. <property name="enabled">
  828. <bool>false</bool>
  829. </property>
  830. </action>
  831. <action name="actionEditor_Graph">
  832. <property name="text">
  833. <string>Editor Graph</string>
  834. </property>
  835. </action>
  836. <action name="action_Interpreter">
  837. <property name="text">
  838. <string>Interpreter</string>
  839. </property>
  840. </action>
  841. <action name="actionOpen_Script_Event">
  842. <property name="text">
  843. <string>&amp;Open ...</string>
  844. </property>
  845. </action>
  846. <addaction name="action_ViewNodePalette"/>
  847. <addaction name="action_ViewOutline"/>
  848. <addaction name="action_ViewDynamicEBusAssets"/>
  849. <addaction name="action_ViewProperties"/>
  850. <addaction name="action_ViewDebugger"/>
  851. <addaction name="action_ViewCommandLine"/>
  852. <addaction name="action_ViewRestoreDefaultLayout"/>
  853. </widget>
  854. <resources>
  855. <include location="ScriptCanvasEditorResources.qrc"/>
  856. <include location="../../../../../GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/Resources/GraphCanvasEditorResources.qrc"/>
  857. </resources>
  858. <connections/>
  859. </ui>