author | skyhusker <skyhusker> | 2005-06-12 14:14:13 (UTC) |
---|---|---|
committer | skyhusker <skyhusker> | 2005-06-12 14:14:13 (UTC) |
commit | db659a76f8eb5f4888881663361369ddb16444b1 (patch) (unidiff) | |
tree | 1b033ef01f052bf7a04a76d9344547669fffde7e | |
parent | d6998357a5523188f5273549529193092334303e (diff) | |
download | opie-db659a76f8eb5f4888881663361369ddb16444b1.zip opie-db659a76f8eb5f4888881663361369ddb16444b1.tar.gz opie-db659a76f8eb5f4888881663361369ddb16444b1.tar.bz2 |
Removed hardcoded desktop size
-rw-r--r-- | noncore/net/opiestumbler/opiestumbler.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/noncore/net/opiestumbler/opiestumbler.cpp b/noncore/net/opiestumbler/opiestumbler.cpp index 2f4f54b..3531162 100644 --- a/noncore/net/opiestumbler/opiestumbler.cpp +++ b/noncore/net/opiestumbler/opiestumbler.cpp | |||
@@ -273,35 +273,35 @@ void OpieStumbler::slotJoinNetwork() | |||
273 | QListIterator<StumblerStation> it(m_stationsHistory); | 273 | QListIterator<StumblerStation> it(m_stationsHistory); |
274 | 274 | ||
275 | for(; it.current() && it.current()->st->macAddress.toString() != m_mac; ++it ); | 275 | for(; it.current() && it.current()->st->macAddress.toString() != m_mac; ++it ); |
276 | 276 | ||
277 | if( !it.current() ) | 277 | if( !it.current() ) |
278 | return; | 278 | return; |
279 | 279 | ||
280 | m_ssid = it.current()->st->ssid.left(it.current()->st->ssid.length()-1); | 280 | m_ssid = it.current()->st->ssid.left(it.current()->st->ssid.length()-1); |
281 | m_splash = new QFrame( this, "splash", false, WStyle_StaysOnTop | WStyle_DialogBorder | WStyle_Customize ); | 281 | m_splash = new QFrame( this, "splash", false, WStyle_StaysOnTop | WStyle_DialogBorder | WStyle_Customize ); |
282 | m_splash->setFrameStyle( QFrame::Panel | QFrame::Raised ); | 282 | m_splash->setFrameStyle( QFrame::Panel | QFrame::Raised ); |
283 | m_splashBox = new QVBoxLayout( m_splash, 4, 4 ); | 283 | m_splashBox = new QVBoxLayout( m_splash, 4, 4 ); |
284 | m_infoLabel = new QLabel( QString("<center><b>%1 %2</b></center>").arg(tr("Joining Network")).arg(m_ssid), m_splash ); | 284 | m_infoLabel = new QLabel( QString("<center><b>%1 %2</b></center>").arg(tr("Joining Network")).arg(m_ssid), m_splash ); |
285 | m_pbar = new QProgressBar( 3, m_splash ); | 285 | m_pbar = new QProgressBar( 3, m_splash ); |
286 | m_pbar->setCenterIndicator(true); | 286 | m_pbar->setCenterIndicator(true); |
287 | m_splashBox->addWidget( m_infoLabel ); | 287 | m_splashBox->addWidget( m_infoLabel ); |
288 | m_splashBox->addWidget( m_pbar ); | 288 | m_splashBox->addWidget( m_pbar ); |
289 | int sw = m_splashBox->sizeHint().width()*2; | 289 | int sw = m_splashBox->sizeHint().width() * 2; |
290 | int sh = m_splashBox->sizeHint().height(); | 290 | int sh = m_splashBox->sizeHint().height(); |
291 | m_splash->setGeometry((240-(sw))/2, (320-sh)/2, sw, sh); | 291 | m_splash->setGeometry((qApp->desktop()->width() - sw)/2, (qApp->desktop()->height() - sh)/2, sw, sh); |
292 | m_splash->show(); | 292 | m_splash->show(); |
293 | m_splash->raise(); | 293 | m_splash->raise(); |
294 | 294 | ||
295 | Opie::Net::OStation *station = it.current()->st; | 295 | Opie::Net::OStation *station = it.current()->st; |
296 | 296 | ||
297 | odebug << "Bringing interface down" << oendl; | 297 | odebug << "Bringing interface down" << oendl; |
298 | wiface->setUp(false); | 298 | wiface->setUp(false); |
299 | 299 | ||
300 | odebug << "Setting mode to " << (station->type == "adhoc" ? "adhoc" : "managed") << oendl; | 300 | odebug << "Setting mode to " << (station->type == "adhoc" ? "adhoc" : "managed") << oendl; |
301 | wiface->setMode(station->type == "adhoc" ? "adhoc" : "managed" ); | 301 | wiface->setMode(station->type == "adhoc" ? "adhoc" : "managed" ); |
302 | 302 | ||
303 | odebug << "Setting channel to " << station->channel << oendl; | 303 | odebug << "Setting channel to " << station->channel << oendl; |
304 | wiface->setChannel(station->channel); | 304 | wiface->setChannel(station->channel); |
305 | 305 | ||
306 | odebug << "Setting SSID to " << station->ssid << oendl; | 306 | odebug << "Setting SSID to " << station->ssid << oendl; |
307 | wiface->setSSID(station->ssid); | 307 | wiface->setSSID(station->ssid); |