-
Notifications
You must be signed in to change notification settings - Fork 0
/
form1.ui
85 lines (85 loc) · 2.2 KB
/
form1.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
<!DOCTYPE UI><UI version="3.1" stdsetdef="1">
<class>Form1</class>
<widget class="QDialog">
<property name="name">
<cstring>Form1</cstring>
</property>
<property name="geometry">
<rect>
<x>0</x>
<y>0</y>
<width>600</width>
<height>480</height>
</rect>
</property>
<property name="caption">
<string>Form1</string>
</property>
<widget class="QPushButton">
<property name="name">
<cstring>pushButton1</cstring>
</property>
<property name="geometry">
<rect>
<x>390</x>
<y>390</y>
<width>51</width>
<height>31</height>
</rect>
</property>
<property name="text">
<string>X</string>
</property>
<property name="autoDefault">
<bool>false</bool>
</property>
</widget>
<widget class="QLineEdit">
<property name="name">
<cstring>lineEdit1</cstring>
</property>
<property name="geometry">
<rect>
<x>40</x>
<y>390</y>
<width>321</width>
<height>31</height>
</rect>
</property>
</widget>
<widget class="QListBox">
<property name="name">
<cstring>listBox1</cstring>
</property>
<property name="geometry">
<rect>
<x>30</x>
<y>50</y>
<width>411</width>
<height>311</height>
</rect>
</property>
</widget>
</widget>
<connections>
<connection>
<sender>pushButton1</sender>
<signal>clicked()</signal>
<receiver>listBox1</receiver>
<slot>clear()</slot>
</connection>
<connection>
<sender>lineEdit1</sender>
<signal>returnPressed()</signal>
<receiver>Form1</receiver>
<slot>AddEntry()</slot>
</connection>
</connections>
<includes>
<include location="local" impldecl="in implementation">form1.ui.h</include>
</includes>
<slots>
<slot>AddEntry()</slot>
</slots>
<layoutdefaults spacing="6" margin="11"/>
</UI>