shift-shell/kcms/info/softwareinfo.h
Devin Lin e147f98aea kcms: Move KCMs from plasma-settings
Having the KCMs that are mobile specific here makes more sense than in the settings application. Historically plasma-settings had a faster release cycle than Plasma, but the application is now moving to the Plasma release schedule and so it makes sense do this now.
2023-03-13 18:45:47 -07:00

31 lines
848 B
C++

/*
SPDX-FileCopyrightText: 2019 Jonah Brüchert <jbb@kaidan.im>
SPDX-License-Identifier: GPL-2.0-only OR GPL-3.0-only OR LicenseRef-KDE-Accepted-GPL
*/
#include <QObject>
#ifndef SOFTWAREINFO_H
#define SOFTWAREINFO_H
class SoftwareInfo : public QObject
{
Q_OBJECT
Q_PROPERTY(QString kernelRelease READ kernelRelease CONSTANT)
Q_PROPERTY(QString frameworksVersion READ frameworksVersion CONSTANT)
Q_PROPERTY(QString qtVersion READ qtVersion CONSTANT)
Q_PROPERTY(QString plasmaVersion READ plasmaVersion CONSTANT)
Q_PROPERTY(QString osType READ osType CONSTANT)
public:
SoftwareInfo(QObject *parent = nullptr);
QString kernelRelease() const;
QString frameworksVersion() const;
QString qtVersion() const;
QString plasmaVersion() const;
QString osType() const;
};
#endif // SOFTWAREINFO_H