mirror of https://github.com/cutefishos/core
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
53 lines
1.3 KiB
C++
53 lines
1.3 KiB
C++
#ifndef UPOWERDEVICE_H
|
|
#define UPOWERDEVICE_H
|
|
|
|
#include <QObject>
|
|
#include <QDBusInterface>
|
|
|
|
class UPowerDevice : public QObject
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
enum Type { Unknown = 0, GenericInterface = 1, Processor = 2,
|
|
Block = 3, StorageAccess = 4, StorageDrive = 5,
|
|
OpticalDrive = 6, StorageVolume = 7, OpticalDisc = 8,
|
|
Camera = 9, PortableMediaPlayer = 10,
|
|
Battery = 12, NetworkShare = 14, Last = 0xffff
|
|
};
|
|
Q_ENUM(Type)
|
|
|
|
explicit UPowerDevice(const QString &udi, QObject *parent = nullptr);
|
|
|
|
bool queryDeviceInterface(Type type) const;
|
|
QString description() const;
|
|
QString batteryTechnology() const;
|
|
QString product() const;
|
|
QString vendor() const;
|
|
|
|
QString udi() const;
|
|
|
|
QVariant prop(const QString &key) const;
|
|
bool propertyExists(const QString &key) const;
|
|
QMap<QString, QVariant> allProperties() const;
|
|
|
|
signals:
|
|
void changed();
|
|
|
|
private slots:
|
|
void onPropertiesChanged(const QString &ifaceName, const QVariantMap &changedProps, const QStringList &invalidatedProps);
|
|
void login1Resuming(bool active);
|
|
void slotChanged();
|
|
|
|
private:
|
|
void checkCache(const QString &key) const;
|
|
|
|
private:
|
|
mutable QDBusInterface m_device;
|
|
mutable QVariantMap m_cache;
|
|
|
|
QString m_udi;
|
|
};
|
|
|
|
#endif // UPOWERDEVICE_H
|