not quite so much needs to be delayed to the init() function
[personal-kdebase.git] / workspace / plasma / dataengines / soliddevice / hddtemp.h
blobd03d59b764eca140fcf94480fc93e118a02366b7
1 /*
2 * Copyright (C) 2007 Petri Damsten <damu@iki.fi>
3 * Copyright (C) 2007 Christopher Blauvelt <cblauvelt@gmail.com>
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU Library General Public License version 2 as
7 * published by the Free Software Foundation
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details
14 * You should have received a copy of the GNU Library General Public
15 * License along with this program; if not, write to the
16 * Free Software Foundation, Inc.,
17 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
20 #ifndef HDDTEMP_H
21 #define HDDTEMP_H
23 #include <QObject>
24 #include <QMap>
25 #include <QString>
26 #include <QStringList>
27 #include <QVariant>
28 #include <QTimer>
31 class HddTemp : public QObject
33 Q_OBJECT
35 public:
36 enum DataType {Temperature=0, Unit};
38 HddTemp(QObject *parent=0);
39 ~HddTemp();
40 QStringList sources() const;
41 QVariant data(const QString source, const DataType type) const;
43 private Q_SLOTS:
44 bool updateData();
46 private:
47 int m_failCount;
48 QMap<QString, QList<QVariant> > m_data;
49 QTimer *m_timer;
53 #endif