diff options
author | toma <toma@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2009-11-25 17:56:58 +0000 |
---|---|---|
committer | toma <toma@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2009-11-25 17:56:58 +0000 |
commit | bcb704366cb5e333a626c18c308c7e0448a8e69f (patch) | |
tree | f0d6ab7d78ecdd9207cf46536376b44b91a1ca71 /kopete/plugins/connectionstatus/connectionstatusplugin.h | |
download | tdenetwork-bcb704366cb5e333a626c18c308c7e0448a8e69f.tar.gz tdenetwork-bcb704366cb5e333a626c18c308c7e0448a8e69f.zip |
Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features.
BUG:215923
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdenetwork@1054174 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kopete/plugins/connectionstatus/connectionstatusplugin.h')
-rw-r--r-- | kopete/plugins/connectionstatus/connectionstatusplugin.h | 58 |
1 files changed, 58 insertions, 0 deletions
diff --git a/kopete/plugins/connectionstatus/connectionstatusplugin.h b/kopete/plugins/connectionstatus/connectionstatusplugin.h new file mode 100644 index 00000000..5f0a53bf --- /dev/null +++ b/kopete/plugins/connectionstatus/connectionstatusplugin.h @@ -0,0 +1,58 @@ +/* + connectionstatusplugin.h + + Copyright (c) 2002-2003 by Chris Howells <[email protected]> + Copyright (c) 2003 by Martijn Klingens <[email protected]> + + Kopete (c) 2002-2003 by the Kopete developers <[email protected]> + + ************************************************************************* + * * + * 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; version 2 of the License. * + * * + ************************************************************************* +*/ + +#ifndef CONNECTIONSTATUSPLUGIN_H +#define CONNECTIONSTATUSPLUGIN_H + +#include "kopeteplugin.h" + +class QTimer; +class KProcess; + +/** + * @author Chris Howells <[email protected]> + */ +class ConnectionStatusPlugin : public Kopete::Plugin +{ + Q_OBJECT + +public: + ConnectionStatusPlugin( QObject *parent, const char *name, const QStringList &args ); + ~ConnectionStatusPlugin(); + +private slots: + void slotCheckStatus(); + void slotProcessStdout( KProcess *process, char *buffer, int len ); + + /** + * Notify when the netstat process has exited + */ + void slotProcessExited( KProcess *process ); + +private: + void setConnectedStatus( bool newStatus ); + + bool m_pluginConnected; + KProcess *m_process; + QTimer *m_timer; + QString m_buffer; +}; + +#endif + +// vim: set noet ts=4 sts=4 sw=4: + |