| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879 |
- <?xml version="1.0" encoding="UTF-8"?>
- <ui version="4.0">
- <class>WordEdit</class>
- <widget class="QWidget" name="WordEdit">
- <property name="geometry">
- <rect>
- <x>0</x>
- <y>0</y>
- <width>1070</width>
- <height>660</height>
- </rect>
- </property>
- <property name="windowTitle">
- <string>文本编辑器</string>
- </property>
- <widget class="QPlainTextEdit" name="plainTextEdit">
- <property name="geometry">
- <rect>
- <x>170</x>
- <y>80</y>
- <width>571</width>
- <height>431</height>
- </rect>
- </property>
- </widget>
- <action name="fileOpen">
- <property name="icon">
- <iconset resource="qrc.qrc">
- <normaloff>:/new/prefix1/images/open.png</normaloff>:/new/prefix1/images/open.png</iconset>
- </property>
- <property name="text">
- <string>打开</string>
- </property>
- <property name="toolTip">
- <string>打开文档</string>
- </property>
- </action>
- <action name="closeAction">
- <property name="icon">
- <iconset resource="qrc.qrc">
- <normaloff>:/new/prefix1/images/close.png</normaloff>:/new/prefix1/images/close.png</iconset>
- </property>
- <property name="text">
- <string>关闭</string>
- </property>
- <property name="toolTip">
- <string>关闭窗口</string>
- </property>
- </action>
- <action name="saveAction">
- <property name="icon">
- <iconset resource="qrc.qrc">
- <normaloff>:/new/prefix1/images/save.ico</normaloff>:/new/prefix1/images/save.ico</iconset>
- </property>
- <property name="text">
- <string>保存</string>
- </property>
- <property name="toolTip">
- <string>保存文件</string>
- </property>
- </action>
- <action name="saveAsAction">
- <property name="icon">
- <iconset resource="qrc.qrc">
- <normaloff>:/new/prefix1/images/saveas.png</normaloff>:/new/prefix1/images/saveas.png</iconset>
- </property>
- <property name="text">
- <string>另存为</string>
- </property>
- <property name="toolTip">
- <string>另存为</string>
- </property>
- </action>
- </widget>
- <resources>
- <include location="qrc.qrc"/>
- </resources>
- <connections/>
- </ui>
|