00001
00002
00003
00004
00005
00006
00007
00008
00009
00010 #ifndef NOATUNSENSOR_H
00011 #define NOATUNSENSOR_H
00012
00013
00014 #include "sensor.h"
00015
00016 #include <dcopclient.h>
00017 #include <qregexp.h>
00018 #include <qcstring.h>
00019 #include <qdatastream.h>
00020 #include <qstringlist.h>
00021
00027 class NoatunSensor : public Sensor
00028 {
00029 public:
00030 NoatunSensor( int interval, DCOPClient *client);
00031
00032 ~NoatunSensor();
00033
00034 void update();
00035 void setMaxValue( SensorParams *);
00036
00037
00038
00039 private:
00040 QCString noatunID;
00041
00042 bool isRunning();
00043 QString getTitle();
00044 int getTime();
00045 int getLength();
00046
00047
00048 DCOPClient *client;
00049 QCString appId;
00050 };
00051
00052 #endif