author | tille <tille> | 2003-06-16 17:05:01 (UTC) |
---|---|---|
committer | tille <tille> | 2003-06-16 17:05:01 (UTC) |
commit | 3508149e0c894e53bc31ee7b66d98a195cdb8d70 (patch) (side-by-side diff) | |
tree | 34fb52e3a8d537fdf598addb913cdda4b5fc0470 | |
parent | ad64cf15ac6ac064619079592f7656464e88baac (diff) | |
download | opie-3508149e0c894e53bc31ee7b66d98a195cdb8d70.zip opie-3508149e0c894e53bc31ee7b66d98a195cdb8d70.tar.gz opie-3508149e0c894e53bc31ee7b66d98a195cdb8d70.tar.bz2 |
wellenreiter speaks with networksettings now...
-rw-r--r-- | noncore/net/wellenreiter/gui/wellenreiter.cpp | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/noncore/net/wellenreiter/gui/wellenreiter.cpp b/noncore/net/wellenreiter/gui/wellenreiter.cpp index 8a9e55d..448b52b 100644 --- a/noncore/net/wellenreiter/gui/wellenreiter.cpp +++ b/noncore/net/wellenreiter/gui/wellenreiter.cpp @@ -472,37 +472,42 @@ void Wellenreiter::timerEvent( QTimerEvent* ) } void Wellenreiter::doAction( const QString& action, const QString& protocol, OPacket* p ) { if ( action == "TouchSound" ) ODevice::inst()->touchSound(); else if ( action == "AlarmSound" ) ODevice::inst()->alarmSound(); else if ( action == "KeySound" ) ODevice::inst()->keySound(); else if ( action == "LedOn" ) ODevice::inst()->setLedState( Led_Mail, Led_On ); else if ( action == "LedOff" ) ODevice::inst()->setLedState( Led_Mail, Led_Off ); else if ( action == "LogMessage" ) logwindow->log( QString().sprintf( "Got packet with protocol '%s'", (const char*) protocol ) ); else if ( action == "MessageBox" ) QMessageBox::information ( this, "Notification!", QString().sprintf( "Got packet with protocol '%s'", (const char*) protocol ) ); } void Wellenreiter::joinNetwork(const QString& type, const QString& essid, int channel, const QString& macaddr) { + // we need the interface too: + const QString iface = "wlan0"; qDebug( "joinNetwork() - %s, %s, %d, %s", (const char*) type, (const char*) essid, channel, (const char*) macaddr ); // TODO: Stop scanning here QCopEnvelope msg( "QPE/Application/networksettings", "wlan(QString,QString,QString)" ); - msg << "test" << "test" << "test"; + msg << iface << QString("Mode") << type; + msg << iface << QString("ESSID") << essid; + msg << iface << QString("Channel") << channel; + msg << iface << QString("MacAddr") << macaddr; } |