7#ifndef SOLID_BACKENDS_IOKIT_BATTERY_H
8#define SOLID_BACKENDS_IOKIT_BATTERY_H
10#include "iokitdeviceinterface.h"
11#include <solid/devices/ifaces/battery.h>
27 Battery(IOKitDevice *device);
30 bool isPresent()
const override;
33 int chargePercent()
const override;
34 int capacity()
const override;
36 bool isRechargeable()
const override;
37 bool isPowerSupply()
const override;
41 qlonglong timeToEmpty()
const override;
42 qlonglong timeToFull()
const override;
43 double voltage()
const override;
44 double temperature()
const override;
45 QString serial()
const override;
50 double energy()
const override {
return 0.0; }
51 double energyFull()
const override {
return 0.0; }
52 double energyFullDesign()
const override {
return 0.0; }
53 double energyRate()
const override {
return 0.0; }
55 qlonglong remainingTime()
const override {
return -1; }
59 void energyChanged(
double energy,
const QString &udi)
override;
60 void energyFullChanged(
double energyFull,
const QString &udi)
override;
61 void energyFullDesignChanged(
double energyFullDesign,
const QString &udi)
override;
62 void energyRateChanged(
double energyRate,
const QString &udi)
override;
63 void chargePercentChanged(
int value,
const QString &udi)
override;
64 void capacityChanged(
int value,
const QString &udi)
override;
65 void chargeStateChanged(
int newState,
const QString &udi)
override;
66 void presentStateChanged(
bool newState,
const QString &udi)
override;
67 void powerSupplyStateChanged(
bool newState,
const QString &udi)
override;
68 void timeToEmptyChanged(qlonglong time,
const QString &udi)
override;
69 void timeToFullChanged(qlonglong time,
const QString &udi)
override;
70 void temperatureChanged(
double temperature,
const QString &udi)
override;
71 void voltageChanged(
double voltage,
const QString &udi)
override;
72 void remainingTimeChanged(qlonglong time,
const QString &udi)
override;
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.
This file is part of the KDE documentation.
Documentation copyright © 1996-2024 The KDE developers.
Generated on Mon Nov 18 2024 12:14:22 by
doxygen 1.12.0 written
by
Dimitri van Heesch, © 1997-2006
KDE's Doxygen guidelines are available online.