mirror of
https://github.com/arcan1s/awesome-widgets.git
synced 2025-04-25 07:57:19 +00:00
22 lines
410 B
C++
22 lines
410 B
C++
#ifndef EXTSYSMON_H
|
|
#define EXTSYSMON_H
|
|
|
|
#include <Plasma/DataEngine>
|
|
|
|
class ExtendedSysMon : public Plasma::DataEngine
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
ExtendedSysMon(QObject *parent, const QVariantList &args);
|
|
|
|
protected:
|
|
bool sourceRequestEvent(const QString &name);
|
|
bool updateSourceEvent(const QString &source);
|
|
QStringList hdddev;
|
|
QString gpudev;
|
|
QStringList sources() const;
|
|
};
|
|
|
|
#endif // EXTSYSMON_H
|