* Fixed up the HTTP kioslave git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdelibs@1170793 283d02a7-25f6-0310-bc7c-ecb5cbfe19dav3.5.13-sru
parent
0cebafdea7
commit
5f99bff82d
@ -0,0 +1,45 @@
|
||||
#SUBDIRS = networkstatustray
|
||||
|
||||
METASOURCES = AUTO
|
||||
|
||||
INCLUDES = -I$(top_srcdir)/kded -I$(top_srcdir) $(all_includes)
|
||||
|
||||
kde_module_LTLIBRARIES = kded_networkstatus.la
|
||||
|
||||
kded_networkstatus_la_SOURCES = networkstatus.cpp networkstatus.skel \
|
||||
network.cpp
|
||||
kded_networkstatus_la_LIBADD = $(LIB_KDECORE) $(LIB_KIO) ./libnetworkstatus.la
|
||||
kded_networkstatus_la_LDFLAGS = $(all_libraries) -module -avoid-version
|
||||
|
||||
servicesdir = $(kde_servicesdir)/kded
|
||||
|
||||
services_DATA = networkstatus.desktop
|
||||
|
||||
lib_LTLIBRARIES = libnetworkstatus.la libconnectionmanager.la
|
||||
|
||||
libnetworkstatus_la_LIBADD = $(LIB_KDECORE)
|
||||
libnetworkstatus_la_LDFLAGS = $(all_libraries)
|
||||
libnetworkstatus_la_SOURCES = networkstatuscommon.cpp
|
||||
|
||||
libconnectionmanager_la_LIBADD = $(LIB_KDECORE) libnetworkstatus.la
|
||||
libconnectionmanager_la_LDFLAGS = $(all_libraries)
|
||||
libconnectionmanager_la_SOURCES = connectionmanager.cpp connectionmanager_p.cpp networkstatusindicator.cpp connectionmanager.skel networkstatusiface.stub
|
||||
|
||||
noinst_PROGRAMS = networkstatustestservice networkstatustestclient managedconnectiontestclient
|
||||
|
||||
networkstatustestservice_LDFLAGS = $(all_libraries)
|
||||
networkstatustestservice_LDADD = $(LIB_KFILE) libnetworkstatus.la
|
||||
networkstatustestservice_SOURCES = testservice.cpp testserviceview.ui networkstatusiface.stub
|
||||
|
||||
networkstatustestclient_LDFLAGS = $(all_libraries)
|
||||
networkstatustestclient_LDADD = $(LIB_KFILE) libnetworkstatus.la libconnectionmanager.la
|
||||
networkstatustestclient_SOURCES = testclient.cpp testclientview.ui
|
||||
|
||||
managedconnectiontestclient_LDFLAGS = $(all_libraries)
|
||||
managedconnectiontestclient_LDADD = $(LIB_KFILE) libnetworkstatus.la libconnectionmanager.la
|
||||
managedconnectiontestclient_SOURCES = testclient2.cpp testclientview.ui
|
||||
|
||||
noinst_HEADERS = network.h testservice.h testclient.h
|
||||
|
||||
include_HEADERS = networkstatuscommon.h connectionmanager.h networkstatusindicator.h \
|
||||
networkstatusiface.h
|
@ -0,0 +1,29 @@
|
||||
This table defines the actions to be taken on state transition.
|
||||
|
||||
TODO: potentially add extra states OnlineReading and OnlineWriting
|
||||
|
||||
NEW
|
||||
|Offline | Online |
|
||||
---+---+----------------+---------------+
|
||||
| | |N|set online |
|
||||
| | |L|reload |
|
||||
| O | |C|resources |
|
||||
| F | +---------------+
|
||||
| F | |L|set online |
|
||||
O | | |C|reload res. |
|
||||
L | | | |write res. |
|
||||
D +---+----------------+---------------+
|
||||
| |N|set offline | |
|
||||
| |C| | |
|
||||
| | | | |
|
||||
| O +---------------+| |
|
||||
| N |U|set offline | |
|
||||
| |W|write locally | |
|
||||
| |C|(subject to | |
|
||||
| | | save policy)| |
|
||||
---+---+----------------+---------------+
|
||||
LC = Local changes exist
|
||||
NLC = No local changes exist
|
||||
UWC = Unsaved changes exist
|
||||
NC = no changes exist
|
||||
|
@ -0,0 +1,171 @@
|
||||
/* This file is part of kdepim.
|
||||
Copyright (C) 2005,2007 Will Stephenson <wstephenson@kde.org>
|
||||
|
||||
This library is free software; you can redistribute it and/or
|
||||
modify it under the terms of the GNU Library General Public
|
||||
License version 2 as published by the Free Software Foundation.
|
||||
|
||||
This library is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
Library General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU Library General Public License
|
||||
along with this library. If not, write to the Free Software
|
||||
Foundation, Inc., 51 Franklin Street, Fifth Floor,
|
||||
Boston, MA 02110-1301, USA.
|
||||
|
||||
As a special exception, permission is given to link this library
|
||||
with any edition of TQt, and distribute the resulting executable,
|
||||
without including the source code for TQt in the source distribution.
|
||||
*/
|
||||
|
||||
#include <kapplication.h>
|
||||
#include <kdebug.h>
|
||||
#include <kstaticdeleter.h>
|
||||
|
||||
#include "connectionmanager.h"
|
||||
#include "connectionmanager_p.h"
|
||||
|
||||
// Connection manager itself
|
||||
ConnectionManager::ConnectionManager( TQObject * parent, const char * name ) : DCOPObject( "ConnectionManager" ), TQObject( parent, name ), d( new ConnectionManagerPrivate( this ) )
|
||||
{
|
||||
d->service = new NetworkStatusIface_stub( kapp->dcopClient(), "kded", "networkstatus" );
|
||||
|
||||
connectDCOPSignal( "kded", "networkstatus", "statusChange(int)", "slotStatusChanged(int)", false );
|
||||
|
||||
initialise();
|
||||
}
|
||||
|
||||
ConnectionManager::~ConnectionManager()
|
||||
{
|
||||
delete d;
|
||||
}
|
||||
|
||||
ConnectionManager *ConnectionManager::s_self = 0L;
|
||||
|
||||
ConnectionManager *ConnectionManager::self()
|
||||
{
|
||||
static KStaticDeleter<ConnectionManager> deleter;
|
||||
if(!s_self)
|
||||
deleter.setObject( s_self, new ConnectionManager( 0, "connection_manager" ) );
|
||||
return s_self;
|
||||
}
|
||||
|
||||
void ConnectionManager::initialise()
|
||||
{
|
||||
// determine initial state and set the state object accordingly.
|
||||
d->status = ( NetworkStatus::Status )d->service->status();
|
||||
}
|
||||
|
||||
NetworkStatus::Status ConnectionManager::status()
|
||||
{
|
||||
return d->status;
|
||||
}
|
||||
|
||||
void ConnectionManager::slotStatusChanged( int status )
|
||||
{
|
||||
d->status = ( NetworkStatus::Status )status;
|
||||
switch ( status ) {
|
||||
case NetworkStatus::NoNetworks:
|
||||
break;
|
||||
case NetworkStatus::Unreachable:
|
||||
break;
|
||||
case NetworkStatus::OfflineDisconnected:
|
||||
case NetworkStatus::OfflineFailed:
|
||||
case NetworkStatus::ShuttingDown:
|
||||
case NetworkStatus::Offline:
|
||||
case NetworkStatus::Establishing:
|
||||
if ( d->disconnectPolicy == Managed ) {
|
||||
emit d->disconnected();
|
||||
} else if ( d->disconnectPolicy == OnNextChange ) {
|
||||
setDisconnectPolicy( Manual );
|
||||
emit d->disconnected();
|
||||
}
|
||||
break;
|
||||
case NetworkStatus::Online:
|
||||
if ( d->disconnectPolicy == Managed ) {
|
||||
emit d->connected();
|
||||
} else if ( d->disconnectPolicy == OnNextChange ) {
|
||||
setConnectPolicy( Manual );
|
||||
emit d->connected();
|
||||
}
|
||||
break;
|
||||
default:
|
||||
kdDebug() << k_funcinfo << "Unrecognised status code!" << endl;
|
||||
}
|
||||
emit statusChanged( d->status );
|
||||
}
|
||||
|
||||
ConnectionManager::ConnectionPolicy ConnectionManager::connectPolicy() const
|
||||
{
|
||||
return d->connectPolicy;
|
||||
}
|
||||
|
||||
void ConnectionManager::setConnectPolicy( ConnectionManager::ConnectionPolicy policy )
|
||||
{
|
||||
d->connectPolicy = policy;
|
||||
}
|
||||
|
||||
ConnectionManager::ConnectionPolicy ConnectionManager::disconnectPolicy() const
|
||||
{
|
||||
return d->disconnectPolicy;
|
||||
}
|
||||
|
||||
void ConnectionManager::setDisconnectPolicy( ConnectionManager::ConnectionPolicy policy )
|
||||
{
|
||||
d->disconnectPolicy = policy;
|
||||
}
|
||||
|
||||
void ConnectionManager::setManualConnectionPolicies()
|
||||
{
|
||||
d->connectPolicy = ConnectionManager::Manual;
|
||||
d->disconnectPolicy = ConnectionManager::Manual;
|
||||
}
|
||||
|
||||
void ConnectionManager::setManagedConnectionPolicies()
|
||||
{
|
||||
d->connectPolicy = ConnectionManager::Managed;
|
||||
d->disconnectPolicy = ConnectionManager::Managed;
|
||||
}
|
||||
|
||||
void ConnectionManager::registerConnectSlot( TQObject * receiver, const char * member )
|
||||
{
|
||||
d->connectReceiver = receiver;
|
||||
d->connectSlot = member;
|
||||
connect( d, TQT_SIGNAL( connected() ), receiver, member );
|
||||
}
|
||||
|
||||
void ConnectionManager::forgetConnectSlot()
|
||||
{
|
||||
disconnect( d, TQT_SIGNAL( connected() ), d->connectReceiver, d->connectSlot );
|
||||
d->connectReceiver = 0;
|
||||
d->connectSlot = 0;
|
||||
}
|
||||
|
||||
bool ConnectionManager::isConnectSlotRegistered() const
|
||||
{
|
||||
return ( d->connectSlot != 0 );
|
||||
}
|
||||
|
||||
void ConnectionManager::registerDisconnectSlot( TQObject * receiver, const char * member )
|
||||
{
|
||||
d->disconnectReceiver = receiver;
|
||||
d->disconnectSlot = member;
|
||||
connect( d, TQT_SIGNAL( disconnected() ), receiver, member );
|
||||
}
|
||||
|
||||
void ConnectionManager::forgetDisconnectSlot()
|
||||
{
|
||||
disconnect( d, TQT_SIGNAL( disconnected() ), d->disconnectReceiver, d->disconnectSlot );
|
||||
d->disconnectReceiver = 0;
|
||||
d->disconnectSlot = 0;
|
||||
}
|
||||
|
||||
bool ConnectionManager::isDisconnectSlotRegistered() const
|
||||
{
|
||||
return ( d->disconnectSlot != 0 );
|
||||
}
|
||||
|
||||
#include "connectionmanager.moc"
|
||||
|
@ -0,0 +1,167 @@
|
||||
/* This file is part of kdepim.
|
||||
Copyright (C) 2005,2007 Will Stephenson <wstephenson@kde.org>
|
||||
|
||||
This library is free software; you can redistribute it and/or
|
||||
modify it under the terms of the GNU Library General Public
|
||||
License version 2 as published by the Free Software Foundation.
|
||||
|
||||
This library is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
Library General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU Library General Public License
|
||||
along with this library. If not, write to the Free Software
|
||||
Foundation, Inc., 51 Franklin Street, Fifth Floor,
|
||||
Boston, MA 02110-1301, USA.
|
||||
|
||||
As a special exception, permission is given to link this library
|
||||
with any edition of TQt, and distribute the resulting executable,
|
||||
without including the source code for TQt in the source distribution.
|
||||
*/
|
||||
|
||||
#ifndef KDE_CONNECTION_MANAGER_H
|
||||
#define KDE_CONNECTION_MANAGER_H
|
||||
|
||||
#include <dcopobject.h>
|
||||
#include <kdemacros.h>
|
||||
|
||||
#include <networkstatuscommon.h>
|
||||
|
||||
class ConnectionManagerPrivate;
|
||||
|
||||
class KDE_EXPORT ConnectionManager : public TQObject, virtual public DCOPObject
|
||||
{
|
||||
Q_OBJECT
|
||||
K_DCOP
|
||||
k_dcop:
|
||||
void slotStatusChanged( int status );
|
||||
public:
|
||||
/**
|
||||
* This defines application policy in response to networking connect/disconnect events
|
||||
* Manual - the app only disconnects when the user does so
|
||||
* OnNextChange - the app should connect or disconnect the next time the network changes state, thereafter
|
||||
* Manual
|
||||
* Managed - the app should disconnect when the ConnectionManager thinks the system is
|
||||
* offline
|
||||
*/
|
||||
enum ConnectionPolicy { Manual, OnNextChange, Managed };
|
||||
/**
|
||||
* Set a policy to manage the application's connect behaviour
|
||||
*/
|
||||
void setConnectPolicy( ConnectionPolicy );
|
||||
/**
|
||||
* Retrieve a policy managing the application's connect behaviour
|
||||
*/
|
||||
ConnectionPolicy connectPolicy() const;
|
||||
|
||||
/**
|
||||
* Set a policy to manage the application's disconnect behaviour
|
||||
*/
|
||||
void setDisconnectPolicy( ConnectionPolicy );
|
||||
|
||||
/**
|
||||
* Retrieve a policy managing the application's disconnect behaviour
|
||||
*/
|
||||
ConnectionPolicy disconnectPolicy() const;
|
||||
|
||||
/*
|
||||
* We'll get logic of the form
|
||||
* onStatusChange() {
|
||||
* if ( ConnectionManager::self()->policy( ConnectionManager::ConnectBehaviour ) == ConnectionManager::OnNextChange ||
|
||||
* ConnectionManager::self()->policy( ConnectionManager::ConnectBehaviour ) == ConnectionManager::Managed )
|
||||
* {
|
||||
* // do connect
|
||||
*
|
||||
* // reset the policy
|
||||
* if ( ConnectionManager::self()->policy( ConnectionManager::ConnectBehaviour ) == ConnectionManager::OnNextChange )
|
||||
* ConnectionManager::self()->setPolicy( ConnectionManager::ConnectionManager,
|
||||
* ConnectionManager::Manual );
|
||||
* }
|
||||
*
|
||||
* Do we just use the CM for policy storage, or do we try to factor the logic to implement the
|
||||
* policy into the CM too?
|
||||
*
|
||||
* could signal doConnect(), then reset the policy
|
||||
* or could register a connect slot
|
||||
* registerConnectMethod( TQObject * receiver, const char * member );
|
||||
* unregisterConnectMethod();
|
||||
* etc.
|
||||
*
|
||||
* The problem with automatically controlled behaviour, where policy may change as a result of a
|
||||
* connect, is that if it is also manually altered, the CM needs to be updated. But the CM needs to
|
||||
* be updated in any case.
|
||||
* CM need
|
||||
*/
|
||||
/**
|
||||
* Lazy-method to set Manual on both policies
|
||||
*/
|
||||
void setManualConnectionPolicies();
|
||||
/**
|
||||
* Lazy-method to set Managed on both policies
|
||||
*/
|
||||
void setManagedConnectionPolicies();
|
||||
|
||||
/**
|
||||
* Record a slot to call on a given receiving TQObject when
|
||||
* 1) the network connection is online,
|
||||
* 2) the policy mandates that the app connect
|
||||
*
|
||||
* Only one slot may be registered at any one time. If a second slot is
|
||||
* registered, the first slot is forgotten
|
||||
* @param receiver the TQObject where the slot is located
|
||||
* @param member the slot to call. Set up member using the TQT_SLOT() macro.
|
||||
*/
|
||||
void registerConnectSlot( TQObject * receiver, const char * member );
|
||||
|
||||
/**
|
||||
* Forget any connect slot previously registered
|
||||
*/
|
||||
void forgetConnectSlot();
|
||||
|
||||
/**
|
||||
* Has any slot been registered to be called on connect?
|
||||
*/
|
||||
bool isConnectSlotRegistered() const;
|
||||
|
||||
/**
|
||||
* Record a slot to call on a given receiving TQObject when
|
||||
* 1) the network connection goes offline (in any way ),
|
||||
* 2) the policy mandates that the app disconnect
|
||||
*
|
||||
* Only one slot may be registered at any one time. If a second slot is
|
||||
* registered, the first slot is forgotten
|
||||
* @param receiver the TQObject where the slot is located
|
||||
* @param member the slot to call. Set up member using the TQT_SLOT() macro.
|
||||
*/
|
||||
void registerDisconnectSlot( TQObject * receiver, const char * member );
|
||||
|
||||
/**
|
||||
* Forget any disconnect slot previously registered
|
||||
*/
|
||||
void forgetDisconnectSlot();
|
||||
|
||||
/**
|
||||
* Has any slot been registered to be called on disconnect?
|
||||
*/
|
||||
bool isDisconnectSlotRegistered() const;
|
||||
|
||||
/// existing API
|
||||
|
||||
static ConnectionManager* self();
|
||||
virtual ~ConnectionManager();
|
||||
NetworkStatus::Status status();
|
||||
signals:
|
||||
// signal that the network for a hostname is up/down
|
||||
void statusChanged( NetworkStatus::Status status );
|
||||
private:
|
||||
// sets up internal state
|
||||
void initialise();
|
||||
// reread the desktop status from the daemon and update internal state
|
||||
ConnectionManager( TQObject *parent, const char * name );
|
||||
ConnectionManagerPrivate * d;
|
||||
static ConnectionManager * s_self;
|
||||
};
|
||||
|
||||
#endif
|
||||
|
@ -0,0 +1,13 @@
|
||||
#include "connectionmanager_p.h"
|
||||
|
||||
ConnectionManagerPrivate::ConnectionManagerPrivate(TQObject * parent, const char * name ) : TQObject( parent, name ), service( 0 ), connectPolicy( ConnectionManager::Managed ),
|
||||
disconnectPolicy( ConnectionManager::Managed ), connectReceiver( 0 ), connectSlot( 0 ),
|
||||
disconnectReceiver( 0 ), disconnectSlot( 0 )
|
||||
{
|
||||
}
|
||||
|
||||
ConnectionManagerPrivate::~ConnectionManagerPrivate()
|
||||
{
|
||||
}
|
||||
|
||||
#include "connectionmanager_p.moc"
|
@ -0,0 +1,55 @@
|
||||
/* This file is part of the KDE project
|
||||
Copyright (C) 2007 Will Stephenson <wstephenson@kde.org>
|
||||
|
||||
This library is free software; you can redistribute it and/or
|
||||
modify it under the terms of the GNU Library General Public
|
||||
License version 2 as published by the Free Software Foundation.
|
||||
|
||||
This library is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
Library General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU Library General Public License
|
||||
along with this library. If not, write to the Free Software
|
||||
Foundation, Inc., 51 Franklin Street, Fifth Floor,
|
||||
Boston, MA 02110-1301, USA.
|
||||
|
||||
As a special exception, permission is given to link this library
|
||||
with any edition of TQt, and distribute the resulting executable,
|
||||
without including the source code for TQt in the source distribution.
|
||||
*/
|
||||
|
||||
#ifndef CONNECTIONMANAGERPRIVATE_H
|
||||
#define CONNECTIONMANAGERPRIVATE_H
|
||||
|
||||
#include <tqobject.h>
|
||||
|
||||
#include "connectionmanager.h"
|
||||
#include "networkstatuscommon.h"
|
||||
#include "networkstatusiface_stub.h"
|
||||
|
||||
|
||||
// ConnectionManager's private parts
|
||||
class ConnectionManagerPrivate : public TQObject
|
||||
{
|
||||
Q_OBJECT
|
||||
friend class ConnectionManager;
|
||||
public:
|
||||
ConnectionManagerPrivate( TQObject * parent = 0, const char * name = 0);
|
||||
~ConnectionManagerPrivate();
|
||||
// this holds the currently active state
|
||||
NetworkStatus::Status status;
|
||||
NetworkStatusIface_stub * service;
|
||||
ConnectionManager::ConnectionPolicy connectPolicy;
|
||||
ConnectionManager::ConnectionPolicy disconnectPolicy;
|
||||
TQObject * connectReceiver;
|
||||
const char * connectSlot;
|
||||
TQObject * disconnectReceiver;
|
||||
const char * disconnectSlot;
|
||||
signals:
|
||||
void connected();
|
||||
void disconnected();
|
||||
};
|
||||
|
||||
#endif
|
@ -0,0 +1,62 @@
|
||||
/* This file is part of kdepim.
|
||||
Copyright (C) 2005,2007 Will Stephenson <wstephenson@kde.org>
|
||||
|
||||
This library is free software; you can redistribute it and/or
|
||||
modify it under the terms of the GNU Library General Public
|
||||
License version 2 as published by the Free Software Foundation.
|
||||
|
||||
This library is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
Library General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU Library General Public License
|
||||
along with this library. If not, write to the Free Software
|
||||
Foundation, Inc., 51 Franklin Street, Fifth Floor,
|
||||
Boston, MA 02110-1301, USA.
|
||||
|
||||
As a special exception, permission is given to link this library
|
||||
with any edition of TQt, and distribute the resulting executable,
|
||||
without including the source code for TQt in the source distribution.
|
||||
*/
|
||||
|
||||
#include <kdebug.h>
|
||||
|
||||
#include "network.h"
|
||||
|
||||
Network::Network( NetworkStatus::Properties properties )
|
||||
: m_name( properties.name ), m_status( properties.status ), m_service( properties.service )
|
||||
{
|
||||
}
|
||||
|
||||
void Network::setStatus( NetworkStatus::Status status )
|
||||
{
|
||||
m_status = status;
|
||||
}
|
||||
|
||||
NetworkStatus::Status Network::status()
|
||||
{
|
||||
return m_status;
|
||||
}
|
||||
|
||||
void Network::setName( const TQString& name )
|
||||
{
|
||||
m_name = name;
|
||||
}
|
||||
|
||||
TQString Network::name()
|
||||
{
|
||||
return m_name;
|
||||
}
|
||||
|
||||
TQString Network::service()
|
||||
{
|
||||
return m_service;
|
||||
}
|
||||
|
||||
void Network::setService( const TQString& service )
|
||||
{
|
||||
m_service = service;
|
||||
}
|
||||
|
||||
// vim: sw=4 ts=4
|
@ -0,0 +1,60 @@
|
||||
/* This file is part of kdepim.
|
||||
Copyright (C) 2005,2007 Will Stephenson <wstephenson@kde.org>
|
||||
|
||||
This library is free software; you can redistribute it and/or
|
||||
modify it under the terms of the GNU Library General Public
|
||||
License version 2 as published by the Free Software Foundation.
|
||||
|
||||
This library is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
Library General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU Library General Public License
|
||||
along with this library. If not, write to the Free Software
|
||||
Foundation, Inc., 51 Franklin Street, Fifth Floor,
|
||||
Boston, MA 02110-1301, USA.
|
||||
|
||||
As a special exception, permission is given to link this library
|
||||
with any edition of TQt, and distribute the resulting executable,
|
||||
without including the source code for TQt in the source distribution.
|
||||
*/
|
||||
|
||||
#ifndef NETWORKSTATUS_NETWORK_H
|
||||
#define NETWORKSTATUS_NETWORK_H
|
||||
|
||||
#include "networkstatuscommon.h"
|
||||
|
||||
class Network
|
||||
{
|
||||
public:
|
||||
Network( const TQString name );
|
||||
Network( NetworkStatus::Properties properties );
|
||||
/**
|
||||
* Update the status of this network
|
||||
*/
|
||||
void setStatus( NetworkStatus::Status status );
|
||||
/**
|
||||
* The connection status of this network
|
||||
*/
|
||||
NetworkStatus::Status status();
|
||||
/**
|
||||
* The name of this network
|
||||
*/
|
||||
TQString name();
|
||||
void setName( const TQString& name );
|
||||
/**
|
||||
* Returns the service owning this network
|
||||
*/
|
||||
TQString service();
|
||||
void setService( const TQString& service );
|
||||
|
||||
private:
|
||||
Network( const Network & );
|
||||
TQString m_name;
|
||||
NetworkStatus::Status m_status;
|
||||
TQString m_service;
|
||||
};
|
||||
|
||||
#endif
|
||||
// vim: sw=4 ts=4
|
@ -0,0 +1,163 @@
|
||||
/* This file is part of kdepim
|
||||
Copyright (C) 2005,2007 Will Stephenson <wstephenson@kde.org>
|
||||
|
||||
This library is free software; you can redistribute it and/or
|
||||
modify it under the terms of the GNU Library General Public
|
||||
License version 2 as published by the Free Software Foundation.
|
||||
|
||||
This library is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
Library General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU Library General Public License
|
||||
along with this library. If not, write to the Free Software
|
||||
Foundation, Inc., 51 Franklin Street, Fifth Floor,
|
||||
Boston, MA 02110-1301, USA.
|
||||
|
||||
As a special exception, permission is given to link this library
|
||||
with any edition of TQt, and distribute the resulting executable,
|
||||
without including the source code for TQt in the source distribution.
|
||||
*/
|
||||
|
||||
#include "networkstatus.h"
|
||||
|
||||
#include <tqmap.h>
|
||||
|
||||
#include <dcopclient.h>
|
||||
#include <kapplication.h>
|
||||
#include <kdebug.h>
|
||||
|
||||
#include "network.h"
|
||||
#include <kdemacros.h>
|
||||
|
||||
extern "C" {
|
||||
KDE_EXPORT KDEDModule* create_networkstatus( const TQCString& obj )
|
||||
{
|
||||
return new NetworkStatusModule( obj );
|
||||
}
|
||||
}
|
||||
|
||||
// INTERNALLY USED STRUCTS AND TYPEDEFS
|
||||
|
||||
typedef TQMap< TQString, Network * > NetworkMap;
|
||||
|
||||
class NetworkStatusModule::Private
|
||||
{
|
||||
public:
|
||||
NetworkMap networks;
|
||||
NetworkStatus::Status status;
|
||||
};
|
||||
|
||||
// CTORS/DTORS
|
||||
|
||||
NetworkStatusModule::NetworkStatusModule( const TQCString & obj ) : KDEDModule( obj ), d( new Private )
|
||||
{
|
||||
d->status = NetworkStatus::NoNetworks;
|
||||
connect( kapp->dcopClient(), TQT_SIGNAL( applicationRemoved( const TQCString& ) ) , this, TQT_SLOT( unregisteredFromDCOP( const TQCString& ) ) );
|
||||
// connect( kapp->dcopClient(), TQT_SIGNAL( applicationRegistered( const TQCString& ) ) , this, TQT_SLOT( registeredToDCOP( const TQCString& ) ) );
|
||||
}
|
||||
|
||||
NetworkStatusModule::~NetworkStatusModule()
|
||||
{
|
||||
NetworkMap::ConstIterator it;
|
||||
const NetworkMap::ConstIterator end = d->networks.end();
|
||||
|
||||
for ( it = d->networks.begin(); it != end; ++it ) {
|
||||
delete ( *it );
|
||||
}
|
||||
|
||||
delete d;
|
||||
}
|
||||
|
||||
// CLIENT INTERFACE
|
||||
|
||||
TQStringList NetworkStatusModule::networks()
|
||||
{
|
||||
kdDebug() << k_funcinfo << " contains " << d->networks.count() << " networks" << endl;
|
||||
return d->networks.keys();
|
||||
}
|
||||
|
||||
int NetworkStatusModule::status()
|
||||
{
|
||||
kdDebug() << k_funcinfo << " status: " << (int)d->status << endl;
|
||||
return (int)d->status;
|
||||
}
|
||||
|
||||
//protected:
|
||||
|
||||
void NetworkStatusModule::updateStatus()
|
||||
{
|
||||
NetworkStatus::Status bestStatus = NetworkStatus::NoNetworks;
|
||||
const NetworkStatus::Status oldStatus = d->status;
|
||||
|
||||
NetworkMap::ConstIterator it;
|
||||
const NetworkMap::ConstIterator end = d->networks.end();
|
||||
for ( it = d->networks.begin(); it != end; ++it ) {
|
||||
if ( ( *it )->status() > bestStatus )
|
||||
bestStatus = ( *it )->status();
|
||||
}
|
||||
d->status = bestStatus;
|
||||
|
||||
if ( oldStatus != d->status ) {
|
||||
statusChange( (int)d->status );
|
||||
}
|
||||
}
|
||||
|
||||
void NetworkStatusModule::unregisteredFromDCOP( const TQCString & appId )
|
||||
{
|
||||
// unregister and delete any networks owned by a service that has just unregistered
|
||||
NetworkMap::Iterator it = d->networks.begin();
|
||||
const NetworkMap::Iterator end = d->networks.end();
|
||||
while (it != d->networks.end())
|
||||
{
|
||||
if ( ( *it )->service() == TQString( appId ) )
|
||||
{
|
||||
NetworkMap::Iterator toRemove = it++;
|
||||
delete *toRemove;
|
||||
d->networks.remove( toRemove );
|
||||
updateStatus();
|
||||
continue;
|
||||
}
|
||||
++it;
|
||||
}
|
||||
}
|
||||
|
||||
// SERVICE INTERFACE //
|
||||
void NetworkStatusModule::setNetworkStatus( const TQString & networkName, int st )
|
||||
{
|
||||
kdDebug() << k_funcinfo << networkName << ", " << st << endl;
|
||||
NetworkStatus::Status changedStatus = (NetworkStatus::Status)st;
|
||||
Network * net = 0;
|
||||
NetworkMap::Iterator it = d->networks.find( networkName );
|
||||
if ( it != d->networks.end() ) {
|
||||
net = (*it);
|
||||
net->setStatus( changedStatus );
|
||||
updateStatus();
|
||||
}
|
||||
else
|
||||
kdDebug() << " No network named '" << networkName << "' found." << endl;
|
||||
}
|
||||
|
||||
void NetworkStatusModule::registerNetwork( const NetworkStatus::Properties properties )
|
||||
{
|
||||
kdDebug() << k_funcinfo << properties.name << ", with status " << properties.status << endl;
|
||||
|
||||
d->networks.insert( properties.name, new Network( properties ) );
|
||||
updateStatus();
|
||||
}
|
||||
|
||||
void NetworkStatusModule::unregisterNetwork( const TQString & networkName )
|
||||
{
|
||||
kdDebug() << k_funcinfo << networkName << endl;
|
||||
|
||||
NetworkMap::Iterator it = d->networks.find( networkName );
|
||||
if ( it != d->networks.end() ) {
|
||||
delete *it;
|
||||
d->networks.remove( it );
|
||||
}
|
||||
updateStatus();
|
||||
}
|
||||
|
||||
#include "networkstatus.moc"
|
||||
// vim: set noet sw=4 ts=4:
|
@ -0,0 +1,66 @@
|
||||
/* This file is part of kdepim
|
||||
Copyright (C) 2005,2007 Will Stephenson <wstephenson@kde.org>
|
||||
|
||||
This library is free software; you can redistribute it and/or
|
||||
modify it under the terms of the GNU Library General Public
|
||||
License version 2 as published by the Free Software Foundation.
|
||||
|
||||
This library is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
Library General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU Library General Public License
|
||||
along with this library. If not, write to the Free Software
|
||||
Foundation, Inc., 51 Franklin Street, Fifth Floor,
|
||||
Boston, MA 02110-1301, USA.
|
||||
|
||||
As a special exception, permission is given to link this library
|
||||
with any edition of TQt, and distribute the resulting executable,
|
||||
without including the source code for TQt in the source distribution.
|
||||
*/
|
||||
|
||||
#ifndef KDED_NETWORKSTATUS_H
|
||||
#define KDED_NETWORKSTATUS_H
|
||||
|
||||
#include <kdedmodule.h>
|
||||
|
||||
#include "networkstatuscommon.h"
|
||||
#include "network.h"
|
||||
|
||||
class NetworkStatusModule : virtual public KDEDModule
|
||||
{
|
||||
Q_OBJECT
|
||||
K_DCOP
|
||||
public:
|
||||
NetworkStatusModule( const TQCString& obj );
|
||||
~NetworkStatusModule();
|
||||
k_dcop:
|
||||
// Client interface
|
||||
TQStringList networks();
|
||||
int status();
|
||||
// Service interface
|
||||
void setNetworkStatus( const TQString & networkName, int status );
|
||||
void registerNetwork( NetworkStatus::Properties properties );
|
||||
void unregisterNetwork( const TQString & networkName );
|
||||
k_dcop_signals:
|
||||
/**
|
||||
* A status change occurred affecting the overall connectivity
|
||||
* @param status The new status
|
||||
*/
|
||||
void statusChange( int status );
|
||||
protected slots:
|
||||
//void registeredToDCOP( const TQCString& appId );
|
||||
void unregisteredFromDCOP( const TQCString& appId );
|
||||
|
||||
protected:
|
||||
// recalculate cached status
|
||||
void updateStatus();
|
||||
|
||||
private:
|
||||
class Private;
|
||||
Private *d;
|
||||
};
|
||||
|
||||
#endif
|
||||
// vim: sw=4 ts=4
|
@ -0,0 +1,108 @@
|
||||
<?xml version = '1.0'?>
|
||||
<kdevelop>
|
||||
<general>
|
||||
<author>Will Stephenson</author>
|
||||
<email>wstephenson@suse.de</email>
|
||||
<version>$VERSION$</version>
|
||||
<projectmanagement>KDevKDEAutoProject</projectmanagement>
|
||||
<primarylanguage>C++</primarylanguage>
|
||||
<keywords>
|
||||
<keyword>TQt</keyword>
|
||||
<keyword>KDE</keyword>
|
||||
</keywords>
|
||||
</general>
|
||||
<kdevfileview>
|
||||
<groups>
|
||||
<group pattern="*.cpp;*.cxx;*.h" name="Sources" />
|
||||
<group pattern="*.ui" name="User Interface" />
|
||||
<group pattern="*.png" name="Icons" />
|
||||
<group pattern="*.po;*.ts" name="Translations" />
|
||||
<group pattern="*" name="Others" />
|
||||
<hidenonprojectfiles>false</hidenonprojectfiles>
|
||||
<hidenonlocation>false</hidenonlocation>
|
||||
</groups>
|
||||
<tree>
|
||||
<hidepatterns>*.o,*.lo,CVS</hidepatterns>
|
||||
<hidenonprojectfiles>false</hidenonprojectfiles>
|
||||
</tree>
|
||||
</kdevfileview>
|
||||
<kdevdoctreeview>
|
||||
<ignoretocs>
|
||||
<toc>ada</toc>
|
||||
<toc>ada_bugs_gcc</toc>
|
||||
<toc>bash</toc>
|
||||
<toc>bash_bugs</toc>
|
||||
<toc>clanlib</toc>
|
||||
<toc>fortran_bugs_gcc</toc>
|
||||
<toc>gnome1</toc>
|
||||
<toc>gnustep</toc>
|
||||
<toc>gtk</toc>
|
||||
<toc>gtk_bugs</toc>
|
||||
<toc>haskell</toc>
|
||||
<toc>haskell_bugs_ghc</toc>
|
||||
<toc>java_bugs_gcc</toc>
|
||||
<toc>java_bugs_sun</toc>
|
||||
<toc>opengl</toc>
|
||||
<toc>pascal_bugs_fp</toc>
|
||||
<toc>php</toc>
|
||||
<toc>php_bugs</toc>
|
||||
<toc>perl</toc>
|
||||
<toc>perl_bugs</toc>
|
||||
<toc>python</toc>
|
||||
<toc>python_bugs</toc>
|
||||
<toc>ruby</toc>
|
||||
<toc>ruby_bugs</toc>
|
||||
<toc>sdl</toc>
|
||||
<toc>stl</toc>
|
||||
<toc>sw</toc>
|
||||
<toc>w3c-dom-level2-html</toc>
|
||||
<toc>w3c-svg</toc>
|
||||
<toc>w3c-uaag10</toc>
|
||||
<toc>wxwidgets_bugs</toc>
|
||||
</ignoretocs>
|
||||
<ignoreqt_xml>
|
||||
<toc>qmake User Guide</toc>
|
||||
</ignoreqt_xml>
|
||||
</kdevdoctreeview>
|
||||
<kdevdebugger>
|
||||
<general>
|
||||
<dbgshell>libtool</dbgshell>
|
||||
</general>
|
||||
</kdevdebugger>
|
||||
<kdevfilecreate>
|
||||
<useglobaltypes>
|
||||
<type ext="ui" />
|
||||
<type ext="cpp" />
|
||||
<type ext="h" />
|
||||
</useglobaltypes>
|
||||
</kdevfilecreate>
|
||||
<kdevautoproject>
|
||||
<make>
|
||||
<envvars>
|
||||
<envvar value="1" name="WANT_AUTOCONF_2_5" />
|
||||
<envvar value="1" name="WANT_AUTOMAKE_1_6" />
|
||||
</envvars>
|
||||
</make>
|
||||
<run>
|
||||
<directoryradio>executable</directoryradio>
|
||||
</run>
|
||||
<general>
|
||||
<activetarget>kded_networkstatus.la</activetarget>
|
||||
</general>
|
||||
</kdevautoproject>
|
||||
<kdevcppsupport>
|
||||
<references/>
|
||||
<codecompletion>
|
||||
<includeGlobalFunctions>true</includeGlobalFunctions>
|
||||
<includeTypes>true</includeTypes>
|
||||
<includeEnums>true</includeEnums>
|
||||
<includeTypedefs>false</includeTypedefs>
|
||||
<automaticCodeCompletion>true</automaticCodeCompletion>
|
||||
<automaticArgumentsHint>true</automaticArgumentsHint>
|
||||
<automaticHeaderCompletion>true</automaticHeaderCompletion>
|
||||
<codeCompletionDelay>250</codeCompletionDelay>
|
||||
<argumentsHintDelay>400</argumentsHintDelay>
|
||||
<headerCompletionDelay>250</headerCompletionDelay>
|
||||
</codecompletion>
|
||||
</kdevcppsupport>
|
||||
</kdevelop>
|
@ -0,0 +1,76 @@
|
||||
/* This file is part of kdepim.
|
||||
Copyright (C) 2005,2007 Will Stephenson <wstephenson@kde.org>
|
||||
|
||||
This library is free software; you can redistribute it and/or
|
||||
modify it under the terms of the GNU Library General Public
|
||||
License version 2 as published by the Free Software Foundation.
|
||||
|
||||
This library is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
Library General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU Library General Public License
|
||||
along with this library. If not, write to the Free Software
|
||||
Foundation, Inc., 51 Franklin Street, Fifth Floor,
|
||||
Boston, MA 02110-1301, USA.
|
||||
|
||||
As a special exception, permission is given to link this library
|
||||
with any edition of TQt, and distribute the resulting executable,
|
||||
without including the source code for TQt in the source distribution.
|
||||
*/
|
||||
|
||||
#include "networkstatuscommon.h"
|
||||
|
||||
TQDataStream & operator<< ( TQDataStream & s, const NetworkStatus::Properties p )
|
||||
{
|
||||
s << p.name;
|
||||
s << (int)p.status;
|
||||
s << p.service;
|
||||
return s;
|
||||
}
|
||||
|
||||
TQDataStream & operator>> ( TQDataStream & s, NetworkStatus::Properties &p )
|
||||
{
|
||||
int status;
|
||||
s >> p.name;
|
||||
s >> status;
|
||||
p.status = (NetworkStatus::Status)status;
|
||||
s >> p.service;
|
||||
return s;
|
||||
}
|
||||
|
||||
namespace NetworkStatus
|
||||
{
|
||||
TQString toString( NetworkStatus::Status st )
|
||||
{
|
||||
TQString str;
|
||||
switch ( st ) {
|
||||
case NetworkStatus::NoNetworks:
|
||||
str = "NoNetworks";
|
||||
break;
|
||||
case NetworkStatus::Unreachable:
|
||||
str = "Unreachable";
|
||||
break;
|
||||
case NetworkStatus::OfflineDisconnected:
|
||||
str = "OfflineDisconnected";
|
||||
break;
|
||||
case NetworkStatus::OfflineFailed:
|
||||
str = "OfflineFailed";
|
||||
break;
|
||||
case NetworkStatus::ShuttingDown:
|
||||
str = "ShuttingDown";
|
||||
break;
|
||||
case NetworkStatus::Offline:
|
||||
str = "Offline";
|
||||
break;
|
||||
case NetworkStatus::Establishing:
|
||||
str = "Establishing";
|
||||
break;
|
||||
case NetworkStatus::Online:
|
||||
str = "Online";
|
||||
break;
|
||||
}
|
||||
return str;
|
||||
}
|
||||
} // namespace NetworkStatus
|
@ -0,0 +1,52 @@
|
||||
/* This file is part of kdepim
|
||||
Copyright (C) 2005,2007 Will Stephenson <wstephenson@kde.org>
|
||||
|
||||
This library is free software; you can redistribute it and/or
|
||||
modify it under the terms of the GNU Library General Public
|
||||
License version 2 as published by the Free Software Foundation.
|
||||
|
||||
This library is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
Library General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU Library General Public License
|
||||
along with this library. If not, write to the Free Software
|
||||
Foundation, Inc., 51 Franklin Street, Fifth Floor,
|
||||
Boston, MA 02110-1301, USA.
|
||||
|
||||
As a special exception, permission is given to link this library
|
||||
with any edition of TQt, and distribute the resulting executable,
|
||||
without including the source code for TQt in the source distribution.
|
||||
*/
|
||||
|
||||
#ifndef NETWORKSTATUS_COMMON_H
|
||||
#define NETWORKSTATUS_COMMON_H
|
||||
|
||||
#include <tqstringlist.h>
|
||||
|
||||
namespace NetworkStatus
|
||||
{
|
||||
enum Status { NoNetworks = 1, Unreachable, OfflineDisconnected, OfflineFailed, ShuttingDown, Offline, Establishing, Online };
|
||||
enum RequestResult { RequestAccepted = 1, Connected, UserRefused, Unavailable };
|
||||
enum UnusedDemandPolicy { All, User, None, Permanent };
|
||||
|
||||
// BINARY COMPATIBILITY ALERT BEGIN !!!!
|
||||
struct Properties
|
||||
{
|
||||
TQString name;
|
||||
Status status;
|
||||
UnusedDemandPolicy unused1;
|
||||
TQCString service;
|
||||
bool unused3;
|
||||
TQStringList unused4;
|
||||
};
|
||||
// BINARY COMPATIBILITY ALERT END !!!!
|
||||
|
||||
TQString toString( Status st );
|
||||
}
|
||||
|
||||
TQDataStream & operator>> ( TQDataStream & s, NetworkStatus::Properties &p );
|
||||
TQDataStream & operator<< ( TQDataStream & s, const NetworkStatus::Properties p );
|
||||
|
||||
#endif
|
@ -0,0 +1,50 @@
|
||||
/* This file is part of kdepim.
|
||||
Copyright (C) 2005,2007 Will Stephenson <wstephenson@kde.org>
|
||||
|
||||
This library is free software; you can redistribute it and/or
|
||||
modify it under the terms of the GNU Library General Public
|
||||
License version 2 as published by the Free Software Foundation.
|
||||
|
||||
This library is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
Library General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU Library General Public License
|
||||
along with this library. If not, write to the Free Software
|
||||
Foundation, Inc., 51 Franklin Street, Fifth Floor,
|
||||
Boston, MA 02110-1301, USA.
|
||||
|
||||
As a special exception, permission is given to link this library
|
||||
with any edition of TQt, and distribute the resulting executable,
|
||||
without including the source code for TQt in the source distribution.
|
||||
*/
|
||||
|
||||
#ifndef KDED_NETWORKSTATUSIFACE_H
|
||||
#define KDED_NETWORKSTATUSIFACE_H
|
||||
|
||||
#include <dcopobject.h>
|
||||
#include <tqstringlist.h>
|
||||
|
||||
#include "networkstatuscommon.h"
|
||||
|
||||
class NetworkStatusIface : virtual public DCOPObject
|
||||
{
|
||||
K_DCOP
|
||||
k_dcop:
|
||||
// Client interface
|
||||
virtual TQStringList networks() = 0;
|
||||
virtual int status() = 0;
|
||||
// Service interface
|
||||
virtual void setNetworkStatus( const TQString & networkName, int status ) = 0;
|
||||
virtual void registerNetwork( NetworkStatus::Properties properties ) = 0;
|
||||
virtual void unregisterNetwork( const TQString & networkName ) = 0 ;
|
||||
k_dcop_signals:
|
||||
/**
|
||||
* A status change occurred affecting the overall connectivity
|
||||
* @param status The new status
|
||||
*/
|
||||
virtual void statusChange( int status ) = 0;
|
||||
};
|
||||
#endif
|
||||
// vim: sw=4 ts=4
|
@ -0,0 +1,64 @@
|
||||
/* This file is part of the KDE project
|
||||
Copyright (C) 2007 Will Stephenson <wstephenson@kde.org>
|
||||
|
||||
This library is free software; you can redistribute it and/or
|
||||
modify it under the terms of the GNU Library General Public
|
||||
License version 2 as published by the Free Software Foundation.
|
||||
|
||||
This library is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
Library General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU Library General Public License
|
||||
along with this library. If not, write to the Free Software
|
||||
Foundation, Inc., 51 Franklin Street, Fifth Floor,
|
||||
Boston, MA 02110-1301, USA.
|
||||
|
||||
As a special exception, permission is given to link this library
|
||||
with any edition of TQt, and distribute the resulting executable,
|
||||
without including the source code for TQt in the source distribution.
|
||||
*/
|
||||
|
||||
#include <tqlabel.h>
|
||||
#include <tqtooltip.h>
|
||||
#include <kiconloader.h>
|
||||
#include <klocale.h>
|
||||
|
||||
#include "connectionmanager.h"
|
||||
|
||||
#include "networkstatusindicator.h"
|
||||
|
||||
StatusBarNetworkStatusIndicator::StatusBarNetworkStatusIndicator(
|
||||
TQWidget * parent, const char * name ) : TQHBox( parent, name )/*, d( new StatusBarNetworkStatusIndicatorPrivate )*/
|
||||
{
|
||||
setMargin( 2 );
|
||||
setSpacing( 1 );
|
||||
TQLabel * label = new TQLabel( this, "offlinemodelabel" );
|
||||
label->setPixmap( SmallIcon("connect_no") );
|
||||
TQToolTip::add( label, i18n( "The desktop is offline" ) );
|
||||
|
||||
connect( ConnectionManager::self(), TQT_SIGNAL( statusChanged( NetworkStatus::Status ) ),
|
||||
TQT_SLOT( networkStatusChanged( NetworkStatus::Status) ) );
|
||||
|
||||
}
|
||||
|
||||
void StatusBarNetworkStatusIndicator::init()
|
||||
{
|
||||
networkStatusChanged( ConnectionManager::self()->status());
|
||||
}
|
||||
|
||||
StatusBarNetworkStatusIndicator::~StatusBarNetworkStatusIndicator()
|
||||
{
|
||||
}
|
||||
|
||||
void StatusBarNetworkStatusIndicator::networkStatusChanged( NetworkStatus::Status status )
|
||||
{
|
||||
if ( status == NetworkStatus::Online || status == NetworkStatus::NoNetworks ) {
|
||||
hide();
|
||||
} else {
|
||||
show();
|
||||
}
|
||||
}
|
||||
|
||||
#include "networkstatusindicator.moc"
|
@ -0,0 +1,42 @@
|
||||
/* This file is part of the KDE project
|
||||
Copyright (C) 2007 Will Stephenson <wstephenson@kde.org>
|
||||
|
||||
This library is free software; you can redistribute it and/or
|
||||
modify it under the terms of the GNU Library General Public
|
||||
License version 2 as published by the Free Software Foundation.
|
||||
|
||||
This library is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
Library General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU Library General Public License
|
||||
along with this library. If not, write to the Free Software
|
||||
Foundation, Inc., 51 Franklin Street, Fifth Floor,
|
||||
Boston, MA 02110-1301, USA.
|
||||
|
||||
As a special exception, permission is given to link this library
|
||||
with any edition of TQt, and distribute the resulting executable,
|
||||
without including the source code for TQt in the source distribution.
|
||||
*/
|
||||
|
||||
#ifndef KDE_NETWORKSTATUS_INDICATOR_H
|
||||
#define KDE_NETWORKSTATUS_INDICATOR_H
|
||||
|
||||
#include <tqhbox.h>
|
||||
#include <kdemacros.h>
|
||||
#include <networkstatuscommon.h>
|
||||
|
||||
class StatusBarNetworkStatusIndicator : public TQHBox
|
||||
{
|
||||
Q_OBJECT
|
||||
public:
|
||||
StatusBarNetworkStatusIndicator( TQWidget * parent, const char * name );
|
||||
virtual ~StatusBarNetworkStatusIndicator();
|
||||
void init();
|
||||
protected slots:
|
||||
void networkStatusChanged( NetworkStatus::Status status );
|
||||
};
|
||||
|
||||
#endif
|
||||
|
@ -0,0 +1,234 @@
|
||||
/* This file is part of kdepim.
|
||||
Copyright (C) 2007 Will Stephenson <wstephenson@kde.org>
|
||||
|
||||
This program is free software; you can redistribute it and/or modify
|
||||
it under the terms of the GNU General Public License version 2
|
||||
as published by the Free Software Foundation.
|
||||
|
||||
This program is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU General Public License
|
||||
along with this program; if not, write to the Free Software
|
||||
Foundation, Inc., 51 Franklin Street, Fifth Floor,
|
||||
Boston, MA 02110-1301, USA.
|
||||
|
||||
As a special exception, permission is given to link this program
|
||||
with any edition of TQt, and distribute the resulting executable,
|
||||
without including the source code for TQt in the source distribution.
|
||||
*/
|
||||
|
||||
#include <tqlabel.h>
|
||||
#include <tqpushbutton.h>
|
||||
|
||||
|
||||
#include <kaboutdata.h>
|
||||
#include <kcmdlineargs.h>
|
||||
#include <kdebug.h>
|
||||
#include <kdeversion.h>
|
||||
#include <kglobal.h>
|
||||
#include <klocale.h>
|
||||
#include <kiconloader.h>
|
||||
|
||||
#include "connectionmanager.h"
|
||||
#include "testclientview.h"
|
||||
#include "testclient.h"
|
||||
|
||||
TestClient::TestClient()
|
||||
: KMainWindow( 0, "ktestnetworkstatus" ),
|
||||
m_view(new TestClientView(this)),
|
||||
m_status( AppDisconnected )
|
||||
{
|
||||
// tell the KMainWindow that this is indeed the main widget
|
||||
setCentralWidget(m_view);
|
||||
|
||||
networkStatusChanged( ConnectionManager::self()->status() );
|
||||
appDisconnected();
|
||||
|
||||
connect( ConnectionManager::self(), TQT_SIGNAL( statusChanged( NetworkStatus::Status ) ), TQT_SLOT( networkStatusChanged( NetworkStatus::Status ) ) );
|
||||
|
||||
connect( m_view->connectButton, TQT_SIGNAL( toggled( bool ) ), TQT_SLOT( connectButtonToggled( bool ) ) );
|
||||
}
|
||||
|
||||
TestClient::~TestClient()
|
||||
{
|
||||
}
|
||||
|
||||
void TestClient::networkStatusChanged( NetworkStatus::Status status )
|
||||
{
|
||||
kdDebug() << k_funcinfo << endl;
|
||||
//enum EnumStatus { NoNetworks = 1, Unreachable, OfflineDisconnected, OfflineFailed, ShuttingDown
|
||||
// , Offline, Establishing, Online };
|
||||
kdDebug() << "Networking is now: " << NetworkStatus::toString( status ) << " (" << status << ")" << endl;
|
||||
m_view->netStatusLabel->setText( NetworkStatus::toString( status ) );
|
||||
m_view->netStatusLabel->setPaletteBackgroundColor( toQColor( status ) );
|
||||
switch ( status ) {
|
||||
case NetworkStatus::NoNetworks:
|
||||
break;
|
||||
case NetworkStatus::Unreachable:
|
||||
break;
|
||||
case NetworkStatus::OfflineDisconnected:
|
||||
break;
|
||||
case NetworkStatus::OfflineFailed:
|
||||
break;
|
||||
case NetworkStatus::ShuttingDown:
|
||||
if ( m_status == AppConnected ) {
|
||||
appDisestablishing();
|
||||
}
|
||||
break;
|
||||
case NetworkStatus::Offline:
|
||||
if ( m_status == AppConnected ) {
|
||||
appDisconnected();
|
||||
}
|
||||
break;
|
||||
case NetworkStatus::Establishing:
|
||||
if ( m_status == AppWaitingForConnect )
|
||||
appEstablishing();
|
||||
else if ( m_status == AppConnected )
|
||||
appDisconnected();
|
||||
break;
|
||||
case NetworkStatus::Online:
|
||||
if ( m_status == AppWaitingForConnect )
|
||||
appIsConnected();
|
||||
break;
|
||||
default:
|
||||
m_view->netStatusLabel->setText( "Unrecognised status code!" );
|
||||
}
|
||||
}
|
||||
|
||||
void TestClient::connectButtonToggled( bool on )
|
||||
{
|
||||
kdDebug() << k_funcinfo << endl;
|
||||
if ( on && m_status == AppDisconnected ) {
|
||||
switch ( ConnectionManager::self()->status() )
|
||||
{
|
||||
case NetworkStatus::NoNetworks:
|
||||
case NetworkStatus::Online:
|
||||
appIsConnected();
|
||||
break;
|
||||
default:
|
||||
appWaiting();
|
||||
break;
|
||||
}
|
||||
}
|
||||
else if ( !on && m_status == AppConnected ) {
|
||||
appDisconnected();
|
||||
}
|
||||
}
|
||||
|
||||
void TestClient::appWaiting()
|
||||
{
|
||||
kdDebug() << k_funcinfo << endl;
|
||||
m_status = AppWaitingForConnect;
|
||||
m_view->appStatusLabel->setText( "Waiting" );
|
||||
}
|
||||
|
||||
void TestClient::appIsConnected()
|
||||
{
|
||||
kdDebug() << k_funcinfo << endl;
|
||||
m_view->connectButton->setEnabled( true );
|
||||
m_view->connectButton->setText( "Disconnect" );
|
||||
m_view->appStatusLabel->setText( "Connected" );
|
||||
m_status = AppConnected;
|
||||
}
|
||||
|
||||
void TestClient::appEstablishing()
|
||||
{
|
||||
kdDebug() << k_funcinfo << endl;
|
||||
m_view->netStatusLabel->setText( "Establishing" );
|
||||
m_view->connectButton->setEnabled( false );
|
||||
}
|
||||
|
||||
void TestClient::appDisestablishing( )
|
||||
{
|
||||
kdDebug() << k_funcinfo << endl;
|
||||
m_view->connectButton->setEnabled( false );
|
||||
m_view->appStatusLabel->setText( "Disconnected" );
|
||||
}
|
||||
|
||||
void TestClient::appDisconnected( )
|
||||
{
|
||||
kdDebug() << k_funcinfo << endl;
|
||||
m_view->connectButton->setEnabled( true );
|
||||
m_view->connectButton->setText( "Start Connect" );
|
||||
m_view->appStatusLabel->setText( "Disconnected" );
|
||||
m_status = AppDisconnected;
|
||||
}
|
||||
|
||||
TQColor TestClient::toQColor( NetworkStatus::Status st )
|
||||
{
|
||||
TQColor col;
|
||||
switch ( st ) {
|
||||
case NetworkStatus::NoNetworks:
|
||||
col = Qt::darkGray;
|
||||
break;
|
||||
case NetworkStatus::Unreachable:
|
||||
col = Qt::darkMagenta;
|
||||
break;
|
||||
case NetworkStatus::OfflineDisconnected:
|
||||
col = Qt::blue;
|
||||
break;
|
||||
case NetworkStatus::OfflineFailed:
|
||||
col = Qt::darkRed;
|
||||
break;
|
||||
case NetworkStatus::ShuttingDown:
|
||||
col = Qt::darkYellow;
|
||||
break;
|
||||
case NetworkStatus::Offline:
|
||||
col = Qt::blue;
|
||||
break;
|
||||
case NetworkStatus::Establishing:
|
||||
col = Qt::yellow;
|
||||
break;
|
||||
case NetworkStatus::Online:
|
||||
col = Qt::green;
|
||||
break;
|
||||
}
|
||||
return col;
|
||||
}
|
||||
//main
|
||||
static const char description[] =
|
||||
I18N_NOOP("Test Client for Network Status kded module");
|
||||
|
||||
static const char version[] = "v0.1";
|
||||
|
||||
static KCmdLineOptions options[] =
|
||||
{
|
||||
KCmdLineLastOption
|
||||
};
|
||||
|
||||
int main(int argc, char **argv)
|
||||
{
|
||||
KAboutData about("KNetworkStatusTestClient", I18N_NOOP("knetworkstatustestclient"), version, description, KAboutData::License_GPL, "(C) 2007 Will Stephenson", 0, 0, "wstephenson@kde.org");
|
||||
about.addAuthor( "Will Stephenson", 0, "wstephenson@kde.org" );
|
||||
KCmdLineArgs::init(argc, argv, &about);
|
||||
KCmdLineArgs::addCmdLineOptions(options);
|
||||
KApplication app;
|
||||
|
||||
// register ourselves as a dcop client
|
||||
app.dcopClient()->registerAs(app.name(), false);
|
||||
|
||||
KCmdLineArgs *args = KCmdLineArgs::parsedArgs();
|
||||
if (args->count() == 0)
|
||||
{
|
||||
TestClient *widget = new TestClient;
|
||||
widget->show();
|
||||
}
|
||||
else
|
||||
{
|
||||
int i = 0;
|
||||
for (; i < args->count(); i++)
|
||||
{
|
||||
TestClient *widget = new TestClient;
|
||||
widget->show();
|
||||
}
|
||||
}
|
||||
args->clear();
|
||||
|
||||
return app.exec();
|
||||
}
|
||||
|
||||
#include "testclient.moc"
|
||||
|
@ -0,0 +1,80 @@
|
||||
/* This file is part of kdepim.
|
||||
|
||||
Copyright (C) 2007 Will Stephenson <wstephenson@kde.org>
|
||||
|
||||
This program is free software; you can redistribute it and/or modify
|
||||
it under the terms of the GNU General Public License as published by
|
||||
the Free Software Foundation; either version 2 of the License, or
|
||||
(at your option) any later version.
|
||||
|
||||
This program is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU General Public License
|
||||
along with this program; if not, write to the Free Software
|
||||
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
||||
|
||||
As a special exception, permission is given to link this program
|
||||
with any edition of TQt, and distribute the resulting executable,
|
||||
without including the source code for TQt in the source distribution.
|
||||
*/
|
||||
|
||||
#ifndef KTESTNETWORKSTATUS_H
|
||||
#define KTESTNETWORKSTATUS_H
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
#include <dcopclient.h>
|
||||
#include <kapplication.h>
|
||||
#include <kmainwindow.h>
|
||||
#include <networkstatuscommon.h>
|
||||
|
||||
#include "networkstatusiface_stub.h"
|
||||
|
||||
class TestClientView;
|
||||
|
||||
/**
|
||||
* This class serves as the main window for ktestnetworkstatus. It handles the
|
||||
* menus, toolbars, and status bars.
|
||||
*
|
||||
* @short Main window class
|
||||
* @author Will Stephenson <wstephenson@kde.org>
|
||||
* @version 0.1
|
||||
*/
|
||||
class TestClient : public KMainWindow
|
||||
{
|
||||
Q_OBJECT
|
||||
public:
|
||||
enum AppStatus{ AppDisconnected, AppWaitingForConnect, AppConnected };
|
||||
/**
|
||||
* Default Constructor
|
||||
*/
|
||||
TestClient();
|
||||
|
||||
/**
|
||||
* Default Destructor
|
||||
*/
|
||||
virtual ~TestClient();
|
||||
|
||||
private slots:
|
||||
void networkStatusChanged( NetworkStatus::Status status );
|
||||
void connectButtonToggled( bool on );
|
||||
private:
|
||||
void appWaiting();
|
||||
void appEstablishing();
|
||||
void appIsConnected();
|
||||
void appDisestablishing();
|
||||
void appDisconnected();
|
||||
static TQColor toQColor( NetworkStatus::Status );
|
||||
private:
|
||||
NetworkStatusIface_stub *m_service;
|
||||
TestClientView *m_view;
|
||||
AppStatus m_status; // this represents the app's status not the network's status
|
||||
};
|
||||
|
||||
#endif // KTESTNETWORKSTATUS_H
|
||||
|
@ -0,0 +1,222 @@
|
||||
/* This file is part of kdepim.
|
||||
Copyright (C) 2007 Will Stephenson <wstephenson@kde.org>
|
||||
|
||||
This program is free software; you can redistribute it and/or modify
|
||||
it under the terms of the GNU General Public License version 2
|
||||
as published by the Free Software Foundation.
|
||||
|
||||
This program is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU General Public License
|
||||
along with this program; if not, write to the Free Software
|
||||
Foundation, Inc., 51 Franklin Street, Fifth Floor,
|
||||
Boston, MA 02110-1301, USA.
|
||||
|
||||
As a special exception, permission is given to link this program
|
||||
with any edition of TQt, and distribute the resulting executable,
|
||||
without including the source code for TQt in the source distribution.
|
||||
*/
|
||||
|
||||
#include <tqlabel.h>
|
||||
#include <tqpushbutton.h>
|
||||
#include <tqvbox.h>
|
||||
|
||||
#include <kaboutdata.h>
|
||||
#include <kcmdlineargs.h>
|
||||
#include <kdebug.h>
|
||||
#include <kdeversion.h>
|
||||
#include <kglobal.h>
|
||||
#include <klocale.h>
|
||||
#include <kiconloader.h>
|
||||
|
||||
#include <connectionmanager.h>
|
||||
#include <networkstatusindicator.h>
|
||||
|
||||
#include "testclientview.h"
|
||||
#include "testclient2.h"
|
||||
|
||||
TestClient::TestClient()
|
||||
: KMainWindow( 0, "ktestnetworkstatus" ),
|
||||
m_layout( new TQVBox( 0, "layout" ) ),
|
||||
m_status( AppDisconnected )
|
||||
{
|
||||
m_view = new TestClientView( this );
|
||||
new StatusBarNetworkStatusIndicator( m_view, "statusindicator" );
|
||||
// tell the KMainWindow that this is indeed the main widget
|
||||
setCentralWidget(m_view);
|
||||
|
||||
networkStatusChanged( ConnectionManager::self()->status() );
|
||||
appDisconnected();
|
||||
|
||||
connect( ConnectionManager::self(), TQT_SIGNAL( statusChanged( NetworkStatus::Status ) ), TQT_SLOT( networkStatusChanged( NetworkStatus::Status ) ) );
|
||||
ConnectionManager::self()->registerConnectSlot( this, TQT_SLOT( doConnect() ) );
|
||||
ConnectionManager::self()->registerDisconnectSlot( this, TQT_SLOT( doDisconnect() ) );
|
||||
|
||||
connect( m_view->connectButton, TQT_SIGNAL( clicked() ), TQT_SLOT( connectButtonClicked() ) );
|
||||
}
|
||||
|
||||
TestClient::~TestClient()
|
||||
{
|
||||
}
|
||||
|
||||
void TestClient::networkStatusChanged( NetworkStatus::Status status )
|
||||
{
|
||||
kdDebug() << k_funcinfo << endl;
|
||||
kdDebug() << "Networking is now: " << NetworkStatus::toString( status ) << " (" << status << ")" << endl;
|
||||
m_view->netStatusLabel->setText( NetworkStatus::toString( status ) );
|
||||
m_view->netStatusLabel->setPaletteBackgroundColor( toQColor( status ) );
|
||||
}
|
||||
|
||||
void TestClient::doConnect()
|
||||
{
|
||||
Q_ASSERT( ConnectionManager::self()->status() == NetworkStatus::Online );
|
||||
if ( m_status != AppConnected ) {
|
||||
appIsConnected();
|
||||
}
|
||||
}
|
||||
|
||||
void TestClient::doDisconnect()
|
||||
{
|
||||
Q_ASSERT( ConnectionManager::self()->status() != NetworkStatus::Online );
|
||||
if ( m_status == AppConnected ) {
|
||||
appDisconnected();
|
||||
}
|
||||
}
|
||||
|
||||
void TestClient::connectButtonClicked()
|
||||
{
|
||||
kdDebug() << k_funcinfo << endl;
|
||||
if ( m_status == AppDisconnected ) {
|
||||
switch ( ConnectionManager::self()->status() )
|
||||
{
|
||||
case NetworkStatus::NoNetworks:
|
||||
case NetworkStatus::Online:
|
||||
appIsConnected();
|
||||
break;
|
||||
default:
|
||||
appWaiting();
|
||||
break;
|
||||
}
|
||||
}
|
||||
else if ( m_status == AppConnected || m_status == AppWaitingForConnect ) {
|
||||
appDisconnected();
|
||||
}
|
||||
}
|
||||
|
||||
void TestClient::appWaiting()
|
||||
{
|
||||
kdDebug() << k_funcinfo << endl;
|
||||
//m_status = AppWaitingForConnect;
|
||||
m_view->appStatusLabel->setText( "Waiting" );
|
||||
}
|
||||
|
||||
void TestClient::appIsConnected()
|
||||
{
|
||||
kdDebug() << k_funcinfo << endl;
|
||||
m_view->connectButton->setEnabled( true );
|
||||
m_view->connectButton->setText( "Disconnect" );
|
||||
m_view->appStatusLabel->setText( "Connected" );
|
||||
m_status = AppConnected;
|
||||
}
|
||||
|
||||
void TestClient::appEstablishing()
|
||||
{
|
||||
kdDebug() << k_funcinfo << endl;
|
||||
m_view->netStatusLabel->setText( "Establishing" );
|
||||
m_view->connectButton->setEnabled( false );
|
||||
}
|
||||
|
||||
void TestClient::appDisestablishing( )
|
||||
{
|
||||
kdDebug() << k_funcinfo << endl;
|
||||
m_view->connectButton->setEnabled( false );
|
||||
m_view->appStatusLabel->setText( "Disconnected" );
|
||||
}
|
||||
|
||||
void TestClient::appDisconnected( )
|
||||
{
|
||||
kdDebug() << k_funcinfo << endl;
|
||||
m_view->connectButton->setEnabled( true );
|
||||
m_view->connectButton->setText( "Start Connect" );
|
||||
m_view->appStatusLabel->setText( "Disconnected" );
|
||||
m_status = AppDisconnected;
|
||||
}
|
||||
|
||||
TQColor TestClient::toQColor( NetworkStatus::Status st )
|
||||
{
|
||||
TQColor col;
|
||||
switch ( st ) {
|
||||
case NetworkStatus::NoNetworks:
|
||||
col = Qt::darkGray;
|
||||
break;
|
||||
case NetworkStatus::Unreachable:
|
||||
col = Qt::darkMagenta;
|
||||
break;
|
||||
case NetworkStatus::OfflineDisconnected:
|
||||
col = Qt::blue;
|
||||
break;
|
||||
case NetworkStatus::OfflineFailed:
|
||||
col = Qt::darkRed;
|
||||
break;
|
||||
case NetworkStatus::ShuttingDown:
|
||||
col = Qt::darkYellow;
|
||||
break;
|
||||
case NetworkStatus::Offline:
|
||||
col = Qt::blue;
|
||||
break;
|
||||
case NetworkStatus::Establishing:
|
||||
col = Qt::yellow;
|
||||
break;
|
||||
case NetworkStatus::Online:
|
||||
col = Qt::green;
|
||||
break;
|
||||
}
|
||||
return col;
|
||||
}
|
||||
//main
|
||||
static const char description[] =
|
||||
I18N_NOOP("Test Client for Network Status kded module");
|
||||
|
||||
static const char version[] = "v0.1";
|
||||
|
||||
static KCmdLineOptions options[] =
|
||||
{
|
||||
KCmdLineLastOption
|
||||
};
|
||||
|
||||
int main(int argc, char **argv)
|
||||
{
|
||||
KAboutData about("KNetworkStatusTestClient", I18N_NOOP("knetworkstatustestclient"), version, description, KAboutData::License_GPL, "(C) 2007 Will Stephenson", 0, 0, "wstephenson@kde.org");
|
||||
about.addAuthor( "Will Stephenson", 0, "wstephenson@kde.org" );
|
||||
KCmdLineArgs::init(argc, argv, &about);
|
||||
KCmdLineArgs::addCmdLineOptions(options);
|
||||
KApplication app;
|
||||
|
||||
// register ourselves as a dcop client
|
||||
app.dcopClient()->registerAs(app.name(), false);
|
||||
|
||||
KCmdLineArgs *args = KCmdLineArgs::parsedArgs();
|
||||
if (args->count() == 0)
|
||||
{
|
||||
TestClient *widget = new TestClient;
|
||||
widget->show();
|
||||
}
|
||||
else
|
||||
{
|
||||
int i = 0;
|
||||
for (; i < args->count(); i++)
|
||||
{
|
||||
TestClient *widget = new TestClient;
|
||||
widget->show();
|
||||
}
|
||||
}
|
||||
args->clear();
|
||||
|
||||
return app.exec();
|
||||
}
|
||||
|
||||
#include "testclient2.moc"
|
||||
|
@ -0,0 +1,82 @@
|
||||
/* This file is part of kdepim.
|
||||
|
||||
Copyright (C) 2007 Will Stephenson <wstephenson@kde.org>
|
||||
|
||||
This program is free software; you can redistribute it and/or modify
|
||||
it under the terms of the GNU General Public License as published by
|
||||
the Free Software Foundation; either version 2 of the License, or
|
||||
(at your option) any later version.
|
||||
|
||||
This program is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU General Public License
|
||||
along with this program; if not, write to the Free Software
|
||||
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
||||
|
||||
As a special exception, permission is given to link this program
|
||||
with any edition of TQt, and distribute the resulting executable,
|
||||
without including the source code for TQt in the source distribution.
|
||||
*/
|
||||
|
||||
#ifndef KTESTNETWORKSTATUS_H
|
||||
#define KTESTNETWORKSTATUS_H
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
#include <dcopclient.h>
|
||||
#include <kapplication.h>
|
||||
#include <kmainwindow.h>
|
||||
#include <networkstatuscommon.h>
|
||||
|
||||
#include "networkstatusiface_stub.h"
|
||||
|
||||
class TestClientView;
|
||||
|
||||
/**
|
||||
* Test client that uses a ConnectionManager to change its state
|
||||
*
|
||||
* @short Main window class
|
||||
* @author Will Stephenson <wstephenson@kde.org>
|
||||
* @version 0.1
|
||||
*/
|
||||
class TestClient : public KMainWindow
|
||||
{
|
||||
Q_OBJECT
|
||||
public:
|
||||
enum AppStatus{ AppDisconnected, AppWaitingForConnect, AppConnected };
|
||||
/**
|
||||
* Default Constructor
|
||||
*/
|
||||
TestClient();
|
||||
|
||||
/**
|
||||
* Default Destructor
|
||||
*/
|
||||
virtual ~TestClient();
|
||||
|
||||
private slots:
|
||||
void networkStatusChanged( NetworkStatus::Status status );
|
||||
void connectButtonClicked();
|
||||
void doConnect();
|
||||
void doDisconnect();
|
||||
private:
|
||||
void appWaiting();
|
||||
void appEstablishing();
|
||||
void appIsConnected();
|
||||
void appDisestablishing();
|
||||
void appDisconnected();
|
||||
static TQColor toQColor( NetworkStatus::Status );
|
||||
private:
|
||||
TQHBox * m_layout;
|
||||
NetworkStatusIface_stub *m_service;
|
||||
TestClientView *m_view;
|
||||
AppStatus m_status; // this represents the app's status not the network's status
|
||||
};
|
||||
|
||||
#endif // KTESTNETWORKSTATUS_H
|
||||
|
@ -0,0 +1,177 @@
|
||||
<!DOCTYPE UI><UI version="3.3" stdsetdef="1">
|
||||
<class>TestClientView</class>
|
||||
<widget class="QWidget">
|
||||
<property name="name">
|
||||
<cstring>TestClientView</cstring>
|
||||
</property>
|
||||
<property name="geometry">
|
||||
<rect>
|
||||
<x>0</x>
|
||||
<y>0</y>
|
||||
<width>356</width>
|
||||
<height>127</height>
|
||||
</rect>
|
||||
</property>
|
||||
<property name="caption">
|
||||
<string>Form1</string>
|
||||
</property>
|
||||
<vbox>
|
||||
<property name="name">
|
||||
<cstring>unnamed</cstring>
|
||||
</property>
|
||||
<widget class="QLabel">
|
||||
<property name="name">
|
||||
<cstring>textLabel4</cstring>
|
||||
</property>
|
||||
<property name="sizePolicy">
|
||||
<sizepolicy>
|
||||
<hsizetype>5</hsizetype>
|
||||
<vsizetype>5</vsizetype>
|
||||
<horstretch>0</horstretch>
|
||||
<verstretch>0</verstretch>
|
||||
</sizepolicy>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string><font size="+2"><b>Client for KDE 3 Offline Mode</b></font></string>
|
||||
</property>
|
||||
<property name="alignment">
|
||||
<set>AlignVCenter</set>
|
||||
</property>
|
||||
</widget>
|
||||
<widget class="QLayoutWidget">
|
||||
<property name="name">
|
||||
<cstring>layout1</cstring>
|
||||
</property>
|
||||
<hbox>
|
||||
<property name="name">
|
||||
<cstring>unnamed</cstring>
|
||||
</property>
|
||||
<widget class="QLabel">
|
||||
<property name="name">
|
||||
<cstring>textLabel1</cstring>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>Network status:</string>
|
||||
</property>
|
||||
</widget>
|
||||
<widget class="QLabel">
|
||||
<property name="name">
|
||||
<cstring>netStatusLabel</cstring>
|
||||
</property>
|
||||
<property name="paletteBackgroundColor">
|
||||
<color>
|
||||
<red>0</red>
|
||||
<green>255</green>
|
||||
<blue>0</blue>
|
||||
</color>
|
||||
</property>
|
||||
<property name="frameShape">
|
||||
<enum>Panel</enum>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>STATUS</string>
|
||||
</property>
|
||||
<property name="alignment">
|
||||
<set>AlignCenter</set>
|
||||
</property>
|
||||
</widget>
|
||||
</hbox>
|
||||
</widget>
|
||||
<widget class="QLayoutWidget">
|
||||
<property name="name">
|
||||
<cstring>layout1_2</cstring>
|
||||
</property>
|
||||
<hbox>
|
||||
<property name="name">
|
||||
<cstring>unnamed</cstring>
|
||||
</property>
|
||||
<widget class="QLabel">
|
||||
<property name="name">
|
||||
<cstring>textLabel1_2</cstring>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>App status:</string>
|
||||
</property>
|
||||
</widget>
|
||||
<widget class="QLabel">
|
||||
<property name="name">
|
||||
<cstring>appStatusLabel</cstring>
|
||||
</property>
|
||||
<property name="paletteBackgroundColor">
|
||||
<color>
|
||||
<red>0</red>
|
||||
<green>255</green>
|
||||
<blue>0</blue>
|
||||
</color>
|
||||
</property>
|
||||
<property name="frameShape">
|
||||
<enum>Panel</enum>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>STATUS</string>
|
||||
</property>
|
||||
<property name="alignment">
|
||||
<set>AlignCenter</set>
|
||||
</property>
|
||||
</widget>
|
||||
</hbox>
|
||||
</widget>
|
||||
<widget class="QLayoutWidget">
|
||||
<property name="name">
|
||||
<cstring>layout2</cstring>
|
||||
</property>
|
||||
<hbox>
|
||||
<property name="name">
|
||||
<cstring>unnamed</cstring>
|
||||
</property>
|
||||
<spacer>
|
||||
<property name="name">
|
||||
<cstring>spacer1</cstring>
|
||||
</property>
|
||||
<property name="orientation">
|
||||
<enum>Horizontal</enum>
|
||||
</property>
|
||||
<property name="sizeType">
|
||||
<enum>Expanding</enum>
|
||||
</property>
|
||||
<property name="sizeHint">
|
||||
<size>
|
||||
<width>31</width>
|
||||
<height>20</height>
|
||||
</size>
|
||||
</property>
|
||||
</spacer>
|
||||
<widget class="QPushButton">
|
||||
<property name="name">
|
||||
<cstring>connectButton</cstring>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>Start Connect</string>
|
||||
</property>
|
||||
<property name="toggleButton">
|
||||
<bool>false</bool>
|
||||
</property>
|
||||
</widget>
|
||||
<spacer>
|
||||
<property name="name">
|
||||
<cstring>spacer2</cstring>
|
||||
</property>
|
||||
<property name="orientation">
|
||||
<enum>Horizontal</enum>
|
||||
</property>
|
||||
<property name="sizeType">
|
||||
<enum>Expanding</enum>
|
||||
</property>
|
||||
<property name="sizeHint">
|
||||
<size>
|
||||
<width>61</width>
|
||||
<height>20</height>
|
||||
</size>
|
||||
</property>
|
||||
</spacer>
|
||||
</hbox>
|
||||
</widget>
|
||||
</vbox>
|
||||
</widget>
|
||||
<layoutdefaults spacing="6" margin="11"/>
|
||||
</UI>
|
@ -0,0 +1,219 @@
|
||||
/* This file is part of kdepim.
|
||||
Copyright (C) 2005,2007 Will Stephenson <wstephenson@kde.org>
|
||||
|
||||
This program is free software; you can redistribute it and/or modify
|
||||
it under the terms of the GNU General Public License version 2
|
||||
as published by the Free Software Foundation.
|
||||
|
||||
This program is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU General Public License
|
||||
along with this program; if not, write to the Free Software
|
||||
Foundation, Inc., 51 Franklin Street, Fifth Floor,
|
||||
Boston, MA 02110-1301, USA.
|
||||
|
||||
As a special exception, permission is given to link this program
|
||||
with any edition of TQt, and distribute the resulting executable,
|
||||
without including the source code for TQt in the source distribution.
|
||||
*/
|
||||
|
||||
#include <tqcombobox.h>
|
||||
#include <tqlabel.h>
|
||||
#include <tqpushbutton.h>
|
||||
#include <tqtimer.h>
|
||||
|
||||
#include <dcopclient.h>
|
||||
#include <kaboutdata.h>
|
||||
#include <kapplication.h>
|
||||
#include <kcmdlineargs.h>
|
||||
#include <kdebug.h>
|
||||
#include <klocale.h>
|
||||
|
||||
#include "testservice.h"
|
||||
#include "testserviceview.h"
|
||||
#include "networkstatusiface_stub.h"
|
||||
|
||||
TestService::TestService() : KMainWindow( 0, "testservice" ),
|
||||
m_service( new NetworkStatusIface_stub( "kded", "networkstatus" ) ),
|
||||
m_status ( NetworkStatus::Offline ),
|
||||
m_nextStatus( NetworkStatus::OfflineDisconnected ),
|
||||
m_view( new TestServiceView( this ) )
|
||||
{
|
||||
setCentralWidget( m_view );
|
||||
kapp->dcopClient()->registerAs("testservice" );
|
||||
|
||||
connect( m_view->changeCombo, TQT_SIGNAL( activated( int ) ), TQT_SLOT( changeComboActivated( int ) ) );
|
||||
connect( m_view->changeButton, TQT_SIGNAL( clicked() ), TQT_SLOT( changeButtonClicked() ) );
|
||||
|
||||
connect( kapp->dcopClient(), TQT_SIGNAL( applicationRegistered( const TQCString& ) ), this, TQT_SLOT( registeredToDCOP( const TQCString& ) ) );
|
||||
kapp->dcopClient()->setNotifications( true );
|
||||
|
||||
m_view->statusLabel->setText( NetworkStatus::toString( m_status ) );
|
||||
m_view->statusLabel->setPaletteBackgroundColor( toQColor( m_status ) );
|
||||
setCaption( NetworkStatus::toString( m_status ) );
|
||||
|
||||
registerService();
|
||||
}
|
||||
|
||||
TestService::~TestService()
|
||||
{
|
||||
delete m_service;
|
||||
delete m_view;
|
||||
}
|
||||
|
||||
void TestService::registerService()
|
||||
{
|
||||
NetworkStatus::Properties nsp;
|
||||
nsp.name = "test_net";
|
||||
nsp.service = kapp->dcopClient()->appId();
|
||||
nsp.status = m_status;
|
||||
m_service->registerNetwork( nsp );
|
||||
}
|
||||
|
||||
void TestService::registeredToDCOP( const TQCString & appId )
|
||||
{
|
||||
if ( appId == "kded" )
|
||||
registerService();
|
||||
}
|
||||
|
||||
int TestService::status( const TQString & network )
|
||||
{
|
||||
Q_UNUSED( network );
|
||||
return (int)m_status;
|
||||
}
|
||||
|
||||
void TestService::changeComboActivated( int index )
|
||||
{
|
||||
switch ( index ) {
|
||||
case 0 /*NetworkStatus::OfflineDisconnected*/:
|
||||
m_nextStatus = NetworkStatus::OfflineDisconnected;
|
||||
break;
|
||||
case 1 /*NetworkStatus::OfflineFailed*/:
|
||||
m_nextStatus = NetworkStatus::OfflineFailed;
|
||||
break;
|
||||
case 2 /*NetworkStatus::ShuttingDown*/:
|
||||
m_nextStatus = NetworkStatus::ShuttingDown;
|
||||
break;
|
||||
case 3 /*NetworkStatus::Offline*/:
|
||||
m_nextStatus = NetworkStatus::Offline;
|
||||
break;
|
||||
case 4 /*NetworkStatus::Establishing*/:
|
||||
m_nextStatus = NetworkStatus::Establishing;
|
||||
break;
|
||||
case 5 /*NetworkStatus::Online*/:
|
||||
m_nextStatus = NetworkStatus::Online;
|
||||
break;
|
||||
default:
|
||||
kdDebug() << "Unrecognised status!" << endl;
|
||||
Q_ASSERT( false );
|
||||
}
|
||||
m_view->changeButton->setEnabled( true );
|
||||
}
|
||||
|
||||
void TestService::changeButtonClicked()
|
||||
{
|
||||
m_view->changeButton->setEnabled( false );
|
||||
m_status = m_nextStatus;
|
||||
m_service->setNetworkStatus( "test_net", ( int )m_status );
|
||||
m_view->statusLabel->setText( NetworkStatus::toString( m_status ) );
|
||||
m_view->statusLabel->setPaletteBackgroundColor( toQColor( m_status ) );
|
||||
setCaption( NetworkStatus::toString( m_status ) );
|
||||
}
|
||||
|
||||
int TestService::establish( const TQString & network )
|
||||
{
|
||||
Q_UNUSED( network );
|
||||
m_status = NetworkStatus::Establishing;
|
||||
m_service->setNetworkStatus( "test_net", (int)m_status );
|
||||
m_nextStatus = NetworkStatus::Online;
|
||||
TQTimer::singleShot( 5000, this, TQT_SLOT( slotStatusChange() ) );
|
||||
return (int)NetworkStatus::RequestAccepted;
|
||||
}
|
||||
|
||||
int TestService::shutdown( const TQString & network )
|
||||
{
|
||||
Q_UNUSED( network );
|
||||
m_status = NetworkStatus::ShuttingDown;
|
||||
m_service->setNetworkStatus( "test_net", (int)m_status );
|
||||
m_nextStatus = NetworkStatus::Offline;
|
||||
TQTimer::singleShot( 5000, this, TQT_SLOT( slotStatusChange() ) );
|
||||
return (int)NetworkStatus::RequestAccepted;
|
||||
}
|
||||
|
||||
void TestService::simulateFailure()
|
||||
{
|
||||
m_status = NetworkStatus::OfflineFailed;
|
||||
m_service->setNetworkStatus( "test_net", (int)m_status );
|
||||
}
|
||||
|
||||
void TestService::simulateDisconnect()
|
||||
{
|
||||
m_status = NetworkStatus::OfflineDisconnected;
|
||||
m_service->setNetworkStatus( "test_net", (int)m_status );
|
||||
}
|
||||
|
||||
void TestService::slotStatusChange()
|
||||
{
|
||||
m_status = m_nextStatus;
|
||||
m_service->setNetworkStatus( "test_net", (int)m_status );
|
||||
}
|
||||
|
||||
TQColor TestService::toQColor( NetworkStatus::Status st )
|
||||
{
|
||||
TQColor col;
|
||||
switch ( st ) {
|
||||
case NetworkStatus::NoNetworks:
|
||||
col = Qt::darkGray;
|
||||
break;
|
||||
case NetworkStatus::Unreachable:
|
||||
col = Qt::darkMagenta;
|
||||
break;
|
||||
case NetworkStatus::OfflineDisconnected:
|
||||
col = Qt::blue;
|
||||
break;
|
||||
case NetworkStatus::OfflineFailed:
|
||||
col = Qt::darkRed;
|
||||
break;
|
||||
case NetworkStatus::ShuttingDown:
|
||||
col = Qt::darkYellow;
|
||||
break;
|
||||
case NetworkStatus::Offline:
|
||||
col = Qt::blue;
|
||||
break;
|
||||
case NetworkStatus::Establishing:
|
||||
col = Qt::yellow;
|
||||
break;
|
||||
case NetworkStatus::Online:
|
||||
col = Qt::green;
|
||||
break;
|
||||
}
|
||||
return col;
|
||||
}
|
||||
|
||||
static const char description[] =
|
||||
I18N_NOOP("Test Service for Network Status kded module");
|
||||
|
||||
static const char version[] = "v0.1";
|
||||
|
||||
static KCmdLineOptions options[] =
|
||||
{
|
||||
KCmdLineLastOption
|
||||
};
|
||||
|
||||
int main( int argc, char** argv )
|
||||
{
|
||||
KAboutData about("KNetworkStatusTestService", I18N_NOOP("knetworkstatustestservice"), version, description, KAboutData::License_GPL, "(C) 2007 Will Stephenson", 0, 0, "wstephenson@kde.org");
|
||||
about.addAuthor( "Will Stephenson", 0, "wstephenson@kde.org" );
|
||||
KCmdLineArgs::init(argc, argv, &about);
|
||||
KCmdLineArgs::addCmdLineOptions(options);
|
||||
KApplication app;
|
||||
|
||||
TestService * test = new TestService;
|
||||
test->show();
|
||||
return app.exec();
|
||||
}
|
||||
|
||||
#include "testservice.moc"
|
@ -0,0 +1,60 @@
|
||||
/* This file is part of kdepim.
|
||||
|
||||
Copyright (C) 2005,2007 Will Stephenson <wstephenson@kde.org>
|
||||
|
||||
This program is free software; you can redistribute it and/or modify
|
||||
it under the terms of the GNU General Public License as published by
|
||||
the Free Software Foundation; either version 2 of the License, or
|
||||
(at your option) any later version.
|
||||
|
||||
This program is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU General Public License
|
||||
along with this program; if not, write to the Free Software
|
||||
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
||||
|
||||
As a special exception, permission is given to link this program
|
||||
with any edition of TQt, and distribute the resulting executable,
|
||||
without including the source code for TQt in the source distribution.
|
||||
*/
|
||||
|
||||
#ifndef _TEST_NETWORKSTATUS_SERVICE_H
|
||||
#define _TEST_NETWORKSTATUS_SERVICE_H
|
||||
|
||||
#include <kmainwindow.h>
|
||||
|
||||
#include "networkstatuscommon.h"
|
||||
|
||||
class NetworkStatusIface_stub;
|
||||
class TestServiceView;
|
||||
|
||||
class TestService : public KMainWindow {
|
||||
Q_OBJECT
|
||||
public:
|
||||
TestService();
|
||||
virtual ~TestService();
|
||||
int status( const TQString & network );
|
||||
int establish( const TQString & network );
|
||||
int shutdown( const TQString & network );
|
||||
void simulateFailure();
|
||||
void simulateDisconnect();
|
||||
protected slots:
|
||||
void changeComboActivated( int index );
|
||||
void registeredToDCOP( const TQCString& appId );
|
||||
|
||||
void changeButtonClicked();
|
||||
|
||||
void slotStatusChange();
|
||||
private:
|
||||
void registerService();
|
||||
static TQColor toQColor( NetworkStatus::Status );
|
||||
NetworkStatusIface_stub * m_service;
|
||||
NetworkStatus::Status m_status;
|
||||
NetworkStatus::Status m_nextStatus;
|
||||
TestServiceView * m_view;
|
||||
};
|
||||
|
||||
#endif
|
@ -0,0 +1,181 @@
|
||||
<!DOCTYPE UI><UI version="3.3" stdsetdef="1">
|
||||
<class>TestServiceView</class>
|
||||
<widget class="QWidget">
|
||||
<property name="name">
|
||||
<cstring>TestServiceView</cstring>
|
||||
</property>
|
||||
<property name="geometry">
|
||||
<rect>
|
||||
<x>0</x>
|
||||
<y>0</y>
|
||||
<width>367</width>
|
||||
<height>132</height>
|
||||
</rect>
|
||||
</property>
|
||||
<property name="caption">
|
||||
<string>Form1</string>
|
||||
</property>
|
||||
<vbox>
|
||||
<property name="name">
|
||||
<cstring>unnamed</cstring>
|
||||
</property>
|
||||
<widget class="QLabel">
|
||||
<property name="name">
|
||||
<cstring>textLabel4</cstring>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string><font size="+2"><b>Service for KDE 3 Offline Mode</b></font></string>
|
||||
</property>
|
||||
<property name="alignment">
|
||||
<set>AlignVCenter</set>
|
||||
</property>
|
||||
</widget>
|
||||
<widget class="QLayoutWidget">
|
||||
<property name="name">
|
||||
<cstring>layout2</cstring>
|
||||
</property>
|
||||
<hbox>
|
||||
<property name="name">
|
||||
<cstring>unnamed</cstring>
|
||||
</property>
|
||||
<widget class="QLabel">
|
||||
<property name="name">
|
||||
<cstring>textLabel1</cstring>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>Status:</string>
|
||||
</property>
|
||||
</widget>
|
||||
<widget class="QLabel">
|
||||
<property name="name">
|
||||
<cstring>statusLabel</cstring>
|
||||
</property>
|
||||
<property name="paletteBackgroundColor">
|
||||
<color>
|
||||
<red>0</red>
|
||||
<green>255</green>
|
||||
<blue>0</blue>
|
||||
</color>
|
||||
</property>
|
||||
<property name="frameShape">
|
||||
<enum>StyledPanel</enum>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>STATUS</string>
|
||||
</property>
|
||||
<property name="alignment">
|
||||
<set>AlignCenter</set>
|
||||
</property>
|
||||
</widget>
|
||||
</hbox>
|
||||
</widget>
|
||||
<widget class="QLayoutWidget">
|
||||
<property name="name">
|
||||
<cstring>layout3</cstring>
|
||||
</property>
|
||||
<hbox>
|
||||
<property name="name">
|
||||
<cstring>unnamed</cstring>
|
||||
</property>
|
||||
<widget class="QLabel">
|
||||
<property name="name">
|
||||
<cstring>textLabel3</cstring>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>Change to:</string>
|
||||
</property>
|
||||
</widget>
|
||||
<widget class="QComboBox">
|
||||
<item>
|
||||
<property name="text">
|
||||
<string>Offline Disconnected</string>
|
||||
</property>
|
||||
</item>
|
||||
<item>
|
||||
<property name="text">
|
||||
<string>Offline Failed</string>
|
||||
</property>
|
||||
</item>
|
||||
<item>
|
||||
<property name="text">
|
||||
<string>Shutting Down</string>
|
||||
</property>
|
||||
</item>
|
||||
<item>
|
||||
<property name="text">
|
||||
<string>Offline</string>
|
||||
</property>
|
||||
</item>
|
||||
<item>
|
||||
<property name="text">
|
||||
<string>Establishing</string>
|
||||
</property>
|
||||
</item>
|
||||
<item>
|
||||
<property name="text">
|
||||
<string>Online</string>
|
||||
</property>
|
||||
</item>
|
||||
<property name="name">
|
||||
<cstring>changeCombo</cstring>
|
||||
</property>
|
||||
</widget>
|
||||
</hbox>
|
||||
</widget>
|
||||
<widget class="QLayoutWidget">
|
||||
<property name="name">
|
||||
<cstring>layout1</cstring>
|
||||
</property>
|
||||
<hbox>
|
||||
<property name="name">
|
||||
<cstring>unnamed</cstring>
|
||||
</property>
|
||||
<spacer>
|
||||
<property name="name">
|
||||
<cstring>spacer1</cstring>
|
||||
</property>
|
||||
<property name="orientation">
|
||||
<enum>Horizontal</enum>
|
||||
</property>
|
||||
<property name="sizeType">
|
||||
<enum>Expanding</enum>
|
||||
</property>
|
||||
<property name="sizeHint">
|
||||
<size>
|
||||
<width>51</width>
|
||||
<height>20</height>
|
||||
</size>
|
||||
</property>
|
||||
</spacer>
|
||||
<widget class="QPushButton">
|
||||
<property name="name">
|
||||
<cstring>changeButton</cstring>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>Do change</string>
|
||||
</property>
|
||||
</widget>
|
||||
<spacer>
|
||||
<property name="name">
|
||||
<cstring>spacer2</cstring>
|
||||
</property>
|
||||
<property name="orientation">
|
||||
<enum>Horizontal</enum>
|
||||
</property>
|
||||
<property name="sizeType">
|
||||
<enum>Expanding</enum>
|
||||
</property>
|
||||
<property name="sizeHint">
|
||||
<size>
|
||||
<width>41</width>
|
||||
<height>20</height>
|
||||
</size>
|
||||
</property>
|
||||
</spacer>
|
||||
</hbox>
|
||||
</widget>
|
||||
</vbox>
|
||||
</widget>
|
||||
<layoutdefaults spacing="6" margin="11"/>
|
||||
</UI>
|
||||
|
Loading…
Reference in new issue