-
Notifications
You must be signed in to change notification settings - Fork 0
/
drawingform.ui
85 lines (85 loc) · 1.86 KB
/
drawingform.ui
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
<?xml version="1.0" encoding="UTF-8"?>
<ui version="4.0">
<class>DrawingForm</class>
<widget class="QMainWindow" name="DrawingForm">
<property name="geometry">
<rect>
<x>0</x>
<y>0</y>
<width>885</width>
<height>579</height>
</rect>
</property>
<property name="windowTitle">
<string>DrawingForm</string>
</property>
<widget class="QWidget" name="centralWidget">
<widget class="QPushButton" name="resetButton">
<property name="geometry">
<rect>
<x>10</x>
<y>20</y>
<width>96</width>
<height>31</height>
</rect>
</property>
<property name="text">
<string>Reset</string>
</property>
</widget>
<widget class="DrawingArea" name="drawingArea">
<property name="geometry">
<rect>
<x>115</x>
<y>21</y>
<width>761</width>
<height>551</height>
</rect>
</property>
</widget>
<widget class="QPushButton" name="closeButton">
<property name="geometry">
<rect>
<x>10</x>
<y>60</y>
<width>96</width>
<height>31</height>
</rect>
</property>
<property name="text">
<string>Close</string>
</property>
</widget>
</widget>
</widget>
<layoutdefault spacing="6" margin="11"/>
<customwidgets>
<customwidget>
<class>DrawingArea</class>
<extends>QGraphicsView</extends>
<header location="global">drawingarea.h</header>
<slots>
<slot>resetButton_clicked()</slot>
</slots>
</customwidget>
</customwidgets>
<resources/>
<connections>
<connection>
<sender>resetButton</sender>
<signal>clicked()</signal>
<receiver>drawingArea</receiver>
<slot>resetButton_clicked()</slot>
<hints>
<hint type="sourcelabel">
<x>80</x>
<y>34</y>
</hint>
<hint type="destinationlabel">
<x>135</x>
<y>40</y>
</hint>
</hints>
</connection>
</connections>
</ui>