summaryrefslogtreecommitdiffstats
path: root/src/lmsensors.h
blob: 8a0b6ef5f7d25f8e53d5c00d397484c7df292f7e (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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
/***************************************************************************
                          LMSensors.h  -  description
                             -------------------
    begin                : Mon Aug 6 2001
    copyright            : (C) 2001 by Miguel Novas
    email                : michaell@teleline.es
 ***************************************************************************/

/***************************************************************************
 *                                                                         *
 *   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.                                   *
 *                                                                         *
 ***************************************************************************/

#ifndef LMSENSORS_H
#define LMSENSORS_H

#include <ntqobject.h>
#include <ntqobjectlist.h>
#include <tdeconfig.h>
#include <ntqstringlist.h>

#include <sensors/sensors.h>

#include "lmsensorschip.h"
#include "hdsensorslist.h"
#include "i8ksensorslist.h"
/**
  *@author Michael
  */

class LMSensors : public TQObject
{
Q_OBJECT

  friend class LMSensor;

public:

	LMSensors(TQObject *parent=0, const char *name=0);
	~LMSensors();

  void setMonitorized(bool enable);
  TQObjectList   *getSensorsChips()                { return (TQObjectList *)children(); };
  SensorsList   *getSensorsChip(int index)        { return children() ? (SensorsList *)((TQObjectList *)children())->at(index) : 0; }
  SensorsList   *getSensorsChip(const char *name) { return (SensorsList *)child(name); }
  int count() 									                  { return children() ? children()->count() : 0; }
  Sensor *getSensor(const char *name);

  void emitConfigChanged(const char *name=0)        { emit configChanged(name); }

signals:

  void valueChanged(Sensor *);
  void configChanged(const char *name);

private:

  bool initSensors();
  void createLMSensors();
  void createHDSensors();
  void createI8KSensors();
  void childEvent ( TQChildEvent *e );

#if SENSORS_API_VERSION < 0x400 /* libsensor 3 code */
  static int existSensor(const sensors_chip_name *chip_name,const char *sensor_name);
#endif
};

#endif