src/eric7/MicroPython/WifiDialogs/WifiConnectionDialog.ui

branch
mpy_network
changeset 9776
210bf87ae5c7
child 10153
ffe7432f716b
equal deleted inserted replaced
9775:c6806d24468b 9776:210bf87ae5c7
1 <?xml version="1.0" encoding="UTF-8"?>
2 <ui version="4.0">
3 <class>WifiConnectionDialog</class>
4 <widget class="QDialog" name="WifiConnectionDialog">
5 <property name="geometry">
6 <rect>
7 <x>0</x>
8 <y>0</y>
9 <width>400</width>
10 <height>138</height>
11 </rect>
12 </property>
13 <property name="windowTitle">
14 <string>WiFi Connection Parameters</string>
15 </property>
16 <property name="sizeGripEnabled">
17 <bool>true</bool>
18 </property>
19 <layout class="QGridLayout" name="gridLayout">
20 <item row="0" column="0">
21 <widget class="QLabel" name="label">
22 <property name="text">
23 <string>Name:</string>
24 </property>
25 </widget>
26 </item>
27 <item row="0" column="1" colspan="2">
28 <widget class="QLineEdit" name="ssidEdit">
29 <property name="toolTip">
30 <string>Enter the network name (SSID) to connect to</string>
31 </property>
32 <property name="clearButtonEnabled">
33 <bool>true</bool>
34 </property>
35 </widget>
36 </item>
37 <item row="1" column="0">
38 <widget class="QLabel" name="label_2">
39 <property name="text">
40 <string>Password:</string>
41 </property>
42 </widget>
43 </item>
44 <item row="1" column="1">
45 <widget class="QLineEdit" name="passwordEdit">
46 <property name="toolTip">
47 <string>Enter the network password</string>
48 </property>
49 <property name="echoMode">
50 <enum>QLineEdit::Password</enum>
51 </property>
52 <property name="clearButtonEnabled">
53 <bool>true</bool>
54 </property>
55 </widget>
56 </item>
57 <item row="1" column="2">
58 <widget class="QToolButton" name="showPasswordButton">
59 <property name="toolTip">
60 <string>Press to show the password</string>
61 </property>
62 <property name="checkable">
63 <bool>true</bool>
64 </property>
65 </widget>
66 </item>
67 <item row="2" column="0" colspan="3">
68 <widget class="QCheckBox" name="rememberCheckBox">
69 <property name="toolTip">
70 <string>Select to remember the entered connection parameters</string>
71 </property>
72 <property name="text">
73 <string>Remember Parameters</string>
74 </property>
75 </widget>
76 </item>
77 <item row="3" column="0" colspan="3">
78 <widget class="QDialogButtonBox" name="buttonBox">
79 <property name="orientation">
80 <enum>Qt::Horizontal</enum>
81 </property>
82 <property name="standardButtons">
83 <set>QDialogButtonBox::Cancel|QDialogButtonBox::Ok</set>
84 </property>
85 </widget>
86 </item>
87 </layout>
88 </widget>
89 <tabstops>
90 <tabstop>ssidEdit</tabstop>
91 <tabstop>passwordEdit</tabstop>
92 <tabstop>showPasswordButton</tabstop>
93 </tabstops>
94 <resources/>
95 <connections>
96 <connection>
97 <sender>buttonBox</sender>
98 <signal>accepted()</signal>
99 <receiver>WifiConnectionDialog</receiver>
100 <slot>accept()</slot>
101 <hints>
102 <hint type="sourcelabel">
103 <x>248</x>
104 <y>254</y>
105 </hint>
106 <hint type="destinationlabel">
107 <x>157</x>
108 <y>274</y>
109 </hint>
110 </hints>
111 </connection>
112 <connection>
113 <sender>buttonBox</sender>
114 <signal>rejected()</signal>
115 <receiver>WifiConnectionDialog</receiver>
116 <slot>reject()</slot>
117 <hints>
118 <hint type="sourcelabel">
119 <x>316</x>
120 <y>260</y>
121 </hint>
122 <hint type="destinationlabel">
123 <x>286</x>
124 <y>274</y>
125 </hint>
126 </hints>
127 </connection>
128 </connections>
129 </ui>

eric ide

mercurial