123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293 |
- <?xml version="1.0" encoding="UTF-8"?>
- <ui version="4.0">
- <class>simplenotepad</class>
- <widget class="QMainWindow" name="simplenotepad">
- <property name="geometry">
- <rect>
- <x>0</x>
- <y>0</y>
- <width>600</width>
- <height>600</height>
- </rect>
- </property>
- <property name="windowTitle">
- <string>simplenotepad</string>
- </property>
- <widget class="QWidget" name="centralwidget">
- <layout class="QHBoxLayout" name="horizontalLayout">
- <item>
- <widget class="QTextEdit" name="textEdit"/>
- </item>
- </layout>
- </widget>
- <widget class="QStatusBar" name="statusbar"/>
- <widget class="QMenuBar" name="menubar">
- <property name="geometry">
- <rect>
- <x>0</x>
- <y>0</y>
- <width>600</width>
- <height>20</height>
- </rect>
- </property>
- <widget class="QMenu" name="menuFile">
- <property name="title">
- <string>File</string>
- </property>
- <addaction name="actionNew"/>
- <addaction name="actionOpen"/>
- <addaction name="actionSave_as"/>
- </widget>
- <widget class="QMenu" name="menuEdit">
- <property name="title">
- <string>Edit</string>
- </property>
- <addaction name="actionCopy"/>
- <addaction name="actionPaste"/>
- <addaction name="separator"/>
- <addaction name="actionGo_to_begin"/>
- <addaction name="actionGo_to_end"/>
- </widget>
- <addaction name="menuFile"/>
- <addaction name="menuEdit"/>
- </widget>
- <action name="actionSave_as">
- <property name="text">
- <string>Save as</string>
- </property>
- </action>
- <action name="actionOpen">
- <property name="text">
- <string>Open</string>
- </property>
- </action>
- <action name="actionCopy">
- <property name="text">
- <string>Copy</string>
- </property>
- </action>
- <action name="actionPaste">
- <property name="text">
- <string>Paste</string>
- </property>
- </action>
- <action name="actionNew">
- <property name="text">
- <string>New</string>
- </property>
- </action>
- <action name="actionGo_to_begin">
- <property name="text">
- <string>Go to begin</string>
- </property>
- </action>
- <action name="actionGo_to_end">
- <property name="text">
- <string>Go to end</string>
- </property>
- </action>
- </widget>
- <resources/>
- <connections/>
- </ui>
|