-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmainwindow.ui
More file actions
113 lines (113 loc) · 2.43 KB
/
mainwindow.ui
File metadata and controls
113 lines (113 loc) · 2.43 KB
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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
<?xml version="1.0" encoding="UTF-8"?>
<ui version="4.0">
<class>MainWindow</class>
<widget class="QMainWindow" name="MainWindow">
<property name="geometry">
<rect>
<x>0</x>
<y>0</y>
<width>580</width>
<height>507</height>
</rect>
</property>
<property name="minimumSize">
<size>
<width>580</width>
<height>507</height>
</size>
</property>
<property name="maximumSize">
<size>
<width>580</width>
<height>507</height>
</size>
</property>
<property name="windowTitle">
<string>Messenger</string>
</property>
<property name="styleSheet">
<string notr="true">QMainWindow{
background-color:#FFF;
}
QLineEdit {
border: 1px solid #B1B1B1;
border-radius:8px;
background-color: #F0F0F0;
color: #6F6F6F;
font-family: "Helvetica";
font-size: 16px;
padding:5px;
}
QPushButton{
border: 1px solid #DADADA;
border-radius: 8px;
background-color: #488E46;
color: #FFF;
font-family: "Helvetica";
font-size: 16px;
}</string>
</property>
<widget class="QWidget" name="centralwidget">
<widget class="QPushButton" name="pushButton">
<property name="geometry">
<rect>
<x>201</x>
<y>293</y>
<width>178</width>
<height>38</height>
</rect>
</property>
<property name="text">
<string>Connect</string>
</property>
</widget>
<widget class="QLabel" name="label">
<property name="geometry">
<rect>
<x>195</x>
<y>134</y>
<width>191</width>
<height>19</height>
</rect>
</property>
<property name="font">
<font>
<family>Helvetica</family>
<pointsize>16</pointsize>
</font>
</property>
<property name="text">
<string>Your ip is 255.255.255.255</string>
</property>
</widget>
<widget class="QLineEdit" name="lineEdit">
<property name="geometry">
<rect>
<x>201</x>
<y>171</y>
<width>178</width>
<height>43</height>
</rect>
</property>
<property name="placeholderText">
<string>Enter your username</string>
</property>
</widget>
<widget class="QLineEdit" name="lineEdit_2">
<property name="geometry">
<rect>
<x>201</x>
<y>232</y>
<width>178</width>
<height>43</height>
</rect>
</property>
<property name="placeholderText">
<string>Enter your friend ip</string>
</property>
</widget>
</widget>
</widget>
<resources/>
<connections/>
</ui>