-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathmainwindow.ui
84 lines (84 loc) · 1.71 KB
/
mainwindow.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
<?xml version="1.0" encoding="UTF-8"?>
<ui version="4.0">
<class>MainWindow</class>
<widget class="QWidget" name="MainWindow">
<property name="geometry">
<rect>
<x>0</x>
<y>0</y>
<width>480</width>
<height>272</height>
</rect>
</property>
<property name="windowTitle">
<string>Form</string>
</property>
<widget class="QPushButton" name="bt_Server">
<property name="geometry">
<rect>
<x>270</x>
<y>90</y>
<width>121</width>
<height>91</height>
</rect>
</property>
<property name="text">
<string>Server</string>
</property>
</widget>
<widget class="QPushButton" name="bt_Client">
<property name="geometry">
<rect>
<x>80</x>
<y>90</y>
<width>121</width>
<height>91</height>
</rect>
</property>
<property name="text">
<string>Client</string>
</property>
</widget>
</widget>
<resources/>
<connections>
<connection>
<sender>bt_Server</sender>
<signal>clicked()</signal>
<receiver>MainWindow</receiver>
<slot>creatServer()</slot>
<hints>
<hint type="sourcelabel">
<x>400</x>
<y>180</y>
</hint>
<hint type="destinationlabel">
<x>141</x>
<y>223</y>
</hint>
</hints>
</connection>
<connection>
<sender>bt_Client</sender>
<signal>clicked()</signal>
<receiver>MainWindow</receiver>
<slot>creatClient()</slot>
<hints>
<hint type="sourcelabel">
<x>406</x>
<y>70</y>
</hint>
<hint type="destinationlabel">
<x>356</x>
<y>230</y>
</hint>
</hints>
</connection>
</connections>
<slots>
<slot>creatServer()</slot>
<slot>creatClient()</slot>
<slot>connectWifi()</slot>
<slot>disconnectWifi()</slot>
</slots>
</ui>