src/eric7/MicroPython/WifiDialogs/WifiNetworksWindow.ui

branch
mpy_network
changeset 9781
3112f77f722b
child 9857
0122ae72618d
equal deleted inserted replaced
9779:8d3c7c991085 9781:3112f77f722b
1 <?xml version="1.0" encoding="UTF-8"?>
2 <ui version="4.0">
3 <class>WifiNetworksWindow</class>
4 <widget class="QWidget" name="WifiNetworksWindow">
5 <property name="geometry">
6 <rect>
7 <x>0</x>
8 <y>0</y>
9 <width>650</width>
10 <height>600</height>
11 </rect>
12 </property>
13 <property name="windowTitle">
14 <string>WiFi Networks</string>
15 </property>
16 <layout class="QVBoxLayout" name="verticalLayout">
17 <item>
18 <widget class="QTreeWidget" name="networkList">
19 <property name="alternatingRowColors">
20 <bool>true</bool>
21 </property>
22 <property name="selectionMode">
23 <enum>QAbstractItemView::NoSelection</enum>
24 </property>
25 <property name="rootIsDecorated">
26 <bool>false</bool>
27 </property>
28 <property name="itemsExpandable">
29 <bool>false</bool>
30 </property>
31 <property name="sortingEnabled">
32 <bool>true</bool>
33 </property>
34 <column>
35 <property name="text">
36 <string>Name</string>
37 </property>
38 </column>
39 <column>
40 <property name="text">
41 <string>Channel</string>
42 </property>
43 </column>
44 <column>
45 <property name="text">
46 <string>MAC-Address</string>
47 </property>
48 </column>
49 <column>
50 <property name="text">
51 <string>RSSI [dBm]</string>
52 </property>
53 </column>
54 <column>
55 <property name="text">
56 <string>Security</string>
57 </property>
58 </column>
59 </widget>
60 </item>
61 <item>
62 <widget class="QLabel" name="statusLabel"/>
63 </item>
64 <item>
65 <layout class="QHBoxLayout" name="horizontalLayout">
66 <item>
67 <widget class="QPushButton" name="scanButton">
68 <property name="toolTip">
69 <string>Press to scan for available WiFi networks.</string>
70 </property>
71 <property name="text">
72 <string>Scan</string>
73 </property>
74 </widget>
75 </item>
76 <item>
77 <spacer name="horizontalSpacer">
78 <property name="orientation">
79 <enum>Qt::Horizontal</enum>
80 </property>
81 <property name="sizeHint" stdset="0">
82 <size>
83 <width>40</width>
84 <height>20</height>
85 </size>
86 </property>
87 </spacer>
88 </item>
89 <item>
90 <widget class="QLabel" name="label">
91 <property name="text">
92 <string>Scan Interval:</string>
93 </property>
94 </widget>
95 </item>
96 <item>
97 <widget class="QSpinBox" name="intervalSpinBox">
98 <property name="alignment">
99 <set>Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter</set>
100 </property>
101 <property name="suffix">
102 <string> s</string>
103 </property>
104 <property name="minimum">
105 <number>5</number>
106 </property>
107 <property name="maximum">
108 <number>120</number>
109 </property>
110 <property name="value">
111 <number>15</number>
112 </property>
113 </widget>
114 </item>
115 <item>
116 <widget class="QCheckBox" name="periodicCheckBox">
117 <property name="text">
118 <string>Periodic Scan</string>
119 </property>
120 </widget>
121 </item>
122 </layout>
123 </item>
124 <item>
125 <widget class="QDialogButtonBox" name="buttonBox">
126 <property name="standardButtons">
127 <set>QDialogButtonBox::Close</set>
128 </property>
129 </widget>
130 </item>
131 </layout>
132 </widget>
133 <tabstops>
134 <tabstop>networkList</tabstop>
135 <tabstop>scanButton</tabstop>
136 </tabstops>
137 <resources/>
138 <connections>
139 <connection>
140 <sender>buttonBox</sender>
141 <signal>rejected()</signal>
142 <receiver>WifiNetworksWindow</receiver>
143 <slot>close()</slot>
144 <hints>
145 <hint type="sourcelabel">
146 <x>269</x>
147 <y>563</y>
148 </hint>
149 <hint type="destinationlabel">
150 <x>271</x>
151 <y>517</y>
152 </hint>
153 </hints>
154 </connection>
155 </connections>
156 </ui>

eric ide

mercurial