not quite so much needs to be delayed to the init() function
[personal-kdebase.git] / workspace / plasma / applets / system-monitor / hdd.h
blob86229ae53f1e83f85e3651ce2b0f6cffcb70f1e1
1 /*
2 * Copyright (C) 2007 Petri Damsten <damu@iki.fi>
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU Library General Public License version 2 as
6 * published by the Free Software Foundation
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details
13 * You should have received a copy of the GNU Library General Public
14 * License along with this program; if not, write to the
15 * Free Software Foundation, Inc.,
16 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
19 #ifndef HDD_HEADER
20 #define HDD_HEADER
22 #include <Plasma/DataEngine>
23 #include <QHash>
24 #include <QStandardItemModel>
25 #include <applet.h>
26 #include "ui_hdd-config.h"
28 namespace Plasma {
29 class Meter;
31 class MonitorIcon;
32 class Header;
33 class QGraphicsLinearLayout;
35 class Hdd : public SM::Applet
37 Q_OBJECT
38 public:
39 Hdd(QObject *parent, const QVariantList &args);
40 ~Hdd();
42 virtual void init();
43 virtual void createConfigurationInterface(KConfigDialog *parent);
45 public slots:
46 void dataUpdated(const QString &name, const Plasma::DataEngine::Data &data);
48 private slots:
49 void configAccepted();
50 void themeChanged();
52 private:
53 Ui::config ui;
54 QStandardItemModel m_hddModel;
55 QHash<const QString, MonitorIcon *> m_icons;
56 QHash<QString, QList<Plasma::Meter *> > m_diskMap;
58 QString title(const QString& uuid, const Plasma::DataEngine::Data &data);
59 bool addMeter(const QString& source);
60 void deleteMeters(QGraphicsLinearLayout* layout = 0);
61 bool isValidDevice(const QString& uuid, Plasma::DataEngine::Data* data);
64 K_EXPORT_PLASMA_APPLET(sm_hdd, Hdd)
66 #endif