1 /* BEGIN_COMMON_COPYRIGHT_HEADER
2  * (c)LGPL2+
3  *
4  * LXQt - a lightweight, Qt based, desktop toolset
5  * https://lxqt.org
6  *
7  * Copyright: 2011 Razor team
8  * Authors:
9  *   Christian Surlykke <christian@surlykke.dk>
10  *
11  * This program or library is free software; you can redistribute it
12  * and/or modify it under the terms of the GNU Lesser General Public
13  * License as published by the Free Software Foundation; either
14  * version 2.1 of the License, or (at your option) any later version.
15  *
16  * This library is distributed in the hope that it will be useful,
17  * but WITHOUT ANY WARRANTY; without even the implied warranty of
18  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
19  * Lesser General Public License for more details.
20 
21  * You should have received a copy of the GNU Lesser General
22  * Public License along with this library; if not, write to the
23  * Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
24  * Boston, MA 02110-1301 USA
25  *
26  * END_COMMON_COPYRIGHT_HEADER */
27 #ifndef BATTERYHELPER_H
28 #define BATTERYHELPER_H
29 
30 #include <QVariantMap>
31 #include <QDateTime>
32 #include <Solid/Battery>
33 #include <Solid/Device>
34 
35 class BatteryHelper : public QObject
36 {
37     Q_OBJECT
38 
39 public:
40     static QString stateToString(Solid::Battery::ChargeState state);
41     static QString technologyToString(Solid::Battery::Technology tech);
42     static QString typeToString(Solid::Battery::BatteryType type);
43 };
44 #endif
45