You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
93 lines
2.7 KiB
C++
93 lines
2.7 KiB
C++
/***************************************************************************
|
|
sensorslist.h - description
|
|
-------------------
|
|
begin : mié abr 24 2002
|
|
copyright : (C) 2002 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 SENSORSLIST_H
|
|
#define SENSORSLIST_H
|
|
|
|
#include <ntqobject.h>
|
|
#include <ntqobjectlist.h>
|
|
#include <tdeconfig.h>
|
|
#include <ntqstringlist.h>
|
|
|
|
#include <sensor.h>
|
|
|
|
/**
|
|
*@author Miguel Novas
|
|
*/
|
|
|
|
class SensorsList : public TQObject {
|
|
Q_OBJECT
|
|
|
|
friend class Sensor;
|
|
|
|
public:
|
|
|
|
SensorsList(TQObject *parent=0, const char *name=0);
|
|
~SensorsList();
|
|
|
|
void setMonitorized(bool enable);
|
|
|
|
const TQString &getDescription() { return description; };
|
|
TQObjectList *getSensors() { return (TQObjectList *)children(); };
|
|
Sensor *getSensor(int index) { return children() ? (Sensor *)((TQObjectList *)children())->at(index) : 0; }
|
|
Sensor *getSensor(const char *name) { return (Sensor *)child(name); }
|
|
int count() { return children() ? children()->count() : 0; }
|
|
|
|
void setTempScale(Sensor::TempScale scale);
|
|
Sensor::TempScale getTempScale() { return tempScale; }
|
|
|
|
void setUpdateInterval(int seconds);
|
|
int getUpdateInterval() { return updateInterval/1000; }
|
|
|
|
Sensor::SensorClass getClass() { return clas; };
|
|
|
|
public slots:
|
|
|
|
virtual void updateSensors()= 0;
|
|
virtual void readConfig();
|
|
virtual void writeConfig();
|
|
|
|
signals:
|
|
|
|
void valueChanged(Sensor *);
|
|
void configChanged(const char *name);
|
|
|
|
protected slots:
|
|
|
|
void slotConfigChanged();
|
|
void slotValueChanged();
|
|
|
|
protected:
|
|
|
|
void setDescription(const TQString &name) { description= name; };
|
|
void setClass(Sensor::SensorClass newClass) { clas= newClass; }
|
|
void childEvent ( TQChildEvent *e );
|
|
|
|
private:
|
|
|
|
TQString description;
|
|
Sensor::SensorClass clas;
|
|
bool monitorized;
|
|
int updateInterval;
|
|
TDEConfig *ksConfig;
|
|
Sensor::TempScale tempScale;
|
|
|
|
void timerEvent( TQTimerEvent * );
|
|
};
|
|
|
|
#endif
|