src/eric7/MicroPython/WifiDialogs/WifiApConfigDialog.ui

branch
mpy_network
changeset 9787
163511257f24
child 9797
3be7b2326e2c
equal deleted inserted replaced
9783:5f84d5eeee9e 9787:163511257f24
1 <?xml version="1.0" encoding="UTF-8"?>
2 <ui version="4.0">
3 <class>WifiApConfigDialog</class>
4 <widget class="QDialog" name="WifiApConfigDialog">
5 <property name="geometry">
6 <rect>
7 <x>0</x>
8 <y>0</y>
9 <width>400</width>
10 <height>172</height>
11 </rect>
12 </property>
13 <property name="windowTitle">
14 <string>Access Point Configuration</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_10">
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="apSsidEdit">
29 <property name="toolTip">
30 <string>Enter the network name (SSID) to publish</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_12">
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="apPasswordEdit">
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="apShowPasswordButton">
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">
68 <widget class="QLabel" name="label_23">
69 <property name="text">
70 <string>Security:</string>
71 </property>
72 </widget>
73 </item>
74 <item row="2" column="1" colspan="2">
75 <layout class="QHBoxLayout" name="horizontalLayout_6">
76 <item>
77 <widget class="QComboBox" name="apSecurityComboBox">
78 <property name="toolTip">
79 <string>Select the security mode</string>
80 </property>
81 </widget>
82 </item>
83 <item>
84 <spacer name="horizontalSpacer_3">
85 <property name="orientation">
86 <enum>Qt::Horizontal</enum>
87 </property>
88 <property name="sizeHint" stdset="0">
89 <size>
90 <width>40</width>
91 <height>20</height>
92 </size>
93 </property>
94 </spacer>
95 </item>
96 </layout>
97 </item>
98 <item row="3" column="0" colspan="3">
99 <widget class="QCheckBox" name="rememberCheckBox">
100 <property name="toolTip">
101 <string>Select to remember the entered connection parameters</string>
102 </property>
103 <property name="text">
104 <string>Remember Parameters</string>
105 </property>
106 </widget>
107 </item>
108 <item row="4" column="0" colspan="3">
109 <widget class="QDialogButtonBox" name="buttonBox">
110 <property name="orientation">
111 <enum>Qt::Horizontal</enum>
112 </property>
113 <property name="standardButtons">
114 <set>QDialogButtonBox::Cancel|QDialogButtonBox::Ok</set>
115 </property>
116 </widget>
117 </item>
118 </layout>
119 </widget>
120 <tabstops>
121 <tabstop>apSsidEdit</tabstop>
122 <tabstop>apPasswordEdit</tabstop>
123 <tabstop>apShowPasswordButton</tabstop>
124 <tabstop>apSecurityComboBox</tabstop>
125 <tabstop>rememberCheckBox</tabstop>
126 </tabstops>
127 <resources/>
128 <connections>
129 <connection>
130 <sender>buttonBox</sender>
131 <signal>accepted()</signal>
132 <receiver>WifiApConfigDialog</receiver>
133 <slot>accept()</slot>
134 <hints>
135 <hint type="sourcelabel">
136 <x>248</x>
137 <y>254</y>
138 </hint>
139 <hint type="destinationlabel">
140 <x>157</x>
141 <y>274</y>
142 </hint>
143 </hints>
144 </connection>
145 <connection>
146 <sender>buttonBox</sender>
147 <signal>rejected()</signal>
148 <receiver>WifiApConfigDialog</receiver>
149 <slot>reject()</slot>
150 <hints>
151 <hint type="sourcelabel">
152 <x>316</x>
153 <y>260</y>
154 </hint>
155 <hint type="destinationlabel">
156 <x>286</x>
157 <y>274</y>
158 </hint>
159 </hints>
160 </connection>
161 </connections>
162 </ui>

eric ide

mercurial