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="geometry">
6
   <rect>
7
    <x>0</x>
8
    <y>0</y>
9
    <width>800</width>
10
    <height>600</height>
11
   </rect>
12
  </property>
13
  <property name="windowTitle">
14
   <string>MainWindow</string>
15
  </property>
16
  <widget class="QWidget" name="centralwidget">
17
   <layout class="QVBoxLayout" name="verticalLayout">
18
    <item>
19
     <widget class="QPlainTextEdit" name="plainTextEdit"/>
20
    </item>
21
   </layout>
22
  </widget>
23
  <widget class="QMenuBar" name="menubar">
24
   <property name="geometry">
25
    <rect>
26
     <x>0</x>
27
     <y>0</y>
28
     <width>800</width>
29
     <height>23</height>
30
    </rect>
31
   </property>
32
   <widget class="QMenu" name="menuFile">
33
    <property name="title">
34
     <string>File</string>
35
    </property>
36
    <addaction name="actionExit"/>
37
   </widget>
38
   <addaction name="menuFile"/>
39
  </widget>
40
  <widget class="QStatusBar" name="statusbar"/>
41
  <action name="actionExit">
42
   <property name="text">
43
    <string>Exit</string>
44
   </property>
45
  </action>
46
 </widget>
47
 <resources/>
48
 <connections>
49
  <connection>
50
   <sender>actionExit</sender>
51
   <signal>triggered()</signal>
52
   <receiver>MainWindow</receiver>
53
   <slot>close()</slot>
54
   <hints>
55
    <hint type="sourcelabel">
56
     <x>-1</x>
57
     <y>-1</y>
58
    </hint>
59
    <hint type="destinationlabel">
60
     <x>399</x>
61
     <y>299</y>
62
    </hint>
63
   </hints>
64
  </connection>
65
 </connections>
66
</ui>