blob: 1aca4cc72eccf33868683de5227d0042ccac3a7a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
|
#ifndef SENSORSENSOR_H
#define SENSORSENSOR_H
#include <tqstring.h>
#include <tqtextcodec.h>
#include <tqmap.h>
#include <tqstringlist.h>
#include <tqregexp.h>
#include <kprocess.h>
#include <kprocio.h>
#include "sensor.h"
/**
*
* Hans Karlsson
**/
class SensorSensor : public Sensor
{
TQ_OBJECT
public:
SensorSensor(int interval, char tempUnit);
~SensorSensor();
void update();
private:
KShellProcess ksp;
TQString extraParams;
TQMap<TQString,TQString> sensorMap;
#if defined __FreeBSD__ || defined(Q_OS_NETBSD)
TQMap<TQString,TQString> sensorMapBSD;
#endif
TQString sensorResult;
private slots:
void receivedStdout(TDEProcess *, char *buffer, int);
void processExited(TDEProcess *);
};
#endif
|