author | wimpie <wimpie> | 2005-01-05 02:42:18 (UTC) |
---|---|---|
committer | wimpie <wimpie> | 2005-01-05 02:42:18 (UTC) |
commit | bf65cf9aeb5dddcc4b0c0d702afd748d97e95d5e (patch) (unidiff) | |
tree | ec61a57a8ace5c74e6cae46a676f40d849f4b9b1 | |
parent | 2f343aab63dd30e97a893e3691501cdd55114e82 (diff) | |
download | opie-bf65cf9aeb5dddcc4b0c0d702afd748d97e95d5e.zip opie-bf65cf9aeb5dddcc4b0c0d702afd748d97e95d5e.tar.gz opie-bf65cf9aeb5dddcc4b0c0d702afd748d97e95d5e.tar.bz2 |
Slightly better layout for OTMainGUI.
Fixed segfault bug in disconnectNotify call (signal string could be NULL)
-rw-r--r-- | noncore/settings/networksettings2/opietooth2/OTGateway.cpp | 4 | ||||
-rw-r--r-- | noncore/settings/networksettings2/opietooth2/OTMainGUI.ui | 160 |
2 files changed, 103 insertions, 61 deletions
diff --git a/noncore/settings/networksettings2/opietooth2/OTGateway.cpp b/noncore/settings/networksettings2/opietooth2/OTGateway.cpp index 2d13ce9..6531cf6 100644 --- a/noncore/settings/networksettings2/opietooth2/OTGateway.cpp +++ b/noncore/settings/networksettings2/opietooth2/OTGateway.cpp | |||
@@ -168,13 +168,13 @@ void OTGateway::SLOT_ShowError( const QString & S ) { | |||
168 | } | 168 | } |
169 | 169 | ||
170 | void OTGateway::connectNotify( const char * S ) { | 170 | void OTGateway::connectNotify( const char * S ) { |
171 | if( strcmp( S, "error(const QString&)" ) == 0 ) { | 171 | if( S && strcmp( S, "error(const QString&)" ) == 0 ) { |
172 | ErrorConnectCount ++; | 172 | ErrorConnectCount ++; |
173 | } | 173 | } |
174 | } | 174 | } |
175 | 175 | ||
176 | void OTGateway::disconnectNotify( const char * S ) { | 176 | void OTGateway::disconnectNotify( const char * S ) { |
177 | if( strcmp( S, "error(const QString&)" ) == 0 ) { | 177 | if( S && strcmp( S, "error(const QString&)" ) == 0 ) { |
178 | ErrorConnectCount --; | 178 | ErrorConnectCount --; |
179 | } | 179 | } |
180 | } | 180 | } |
diff --git a/noncore/settings/networksettings2/opietooth2/OTMainGUI.ui b/noncore/settings/networksettings2/opietooth2/OTMainGUI.ui index 6005504..d9038ae 100644 --- a/noncore/settings/networksettings2/opietooth2/OTMainGUI.ui +++ b/noncore/settings/networksettings2/opietooth2/OTMainGUI.ui | |||
@@ -11,8 +11,8 @@ | |||
11 | <rect> | 11 | <rect> |
12 | <x>0</x> | 12 | <x>0</x> |
13 | <y>0</y> | 13 | <y>0</y> |
14 | <width>228</width> | 14 | <width>257</width> |
15 | <height>347</height> | 15 | <height>296</height> |
16 | </rect> | 16 | </rect> |
17 | </property> | 17 | </property> |
18 | <property stdset="1"> | 18 | <property stdset="1"> |
@@ -28,7 +28,7 @@ | |||
28 | <vbox> | 28 | <vbox> |
29 | <property stdset="1"> | 29 | <property stdset="1"> |
30 | <name>margin</name> | 30 | <name>margin</name> |
31 | <number>5</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> |
@@ -104,6 +104,27 @@ | |||
104 | </spacer> | 104 | </spacer> |
105 | </hbox> | 105 | </hbox> |
106 | </widget> | 106 | </widget> |
107 | <spacer> | ||
108 | <property> | ||
109 | <name>name</name> | ||
110 | <cstring>Spacer20_3</cstring> | ||
111 | </property> | ||
112 | <property stdset="1"> | ||
113 | <name>orientation</name> | ||
114 | <enum>Vertical</enum> | ||
115 | </property> | ||
116 | <property stdset="1"> | ||
117 | <name>sizeType</name> | ||
118 | <enum>Expanding</enum> | ||
119 | </property> | ||
120 | <property> | ||
121 | <name>sizeHint</name> | ||
122 | <size> | ||
123 | <width>20</width> | ||
124 | <height>20</height> | ||
125 | </size> | ||
126 | </property> | ||
127 | </spacer> | ||
107 | <widget> | 128 | <widget> |
108 | <class>QLayoutWidget</class> | 129 | <class>QLayoutWidget</class> |
109 | <property stdset="1"> | 130 | <property stdset="1"> |
@@ -237,11 +258,32 @@ | |||
237 | </spacer> | 258 | </spacer> |
238 | </hbox> | 259 | </hbox> |
239 | </widget> | 260 | </widget> |
261 | <spacer> | ||
262 | <property> | ||
263 | <name>name</name> | ||
264 | <cstring>Spacer20_4</cstring> | ||
265 | </property> | ||
266 | <property stdset="1"> | ||
267 | <name>orientation</name> | ||
268 | <enum>Vertical</enum> | ||
269 | </property> | ||
270 | <property stdset="1"> | ||
271 | <name>sizeType</name> | ||
272 | <enum>Expanding</enum> | ||
273 | </property> | ||
274 | <property> | ||
275 | <name>sizeHint</name> | ||
276 | <size> | ||
277 | <width>20</width> | ||
278 | <height>20</height> | ||
279 | </size> | ||
280 | </property> | ||
281 | </spacer> | ||
240 | <widget> | 282 | <widget> |
241 | <class>QLayoutWidget</class> | 283 | <class>QLayoutWidget</class> |
242 | <property stdset="1"> | 284 | <property stdset="1"> |
243 | <name>name</name> | 285 | <name>name</name> |
244 | <cstring>Layout5</cstring> | 286 | <cstring>Layout10</cstring> |
245 | </property> | 287 | </property> |
246 | <hbox> | 288 | <hbox> |
247 | <property stdset="1"> | 289 | <property stdset="1"> |
@@ -255,7 +297,7 @@ | |||
255 | <spacer> | 297 | <spacer> |
256 | <property> | 298 | <property> |
257 | <name>name</name> | 299 | <name>name</name> |
258 | <cstring>Spacer4</cstring> | 300 | <cstring>Spacer7_2</cstring> |
259 | </property> | 301 | </property> |
260 | <property stdset="1"> | 302 | <property stdset="1"> |
261 | <name>orientation</name> | 303 | <name>orientation</name> |
@@ -263,7 +305,7 @@ | |||
263 | </property> | 305 | </property> |
264 | <property stdset="1"> | 306 | <property stdset="1"> |
265 | <name>sizeType</name> | 307 | <name>sizeType</name> |
266 | <enum>Expanding</enum> | 308 | <enum>Fixed</enum> |
267 | </property> | 309 | </property> |
268 | <property> | 310 | <property> |
269 | <name>sizeHint</name> | 311 | <name>sizeHint</name> |
@@ -274,24 +316,21 @@ | |||
274 | </property> | 316 | </property> |
275 | </spacer> | 317 | </spacer> |
276 | <widget> | 318 | <widget> |
277 | <class>QLabel</class> | 319 | <class>QLayoutWidget</class> |
278 | <property stdset="1"> | 320 | <property stdset="1"> |
279 | <name>name</name> | 321 | <name>name</name> |
280 | <cstring>TextLabel5</cstring> | 322 | <cstring>Layout9</cstring> |
281 | </property> | 323 | </property> |
324 | <grid> | ||
282 | <property stdset="1"> | 325 | <property stdset="1"> |
283 | <name>sizePolicy</name> | 326 | <name>margin</name> |
284 | <sizepolicy> | 327 | <number>0</number> |
285 | <hsizetype>0</hsizetype> | ||
286 | <vsizetype>1</vsizetype> | ||
287 | </sizepolicy> | ||
288 | </property> | 328 | </property> |
289 | <property stdset="1"> | 329 | <property stdset="1"> |
290 | <name>text</name> | 330 | <name>spacing</name> |
291 | <string>Use device :</string> | 331 | <number>6</number> |
292 | </property> | 332 | </property> |
293 | </widget> | 333 | <widget row="0" column="1" > |
294 | <widget> | ||
295 | <class>QComboBox</class> | 334 | <class>QComboBox</class> |
296 | <property stdset="1"> | 335 | <property stdset="1"> |
297 | <name>name</name> | 336 | <name>name</name> |
@@ -305,27 +344,10 @@ | |||
305 | </sizepolicy> | 344 | </sizepolicy> |
306 | </property> | 345 | </property> |
307 | </widget> | 346 | </widget> |
308 | </hbox> | 347 | <spacer row="0" column="2" > |
309 | </widget> | ||
310 | <widget> | ||
311 | <class>QLayoutWidget</class> | ||
312 | <property stdset="1"> | ||
313 | <name>name</name> | ||
314 | <cstring>Layout4</cstring> | ||
315 | </property> | ||
316 | <hbox> | ||
317 | <property stdset="1"> | ||
318 | <name>margin</name> | ||
319 | <number>0</number> | ||
320 | </property> | ||
321 | <property stdset="1"> | ||
322 | <name>spacing</name> | ||
323 | <number>6</number> | ||
324 | </property> | ||
325 | <spacer> | ||
326 | <property> | 348 | <property> |
327 | <name>name</name> | 349 | <name>name</name> |
328 | <cstring>Spacer7_2</cstring> | 350 | <cstring>Spacer16</cstring> |
329 | </property> | 351 | </property> |
330 | <property stdset="1"> | 352 | <property stdset="1"> |
331 | <name>orientation</name> | 353 | <name>orientation</name> |
@@ -333,7 +355,7 @@ | |||
333 | </property> | 355 | </property> |
334 | <property stdset="1"> | 356 | <property stdset="1"> |
335 | <name>sizeType</name> | 357 | <name>sizeType</name> |
336 | <enum>Fixed</enum> | 358 | <enum>Expanding</enum> |
337 | </property> | 359 | </property> |
338 | <property> | 360 | <property> |
339 | <name>sizeHint</name> | 361 | <name>sizeHint</name> |
@@ -343,7 +365,7 @@ | |||
343 | </size> | 365 | </size> |
344 | </property> | 366 | </property> |
345 | </spacer> | 367 | </spacer> |
346 | <widget> | 368 | <widget row="1" column="0" rowspan="1" colspan="3" > |
347 | <class>QLabel</class> | 369 | <class>QLabel</class> |
348 | <property stdset="1"> | 370 | <property stdset="1"> |
349 | <name>name</name> | 371 | <name>name</name> |
@@ -368,6 +390,26 @@ | |||
368 | <name>wordwrap</name> | 390 | <name>wordwrap</name> |
369 | </property> | 391 | </property> |
370 | </widget> | 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> | ||
371 | </hbox> | 413 | </hbox> |
372 | </widget> | 414 | </widget> |
373 | <spacer> | 415 | <spacer> |
@@ -440,6 +482,27 @@ | |||
440 | </spacer> | 482 | </spacer> |
441 | </hbox> | 483 | </hbox> |
442 | </widget> | 484 | </widget> |
485 | <spacer> | ||
486 | <property> | ||
487 | <name>name</name> | ||
488 | <cstring>Spacer20_5</cstring> | ||
489 | </property> | ||
490 | <property stdset="1"> | ||
491 | <name>orientation</name> | ||
492 | <enum>Vertical</enum> | ||
493 | </property> | ||
494 | <property stdset="1"> | ||
495 | <name>sizeType</name> | ||
496 | <enum>Expanding</enum> | ||
497 | </property> | ||
498 | <property> | ||
499 | <name>sizeHint</name> | ||
500 | <size> | ||
501 | <width>20</width> | ||
502 | <height>20</height> | ||
503 | </size> | ||
504 | </property> | ||
505 | </spacer> | ||
443 | <widget> | 506 | <widget> |
444 | <class>QLayoutWidget</class> | 507 | <class>QLayoutWidget</class> |
445 | <property stdset="1"> | 508 | <property stdset="1"> |
@@ -550,27 +613,6 @@ | |||
550 | <string>Trace Bluetooth</string> | 613 | <string>Trace Bluetooth</string> |
551 | </property> | 614 | </property> |
552 | </widget> | 615 | </widget> |
553 | <spacer> | ||
554 | <property> | ||
555 | <name>name</name> | ||
556 | <cstring>Spacer4_2</cstring> | ||
557 | </property> | ||
558 | <property stdset="1"> | ||
559 | <name>orientation</name> | ||
560 | <enum>Horizontal</enum> | ||
561 | </property> | ||
562 | <property stdset="1"> | ||
563 | <name>sizeType</name> | ||
564 | <enum>Expanding</enum> | ||
565 | </property> | ||
566 | <property> | ||
567 | <name>sizeHint</name> | ||
568 | <size> | ||
569 | <width>20</width> | ||
570 | <height>20</height> | ||
571 | </size> | ||
572 | </property> | ||
573 | </spacer> | ||
574 | <widget> | 616 | <widget> |
575 | <class>QCheckBox</class> | 617 | <class>QCheckBox</class> |
576 | <property stdset="1"> | 618 | <property stdset="1"> |