author | wimpie <wimpie> | 2005-01-06 03:53:17 (UTC) |
---|---|---|
committer | wimpie <wimpie> | 2005-01-06 03:53:17 (UTC) |
commit | 98dd4c49f5d7a3c0569e3f6ff92f39451734070c (patch) (unidiff) | |
tree | cbe132a0ea78b67baa24f61c9fa04f1a3fcc15c9 | |
parent | 807241b7466840034a5284b0202705b096d41458 (diff) | |
download | opie-98dd4c49f5d7a3c0569e3f6ff92f39451734070c.zip opie-98dd4c49f5d7a3c0569e3f6ff92f39451734070c.tar.gz opie-98dd4c49f5d7a3c0569e3f6ff92f39451734070c.tar.bz2 |
Some more changes for NS2
updated toplevel Makefile
added new target packages-mt and packages
these replaces, render obsolete and dramatically improve : ipks ipks-mt
see separate mail
-rw-r--r-- | Makefile | 14 | ||||
-rw-r--r-- | development/performance/opie-performance.control | 1 | ||||
-rw-r--r-- | noncore/multimedia/powerchord/opie-powerchord.control | 1 | ||||
-rw-r--r-- | noncore/settings/networksettings2/opietooth2/OTMainGUI.ui | 393 | ||||
-rw-r--r-- | noncore/settings/networksettings2/opietooth2/Opietooth.cpp | 32 | ||||
-rw-r--r-- | noncore/settings/networksettings2/opietooth2/Opietooth.h | 31 | ||||
-rw-r--r-- | noncore/settings/networksettings2/opietooth2/opietooth2.pro | 2 | ||||
-rw-r--r-- | noncore/settings/packagemanager/opackagemanager.cpp | 7 |
8 files changed, 352 insertions, 129 deletions
@@ -113,24 +113,38 @@ qtmessages: | |||
113 | ifndef CONFIG_TARGET_OE | 113 | ifndef CONFIG_TARGET_OE |
114 | $(subdir-y) : $(if $(CONFIG_LIBQPE),$(QTDIR)/stamp-headers $(OPIEDIR)/stamp-headers) \ | 114 | $(subdir-y) : $(if $(CONFIG_LIBQPE),$(QTDIR)/stamp-headers $(OPIEDIR)/stamp-headers) \ |
115 | $(if $(CONFIG_LIBQPE-X11),$(QTDIR)/stamp-headers-x11 $(OPIEDIR)/stamp-headers-x11 ) \ | 115 | $(if $(CONFIG_LIBQPE-X11),$(QTDIR)/stamp-headers-x11 $(OPIEDIR)/stamp-headers-x11 ) \ |
116 | $(TOPDIR)/library/custom.h | 116 | $(TOPDIR)/library/custom.h |
117 | else | 117 | else |
118 | $(subdir-y) : $(if $(CONFIG_LIBQPE),$(OPIEDIR)/stamp-headers) $(TOPDIR)/library/custom.h | 118 | $(subdir-y) : $(if $(CONFIG_LIBQPE),$(OPIEDIR)/stamp-headers) $(TOPDIR)/library/custom.h |
119 | endif | 119 | endif |
120 | 120 | ||
121 | clean : $(TOPDIR)/.config | 121 | clean : $(TOPDIR)/.config |
122 | make -C bin clean | 122 | make -C bin clean |
123 | make -C lib clean | 123 | make -C lib clean |
124 | make -C plugins clean | 124 | make -C plugins clean |
125 | 125 | ||
126 | apidox : | 126 | apidox : |
127 | doc/generate_apidox | 127 | doc/generate_apidox |
128 | 128 | ||
129 | mrproper : clean-configs | 129 | mrproper : clean-configs |
130 | find . -name ".moc"|xargs rm -rf | 130 | find . -name ".moc"|xargs rm -rf |
131 | find . -name ".obj"|xargs rm -rf | 131 | find . -name ".obj"|xargs rm -rf |
132 | find lib -name "lib*.*"|xargs rm -f | 132 | find lib -name "lib*.*"|xargs rm -f |
133 | find plugins -name "lib*.*"|xargs rm -f | 133 | find plugins -name "lib*.*"|xargs rm -f |
134 | find . -name "*.pro"|xargs touch | 134 | find . -name "*.pro"|xargs touch |
135 | 135 | ||
136 | include $(TOPDIR)/Rules.make | 136 | include $(TOPDIR)/Rules.make |
137 | |||
138 | # to speed up (avoid include/generation of packaging rules) | ||
139 | ifneq ($(filter package%,$(MAKECMDGOALS)),) | ||
140 | |||
141 | # packaging requested | ||
142 | |||
143 | $(TOPDIR)/Package.make : | ||
144 | @echo "Generating packaging rules" | ||
145 | @$(TOPDIR)/scripts/GeneratePackageMake > $(TOPDIR)/Package.make | ||
146 | |||
147 | # load rules to make packages | ||
148 | -include $(TOPDIR)/Package.make | ||
149 | |||
150 | endif | ||
diff --git a/development/performance/opie-performance.control b/development/performance/opie-performance.control index 194b378..21c3433 100644 --- a/development/performance/opie-performance.control +++ b/development/performance/opie-performance.control | |||
@@ -1,10 +1,11 @@ | |||
1 | Package: opie-performance | ||
1 | Files: plugins/applications/libperformance.so* bin/performance apps/Applications/performance.desktop | 2 | Files: plugins/applications/libperformance.so* bin/performance apps/Applications/performance.desktop |
2 | Priority: optional | 3 | Priority: optional |
3 | Section: opie/other | 4 | Section: opie/other |
4 | Maintainer: Trolltech (www.trolltech.com) | 5 | Maintainer: Trolltech (www.trolltech.com) |
5 | Architecture: $CPU_ARCH | 6 | Architecture: $CPU_ARCH |
6 | Arch: $DEVICE_ARCH | 7 | Arch: $DEVICE_ARCH |
7 | Version: $QPE_VERSION$EXTRAVERSION | 8 | Version: $QPE_VERSION$EXTRAVERSION |
8 | Depends: opie-taskbar | 9 | Depends: opie-taskbar |
9 | Description: Graphics performance tester | 10 | Description: Graphics performance tester |
10 | Graphics performance tester for Qtopia. | 11 | Graphics performance tester for Qtopia. |
diff --git a/noncore/multimedia/powerchord/opie-powerchord.control b/noncore/multimedia/powerchord/opie-powerchord.control index 4b5bc88..490e8a2 100644 --- a/noncore/multimedia/powerchord/opie-powerchord.control +++ b/noncore/multimedia/powerchord/opie-powerchord.control | |||
@@ -1,10 +1,11 @@ | |||
1 | Package: opie-powercord | ||
1 | Files: plugins/applications/libpowerchord.so* bin/powerchord apps/Applications/powerchord.desktop pics/powerchord share/powerchord | 2 | Files: plugins/applications/libpowerchord.so* bin/powerchord apps/Applications/powerchord.desktop pics/powerchord share/powerchord |
2 | Priority: optional | 3 | Priority: optional |
3 | Section: opie/multimedia | 4 | Section: opie/multimedia |
4 | Maintainer: Camilo Mesias <camilo@mesias.co.uk>, ljp <lpotter@trolltech.com> | 5 | Maintainer: Camilo Mesias <camilo@mesias.co.uk>, ljp <lpotter@trolltech.com> |
5 | Architecture: arm | 6 | Architecture: arm |
6 | Version: $QPE_VERSION$EXTRAVERSION | 7 | Version: $QPE_VERSION$EXTRAVERSION |
7 | Depends: task-opie-minimal | 8 | Depends: task-opie-minimal |
8 | Description: Guitar Chord generator application | 9 | Description: Guitar Chord generator application |
9 | Allows naming of chords using base note and key. Fretboard diagrams are | 10 | Allows naming of chords using base note and key. Fretboard diagrams are |
10 | produced illustrating ways to play the chord. | 11 | produced illustrating ways to play the chord. |
diff --git a/noncore/settings/networksettings2/opietooth2/OTMainGUI.ui b/noncore/settings/networksettings2/opietooth2/OTMainGUI.ui index d9038ae..5bce0e1 100644 --- a/noncore/settings/networksettings2/opietooth2/OTMainGUI.ui +++ b/noncore/settings/networksettings2/opietooth2/OTMainGUI.ui | |||
@@ -1,81 +1,60 @@ | |||
1 | <!DOCTYPE UI><UI> | 1 | <!DOCTYPE UI><UI> |
2 | <class>OTMainGUI</class> | 2 | <class>OTMainGUI</class> |
3 | <widget> | 3 | <widget> |
4 | <class>QWidget</class> | 4 | <class>QWidget</class> |
5 | <property stdset="1"> | 5 | <property stdset="1"> |
6 | <name>name</name> | 6 | <name>name</name> |
7 | <cstring>OTMainGUI</cstring> | 7 | <cstring>OTMainGUI</cstring> |
8 | </property> | 8 | </property> |
9 | <property stdset="1"> | 9 | <property stdset="1"> |
10 | <name>geometry</name> | 10 | <name>geometry</name> |
11 | <rect> | 11 | <rect> |
12 | <x>0</x> | 12 | <x>0</x> |
13 | <y>0</y> | 13 | <y>0</y> |
14 | <width>257</width> | 14 | <width>225</width> |
15 | <height>296</height> | 15 | <height>334</height> |
16 | </rect> | 16 | </rect> |
17 | </property> | 17 | </property> |
18 | <property stdset="1"> | 18 | <property stdset="1"> |
19 | <name>caption</name> | 19 | <name>caption</name> |
20 | <string>Bluetooth Manager</string> | 20 | <string>Bluetooth Manager</string> |
21 | </property> | 21 | </property> |
22 | <property> | 22 | <property> |
23 | <name>layoutMargin</name> | 23 | <name>layoutMargin</name> |
24 | </property> | 24 | </property> |
25 | <property> | 25 | <property> |
26 | <name>layoutSpacing</name> | 26 | <name>layoutSpacing</name> |
27 | </property> | 27 | </property> |
28 | <vbox> | 28 | <vbox> |
29 | <property stdset="1"> | 29 | <property stdset="1"> |
30 | <name>margin</name> | 30 | <name>margin</name> |
31 | <number>3</number> | 31 | <number>3</number> |
32 | </property> | 32 | </property> |
33 | <property stdset="1"> | 33 | <property stdset="1"> |
34 | <name>spacing</name> | 34 | <name>spacing</name> |
35 | <number>0</number> | 35 | <number>0</number> |
36 | </property> | 36 | </property> |
37 | <spacer> | ||
38 | <property> | ||
39 | <name>name</name> | ||
40 | <cstring>Spacer20</cstring> | ||
41 | </property> | ||
42 | <property stdset="1"> | ||
43 | <name>orientation</name> | ||
44 | <enum>Vertical</enum> | ||
45 | </property> | ||
46 | <property stdset="1"> | ||
47 | <name>sizeType</name> | ||
48 | <enum>Expanding</enum> | ||
49 | </property> | ||
50 | <property> | ||
51 | <name>sizeHint</name> | ||
52 | <size> | ||
53 | <width>20</width> | ||
54 | <height>20</height> | ||
55 | </size> | ||
56 | </property> | ||
57 | </spacer> | ||
58 | <widget> | 37 | <widget> |
59 | <class>QLayoutWidget</class> | 38 | <class>QLayoutWidget</class> |
60 | <property stdset="1"> | 39 | <property stdset="1"> |
61 | <name>name</name> | 40 | <name>name</name> |
62 | <cstring>Layout7</cstring> | 41 | <cstring>Layout7</cstring> |
63 | </property> | 42 | </property> |
64 | <hbox> | 43 | <hbox> |
65 | <property stdset="1"> | 44 | <property stdset="1"> |
66 | <name>margin</name> | 45 | <name>margin</name> |
67 | <number>0</number> | 46 | <number>0</number> |
68 | </property> | 47 | </property> |
69 | <property stdset="1"> | 48 | <property stdset="1"> |
70 | <name>spacing</name> | 49 | <name>spacing</name> |
71 | <number>6</number> | 50 | <number>6</number> |
72 | </property> | 51 | </property> |
73 | <widget> | 52 | <widget> |
74 | <class>QPushButton</class> | 53 | <class>QPushButton</class> |
75 | <property stdset="1"> | 54 | <property stdset="1"> |
76 | <name>name</name> | 55 | <name>name</name> |
77 | <cstring>ManageLocalHW_But</cstring> | 56 | <cstring>ManageLocalHW_But</cstring> |
78 | </property> | 57 | </property> |
79 | <property stdset="1"> | 58 | <property stdset="1"> |
80 | <name>text</name> | 59 | <name>text</name> |
81 | <string>Local Bluetooth hardware</string> | 60 | <string>Local Bluetooth hardware</string> |
@@ -155,49 +134,49 @@ | |||
155 | </property> | 134 | </property> |
156 | <property> | 135 | <property> |
157 | <name>sizeHint</name> | 136 | <name>sizeHint</name> |
158 | <size> | 137 | <size> |
159 | <width>20</width> | 138 | <width>20</width> |
160 | <height>20</height> | 139 | <height>20</height> |
161 | </size> | 140 | </size> |
162 | </property> | 141 | </property> |
163 | </spacer> | 142 | </spacer> |
164 | <widget> | 143 | <widget> |
165 | <class>QLabel</class> | 144 | <class>QLabel</class> |
166 | <property stdset="1"> | 145 | <property stdset="1"> |
167 | <name>name</name> | 146 | <name>name</name> |
168 | <cstring>TextLabel1</cstring> | 147 | <cstring>TextLabel1</cstring> |
169 | </property> | 148 | </property> |
170 | <property stdset="1"> | 149 | <property stdset="1"> |
171 | <name>sizePolicy</name> | 150 | <name>sizePolicy</name> |
172 | <sizepolicy> | 151 | <sizepolicy> |
173 | <hsizetype>7</hsizetype> | 152 | <hsizetype>7</hsizetype> |
174 | <vsizetype>1</vsizetype> | 153 | <vsizetype>1</vsizetype> |
175 | </sizepolicy> | 154 | </sizepolicy> |
176 | </property> | 155 | </property> |
177 | <property stdset="1"> | 156 | <property stdset="1"> |
178 | <name>text</name> | 157 | <name>text</name> |
179 | <string>Select to manage your local Bluetooth hardware</string> | 158 | <string>Manage your local Bluetooth hardware</string> |
180 | </property> | 159 | </property> |
181 | <property stdset="1"> | 160 | <property stdset="1"> |
182 | <name>alignment</name> | 161 | <name>alignment</name> |
183 | <set>WordBreak|AlignVCenter|AlignLeft</set> | 162 | <set>WordBreak|AlignVCenter|AlignLeft</set> |
184 | </property> | 163 | </property> |
185 | <property> | 164 | <property> |
186 | <name>wordwrap</name> | 165 | <name>wordwrap</name> |
187 | </property> | 166 | </property> |
188 | </widget> | 167 | </widget> |
189 | </hbox> | 168 | </hbox> |
190 | </widget> | 169 | </widget> |
191 | <spacer> | 170 | <spacer> |
192 | <property> | 171 | <property> |
193 | <name>name</name> | 172 | <name>name</name> |
194 | <cstring>Spacer20_2</cstring> | 173 | <cstring>Spacer20_2</cstring> |
195 | </property> | 174 | </property> |
196 | <property stdset="1"> | 175 | <property stdset="1"> |
197 | <name>orientation</name> | 176 | <name>orientation</name> |
198 | <enum>Vertical</enum> | 177 | <enum>Vertical</enum> |
199 | </property> | 178 | </property> |
200 | <property stdset="1"> | 179 | <property stdset="1"> |
201 | <name>sizeType</name> | 180 | <name>sizeType</name> |
202 | <enum>Expanding</enum> | 181 | <enum>Expanding</enum> |
203 | </property> | 182 | </property> |
@@ -262,174 +241,195 @@ | |||
262 | <property> | 241 | <property> |
263 | <name>name</name> | 242 | <name>name</name> |
264 | <cstring>Spacer20_4</cstring> | 243 | <cstring>Spacer20_4</cstring> |
265 | </property> | 244 | </property> |
266 | <property stdset="1"> | 245 | <property stdset="1"> |
267 | <name>orientation</name> | 246 | <name>orientation</name> |
268 | <enum>Vertical</enum> | 247 | <enum>Vertical</enum> |
269 | </property> | 248 | </property> |
270 | <property stdset="1"> | 249 | <property stdset="1"> |
271 | <name>sizeType</name> | 250 | <name>sizeType</name> |
272 | <enum>Expanding</enum> | 251 | <enum>Expanding</enum> |
273 | </property> | 252 | </property> |
274 | <property> | 253 | <property> |
275 | <name>sizeHint</name> | 254 | <name>sizeHint</name> |
276 | <size> | 255 | <size> |
277 | <width>20</width> | 256 | <width>20</width> |
278 | <height>20</height> | 257 | <height>20</height> |
279 | </size> | 258 | </size> |
280 | </property> | 259 | </property> |
281 | </spacer> | 260 | </spacer> |
282 | <widget> | 261 | <widget> |
283 | <class>QLayoutWidget</class> | 262 | <class>QLayoutWidget</class> |
284 | <property stdset="1"> | 263 | <property stdset="1"> |
285 | <name>name</name> | 264 | <name>name</name> |
286 | <cstring>Layout10</cstring> | 265 | <cstring>Layout13</cstring> |
266 | </property> | ||
267 | <hbox> | ||
268 | <property stdset="1"> | ||
269 | <name>margin</name> | ||
270 | <number>0</number> | ||
271 | </property> | ||
272 | <property stdset="1"> | ||
273 | <name>spacing</name> | ||
274 | <number>6</number> | ||
275 | </property> | ||
276 | <spacer> | ||
277 | <property> | ||
278 | <name>name</name> | ||
279 | <cstring>Spacer7_2_2</cstring> | ||
280 | </property> | ||
281 | <property stdset="1"> | ||
282 | <name>orientation</name> | ||
283 | <enum>Horizontal</enum> | ||
284 | </property> | ||
285 | <property stdset="1"> | ||
286 | <name>sizeType</name> | ||
287 | <enum>Fixed</enum> | ||
288 | </property> | ||
289 | <property> | ||
290 | <name>sizeHint</name> | ||
291 | <size> | ||
292 | <width>20</width> | ||
293 | <height>20</height> | ||
294 | </size> | ||
295 | </property> | ||
296 | </spacer> | ||
297 | <widget> | ||
298 | <class>QLabel</class> | ||
299 | <property stdset="1"> | ||
300 | <name>name</name> | ||
301 | <cstring>TextLabel5</cstring> | ||
302 | </property> | ||
303 | <property stdset="1"> | ||
304 | <name>sizePolicy</name> | ||
305 | <sizepolicy> | ||
306 | <hsizetype>0</hsizetype> | ||
307 | <vsizetype>1</vsizetype> | ||
308 | </sizepolicy> | ||
309 | </property> | ||
310 | <property stdset="1"> | ||
311 | <name>text</name> | ||
312 | <string>Use device :</string> | ||
313 | </property> | ||
314 | </widget> | ||
315 | <widget> | ||
316 | <class>QComboBox</class> | ||
317 | <property stdset="1"> | ||
318 | <name>name</name> | ||
319 | <cstring>DeviceList_CB</cstring> | ||
320 | </property> | ||
321 | <property stdset="1"> | ||
322 | <name>sizePolicy</name> | ||
323 | <sizepolicy> | ||
324 | <hsizetype>7</hsizetype> | ||
325 | <vsizetype>0</vsizetype> | ||
326 | </sizepolicy> | ||
327 | </property> | ||
328 | </widget> | ||
329 | <spacer> | ||
330 | <property> | ||
331 | <name>name</name> | ||
332 | <cstring>Spacer16</cstring> | ||
333 | </property> | ||
334 | <property stdset="1"> | ||
335 | <name>orientation</name> | ||
336 | <enum>Horizontal</enum> | ||
337 | </property> | ||
338 | <property stdset="1"> | ||
339 | <name>sizeType</name> | ||
340 | <enum>Expanding</enum> | ||
341 | </property> | ||
342 | <property> | ||
343 | <name>sizeHint</name> | ||
344 | <size> | ||
345 | <width>20</width> | ||
346 | <height>20</height> | ||
347 | </size> | ||
348 | </property> | ||
349 | </spacer> | ||
350 | </hbox> | ||
351 | </widget> | ||
352 | <widget> | ||
353 | <class>QLayoutWidget</class> | ||
354 | <property stdset="1"> | ||
355 | <name>name</name> | ||
356 | <cstring>Layout15</cstring> | ||
287 | </property> | 357 | </property> |
288 | <hbox> | 358 | <hbox> |
289 | <property stdset="1"> | 359 | <property stdset="1"> |
290 | <name>margin</name> | 360 | <name>margin</name> |
291 | <number>0</number> | 361 | <number>0</number> |
292 | </property> | 362 | </property> |
293 | <property stdset="1"> | 363 | <property stdset="1"> |
294 | <name>spacing</name> | 364 | <name>spacing</name> |
295 | <number>6</number> | 365 | <number>6</number> |
296 | </property> | 366 | </property> |
297 | <spacer> | 367 | <spacer> |
298 | <property> | 368 | <property> |
299 | <name>name</name> | 369 | <name>name</name> |
300 | <cstring>Spacer7_2</cstring> | 370 | <cstring>Spacer7_2</cstring> |
301 | </property> | 371 | </property> |
302 | <property stdset="1"> | 372 | <property stdset="1"> |
303 | <name>orientation</name> | 373 | <name>orientation</name> |
304 | <enum>Horizontal</enum> | 374 | <enum>Horizontal</enum> |
305 | </property> | 375 | </property> |
306 | <property stdset="1"> | 376 | <property stdset="1"> |
307 | <name>sizeType</name> | 377 | <name>sizeType</name> |
308 | <enum>Fixed</enum> | 378 | <enum>Fixed</enum> |
309 | </property> | 379 | </property> |
310 | <property> | 380 | <property> |
311 | <name>sizeHint</name> | 381 | <name>sizeHint</name> |
312 | <size> | 382 | <size> |
313 | <width>20</width> | 383 | <width>20</width> |
314 | <height>20</height> | 384 | <height>20</height> |
315 | </size> | 385 | </size> |
316 | </property> | 386 | </property> |
317 | </spacer> | 387 | </spacer> |
318 | <widget> | 388 | <widget> |
319 | <class>QLayoutWidget</class> | 389 | <class>QLabel</class> |
320 | <property stdset="1"> | 390 | <property stdset="1"> |
321 | <name>name</name> | 391 | <name>name</name> |
322 | <cstring>Layout9</cstring> | 392 | <cstring>TextLabel1_2</cstring> |
323 | </property> | 393 | </property> |
324 | <grid> | 394 | <property stdset="1"> |
325 | <property stdset="1"> | 395 | <name>sizePolicy</name> |
326 | <name>margin</name> | 396 | <sizepolicy> |
327 | <number>0</number> | 397 | <hsizetype>7</hsizetype> |
328 | </property> | 398 | <vsizetype>5</vsizetype> |
329 | <property stdset="1"> | 399 | </sizepolicy> |
330 | <name>spacing</name> | 400 | </property> |
331 | <number>6</number> | 401 | <property stdset="1"> |
332 | </property> | 402 | <name>text</name> |
333 | <widget row="0" column="1" > | 403 | <string>San the bluetooth network neighbourhood using the selected local device</string> |
334 | <class>QComboBox</class> | 404 | </property> |
335 | <property stdset="1"> | 405 | <property stdset="1"> |
336 | <name>name</name> | 406 | <name>alignment</name> |
337 | <cstring>DeviceList_CB</cstring> | 407 | <set>WordBreak|AlignVCenter|AlignLeft</set> |
338 | </property> | 408 | </property> |
339 | <property stdset="1"> | 409 | <property> |
340 | <name>sizePolicy</name> | 410 | <name>wordwrap</name> |
341 | <sizepolicy> | 411 | </property> |
342 | <hsizetype>7</hsizetype> | ||
343 | <vsizetype>0</vsizetype> | ||
344 | </sizepolicy> | ||
345 | </property> | ||
346 | </widget> | ||
347 | <spacer row="0" column="2" > | ||
348 | <property> | ||
349 | <name>name</name> | ||
350 | <cstring>Spacer16</cstring> | ||
351 | </property> | ||
352 | <property stdset="1"> | ||
353 | <name>orientation</name> | ||
354 | <enum>Horizontal</enum> | ||
355 | </property> | ||
356 | <property stdset="1"> | ||
357 | <name>sizeType</name> | ||
358 | <enum>Expanding</enum> | ||
359 | </property> | ||
360 | <property> | ||
361 | <name>sizeHint</name> | ||
362 | <size> | ||
363 | <width>20</width> | ||
364 | <height>20</height> | ||
365 | </size> | ||
366 | </property> | ||
367 | </spacer> | ||
368 | <widget row="1" column="0" rowspan="1" colspan="3" > | ||
369 | <class>QLabel</class> | ||
370 | <property stdset="1"> | ||
371 | <name>name</name> | ||
372 | <cstring>TextLabel1_2</cstring> | ||
373 | </property> | ||
374 | <property stdset="1"> | ||
375 | <name>sizePolicy</name> | ||
376 | <sizepolicy> | ||
377 | <hsizetype>7</hsizetype> | ||
378 | <vsizetype>1</vsizetype> | ||
379 | </sizepolicy> | ||
380 | </property> | ||
381 | <property stdset="1"> | ||
382 | <name>text</name> | ||
383 | <string>Select to scan the bluetooth network for reachable devices using the selected local device</string> | ||
384 | </property> | ||
385 | <property stdset="1"> | ||
386 | <name>alignment</name> | ||
387 | <set>WordBreak|AlignVCenter|AlignLeft</set> | ||
388 | </property> | ||
389 | <property> | ||
390 | <name>wordwrap</name> | ||
391 | </property> | ||
392 | </widget> | ||
393 | <widget row="0" column="0" > | ||
394 | <class>QLabel</class> | ||
395 | <property stdset="1"> | ||
396 | <name>name</name> | ||
397 | <cstring>TextLabel5</cstring> | ||
398 | </property> | ||
399 | <property stdset="1"> | ||
400 | <name>sizePolicy</name> | ||
401 | <sizepolicy> | ||
402 | <hsizetype>0</hsizetype> | ||
403 | <vsizetype>1</vsizetype> | ||
404 | </sizepolicy> | ||
405 | </property> | ||
406 | <property stdset="1"> | ||
407 | <name>text</name> | ||
408 | <string>Use device :</string> | ||
409 | </property> | ||
410 | </widget> | ||
411 | </grid> | ||
412 | </widget> | 412 | </widget> |
413 | </hbox> | 413 | </hbox> |
414 | </widget> | 414 | </widget> |
415 | <spacer> | 415 | <spacer> |
416 | <property> | 416 | <property> |
417 | <name>name</name> | 417 | <name>name</name> |
418 | <cstring>Spacer20_2_2</cstring> | 418 | <cstring>Spacer20_2_2</cstring> |
419 | </property> | 419 | </property> |
420 | <property stdset="1"> | 420 | <property stdset="1"> |
421 | <name>orientation</name> | 421 | <name>orientation</name> |
422 | <enum>Vertical</enum> | 422 | <enum>Vertical</enum> |
423 | </property> | 423 | </property> |
424 | <property stdset="1"> | 424 | <property stdset="1"> |
425 | <name>sizeType</name> | 425 | <name>sizeType</name> |
426 | <enum>Expanding</enum> | 426 | <enum>Expanding</enum> |
427 | </property> | 427 | </property> |
428 | <property> | 428 | <property> |
429 | <name>sizeHint</name> | 429 | <name>sizeHint</name> |
430 | <size> | 430 | <size> |
431 | <width>20</width> | 431 | <width>20</width> |
432 | <height>20</height> | 432 | <height>20</height> |
433 | </size> | 433 | </size> |
434 | </property> | 434 | </property> |
435 | </spacer> | 435 | </spacer> |
@@ -533,136 +533,279 @@ | |||
533 | </property> | 533 | </property> |
534 | <property> | 534 | <property> |
535 | <name>sizeHint</name> | 535 | <name>sizeHint</name> |
536 | <size> | 536 | <size> |
537 | <width>20</width> | 537 | <width>20</width> |
538 | <height>20</height> | 538 | <height>20</height> |
539 | </size> | 539 | </size> |
540 | </property> | 540 | </property> |
541 | </spacer> | 541 | </spacer> |
542 | <widget> | 542 | <widget> |
543 | <class>QLabel</class> | 543 | <class>QLabel</class> |
544 | <property stdset="1"> | 544 | <property stdset="1"> |
545 | <name>name</name> | 545 | <name>name</name> |
546 | <cstring>TextLabel1_2_2</cstring> | 546 | <cstring>TextLabel1_2_2</cstring> |
547 | </property> | 547 | </property> |
548 | <property stdset="1"> | 548 | <property stdset="1"> |
549 | <name>sizePolicy</name> | 549 | <name>sizePolicy</name> |
550 | <sizepolicy> | 550 | <sizepolicy> |
551 | <hsizetype>7</hsizetype> | 551 | <hsizetype>7</hsizetype> |
552 | <vsizetype>1</vsizetype> | 552 | <vsizetype>1</vsizetype> |
553 | </sizepolicy> | 553 | </sizepolicy> |
554 | </property> | 554 | </property> |
555 | <property stdset="1"> | 555 | <property stdset="1"> |
556 | <name>text</name> | 556 | <name>text</name> |
557 | <string>Select to manage all pairings known on the local device to any remote device regardless if it is currently reachable or not</string> | 557 | <string>Manage device pairings to or from the local device</string> |
558 | </property> | 558 | </property> |
559 | <property stdset="1"> | 559 | <property stdset="1"> |
560 | <name>alignment</name> | 560 | <name>alignment</name> |
561 | <set>WordBreak|AlignVCenter|AlignLeft</set> | 561 | <set>WordBreak|AlignVCenter|AlignLeft</set> |
562 | </property> | 562 | </property> |
563 | <property> | 563 | <property> |
564 | <name>wordwrap</name> | 564 | <name>wordwrap</name> |
565 | </property> | 565 | </property> |
566 | </widget> | 566 | </widget> |
567 | </hbox> | 567 | </hbox> |
568 | </widget> | 568 | </widget> |
569 | <spacer> | 569 | <spacer> |
570 | <property> | 570 | <property> |
571 | <name>name</name> | 571 | <name>name</name> |
572 | <cstring>Spacer20_2_2_2</cstring> | 572 | <cstring>Spacer20_2_2_2</cstring> |
573 | </property> | 573 | </property> |
574 | <property stdset="1"> | 574 | <property stdset="1"> |
575 | <name>orientation</name> | 575 | <name>orientation</name> |
576 | <enum>Vertical</enum> | 576 | <enum>Vertical</enum> |
577 | </property> | 577 | </property> |
578 | <property stdset="1"> | 578 | <property stdset="1"> |
579 | <name>sizeType</name> | 579 | <name>sizeType</name> |
580 | <enum>Expanding</enum> | 580 | <enum>Expanding</enum> |
581 | </property> | 581 | </property> |
582 | <property> | 582 | <property> |
583 | <name>sizeHint</name> | 583 | <name>sizeHint</name> |
584 | <size> | 584 | <size> |
585 | <width>20</width> | 585 | <width>20</width> |
586 | <height>20</height> | 586 | <height>20</height> |
587 | </size> | 587 | </size> |
588 | </property> | 588 | </property> |
589 | </spacer> | 589 | </spacer> |
590 | <widget> | 590 | <widget> |
591 | <class>QLayoutWidget</class> | 591 | <class>QLayoutWidget</class> |
592 | <property stdset="1"> | 592 | <property stdset="1"> |
593 | <name>name</name> | 593 | <name>name</name> |
594 | <cstring>Layout2</cstring> | 594 | <cstring>Layout9_2</cstring> |
595 | </property> | 595 | </property> |
596 | <hbox> | 596 | <hbox> |
597 | <property stdset="1"> | 597 | <property stdset="1"> |
598 | <name>margin</name> | 598 | <name>margin</name> |
599 | <number>0</number> | 599 | <number>0</number> |
600 | </property> | 600 | </property> |
601 | <property stdset="1"> | 601 | <property stdset="1"> |
602 | <name>spacing</name> | 602 | <name>spacing</name> |
603 | <number>6</number> | 603 | <number>6</number> |
604 | </property> | 604 | </property> |
605 | <widget> | 605 | <widget> |
606 | <class>QCheckBox</class> | 606 | <class>QPushButton</class> |
607 | <property stdset="1"> | ||
608 | <name>name</name> | ||
609 | <cstring>BTSniffing_But</cstring> | ||
610 | </property> | ||
611 | <property stdset="1"> | ||
612 | <name>text</name> | ||
613 | <string>Sniffing</string> | ||
614 | </property> | ||
615 | </widget> | ||
616 | <spacer> | ||
617 | <property> | ||
618 | <name>name</name> | ||
619 | <cstring>Spacer9_3_2</cstring> | ||
620 | </property> | ||
621 | <property stdset="1"> | ||
622 | <name>orientation</name> | ||
623 | <enum>Horizontal</enum> | ||
624 | </property> | ||
625 | <property stdset="1"> | ||
626 | <name>sizeType</name> | ||
627 | <enum>Expanding</enum> | ||
628 | </property> | ||
629 | <property> | ||
630 | <name>sizeHint</name> | ||
631 | <size> | ||
632 | <width>20</width> | ||
633 | <height>20</height> | ||
634 | </size> | ||
635 | </property> | ||
636 | </spacer> | ||
637 | </hbox> | ||
638 | </widget> | ||
639 | <widget> | ||
640 | <class>QLayoutWidget</class> | ||
641 | <property stdset="1"> | ||
642 | <name>name</name> | ||
643 | <cstring>Layout6_2</cstring> | ||
644 | </property> | ||
645 | <hbox> | ||
646 | <property stdset="1"> | ||
647 | <name>margin</name> | ||
648 | <number>0</number> | ||
649 | </property> | ||
650 | <property stdset="1"> | ||
651 | <name>spacing</name> | ||
652 | <number>6</number> | ||
653 | </property> | ||
654 | <spacer> | ||
655 | <property> | ||
656 | <name>name</name> | ||
657 | <cstring>Spacer7_3_2</cstring> | ||
658 | </property> | ||
659 | <property stdset="1"> | ||
660 | <name>orientation</name> | ||
661 | <enum>Horizontal</enum> | ||
662 | </property> | ||
663 | <property stdset="1"> | ||
664 | <name>sizeType</name> | ||
665 | <enum>Fixed</enum> | ||
666 | </property> | ||
667 | <property> | ||
668 | <name>sizeHint</name> | ||
669 | <size> | ||
670 | <width>20</width> | ||
671 | <height>20</height> | ||
672 | </size> | ||
673 | </property> | ||
674 | </spacer> | ||
675 | <widget> | ||
676 | <class>QLabel</class> | ||
607 | <property stdset="1"> | 677 | <property stdset="1"> |
608 | <name>name</name> | 678 | <name>name</name> |
609 | <cstring>EnableTracing_CB</cstring> | 679 | <cstring>TextLabel1_2_2_2</cstring> |
680 | </property> | ||
681 | <property stdset="1"> | ||
682 | <name>sizePolicy</name> | ||
683 | <sizepolicy> | ||
684 | <hsizetype>7</hsizetype> | ||
685 | <vsizetype>1</vsizetype> | ||
686 | </sizepolicy> | ||
610 | </property> | 687 | </property> |
611 | <property stdset="1"> | 688 | <property stdset="1"> |
612 | <name>text</name> | 689 | <name>text</name> |
613 | <string>Trace Bluetooth</string> | 690 | <string>Sniff the bluetooth network</string> |
691 | </property> | ||
692 | <property stdset="1"> | ||
693 | <name>alignment</name> | ||
694 | <set>WordBreak|AlignVCenter|AlignLeft</set> | ||
695 | </property> | ||
696 | <property> | ||
697 | <name>wordwrap</name> | ||
614 | </property> | 698 | </property> |
615 | </widget> | 699 | </widget> |
700 | </hbox> | ||
701 | </widget> | ||
702 | <spacer> | ||
703 | <property> | ||
704 | <name>name</name> | ||
705 | <cstring>Spacer20_2_2_2_3</cstring> | ||
706 | </property> | ||
707 | <property stdset="1"> | ||
708 | <name>orientation</name> | ||
709 | <enum>Vertical</enum> | ||
710 | </property> | ||
711 | <property stdset="1"> | ||
712 | <name>sizeType</name> | ||
713 | <enum>Expanding</enum> | ||
714 | </property> | ||
715 | <property> | ||
716 | <name>sizeHint</name> | ||
717 | <size> | ||
718 | <width>20</width> | ||
719 | <height>20</height> | ||
720 | </size> | ||
721 | </property> | ||
722 | </spacer> | ||
723 | <widget> | ||
724 | <class>QLayoutWidget</class> | ||
725 | <property stdset="1"> | ||
726 | <name>name</name> | ||
727 | <cstring>Layout11</cstring> | ||
728 | </property> | ||
729 | <hbox> | ||
730 | <property stdset="1"> | ||
731 | <name>margin</name> | ||
732 | <number>0</number> | ||
733 | </property> | ||
734 | <property stdset="1"> | ||
735 | <name>spacing</name> | ||
736 | <number>6</number> | ||
737 | </property> | ||
738 | <spacer> | ||
739 | <property> | ||
740 | <name>name</name> | ||
741 | <cstring>Spacer21</cstring> | ||
742 | </property> | ||
743 | <property stdset="1"> | ||
744 | <name>orientation</name> | ||
745 | <enum>Horizontal</enum> | ||
746 | </property> | ||
747 | <property stdset="1"> | ||
748 | <name>sizeType</name> | ||
749 | <enum>Expanding</enum> | ||
750 | </property> | ||
751 | <property> | ||
752 | <name>sizeHint</name> | ||
753 | <size> | ||
754 | <width>20</width> | ||
755 | <height>20</height> | ||
756 | </size> | ||
757 | </property> | ||
758 | </spacer> | ||
616 | <widget> | 759 | <widget> |
617 | <class>QCheckBox</class> | 760 | <class>QCheckBox</class> |
618 | <property stdset="1"> | 761 | <property stdset="1"> |
619 | <name>name</name> | 762 | <name>name</name> |
620 | <cstring>MustBeEnabled_CB</cstring> | 763 | <cstring>MustBeEnabled_CB</cstring> |
621 | </property> | 764 | </property> |
622 | <property stdset="1"> | 765 | <property stdset="1"> |
623 | <name>text</name> | 766 | <name>text</name> |
624 | <string>Bluetooth Enabled</string> | 767 | <string>Bluetooth Enabled</string> |
625 | </property> | 768 | </property> |
626 | </widget> | 769 | </widget> |
627 | </hbox> | 770 | </hbox> |
628 | </widget> | 771 | </widget> |
629 | </vbox> | 772 | </vbox> |
630 | </widget> | 773 | </widget> |
631 | <connections> | 774 | <connections> |
632 | <connection> | 775 | <connection> |
633 | <sender>ManageLocalHW_But</sender> | 776 | <sender>ManageLocalHW_But</sender> |
634 | <signal>clicked()</signal> | 777 | <signal>clicked()</signal> |
635 | <receiver>OTMainGUI</receiver> | 778 | <receiver>OTMainGUI</receiver> |
636 | <slot>SLOT_Manage()</slot> | 779 | <slot>SLOT_Manage()</slot> |
637 | </connection> | 780 | </connection> |
638 | <connection> | 781 | <connection> |
639 | <sender>Scan_But</sender> | 782 | <sender>Scan_But</sender> |
640 | <signal>clicked()</signal> | 783 | <signal>clicked()</signal> |
641 | <receiver>OTMainGUI</receiver> | 784 | <receiver>OTMainGUI</receiver> |
642 | <slot>SLOT_Scan()</slot> | 785 | <slot>SLOT_Scan()</slot> |
643 | </connection> | 786 | </connection> |
644 | <connection> | 787 | <connection> |
645 | <sender>MustBeEnabled_CB</sender> | 788 | <sender>MustBeEnabled_CB</sender> |
646 | <signal>toggled(bool)</signal> | 789 | <signal>toggled(bool)</signal> |
647 | <receiver>OTMainGUI</receiver> | 790 | <receiver>OTMainGUI</receiver> |
648 | <slot>SLOT_EnableBluetooth(bool)</slot> | 791 | <slot>SLOT_EnableBluetooth(bool)</slot> |
649 | </connection> | 792 | </connection> |
650 | <connection> | 793 | <connection> |
651 | <sender>Pairing_But</sender> | 794 | <sender>Pairing_But</sender> |
652 | <signal>clicked()</signal> | 795 | <signal>clicked()</signal> |
653 | <receiver>OTMainGUI</receiver> | 796 | <receiver>OTMainGUI</receiver> |
654 | <slot>SLOT_Pairing()</slot> | 797 | <slot>SLOT_Pairing()</slot> |
655 | </connection> | 798 | </connection> |
656 | <connection> | 799 | <connection> |
657 | <sender>EnableTracing_CB</sender> | 800 | <sender>BTSniffing_But</sender> |
658 | <signal>toggled(bool)</signal> | 801 | <signal>clicked()</signal> |
659 | <receiver>OTMainGUI</receiver> | 802 | <receiver>OTMainGUI</receiver> |
660 | <slot>SLOT_EnableTracing( bool )</slot> | 803 | <slot>SLOT_Sniffing()</slot> |
661 | </connection> | 804 | </connection> |
662 | <slot access="public">SLOT_EnableBluetooth(bool)</slot> | 805 | <slot access="public">SLOT_EnableBluetooth(bool)</slot> |
806 | <slot access="public">SLOT_Sniffing()</slot> | ||
663 | <slot access="public">SLOT_Manage()</slot> | 807 | <slot access="public">SLOT_Manage()</slot> |
664 | <slot access="public">SLOT_Pairing()</slot> | 808 | <slot access="public">SLOT_Pairing()</slot> |
665 | <slot access="public">SLOT_Scan()</slot> | 809 | <slot access="public">SLOT_Scan()</slot> |
666 | <slot access="public">SLOT_EnableTracing( bool )</slot> | ||
667 | </connections> | 810 | </connections> |
668 | </UI> | 811 | </UI> |
diff --git a/noncore/settings/networksettings2/opietooth2/Opietooth.cpp b/noncore/settings/networksettings2/opietooth2/Opietooth.cpp index 8ea3a48..2d4885c 100644 --- a/noncore/settings/networksettings2/opietooth2/Opietooth.cpp +++ b/noncore/settings/networksettings2/opietooth2/Opietooth.cpp | |||
@@ -89,48 +89,69 @@ class LinkKeyLVI : public QListViewItem { | |||
89 | 89 | ||
90 | public : | 90 | public : |
91 | 91 | ||
92 | LinkKeyLVI( int Ch, QListView * it ) : QListViewItem (it) { | 92 | LinkKeyLVI( int Ch, QListView * it ) : QListViewItem (it) { |
93 | LinkKey = Ch; | 93 | LinkKey = Ch; |
94 | } | 94 | } |
95 | ~LinkKeyLVI( void ) { | 95 | ~LinkKeyLVI( void ) { |
96 | } | 96 | } |
97 | 97 | ||
98 | inline int index( void ) | 98 | inline int index( void ) |
99 | { return LinkKey; } | 99 | { return LinkKey; } |
100 | 100 | ||
101 | private : | 101 | private : |
102 | 102 | ||
103 | int LinkKey; | 103 | int LinkKey; |
104 | }; | 104 | }; |
105 | }; | 105 | }; |
106 | 106 | ||
107 | // | 107 | // |
108 | // | 108 | // |
109 | // | 109 | // |
110 | // | 110 | // |
111 | // | 111 | // |
112 | 112 | ||
113 | OTSniffing::OTSniffing( QWidget * parent ) : OTSniffGUI( parent ) { | ||
114 | |||
115 | OT = OTGateway::getOTGateway(); | ||
116 | |||
117 | } | ||
118 | |||
119 | OTSniffing::~OTSniffing() { | ||
120 | } | ||
121 | |||
122 | void OTSniffing::SLOT_Trace( void ) { | ||
123 | } | ||
124 | |||
125 | void OTSniffing::SLOT_ClearLog( void ) { | ||
126 | } | ||
127 | |||
128 | // | ||
129 | // | ||
130 | // | ||
131 | // | ||
132 | // | ||
133 | |||
113 | OTPairing::OTPairing( QWidget * parent, OTIcons * _IC ) : | 134 | OTPairing::OTPairing( QWidget * parent, OTIcons * _IC ) : |
114 | OTPairingGUI( parent ) { | 135 | OTPairingGUI( parent ) { |
115 | 136 | ||
116 | OT = OTGateway::getOTGateway(); | 137 | OT = OTGateway::getOTGateway(); |
117 | Icons = (_IC ) ? _IC : new OTIcons(); | 138 | Icons = (_IC ) ? _IC : new OTIcons(); |
118 | MyIcons = (_IC == 0 ); | 139 | MyIcons = (_IC == 0 ); |
119 | 140 | ||
120 | // unpairing can only be done if bluetooth is disabled | 141 | // unpairing can only be done if bluetooth is disabled |
121 | Unpair_But->setEnabled( ! OT->isEnabled() ); | 142 | Unpair_But->setEnabled( ! OT->isEnabled() ); |
122 | if( ! OT->isEnabled() ) { | 143 | if( ! OT->isEnabled() ) { |
123 | Unpair_LBL->hide(); | 144 | Unpair_LBL->hide(); |
124 | } else { | 145 | } else { |
125 | Unpair_LBL->show(); | 146 | Unpair_LBL->show(); |
126 | } | 147 | } |
127 | 148 | ||
128 | // open linkkey file and load pairs | 149 | // open linkkey file and load pairs |
129 | LinkKeyArray Keys = OT->getLinkKeys(); | 150 | LinkKeyArray Keys = OT->getLinkKeys(); |
130 | LinkKeyLVI * it; | 151 | LinkKeyLVI * it; |
131 | OTPeer * P; | 152 | OTPeer * P; |
132 | OTDriver * D; | 153 | OTDriver * D; |
133 | 154 | ||
134 | for( unsigned int i = 0 ; | 155 | for( unsigned int i = 0 ; |
135 | i < Keys.count(); | 156 | i < Keys.count(); |
136 | i ++ ) { | 157 | i ++ ) { |
@@ -852,48 +873,49 @@ void OTManage::SLOT_DriverListChanged( ) { | |||
852 | } | 873 | } |
853 | 874 | ||
854 | if( DL.count() ) { | 875 | if( DL.count() ) { |
855 | AllDrivers_LV->setCurrentItem( First ); | 876 | AllDrivers_LV->setCurrentItem( First ); |
856 | DriverIsUp_CB->setEnabled( TRUE ); | 877 | DriverIsUp_CB->setEnabled( TRUE ); |
857 | } else { | 878 | } else { |
858 | DriverIsUp_CB->setChecked( FALSE ); | 879 | DriverIsUp_CB->setChecked( FALSE ); |
859 | DriverIsUp_CB->setEnabled( FALSE ); | 880 | DriverIsUp_CB->setEnabled( FALSE ); |
860 | } | 881 | } |
861 | } | 882 | } |
862 | 883 | ||
863 | void OTManage::SLOT_SetRefreshTimer( int v ) { | 884 | void OTManage::SLOT_SetRefreshTimer( int v ) { |
864 | OT->setRefreshTimer( v * 1000 ); | 885 | OT->setRefreshTimer( v * 1000 ); |
865 | } | 886 | } |
866 | 887 | ||
867 | // | 888 | // |
868 | // | 889 | // |
869 | // | 890 | // |
870 | // | 891 | // |
871 | // | 892 | // |
872 | 893 | ||
873 | OTMain::OTMain( QWidget * parent ) : OTMainGUI( parent ) { | 894 | OTMain::OTMain( QWidget * parent ) : OTMainGUI( parent ) { |
874 | 895 | ||
875 | Icons = new OTIcons(); | 896 | Icons = new OTIcons(); |
897 | SnifWindow = 0; | ||
876 | OT = OTGateway::getOTGateway(); | 898 | OT = OTGateway::getOTGateway(); |
877 | 899 | ||
878 | connect( OT, | 900 | connect( OT, |
879 | SIGNAL( deviceEnabled( bool ) ), | 901 | SIGNAL( deviceEnabled( bool ) ), |
880 | this, | 902 | this, |
881 | SLOT( SLOT_DeviceIsEnabled( bool ) ) | 903 | SLOT( SLOT_DeviceIsEnabled( bool ) ) |
882 | ); | 904 | ); |
883 | connect( OT, | 905 | connect( OT, |
884 | SIGNAL( driverListChanged() ), | 906 | SIGNAL( driverListChanged() ), |
885 | this, | 907 | this, |
886 | SLOT( SLOT_DriverListChanged() ) | 908 | SLOT( SLOT_DriverListChanged() ) |
887 | ); | 909 | ); |
888 | connect( OT, | 910 | connect( OT, |
889 | SIGNAL( stateChange( OTDriver *, bool ) ), | 911 | SIGNAL( stateChange( OTDriver *, bool ) ), |
890 | this, | 912 | this, |
891 | SLOT( SLOT_StateChange( OTDriver *, bool ) ) | 913 | SLOT( SLOT_StateChange( OTDriver *, bool ) ) |
892 | ); | 914 | ); |
893 | 915 | ||
894 | if( ! OT->needsEnabling() ) { | 916 | if( ! OT->needsEnabling() ) { |
895 | MustBeEnabled_CB->hide(); | 917 | MustBeEnabled_CB->hide(); |
896 | } else { | 918 | } else { |
897 | // detect current state | 919 | // detect current state |
898 | MustBeEnabled_CB->setChecked( | 920 | MustBeEnabled_CB->setChecked( |
899 | OT->isEnabled() ); | 921 | OT->isEnabled() ); |
@@ -982,24 +1004,34 @@ void OTMain::SLOT_StateChange( OTDriver * D, bool Up ) { | |||
982 | i < DeviceList_CB->count(); | 1004 | i < DeviceList_CB->count(); |
983 | i ++ ) { | 1005 | i ++ ) { |
984 | if( DeviceList_CB->text(i) == D->devname() ) { | 1006 | if( DeviceList_CB->text(i) == D->devname() ) { |
985 | DeviceList_CB->changeItem( | 1007 | DeviceList_CB->changeItem( |
986 | Icons->loadPixmap( (Up) ? "bluezon" : "bluezoff" ), | 1008 | Icons->loadPixmap( (Up) ? "bluezon" : "bluezoff" ), |
987 | D->devname(), | 1009 | D->devname(), |
988 | i ); | 1010 | i ); |
989 | return; | 1011 | return; |
990 | } | 1012 | } |
991 | } | 1013 | } |
992 | } | 1014 | } |
993 | 1015 | ||
994 | void OTMain::SLOT_Pairing( void ) { | 1016 | void OTMain::SLOT_Pairing( void ) { |
995 | QDialog * Dlg = new QDialog( this, 0, TRUE ); | 1017 | QDialog * Dlg = new QDialog( this, 0, TRUE ); |
996 | QVBoxLayout * V = new QVBoxLayout( Dlg ); | 1018 | QVBoxLayout * V = new QVBoxLayout( Dlg ); |
997 | OTPairing * Pair = new OTPairing( Dlg, Icons ); | 1019 | OTPairing * Pair = new OTPairing( Dlg, Icons ); |
998 | 1020 | ||
999 | V->addWidget( Pair ); | 1021 | V->addWidget( Pair ); |
1000 | Dlg->showMaximized(); | 1022 | Dlg->showMaximized(); |
1001 | Dlg->setCaption( tr("Manage pairing" ) ); | 1023 | Dlg->setCaption( tr("Manage pairing" ) ); |
1002 | Dlg->exec(); | 1024 | Dlg->exec(); |
1003 | 1025 | ||
1004 | delete Dlg; | 1026 | delete Dlg; |
1005 | } | 1027 | } |
1028 | |||
1029 | void OTMain::SLOT_Sniffing( void ) { | ||
1030 | |||
1031 | if( SnifWindow == 0 ) { | ||
1032 | SnifWindow = new OTSniffing( this ); | ||
1033 | } | ||
1034 | |||
1035 | SnifWindow->showMaximized(); | ||
1036 | SnifWindow->show(); | ||
1037 | } | ||
diff --git a/noncore/settings/networksettings2/opietooth2/Opietooth.h b/noncore/settings/networksettings2/opietooth2/Opietooth.h index 16a22d6..211ae65 100644 --- a/noncore/settings/networksettings2/opietooth2/Opietooth.h +++ b/noncore/settings/networksettings2/opietooth2/Opietooth.h | |||
@@ -1,40 +1,67 @@ | |||
1 | #ifndef OPIETOOTH_H | 1 | #ifndef OPIETOOTH_H |
2 | #define OPIETOOTH_H | 2 | #define OPIETOOTH_H |
3 | 3 | ||
4 | #include <OTIcons.h> | 4 | #include <OTIcons.h> |
5 | 5 | ||
6 | #include <OTPairingGUI.h> | ||
7 | namespace Opie { namespace Ui { class OLedBox; }; }; | 6 | namespace Opie { namespace Ui { class OLedBox; }; }; |
8 | 7 | ||
8 | #include <OTSniffGUI.h> | ||
9 | namespace Opietooth2 { | 9 | namespace Opietooth2 { |
10 | 10 | ||
11 | class OTGateway; | 11 | class OTGateway; |
12 | class OTDriver; | 12 | class OTDriver; |
13 | class OTInquiry; | 13 | class OTInquiry; |
14 | class OTPeer; | 14 | class OTPeer; |
15 | class PeerLVI; | 15 | class PeerLVI; |
16 | 16 | ||
17 | class OTSniffing : public OTSniffGUI { | ||
18 | |||
19 | Q_OBJECT | ||
20 | |||
21 | public : | ||
22 | |||
23 | OTSniffing( QWidget * parent ); | ||
24 | ~OTSniffing(); | ||
25 | |||
26 | private slots : | ||
27 | |||
28 | void SLOT_Trace( void ); | ||
29 | void SLOT_ClearLog( void ); | ||
30 | |||
31 | signals : | ||
32 | |||
33 | protected : | ||
34 | |||
35 | private : | ||
36 | |||
37 | OTGateway * OT; | ||
38 | }; | ||
39 | }; | ||
40 | |||
41 | #include <OTPairingGUI.h> | ||
42 | |||
43 | namespace Opietooth2 { | ||
17 | class OTPairing : public OTPairingGUI { | 44 | class OTPairing : public OTPairingGUI { |
18 | 45 | ||
19 | Q_OBJECT | 46 | Q_OBJECT |
20 | 47 | ||
21 | public : | 48 | public : |
22 | 49 | ||
23 | OTPairing( QWidget * parent, | 50 | OTPairing( QWidget * parent, |
24 | OTIcons * _Ic = 0 ); | 51 | OTIcons * _Ic = 0 ); |
25 | ~OTPairing(); | 52 | ~OTPairing(); |
26 | 53 | ||
27 | private slots : | 54 | private slots : |
28 | 55 | ||
29 | void SLOT_Unpair( void ); | 56 | void SLOT_Unpair( void ); |
30 | 57 | ||
31 | signals : | 58 | signals : |
32 | 59 | ||
33 | protected : | 60 | protected : |
34 | 61 | ||
35 | private : | 62 | private : |
36 | 63 | ||
37 | bool MyIcons; | 64 | bool MyIcons; |
38 | OTIcons * Icons; | 65 | OTIcons * Icons; |
39 | OTGateway * OT; | 66 | OTGateway * OT; |
40 | }; | 67 | }; |
@@ -153,42 +180,44 @@ private : | |||
153 | OTIcons * Icons; | 180 | OTIcons * Icons; |
154 | OTGateway * OT; | 181 | OTGateway * OT; |
155 | OTInquiry * Scanning; | 182 | OTInquiry * Scanning; |
156 | }; | 183 | }; |
157 | }; | 184 | }; |
158 | 185 | ||
159 | #include <OTMainGUI.h> | 186 | #include <OTMainGUI.h> |
160 | 187 | ||
161 | namespace Opietooth2 { | 188 | namespace Opietooth2 { |
162 | class OTMain : public OTMainGUI { | 189 | class OTMain : public OTMainGUI { |
163 | 190 | ||
164 | Q_OBJECT | 191 | Q_OBJECT |
165 | 192 | ||
166 | public : | 193 | public : |
167 | 194 | ||
168 | OTMain( QWidget * parent ); | 195 | OTMain( QWidget * parent ); |
169 | ~OTMain(); | 196 | ~OTMain(); |
170 | 197 | ||
171 | public slots : | 198 | public slots : |
172 | 199 | ||
173 | private slots : | 200 | private slots : |
174 | 201 | ||
175 | void SLOT_Pairing( void ); | 202 | void SLOT_Pairing( void ); |
176 | void SLOT_Manage( void ); | 203 | void SLOT_Manage( void ); |
204 | void SLOT_Sniffing( void ); | ||
177 | void SLOT_Scan( void ); | 205 | void SLOT_Scan( void ); |
178 | void SLOT_EnableBluetooth( bool ); | 206 | void SLOT_EnableBluetooth( bool ); |
179 | void SLOT_DriverListChanged(); | 207 | void SLOT_DriverListChanged(); |
180 | void SLOT_DeviceIsEnabled( bool ); | 208 | void SLOT_DeviceIsEnabled( bool ); |
181 | void SLOT_StateChange( OTDriver * , bool ); | 209 | void SLOT_StateChange( OTDriver * , bool ); |
182 | 210 | ||
183 | signals : | 211 | signals : |
184 | 212 | ||
185 | protected : | 213 | protected : |
186 | 214 | ||
187 | private : | 215 | private : |
188 | 216 | ||
189 | // load scanned devices | 217 | // load scanned devices |
190 | OTIcons * Icons; | 218 | OTIcons * Icons; |
191 | OTGateway * OT; | 219 | OTGateway * OT; |
220 | OTSniffing * SnifWindow; | ||
192 | }; | 221 | }; |
193 | }; | 222 | }; |
194 | #endif | 223 | #endif |
diff --git a/noncore/settings/networksettings2/opietooth2/opietooth2.pro b/noncore/settings/networksettings2/opietooth2/opietooth2.pro index 590b656..cfb527d 100644 --- a/noncore/settings/networksettings2/opietooth2/opietooth2.pro +++ b/noncore/settings/networksettings2/opietooth2/opietooth2.pro | |||
@@ -9,29 +9,29 @@ HEADERS = OTDevice.h \ | |||
9 | OTInquiry.h \ | 9 | OTInquiry.h \ |
10 | OTDeviceAddress.h \ | 10 | OTDeviceAddress.h \ |
11 | OTIcons.h \ | 11 | OTIcons.h \ |
12 | OTUUID.h \ | 12 | OTUUID.h \ |
13 | OTSDPAttribute.h \ | 13 | OTSDPAttribute.h \ |
14 | OTSDPService.h \ | 14 | OTSDPService.h \ |
15 | OTPeer.h \ | 15 | OTPeer.h \ |
16 | Opietooth.h | 16 | Opietooth.h |
17 | SOURCES = OTDevice.cpp \ | 17 | SOURCES = OTDevice.cpp \ |
18 | OTDriver.cpp \ | 18 | OTDriver.cpp \ |
19 | OTDriverList.cpp \ | 19 | OTDriverList.cpp \ |
20 | OTHCISocket.cpp \ | 20 | OTHCISocket.cpp \ |
21 | OTInquiry.cpp \ | 21 | OTInquiry.cpp \ |
22 | OTDeviceAddress.cpp \ | 22 | OTDeviceAddress.cpp \ |
23 | OTUUID.cpp \ | 23 | OTUUID.cpp \ |
24 | OTSDPAttribute.cpp \ | 24 | OTSDPAttribute.cpp \ |
25 | OTSDPService.cpp \ | 25 | OTSDPService.cpp \ |
26 | OTIcons.cpp \ | 26 | OTIcons.cpp \ |
27 | OTPeer.cpp \ | 27 | OTPeer.cpp \ |
28 | OTGateway.cpp \ | 28 | OTGateway.cpp \ |
29 | Opietooth.cpp | 29 | Opietooth.cpp |
30 | INCLUDEPATH+= $(OPIEDIR)/include | 30 | INCLUDEPATH+= $(OPIEDIR)/include |
31 | DEPENDPATH+= $(OPIEDIR)/include | 31 | DEPENDPATH+= $(OPIEDIR)/include |
32 | LIBS += -lqpe -lopiecore2 -lbluetooth | 32 | LIBS += -lqpe -lopiecore2 -lbluetooth |
33 | INTERFACES= OTMainGUI.ui OTScanGUI.ui OTManageGUI.ui OTPairingGUI.ui | 33 | INTERFACES= OTMainGUI.ui OTSniffGUI.ui OTScanGUI.ui OTManageGUI.ui OTPairingGUI.ui |
34 | TARGET = opietooth2 | 34 | TARGET = opietooth2 |
35 | VERSION = 1.0.0 | 35 | VERSION = 1.0.0 |
36 | 36 | ||
37 | include ( $(OPIEDIR)/include.pro ) | 37 | include ( $(OPIEDIR)/include.pro ) |
diff --git a/noncore/settings/packagemanager/opackagemanager.cpp b/noncore/settings/packagemanager/opackagemanager.cpp index c9fdec1..ac16954 100644 --- a/noncore/settings/packagemanager/opackagemanager.cpp +++ b/noncore/settings/packagemanager/opackagemanager.cpp | |||
@@ -62,51 +62,52 @@ void OPackageManager::loadAvailablePackages() | |||
62 | 62 | ||
63 | for ( OConfItemListIterator serverIt( *serverList ); serverIt.current(); ++serverIt ) | 63 | for ( OConfItemListIterator serverIt( *serverList ); serverIt.current(); ++serverIt ) |
64 | { | 64 | { |
65 | OConfItem *server = serverIt.current(); | 65 | OConfItem *server = serverIt.current(); |
66 | 66 | ||
67 | // Process server only if it is active | 67 | // Process server only if it is active |
68 | if ( server->active() ) | 68 | if ( server->active() ) |
69 | { | 69 | { |
70 | // Update status | 70 | // Update status |
71 | QString status = tr( "Reading available packages:\n\t" ); | 71 | QString status = tr( "Reading available packages:\n\t" ); |
72 | status.append( server->name() ); | 72 | status.append( server->name() ); |
73 | emit statusText( status ); | 73 | emit statusText( status ); |
74 | ++serverCount; | 74 | ++serverCount; |
75 | emit statusBar( serverCount ); | 75 | emit statusBar( serverCount ); |
76 | qApp->processEvents(); | 76 | qApp->processEvents(); |
77 | 77 | ||
78 | OPackageList *packageList = m_ipkg.availablePackages( server->name() ); | 78 | OPackageList *packageList = m_ipkg.availablePackages( server->name() ); |
79 | if ( packageList ) | 79 | if ( packageList ) |
80 | { | 80 | { |
81 | for ( OPackageListIterator packageIt( *packageList ); packageIt.current(); ++packageIt ) | 81 | for ( OPackageListIterator packageIt( *packageList ); packageIt.current(); ++packageIt ) |
82 | { | 82 | { |
83 | OPackage *package = packageIt.current(); | 83 | OPackage *package = packageIt.current(); |
84 | 84 | ||
85 | // Load package info | 85 | // Load package info |
86 | if ( !m_packages.find( package->name() ) ) | 86 | if ( !m_packages.find( package->name() ) ) { |
87 | printf( "ADD AVAILABLE '%s'\n", package->name().latin1()); | ||
87 | m_packages.insert( package->name(), package ); | 88 | m_packages.insert( package->name(), package ); |
88 | else | 89 | } else |
89 | { | 90 | { |
90 | // If new package is newer version, replace existing package | 91 | // If new package is newer version, replace existing package |
91 | OPackage *currPackage = m_packages[package->name()]; | 92 | OPackage *currPackage = m_packages[package->name()]; |
92 | if ( compareVersions( package->version(), currPackage->version() ) == 1 ) | 93 | if ( compareVersions( package->version(), currPackage->version() ) == 1 ) |
93 | m_packages.replace( package->name(), package ); | 94 | m_packages.replace( package->name(), package ); |
94 | } | 95 | } |
95 | 96 | ||
96 | // Add category to list if it doesn't already exist | 97 | // Add category to list if it doesn't already exist |
97 | if ( m_categories.grep( package->category() ).isEmpty() ) | 98 | if ( m_categories.grep( package->category() ).isEmpty() ) |
98 | { | 99 | { |
99 | m_categories << package->category(); | 100 | m_categories << package->category(); |
100 | categoryAdded = true; | 101 | categoryAdded = true; |
101 | } | 102 | } |
102 | } | 103 | } |
103 | } | 104 | } |
104 | } | 105 | } |
105 | } | 106 | } |
106 | delete serverList; | 107 | delete serverList; |
107 | 108 | ||
108 | // Sort category list if categories were added | 109 | // Sort category list if categories were added |
109 | if ( categoryAdded ) | 110 | if ( categoryAdded ) |
110 | m_categories.sort(); | 111 | m_categories.sort(); |
111 | } | 112 | } |
112 | } | 113 | } |
@@ -117,67 +118,69 @@ void OPackageManager::loadInstalledPackages() | |||
117 | 118 | ||
118 | if ( destList ) | 119 | if ( destList ) |
119 | { | 120 | { |
120 | // Initialize status messaging | 121 | // Initialize status messaging |
121 | emit initStatus( destList->count() ); | 122 | emit initStatus( destList->count() ); |
122 | int destCount = 0; | 123 | int destCount = 0; |
123 | 124 | ||
124 | bool categoryAdded = false; | 125 | bool categoryAdded = false; |
125 | 126 | ||
126 | for ( OConfItemListIterator destIt( *destList ); destIt.current(); ++destIt ) | 127 | for ( OConfItemListIterator destIt( *destList ); destIt.current(); ++destIt ) |
127 | { | 128 | { |
128 | OConfItem *destination = destIt.current(); | 129 | OConfItem *destination = destIt.current(); |
129 | 130 | ||
130 | // Process destination only if it is active | 131 | // Process destination only if it is active |
131 | if ( destination->active() ) | 132 | if ( destination->active() ) |
132 | { | 133 | { |
133 | // Update status | 134 | // Update status |
134 | QString status = tr( "Reading installed packages:\n\t" ); | 135 | QString status = tr( "Reading installed packages:\n\t" ); |
135 | status.append( destination->name() ); | 136 | status.append( destination->name() ); |
136 | emit statusText( status ); | 137 | emit statusText( status ); |
137 | ++destCount; | 138 | ++destCount; |
138 | emit statusBar( destCount ); | 139 | emit statusBar( destCount ); |
139 | qApp->processEvents(); | 140 | qApp->processEvents(); |
140 | 141 | ||
142 | printf( "DESGTINATION %s\n", destination->name().latin1()); | ||
141 | OPackageList *packageList = m_ipkg.installedPackages( destination->name(), | 143 | OPackageList *packageList = m_ipkg.installedPackages( destination->name(), |
142 | destination->value() ); | 144 | destination->value() ); |
143 | if ( packageList ) | 145 | if ( packageList ) |
144 | { | 146 | { |
145 | for ( OPackageListIterator packageIt( *packageList ); packageIt.current(); ++packageIt ) | 147 | for ( OPackageListIterator packageIt( *packageList ); packageIt.current(); ++packageIt ) |
146 | { | 148 | { |
147 | OPackage *package = packageIt.current(); | 149 | OPackage *package = packageIt.current(); |
148 | OPackage *currPackage = m_packages[package->name()]; | 150 | OPackage *currPackage = m_packages[package->name()]; |
149 | if ( currPackage ) | 151 | if ( currPackage ) |
150 | { | 152 | { |
151 | // Package is in a current feed, update installed version, destination | 153 | // Package is in a current feed, update installed version, destination |
152 | currPackage->setVersionInstalled( package->versionInstalled() ); | 154 | currPackage->setVersionInstalled( package->versionInstalled() ); |
153 | currPackage->setDestination( package->destination() ); | 155 | currPackage->setDestination( package->destination() ); |
154 | 156 | ||
155 | delete package; | 157 | delete package; |
156 | } | 158 | } |
157 | else | 159 | else |
158 | { | 160 | { |
159 | // Package isn't in a current feed, add to list | 161 | // Package isn't in a current feed, add to list |
162 | printf( "ADD INSTALLED '%s'\n", package->name().latin1()); | ||
160 | m_packages.insert( package->name(), package ); | 163 | m_packages.insert( package->name(), package ); |
161 | 164 | ||
162 | // Add category to list if it doesn't already exist | 165 | // Add category to list if it doesn't already exist |
163 | if ( m_categories.grep( package->category() ).isEmpty() ) | 166 | if ( m_categories.grep( package->category() ).isEmpty() ) |
164 | { | 167 | { |
165 | m_categories << package->category(); | 168 | m_categories << package->category(); |
166 | categoryAdded = true; | 169 | categoryAdded = true; |
167 | } | 170 | } |
168 | } | 171 | } |
169 | } | 172 | } |
170 | } | 173 | } |
171 | } | 174 | } |
172 | } | 175 | } |
173 | delete destList; | 176 | delete destList; |
174 | 177 | ||
175 | // Sort category list if categories were added | 178 | // Sort category list if categories were added |
176 | if ( categoryAdded ) | 179 | if ( categoryAdded ) |
177 | m_categories.sort(); | 180 | m_categories.sort(); |
178 | } | 181 | } |
179 | } | 182 | } |
180 | 183 | ||
181 | OPackageList *OPackageManager::packages() | 184 | OPackageList *OPackageManager::packages() |
182 | { | 185 | { |
183 | // TODO - look to see if list is loaded, if not, load available & installed | 186 | // TODO - look to see if list is loaded, if not, load available & installed |