/* * SPDX-FileCopyrightText: 2020 Arjen Hiemstra * * SPDX-License-Identifier: GPL-2.0-only OR GPL-3.0-only OR LicenseRef-KDE-Accepted-GPL */ #pragma once #include "systemstats/SensorObject.h" class GpuDevice : public KSysGuard::SensorObject { Q_OBJECT public: GpuDevice(const QString &id, const QString &name); ~GpuDevice() override = default; virtual void initialize(); virtual void update(); protected: virtual void makeSensors(); KSysGuard::SensorProperty *m_nameProperty = nullptr; KSysGuard::SensorProperty *m_usageProperty = nullptr; KSysGuard::SensorProperty *m_totalVramProperty = nullptr; KSysGuard::SensorProperty *m_usedVramProperty = nullptr; KSysGuard::SensorProperty *m_temperatureProperty = nullptr; KSysGuard::SensorProperty *m_coreFrequencyProperty = nullptr; KSysGuard::SensorProperty *m_memoryFrequencyProperty = nullptr; KSysGuard::SensorProperty *m_powerProperty = nullptr; };