summaryrefslogtreecommitdiff
authormickeyl <mickeyl>2003-04-21 18:13:28 (UTC)
committer mickeyl <mickeyl>2003-04-21 18:13:28 (UTC)
commite951446d52d2a89dd919b1665b034516567384ee (patch) (side-by-side diff)
treefba427301e9872ed1b77dea8ddbef8b0eb634d3d
parente3d9c4f3e6a45128128cc22218c4fc30bbb41f3d (diff)
downloadopie-e951446d52d2a89dd919b1665b034516567384ee.zip
opie-e951446d52d2a89dd919b1665b034516567384ee.tar.gz
opie-e951446d52d2a89dd919b1665b034516567384ee.tar.bz2
fix irda image name
Diffstat (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/applets/networkapplet/networkapplet.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/noncore/applets/networkapplet/networkapplet.cpp b/noncore/applets/networkapplet/networkapplet.cpp
index 3019456..4e658da 100644
--- a/noncore/applets/networkapplet/networkapplet.cpp
+++ b/noncore/applets/networkapplet/networkapplet.cpp
@@ -110,97 +110,97 @@ NetworkAppletControl::NetworkAppletControl( OTaskbarApplet* parent, const char*
l = new QVBoxLayout( this, 4, 2 );
}
void NetworkAppletControl::build()
{
ONetwork::InterfaceIterator it = ONetwork::instance()->iterator();
while ( it.current() )
{
QHBoxLayout* h = new QHBoxLayout( l );
QLabel* symbol = new QLabel( this );
symbol->setPixmap( Resource::loadPixmap( guessDevice( it.current() ) ) );
h->addWidget( symbol );
symbol->show();
QLabel* name = new QLabel( it.current()->name(), this );
name->setFixedWidth( 35 );
h->addWidget( name );
name->show();
IfaceIPAddress* ip = new IfaceIPAddress( this, it.current()->name() );
h->addWidget( ip );
ip->show();
IfaceUpDownButton* tb = new IfaceUpDownButton( this, it.current()->name() );
tb->show();
h->addWidget( tb );
++it;
}
}
NetworkAppletControl::~NetworkAppletControl()
{
}
QString NetworkAppletControl::guessDevice( ONetworkInterface* iface )
{
if ( iface->isWireless() )
return "networksettings/wlan";
if ( iface->isLoopback() )
return "networksettings/lo";
if ( QString( iface->name() ).contains( "usb" ) )
return "networksettings/usb";
if ( QString( iface->name() ).contains( "ir" ) )
- return "networksettings/ir";
+ return "networksettings/irda";
//TODO: Insert neat symbol and check for tunnel devices
return "networksettings/lan";
}
void NetworkAppletControl::showEvent( QShowEvent* e )
{
qDebug( "showEvent" );
build();
QWidget::showEvent( e );
}
void NetworkAppletControl::hideEvent( QHideEvent* e )
{
qDebug( "hideEvent" );
QWidget::hideEvent( e );
delete l;
// delete all child widgets from this frame
QObjectList* list = const_cast<QObjectList*>( children() );
QObjectListIt it(*list);
QObject* obj;
while ( (obj=it.current()) )
{
++it;
delete obj;
}
list = const_cast<QObjectList*>( children() );
if ( list )
qWarning( "D'oh! We still have %d children...", list->count() );
// renew layout
l = new QVBoxLayout( this, 4, 2 );
resize( 0, 0 );
}
QSize NetworkAppletControl::sizeHint() const
{
ONetwork::instance()->synchronize(); // rebuild interface database
qDebug( "sizeHint (#ifaces=%d)", ONetwork::instance()->count() );
return QSize( 14+35+105+14 + 8, ONetwork::instance()->count() * 26 );