31 lines
611 B
C++
31 lines
611 B
C++
#pragma once
|
|
|
|
#include <libupower-glib/upower.h>
|
|
|
|
#include "gtkmm/box.h"
|
|
#include "gtkmm/label.h"
|
|
#include "gtkmm/window.h"
|
|
|
|
namespace waybar::modules::upower {
|
|
|
|
class UPowerTooltip : public Gtk::Window {
|
|
private:
|
|
typedef std::unordered_map<std::string, UpDevice*> Devices;
|
|
|
|
const std::string getDeviceIcon(UpDeviceKind& kind);
|
|
|
|
Gtk::Box* contentBox;
|
|
|
|
uint iconSize;
|
|
uint tooltipSpacing;
|
|
uint tooltipPadding;
|
|
|
|
public:
|
|
UPowerTooltip(uint iconSize, uint tooltipSpacing, uint tooltipPadding);
|
|
~UPowerTooltip();
|
|
|
|
uint updateTooltip(Devices& devices);
|
|
};
|
|
|
|
} // namespace waybar::modules::upower
|