From bcb704366cb5e333a626c18c308c7e0448a8e69f Mon Sep 17 00:00:00 2001 From: toma Date: Wed, 25 Nov 2009 17:56:58 +0000 Subject: 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 --- ksirc/ioLAG.cpp | 61 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 61 insertions(+) create mode 100644 ksirc/ioLAG.cpp (limited to 'ksirc/ioLAG.cpp') diff --git a/ksirc/ioLAG.cpp b/ksirc/ioLAG.cpp new file mode 100644 index 00000000..50f3f082 --- /dev/null +++ b/ksirc/ioLAG.cpp @@ -0,0 +1,61 @@ +/********************************************************************** + + The IO LAG Controller + + $$Id$$ + +**********************************************************************/ + +#include "ioLAG.h" +#include "control_message.h" +#include "ksircprocess.h" + +#include + +KSircIOLAG::KSircIOLAG(KSircProcess *_proc) + : QObject(), + KSircMessageReceiver(_proc) +{ + proc = _proc; + setBroadcast(FALSE); + startTimer(30000); +// startTimer(5000); +//(proc->getWindowList())["!all"]->control_message(SET_LAG, "99"); +} + + +KSircIOLAG::~KSircIOLAG() +{ + killTimers(); +} + +void KSircIOLAG::sirc_receive(QCString str, bool) +{ + + if(str.contains("*L*")){ + int s1, s2; + s1 = str.find("*L* ") + 4; + s2 = str.length(); + if(s1 < 0 || s2 < 0){ + kdDebug(5008) << "Lag mesage broken: " << str << endl; + return; + } + QString lag = str.mid(s1, s2 - s1); + // cerr << "Lag: " << str << endl; + // cerr << "Setting lag to: " << lag << endl; + (proc->getWindowList())["!all"]->control_message(SET_LAG, lag); + } + +} + +void KSircIOLAG::control_message(int, QString) +{ +} + +void KSircIOLAG::timerEvent ( QTimerEvent * ) +{ + QCString cmd = "/lag\n"; + emit outputLine(cmd); +} + +#include "ioLAG.moc" -- cgit v1.2.3