kde-workspace/plasma/applets/system-monitor/system-monitor.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.9 KiB
C++

/*
* Copyright (C) 2007 Petri Damsten <damu@iki.fi>
*
* 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 SYSTEM_MONITOR_HEADER
#define SYSTEM_MONITOR_HEADER
#include <Plasma/PopupApplet>
#include <Plasma/DataEngine>
namespace SM {
class Applet;
}
class MonitorButton;
#include <QGraphicsLinearLayout>
class SystemMonitor : public Plasma::PopupApplet
{
Q_OBJECT
public:
SystemMonitor(QObject *parent, const QVariantList &args);
virtual ~SystemMonitor();
void init();
virtual QGraphicsWidget *graphicsWidget();
virtual void constraintsEvent(Plasma::Constraints constraints);
public slots:
void checkGeometry();
protected slots:
void toggled(bool toggled);
void appletRemoved(QObject *object);
void configChanged();
protected:
SM::Applet *addApplet(const QString &name);
void removeApplet(const QString &name);
void saveState(KConfigGroup &group) const;
void createConfigurationInterface(KConfigDialog *parent);
private:
QGraphicsLinearLayout *m_layout;
QGraphicsLinearLayout *m_buttons;
QList<SM::Applet*> m_applets;
QList<MonitorButton*> m_monitorButtons;
QGraphicsWidget *m_widget;
};
K_EXPORT_PLASMA_APPLET(system-monitor_applet, SystemMonitor)
#endif