| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861 |
- <?xml version="1.0" encoding="UTF-8"?>
- <ui version="4.0">
- <class>MainWindow</class>
- <widget class="QMainWindow" name="MainWindow">
- <property name="enabled">
- <bool>true</bool>
- </property>
- <property name="geometry">
- <rect>
- <x>0</x>
- <y>0</y>
- <width>750</width>
- <height>738</height>
- </rect>
- </property>
- <property name="sizePolicy">
- <sizepolicy hsizetype="Preferred" vsizetype="Preferred">
- <horstretch>0</horstretch>
- <verstretch>0</verstretch>
- </sizepolicy>
- </property>
- <property name="minimumSize">
- <size>
- <width>0</width>
- <height>0</height>
- </size>
- </property>
- <property name="acceptDrops">
- <bool>true</bool>
- </property>
- <property name="windowTitle">
- <string>Script Canvas</string>
- </property>
- <property name="toolButtonStyle">
- <enum>Qt::ToolButtonIconOnly</enum>
- </property>
- <property name="documentMode">
- <bool>false</bool>
- </property>
- <property name="dockNestingEnabled">
- <bool>true</bool>
- </property>
- <property name="unifiedTitleAndToolBarOnMac">
- <bool>false</bool>
- </property>
- <widget class="QMenuBar" name="menubar">
- <property name="geometry">
- <rect>
- <x>0</x>
- <y>0</y>
- <width>750</width>
- <height>21</height>
- </rect>
- </property>
- <widget class="QMenu" name="menuFile">
- <property name="title">
- <string>&File</string>
- </property>
- <addaction name="action_New_Script"/>
- <addaction name="action_Open"/>
- <addaction name="action_Save"/>
- <addaction name="action_Save_As"/>
- <addaction name="action_Close"/>
- </widget>
- <widget class="QMenu" name="menuEdit">
- <property name="title">
- <string>&Edit</string>
- </property>
- <widget class="QMenu" name="menuRemove_Unused">
- <property name="title">
- <string>Remove Unused</string>
- </property>
- <addaction name="action_RemoveUnusedVariables"/>
- <addaction name="action_RemoveUnusedNodes"/>
- <addaction name="action_RemoveUnusedElements"/>
- </widget>
- <widget class="QMenu" name="menuAlign">
- <property name="title">
- <string>Align</string>
- </property>
- <addaction name="action_AlignTop"/>
- <addaction name="action_AlignBottom"/>
- <addaction name="action_AlignLeft"/>
- <addaction name="action_AlignRight"/>
- </widget>
- <widget class="QMenu" name="menuSelect">
- <property name="title">
- <string>Select</string>
- </property>
- <addaction name="action_SelectAll"/>
- <addaction name="action_SelectInputs"/>
- <addaction name="action_SelectOutputs"/>
- <addaction name="action_SelectConnected"/>
- </widget>
- <addaction name="action_Undo"/>
- <addaction name="action_Redo"/>
- <addaction name="separator"/>
- <addaction name="action_Cut"/>
- <addaction name="action_Copy"/>
- <addaction name="action_Paste"/>
- <addaction name="action_Duplicate"/>
- <addaction name="action_Delete"/>
- <addaction name="separator"/>
- <addaction name="action_Screenshot"/>
- <addaction name="separator"/>
- <addaction name="menuSelect"/>
- <addaction name="action_ClearSelection"/>
- <addaction name="separator"/>
- <addaction name="action_EnableSelection"/>
- <addaction name="action_DisableSelection"/>
- <addaction name="separator"/>
- <addaction name="menuAlign"/>
- <addaction name="separator"/>
- <addaction name="menuRemove_Unused"/>
- </widget>
- <widget class="QMenu" name="menuTools_2">
- <property name="title">
- <string>&Tools</string>
- </property>
- <addaction name="action_ViewNodePalette"/>
- <addaction name="action_ViewProperties"/>
- <addaction name="action_ViewDebugger"/>
- <addaction name="action_ViewCommandLine"/>
- <addaction name="action_ViewGraphOutliner"/>
- <addaction name="action_ViewLog"/>
- <addaction name="action_ViewBookmarks"/>
- <addaction name="action_ViewMiniMap"/>
- <addaction name="action_ViewVariableManager"/>
- <addaction name="action_GraphValidation"/>
- <addaction name="action_Interpreter"/>
- <addaction name="action_Debugging"/>
- <addaction name="separator"/>
- <addaction name="action_UpgradeTool"/>
- <addaction name="action_ViewUnitTestManager"/>
- <addaction name="action_NodeStatistics"/>
- <addaction name="action_PresetsEditor"/>
- <addaction name="separator"/>
- </widget>
- <widget class="QMenu" name="menuSettings_2">
- <property name="title">
- <string>&Preferences</string>
- </property>
- <addaction name="action_GlobalPreferences"/>
- <addaction name="action_GraphPreferences"/>
- </widget>
- <widget class="QMenu" name="menuView_2">
- <property name="title">
- <string>&View</string>
- </property>
- <widget class="QMenu" name="menuGo_To">
- <property name="title">
- <string>Go To</string>
- </property>
- <addaction name="action_GotoStartOfChain"/>
- <addaction name="action_GotoEndOfChain"/>
- </widget>
- <addaction name="action_ZoomIn"/>
- <addaction name="action_ZoomOut"/>
- <addaction name="action_ZoomSelection"/>
- <addaction name="action_ShowEntireGraph"/>
- <addaction name="separator"/>
- <addaction name="menuGo_To"/>
- <addaction name="separator"/>
- <addaction name="action_ViewRestoreDefaultLayout"/>
- </widget>
- <addaction name="menuFile"/>
- <addaction name="menuEdit"/>
- <addaction name="menuView_2"/>
- <addaction name="menuTools_2"/>
- <addaction name="menuSettings_2"/>
- </widget>
- <widget class="QStatusBar" name="statusBar"/>
- <action name="action_New_Script">
- <property name="text">
- <string>&New Script</string>
- </property>
- </action>
- <action name="action_New_Editor_Graph">
- <property name="text">
- <string>&Editor Graph</string>
- </property>
- </action>
- <action name="action_Save">
- <property name="text">
- <string>&Save</string>
- </property>
- <property name="enabled">
- <bool>false</bool>
- </property>
- </action>
- <action name="action_Save_As">
- <property name="text">
- <string>&Save As...</string>
- </property>
- <property name="enabled">
- <bool>false</bool>
- </property>
- </action>
- <action name="action_Open">
- <property name="text">
- <string>&Open</string>
- </property>
- </action>
- <action name="action_ViewLog">
- <property name="checkable">
- <bool>true</bool>
- </property>
- <property name="checked">
- <bool>false</bool>
- </property>
- <property name="icon">
- <iconset>
- <normaloff>:/ScriptCanvasEditorResources/Resources/scriptcanvas_log.png</normaloff>:/ScriptCanvasEditorResources/Resources/scriptcanvas_log.png</iconset>
- </property>
- <property name="text">
- <string>Log</string>
- </property>
- <property name="shortcut">
- <string>Ctrl+L</string>
- </property>
- <property name="autoRepeat">
- <bool>false</bool>
- </property>
- <property name="visible">
- <bool>false</bool>
- </property>
- </action>
- <action name="action_ViewCommandLine">
- <property name="checkable">
- <bool>true</bool>
- </property>
- <property name="checked">
- <bool>false</bool>
- </property>
- <property name="icon">
- <iconset resource="ScriptCanvasEditorResources.qrc">
- <normaloff>:/ScriptCanvasEditorResources/Resources/scriptcanvas_commandline.png</normaloff>:/ScriptCanvasEditorResources/Resources/scriptcanvas_commandline.png</iconset>
- </property>
- <property name="text">
- <string>Command Line (Experimental)</string>
- </property>
- <property name="shortcut">
- <string>Ctrl+P</string>
- </property>
- <property name="autoRepeat">
- <bool>false</bool>
- </property>
- <property name="visible">
- <bool>false</bool>
- </property>
- </action>
- <action name="action_ViewNodePalette">
- <property name="checkable">
- <bool>true</bool>
- </property>
- <property name="checked">
- <bool>true</bool>
- </property>
- <property name="text">
- <string>Node Palette</string>
- </property>
- <property name="shortcut">
- <string>Ctrl+Shift+L</string>
- </property>
- <property name="autoRepeat">
- <bool>false</bool>
- </property>
- </action>
- <action name="action_ViewOutline">
- <property name="checkable">
- <bool>true</bool>
- </property>
- <property name="checked">
- <bool>true</bool>
- </property>
- <property name="text">
- <string>&Node Outliner</string>
- </property>
- <property name="shortcut">
- <string>Ctrl+Shift+O</string>
- </property>
- <property name="autoRepeat">
- <bool>false</bool>
- </property>
- </action>
- <action name="action_ViewDynamicEBusAssets">
- <property name="checkable">
- <bool>true</bool>
- </property>
- <property name="checked">
- <bool>true</bool>
- </property>
- <property name="text">
- <string>&Dynamic EBus</string>
- </property>
- <property name="shortcut">
- <string>Ctrl+Shift+E</string>
- </property>
- <property name="autoRepeat">
- <bool>false</bool>
- </property>
- </action>
- <action name="action_ViewProperties">
- <property name="checkable">
- <bool>true</bool>
- </property>
- <property name="checked">
- <bool>true</bool>
- </property>
- <property name="text">
- <string>Node Inspector</string>
- </property>
- <property name="shortcut">
- <string>Ctrl+Shift+I</string>
- </property>
- <property name="autoRepeat">
- <bool>false</bool>
- </property>
- </action>
- <action name="action_ViewDebugger">
- <property name="checkable">
- <bool>true</bool>
- </property>
- <property name="checked">
- <bool>true</bool>
- </property>
- <property name="icon">
- <iconset resource="ScriptCanvasEditorResources.qrc">
- <normaloff>:/ScriptCanvasEditorResources/Resources/scriptcanvas_debugger_off.png</normaloff>
- <disabledoff>:/ScriptCanvasEditorResources/Resources/scriptcanvas_debugger.png</disabledoff>
- <disabledon>:/ScriptCanvasEditorResources/Resources/scriptcanvas_debugger_off.png</disabledon>:/ScriptCanvasEditorResources/Resources/scriptcanvas_debugger_off.png</iconset>
- </property>
- <property name="text">
- <string>&Debugger</string>
- </property>
- <property name="shortcut">
- <string>Ctrl+Shift+D</string>
- </property>
- <property name="autoRepeat">
- <bool>false</bool>
- </property>
- <property name="visible">
- <bool>false</bool>
- </property>
- </action>
- <action name="action_ViewRestoreDefaultLayout">
- <property name="text">
- <string>Restore Default Layout</string>
- </property>
- </action>
- <action name="action_Close">
- <property name="text">
- <string>Close Graph</string>
- </property>
- </action>
- <action name="action_Undo">
- <property name="enabled">
- <bool>false</bool>
- </property>
- <property name="text">
- <string>Undo</string>
- </property>
- <property name="autoRepeat">
- <bool>false</bool>
- </property>
- </action>
- <action name="action_Redo">
- <property name="enabled">
- <bool>false</bool>
- </property>
- <property name="text">
- <string>Redo</string>
- </property>
- <property name="shortcut">
- <string>Ctrl+Shift+Z</string>
- </property>
- <property name="autoRepeat">
- <bool>false</bool>
- </property>
- </action>
- <action name="action_Cut">
- <property name="enabled">
- <bool>false</bool>
- </property>
- <property name="text">
- <string>Cut</string>
- </property>
- <property name="autoRepeat">
- <bool>false</bool>
- </property>
- </action>
- <action name="action_Copy">
- <property name="enabled">
- <bool>false</bool>
- </property>
- <property name="text">
- <string>Copy</string>
- </property>
- <property name="autoRepeat">
- <bool>false</bool>
- </property>
- </action>
- <action name="action_Paste">
- <property name="enabled">
- <bool>false</bool>
- </property>
- <property name="text">
- <string>Paste</string>
- </property>
- <property name="autoRepeat">
- <bool>false</bool>
- </property>
- </action>
- <action name="action_Duplicate">
- <property name="enabled">
- <bool>false</bool>
- </property>
- <property name="text">
- <string>Duplicate</string>
- </property>
- <property name="shortcut">
- <string>Ctrl+D</string>
- </property>
- <property name="shortcutContext">
- <enum>Qt::WidgetWithChildrenShortcut</enum>
- </property>
- <property name="autoRepeat">
- <bool>false</bool>
- </property>
- </action>
- <action name="action_Delete">
- <property name="enabled">
- <bool>false</bool>
- </property>
- <property name="text">
- <string>Delete</string>
- </property>
- <property name="shortcutContext">
- <enum>Qt::WidgetWithChildrenShortcut</enum>
- </property>
- <property name="autoRepeat">
- <bool>false</bool>
- </property>
- </action>
- <action name="action_GlobalPreferences">
- <property name="text">
- <string>Global Preferences</string>
- </property>
- </action>
- <action name="action_GraphPreferences">
- <property name="enabled">
- <bool>false</bool>
- </property>
- <property name="text">
- <string>Graph Preferences</string>
- </property>
- </action>
- <action name="action_ViewGraphOutliner">
- <property name="checkable">
- <bool>true</bool>
- </property>
- <property name="checked">
- <bool>true</bool>
- </property>
- <property name="text">
- <string>GraphOutliner</string>
- </property>
- <property name="shortcut">
- <string>Ctrl+F</string>
- </property>
- <property name="autoRepeat">
- <bool>false</bool>
- </property>
- </action>
- <action name="action_ViewBookmarks">
- <property name="checkable">
- <bool>true</bool>
- </property>
- <property name="checked">
- <bool>true</bool>
- </property>
- <property name="text">
- <string>Bookmarks</string>
- </property>
- <property name="shortcut">
- <string>Ctrl+Shift+B</string>
- </property>
- <property name="autoRepeat">
- <bool>false</bool>
- </property>
- </action>
- <action name="action_ViewMiniMap">
- <property name="checkable">
- <bool>true</bool>
- </property>
- <property name="checked">
- <bool>true</bool>
- </property>
- <property name="text">
- <string>&MiniMap</string>
- </property>
- <property name="shortcut">
- <string>Ctrl+Shift+M</string>
- </property>
- <property name="autoRepeat">
- <bool>false</bool>
- </property>
- </action>
- <action name="action_ViewVariableManager">
- <property name="checkable">
- <bool>true</bool>
- </property>
- <property name="checked">
- <bool>true</bool>
- </property>
- <property name="text">
- <string>Variable Manager</string>
- </property>
- <property name="shortcut">
- <string>Ctrl+Shift+V</string>
- </property>
- <property name="autoRepeat">
- <bool>false</bool>
- </property>
- </action>
- <action name="action_ViewLogWindow">
- <property name="checkable">
- <bool>true</bool>
- </property>
- <property name="text">
- <string>&Log</string>
- </property>
- </action>
- <action name="action_GraphValidation">
- <property name="checkable">
- <bool>true</bool>
- </property>
- <property name="checked">
- <bool>true</bool>
- </property>
- <property name="text">
- <string>Graph Validation</string>
- </property>
- </action>
- <action name="action_ViewUnitTestManager">
- <property name="checkable">
- <bool>false</bool>
- </property>
- <property name="checked">
- <bool>false</bool>
- </property>
- <property name="enabled">
- <bool>false</bool>
- </property>
- <property name="text">
- <string>Test Manager</string>
- </property>
- <property name="shortcut">
- <string>Ctrl+Shift+T</string>
- </property>
- <property name="autoRepeat">
- <bool>false</bool>
- </property>
- </action>
- <action name="action_Debugging">
- <property name="checkable">
- <bool>true</bool>
- </property>
- <property name="checked">
- <bool>false</bool>
- </property>
- <property name="text">
- <string>Debugging</string>
- </property>
- </action>
- <action name="action_NodeStatistics">
- <property name="text">
- <string>Statistics</string>
- </property>
- </action>
- <action name="action_RemoveUnusedNodes">
- <property name="enabled">
- <bool>false</bool>
- </property>
- <property name="text">
- <string>Nodes</string>
- </property>
- <property name="toolTip">
- <string>Removes all unused nodes from the active graph</string>
- </property>
- </action>
- <action name="action_RemoveUnusedVariables">
- <property name="enabled">
- <bool>false</bool>
- </property>
- <property name="text">
- <string>Variables</string>
- </property>
- <property name="toolTip">
- <string>Removes all unused variables from the active graph</string>
- </property>
- </action>
- <action name="action_RemoveUnusedElements">
- <property name="enabled">
- <bool>false</bool>
- </property>
- <property name="text">
- <string>All</string>
- </property>
- <property name="toolTip">
- <string>Removes all unused elements from the active graph</string>
- </property>
- </action>
- <action name="action_PresetsEditor">
- <property name="text">
- <string>Presets Editor</string>
- </property>
- </action>
- <action name="action_UpgradeTool">
- <property name="text">
- <string>Upgrade Graphs</string>
- </property>
- <property name="toolTip">
- <string>Utility tool to upgrade the active project's Script Canvas graphs.</string>
- </property>
- </action>
- <action name="action_GraphRecreator">
- <property name="text">
- <string>Graph Recreator</string>
- </property>
- <property name="toolTip">
- <string>Will recreate the specified directory of graphs in a new target location.</string>
- </property>
- </action>
- <action name="action_Screenshot">
- <property name="text">
- <string>Screenshot</string>
- </property>
- <property name="toolTip">
- <string>Takes a picture of the current selection in the active graph, or the entire graph if there is no selection.</string>
- </property>
- <property name="shortcut">
- <string>Ctrl+Shift+P</string>
- </property>
- <property name="autoRepeat">
- <bool>false</bool>
- </property>
- </action>
- <action name="action_SelectInputs">
- <property name="text">
- <string>Inputs</string>
- </property>
- <property name="toolTip">
- <string>Selects all of the nodes that are connected to the current selection via input connections</string>
- </property>
- <property name="shortcut">
- <string>Ctrl+Left</string>
- </property>
- </action>
- <action name="action_SelectOutputs">
- <property name="text">
- <string>Outputs</string>
- </property>
- <property name="shortcut">
- <string>Ctrl+Right</string>
- </property>
- </action>
- <action name="action_SelectConnected">
- <property name="text">
- <string>Connected</string>
- </property>
- <property name="shortcut">
- <string>Ctrl+Up</string>
- </property>
- </action>
- <action name="action_ShowEntireGraph">
- <property name="text">
- <string>Show Entire Graph</string>
- </property>
- <property name="shortcut">
- <string>Ctrl+Shift+Down</string>
- </property>
- </action>
- <action name="action_ZoomIn">
- <property name="text">
- <string>Zoom In</string>
- </property>
- <property name="shortcut">
- <string>Ctrl++</string>
- </property>
- </action>
- <action name="action_ZoomOut">
- <property name="text">
- <string>Zoom Out</string>
- </property>
- <property name="shortcut">
- <string>Ctrl+-</string>
- </property>
- </action>
- <action name="action_AlignLeft">
- <property name="text">
- <string>Align Left</string>
- </property>
- <property name="shortcut">
- <string>Shift+Left</string>
- </property>
- <property name="enabled">
- <bool>false</bool>
- </property>
- </action>
- <action name="action_AlignRight">
- <property name="text">
- <string>Align Right</string>
- </property>
- <property name="shortcut">
- <string>Shift+Right</string>
- </property>
- <property name="enabled">
- <bool>false</bool>
- </property>
- </action>
- <action name="action_AlignTop">
- <property name="text">
- <string>Align Top</string>
- </property>
- <property name="shortcut">
- <string>Shift+Up</string>
- </property>
- <property name="enabled">
- <bool>false</bool>
- </property>
- </action>
- <action name="action_AlignBottom">
- <property name="text">
- <string>Align Bottom</string>
- </property>
- <property name="shortcut">
- <string>Shift+Down</string>
- </property>
- <property name="enabled">
- <bool>false</bool>
- </property>
- </action>
- <action name="action_SelectAll">
- <property name="text">
- <string>All</string>
- </property>
- <property name="toolTip">
- <string>Select All of the Nodes in the currently active graph</string>
- </property>
- <property name="shortcut">
- <string>Ctrl+A</string>
- </property>
- </action>
- <action name="actionNone">
- <property name="text">
- <string>None</string>
- </property>
- </action>
- <action name="action_ClearSelection">
- <property name="text">
- <string>Clear Selection</string>
- </property>
- <property name="shortcut">
- <string>Esc</string>
- </property>
- <property name="enabled">
- <bool>false</bool>
- </property>
- </action>
- <action name="action_GotoStartOfChain">
- <property name="text">
- <string>Start of Chain</string>
- </property>
- <property name="shortcut">
- <string>Ctrl+Shift+Left</string>
- </property>
- <property name="enabled">
- <bool>false</bool>
- </property>
- </action>
- <action name="action_GotoEndOfChain">
- <property name="text">
- <string>End of Chain</string>
- </property>
- <property name="shortcut">
- <string>Ctrl+Shift+Right</string>
- </property>
- <property name="enabled">
- <bool>false</bool>
- </property>
- </action>
- <action name="actionZoom_To">
- <property name="text">
- <string>Zoom Selection</string>
- </property>
- </action>
- <action name="action_ZoomSelection">
- <property name="text">
- <string>Show Selection</string>
- </property>
- <property name="shortcut">
- <string>Ctrl+Shift+Up</string>
- </property>
- <property name="enabled">
- <bool>false</bool>
- </property>
- </action>
- <action name="action_EnableSelection">
- <property name="text">
- <string>Enable Selection</string>
- </property>
- <property name="shortcut">
- <string>Ctrl+K, Ctrl+U</string>
- </property>
- <property name="enabled">
- <bool>false</bool>
- </property>
- </action>
- <action name="action_DisableSelection">
- <property name="text">
- <string>Disable Selection</string>
- </property>
- <property name="shortcut">
- <string>Ctrl+K, Ctrl+C</string>
- </property>
- <property name="enabled">
- <bool>false</bool>
- </property>
- </action>
- <action name="actionEditor_Graph">
- <property name="text">
- <string>Editor Graph</string>
- </property>
- </action>
- <action name="action_Interpreter">
- <property name="text">
- <string>Interpreter</string>
- </property>
- </action>
- <action name="actionOpen_Script_Event">
- <property name="text">
- <string>&Open ...</string>
- </property>
- </action>
- <addaction name="action_ViewNodePalette"/>
- <addaction name="action_ViewOutline"/>
- <addaction name="action_ViewDynamicEBusAssets"/>
- <addaction name="action_ViewProperties"/>
- <addaction name="action_ViewDebugger"/>
- <addaction name="action_ViewCommandLine"/>
- <addaction name="action_ViewRestoreDefaultLayout"/>
- </widget>
- <resources>
- <include location="ScriptCanvasEditorResources.qrc"/>
- <include location="../../../../../GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/Resources/GraphCanvasEditorResources.qrc"/>
- </resources>
- <connections/>
- </ui>
|