kde-workspace/plasma/applets/system-monitor/cpu.h
Ivailo Monev af45159765 generic: replace forward declarations with headers inclusions
this was done with namefsck script from Katie, solves namespace issues

Signed-off-by: Ivailo Monev <xakepa10@laimg.moc>
2019-05-05 02:36:36 +00:00

67 lines
1.8 KiB
C++

/*
* Copyright (C) 2008 Petri Damsten <damu@iki.fi>
* Copyright (C) 2010 Michel Lafon-Puyo <michel.lafonpuyo@gmail.com>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU Library General Public License version 2 as
* published by the Free Software Foundation
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details
*
* You should have received a copy of the GNU Library General Public
* License along with this program; if not, write to the
* Free Software Foundation, Inc.,
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*/
#ifndef CPU_HEADER
#define CPU_HEADER
#include <ui_cpu-config.h>
#include "applet.h"
#include <Plasma/DataEngine>
#include <QStandardItemModel>
#include <QTimer>
#include <QRegExp>
#include <QStandardItemModel>
namespace SM {
class Cpu : public Applet
{
Q_OBJECT
public:
Cpu(QObject *parent, const QVariantList &args);
~Cpu();
virtual void init();
virtual bool addVisualization(const QString&);
virtual void createConfigurationInterface(KConfigDialog *parent);
public slots:
void dataUpdated(const QString &name,
const Plasma::DataEngine::Data &data);
void sourceChanged(const QString &name);
void sourcesChanged();
void configAccepted();
void configChanged();
protected:
QString cpuTitle(const QString &name);
private:
Ui::config ui;
QStandardItemModel m_model;
QStringList m_cpus;
QTimer m_sourceTimer;
QRegExp m_rx;
};
}
K_EXPORT_PLASMA_APPLET(sm_cpu, SM::Cpu)
#endif