Solid

fakebattery.h
1/*
2 SPDX-FileCopyrightText: 2006 Kevin Ottens <ervin@kde.org>
3 SPDX-FileCopyrightText: 2012 Lukas Tinkl <ltinkl@redhat.com>
4 SPDX-FileCopyrightText: 2014 Kai Uwe Broulik <kde@privat.broulik.de>
5
6 SPDX-License-Identifier: LGPL-2.1-only OR LGPL-3.0-only OR LicenseRef-KDE-Accepted-LGPL
7*/
8
9#ifndef SOLID_BACKENDS_FAKEHW_FAKEBATTERY_H
10#define SOLID_BACKENDS_FAKEHW_FAKEBATTERY_H
11
12#include "fakedeviceinterface.h"
13#include <solid/devices/ifaces/battery.h>
14
15namespace Solid
16{
17namespace Backends
18{
19namespace Fake
20{
21class FakeBattery : public FakeDeviceInterface, virtual public Solid::Ifaces::Battery
22{
25
26public:
27 explicit FakeBattery(FakeDevice *device);
28 ~FakeBattery() override;
29
30public Q_SLOTS:
31 bool isPresent() const override;
32 Solid::Battery::BatteryType type() const override;
33
34 int chargePercent() const override;
35 int capacity() const override;
36
37 bool isRechargeable() const override;
38 bool isPowerSupply() const override;
39
40 Solid::Battery::ChargeState chargeState() const override;
41 qlonglong timeToEmpty() const override;
42 qlonglong timeToFull() const override;
43
44 void setChargeState(Solid::Battery::ChargeState newState);
45 void setChargeLevel(int newLevel);
46
47 Solid::Battery::Technology technology() const override;
48
49 double energy() const override;
50 double energyFull() const override;
51 double energyFullDesign() const override;
52 double energyRate() const override;
53
54 double voltage() const override;
55 double temperature() const override;
56
57 QString serial() const override;
58
59 qlonglong remainingTime() const override;
60
62 void presentStateChanged(bool newState, const QString &udi) override;
63 void chargePercentChanged(int value, const QString &udi) override;
64 void capacityChanged(int value, const QString &udi) override;
65 void powerSupplyStateChanged(bool newState, const QString &udi) override;
66 void chargeStateChanged(int newState, const QString &udi) override;
67 void timeToEmptyChanged(qlonglong time, const QString &udi) override;
68 void timeToFullChanged(qlonglong time, const QString &udi) override;
69 void energyChanged(double energy, const QString &udi) override;
70 void energyFullChanged(double energyFull, const QString &udi) override;
71 void energyFullDesignChanged(double energyFullDesign, const QString &udi) override;
72 void energyRateChanged(double energyRate, const QString &udi) override;
73 void voltageChanged(double voltage, const QString &udi) override;
74 void temperatureChanged(double temperature, const QString &udi) override;
75 void remainingTimeChanged(qlonglong time, const QString &udi) override;
76};
77}
78}
79}
80
81#endif // SOLID_BACKENDS_FAKEHW_FAKEBATTERY_H
BatteryType
This enum type defines the type of the device holding the battery.
Technology
Technology used in the battery.
ChargeState
This enum type defines charge state of a battery.
This device interface is available on batteries.
The single responsibility of this class is to create arguments valid for logind Inhibit call.
Definition fakebattery.h:16
Q_INTERFACES(...)
Q_OBJECTQ_OBJECT
Q_SIGNALSQ_SIGNALS
Q_SLOTSQ_SLOTS
This file is part of the KDE documentation.
Documentation copyright © 1996-2024 The KDE developers.
Generated on Tue Mar 26 2024 11:17:12 by doxygen 1.10.0 written by Dimitri van Heesch, © 1997-2006

KDE's Doxygen guidelines are available online.