1
0
mirror of git://projects.qi-hardware.com/gmenu2x.git synced 2024-06-30 20:34:11 +03:00
gmenu2x/src/battery.h

31 lines
456 B
C
Raw Normal View History

#ifndef __BATTERY_H__
#define __BATTERY_H__
#include <string>
class OffscreenSurface;
class SurfaceCollection;
/**
* Keeps track of the battery status.
*/
class Battery {
public:
Battery(SurfaceCollection& sc);
/**
* Gets the icon that reflects the current battery status.
*/
OffscreenSurface const& getIcon();
private:
void update();
SurfaceCollection& sc;
std::string iconPath;
unsigned int lastUpdate;
};
#endif /* __BATTERY_H__ */