Waybar/include/modules/upower/upower.hpp

63 lines
1.8 KiB
C++
Raw Normal View History

2022-03-15 16:54:06 +00:00
#pragma once
#include <libupower-glib/upower.h>
#include <iostream>
#include <map>
#include <string>
#include "ALabel.hpp"
#include "gtkmm/box.h"
#include "gtkmm/image.h"
#include "gtkmm/label.h"
#include "modules/upower/upower_tooltip.hpp"
2022-03-15 16:54:06 +00:00
namespace waybar::modules::upower {
2022-03-15 16:54:06 +00:00
class UPower : public AModule {
public:
UPower(const std::string &, const Json::Value &);
~UPower();
auto update() -> void;
private:
2022-03-19 09:52:05 +00:00
typedef std::unordered_map<std::string, UpDevice *> Devices;
2022-03-15 16:54:06 +00:00
static void deviceAdded_cb(UpClient *client, UpDevice *device, gpointer data);
2022-03-19 09:52:05 +00:00
static void deviceRemoved_cb(UpClient *client, const gchar *objectPath, gpointer data);
static void deviceNotify_cb(UpDevice *device, GParamSpec *pspec, gpointer user_data);
static void prepareForSleep_cb(GDBusConnection *system_bus, const gchar *sender_name,
const gchar *object_path, const gchar *interface_name,
const gchar *signal_name, GVariant *parameters,
gpointer user_data);
2022-03-19 09:52:05 +00:00
void removeDevice(const gchar *objectPath);
2022-03-19 10:34:34 +00:00
void addDevice(UpDevice *device);
2022-03-15 16:54:06 +00:00
void setDisplayDevice();
void resetDevices();
2022-03-19 10:34:34 +00:00
void removeDevices();
bool show_tooltip_callback(int, int, bool, const Glib::RefPtr<Gtk::Tooltip> &tooltip);
2022-03-15 16:54:06 +00:00
2022-03-19 18:22:00 +00:00
const std::string getDeviceStatus(UpDeviceState &state);
2022-03-15 16:54:06 +00:00
Gtk::Box box_;
Gtk::Image icon_;
Gtk::Label label_;
// Config
bool hideIfEmpty = true;
bool tooltip_enabled = true;
uint tooltip_spacing = 4;
2022-03-19 10:19:08 +00:00
uint iconSize = 20;
2022-03-19 09:52:05 +00:00
Devices devices;
std::mutex m_Mutex;
UpClient *client;
UpDevice *displayDevice;
guint login1_id;
GDBusConnection *login1_connection;
UPowerTooltip *upower_tooltip;
2022-03-19 18:22:00 +00:00
std::string lastStatus;
2022-03-15 16:54:06 +00:00
};
} // namespace waybar::modules::upower