123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160 |
- <?xml version="1.0" encoding="UTF-8"?>
- <ui version="4.0">
- <class>WindowMain</class>
- <widget class="QMainWindow" name="WindowMain">
- <property name="geometry">
- <rect>
- <x>0</x>
- <y>0</y>
- <width>924</width>
- <height>658</height>
- </rect>
- </property>
- <property name="windowTitle">
- <string>MainWindow</string>
- </property>
- <widget class="QWidget" name="centralwidget">
- <layout class="QGridLayout" name="gridLayout">
- <property name="leftMargin">
- <number>0</number>
- </property>
- <property name="topMargin">
- <number>0</number>
- </property>
- <property name="rightMargin">
- <number>0</number>
- </property>
- <property name="bottomMargin">
- <number>0</number>
- </property>
- <property name="spacing">
- <number>0</number>
- </property>
- </layout>
- </widget>
- <widget class="QToolBar" name="mainToolBar">
- <property name="enabled">
- <bool>true</bool>
- </property>
- <property name="movable">
- <bool>true</bool>
- </property>
- <property name="toolButtonStyle">
- <enum>Qt::ToolButtonFollowStyle</enum>
- </property>
- <property name="floatable">
- <bool>true</bool>
- </property>
- <attribute name="toolBarArea">
- <enum>TopToolBarArea</enum>
- </attribute>
- <attribute name="toolBarBreak">
- <bool>false</bool>
- </attribute>
- <addaction name="action_new"/>
- <addaction name="action_open"/>
- <addaction name="action_save"/>
- <addaction name="separator"/>
- <addaction name="action_runtime"/>
- <addaction name="action_app"/>
- <addaction name="separator"/>
- <addaction name="action_run"/>
- <addaction name="action_runonce"/>
- <addaction name="action_stop"/>
- </widget>
- <widget class="QStatusBar" name="statusbar"/>
- <action name="action_new">
- <property name="icon">
- <iconset resource="qss.qrc">
- <normaloff>:/image/New.png</normaloff>:/image/New.png</iconset>
- </property>
- <property name="text">
- <string>创建新项目</string>
- </property>
- <property name="toolTip">
- <string>创建新项目</string>
- </property>
- </action>
- <action name="action_open">
- <property name="icon">
- <iconset resource="qss.qrc">
- <normaloff>:/image/Open.png</normaloff>:/image/Open.png</iconset>
- </property>
- <property name="text">
- <string>打开项目</string>
- </property>
- <property name="toolTip">
- <string>打开项目</string>
- </property>
- </action>
- <action name="action_save">
- <property name="icon">
- <iconset resource="qss.qrc">
- <normaloff>:/image/Save.png</normaloff>:/image/Save.png</iconset>
- </property>
- <property name="text">
- <string>保存项目</string>
- </property>
- <property name="toolTip">
- <string>保存项目</string>
- </property>
- </action>
- <action name="action_runtime">
- <property name="icon">
- <iconset resource="qss.qrc">
- <normaloff>:/image/runtime.png</normaloff>:/image/runtime.png</iconset>
- </property>
- <property name="text">
- <string>运行页面</string>
- </property>
- </action>
- <action name="action_app">
- <property name="icon">
- <iconset resource="qss.qrc">
- <normaloff>:/image/app.png</normaloff>:/image/app.png</iconset>
- </property>
- <property name="text">
- <string>程序</string>
- </property>
- </action>
- <action name="action_run">
- <property name="icon">
- <iconset resource="qss.qrc">
- <normaloff>:/image/toolrun.png</normaloff>:/image/toolrun.png</iconset>
- </property>
- <property name="text">
- <string>系统运行</string>
- </property>
- </action>
- <action name="action_runonce">
- <property name="icon">
- <iconset resource="qss.qrc">
- <normaloff>:/image/toolrunonce.png</normaloff>:/image/toolrunonce.png</iconset>
- </property>
- <property name="text">
- <string>系统运行一次</string>
- </property>
- <property name="toolTip">
- <string>系统运行一次</string>
- </property>
- </action>
- <action name="action_stop">
- <property name="icon">
- <iconset resource="qss.qrc">
- <normaloff>:/image/toolstop.png</normaloff>:/image/toolstop.png</iconset>
- </property>
- <property name="text">
- <string>系统停止</string>
- </property>
- <property name="toolTip">
- <string>系统停止</string>
- </property>
- </action>
- </widget>
- <layoutdefault spacing="6" margin="11"/>
- <resources>
- <include location="qss.qrc"/>
- </resources>
- <connections/>
- </ui>
|