summaryrefslogtreecommitdiff
path: root/noncore/net
authorskyhusker <skyhusker>2005-06-12 14:06:21 (UTC)
committer skyhusker <skyhusker>2005-06-12 14:06:21 (UTC)
commitdc88bc9ebf2514d53eceb17ebcd1c67b89c6da70 (patch) (side-by-side diff)
treefd2f894a842408325106e19887b5f1107b1f5a59 /noncore/net
parentd13a1a3345270ea71215d421627665a40f16454c (diff)
downloadopie-dc88bc9ebf2514d53eceb17ebcd1c67b89c6da70.zip
opie-dc88bc9ebf2514d53eceb17ebcd1c67b89c6da70.tar.gz
opie-dc88bc9ebf2514d53eceb17ebcd1c67b89c6da70.tar.bz2
Added splash for user messages
Diffstat (limited to 'noncore/net') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/net/opiestumbler/opiestumbler.cpp55
-rw-r--r--noncore/net/opiestumbler/opiestumbler.h11
2 files changed, 57 insertions, 9 deletions
diff --git a/noncore/net/opiestumbler/opiestumbler.cpp b/noncore/net/opiestumbler/opiestumbler.cpp
index f231fca..bc4a7ab 100644
--- a/noncore/net/opiestumbler/opiestumbler.cpp
+++ b/noncore/net/opiestumbler/opiestumbler.cpp
@@ -11,6 +11,7 @@
#include <qlayout.h>
#include <qwhatsthis.h>
#include <qtimer.h>
+#include <qprogressbar.h>
#include <qpe/resource.h>
#include <qpe/config.h>
@@ -275,7 +276,22 @@ void OpieStumbler::slotJoinNetwork()
if( !it.current() )
return;
-
+
+ m_ssid = it.current()->st->ssid.left(it.current()->st->ssid.length()-1);
+ m_splash = new QFrame( this, "splash", false, WStyle_StaysOnTop | WStyle_DialogBorder | WStyle_Customize );
+ m_splash->setFrameStyle( QFrame::Panel | QFrame::Raised );
+ m_splashBox = new QVBoxLayout( m_splash, 4, 4 );
+ m_infoLabel = new QLabel( QString("<center><b>%1 %2</b></center>").arg(tr("Joining Network")).arg(m_ssid), m_splash );
+ m_pbar = new QProgressBar( 3, m_splash );
+ m_pbar->setCenterIndicator(true);
+ m_splashBox->addWidget( m_infoLabel );
+ m_splashBox->addWidget( m_pbar );
+ int sw = m_splashBox->sizeHint().width()*2;
+ int sh = m_splashBox->sizeHint().height();
+ m_splash->setGeometry((240-(sw))/2, (320-sh)/2, sw, sh);
+ m_splash->show();
+ m_splash->raise();
+
Opie::Net::OStation *station = it.current()->st;
odebug << "Bringing interface down" << oendl;
@@ -294,6 +310,7 @@ void OpieStumbler::slotJoinNetwork()
odebug << "Bringing interface up" << oendl;
wiface->setUp(TRUE);
+ m_pbar->setProgress(1);
//Wait 5 sec for association
QTimer::singleShot(5000, this, SLOT(slotAssociated()));
}
@@ -302,15 +319,21 @@ void OpieStumbler::slotAssociated()
{
OWirelessNetworkInterface *wiface = static_cast<OWirelessNetworkInterface*>(ONetwork::instance()->interface(m_interface));
- if( !wiface )
+ if( !wiface ) {
+ slotCleanSplash();
return;
+ }
if (!wiface->isAssociated()) {
Global::statusMessage(tr("Could not Join"));
+ m_infoLabel->setText(tr("Could not Join"));
+ QTimer::singleShot(5000, this, SLOT(slotCleanSplash()));
return;
}
Global::statusMessage(tr("Joined"));
+ m_pbar->setProgress(2);
+ m_infoLabel->setText(QString("<center><b>%1 %2</b></center>").arg(tr("Joined Network")).arg(m_ssid));
if(m_proc) {
m_proc->kill();
@@ -328,21 +351,35 @@ void OpieStumbler::slotCheckDHCP()
{
if(!m_proc->isRunning()) {
Global::statusMessage(tr("Could not Obtain an Address"));
+ m_infoLabel->setText(QString("<center><b>%1</b></center>").arg(tr("Could not Obtain an Address")));
delete m_proc;
m_proc = NULL;
+ QTimer::singleShot(5000, this, SLOT(slotCleanSplash()));
return;
}
m_listCurrent->show();
+ m_pbar->setProgress(3);
-
OWirelessNetworkInterface *wiface = static_cast<OWirelessNetworkInterface*>(ONetwork::instance()->interface(m_interface));
- Global::statusMessage(tr("Obtained IP ") + wiface->ipV4Address().toString());
+ QString ipv4 = wiface->ipV4Address().toString();
+ m_infoLabel->setText(QString("<center><b>%1 %2</b></center>").arg(tr("Obtained IP")).arg(ipv4));
+ Global::statusMessage(tr("Obtained IP") + " " + ipv4);
+ QTimer::singleShot(5000, this, SLOT(slotCleanSplash()));
+
}
-
+
+void OpieStumbler::slotCleanSplash()
+{
+ delete m_pbar;
+ m_pbar = 0;
+ delete m_infoLabel;
+ m_infoLabel = 0;
-
-
-
-
+ delete m_splashBox;
+ m_splashBox = 0;
+
+ delete m_splash;
+ m_splash = 0;
+}
diff --git a/noncore/net/opiestumbler/opiestumbler.h b/noncore/net/opiestumbler/opiestumbler.h
index 3f45a78..84a69ba 100644
--- a/noncore/net/opiestumbler/opiestumbler.h
+++ b/noncore/net/opiestumbler/opiestumbler.h
@@ -12,6 +12,10 @@ class Stumbler;
class QCopChannel;
class QListView;
class QListViewItem;
+class QFrame;
+class QLabel;
+class QProgressBar;
+class QVBoxLayout;
namespace Opie{
namespace Net {
@@ -50,8 +54,10 @@ protected slots:
void slotJoinNetwork();
void slotAssociated();
void slotCheckDHCP();
+ void slotCleanSplash();
protected:
void loadConfig();
+
QListView *m_listCurrent;
QListView *m_listHistory;
QString m_interface;
@@ -63,7 +69,12 @@ protected:
QPopupMenu *m_popupHistory;
Opie::Net::OManufacturerDB *m_db;
QString m_mac;
+ QString m_ssid;
Opie::Core::OProcess *m_proc;
+ QFrame *m_splash;
+ QVBoxLayout *m_splashBox;
+ QLabel *m_infoLabel;
+ QProgressBar *m_pbar;
};