mirror of
				https://github.com/rad4day/Waybar.git
				synced 2025-10-31 07:52:42 +01:00 
			
		
		
		
	Moved upower.*pp out of the upower directories
This commit is contained in:
		| @@ -1,52 +0,0 @@ | ||||
| #pragma once | ||||
|  | ||||
| #include <libupower-glib/upower.h> | ||||
|  | ||||
| #include <algorithm> | ||||
| #include <iostream> | ||||
| #include <map> | ||||
| #include <string> | ||||
| #include <vector> | ||||
|  | ||||
| #include "ALabel.hpp" | ||||
| #include "gtkmm/box.h" | ||||
| #include "gtkmm/image.h" | ||||
| #include "gtkmm/label.h" | ||||
|  | ||||
| namespace waybar::modules { | ||||
|  | ||||
| class UPower : public AModule { | ||||
|  public: | ||||
|   UPower(const std::string &, const Json::Value &); | ||||
|   ~UPower(); | ||||
|   auto update() -> void; | ||||
|  | ||||
|  private: | ||||
|   static void deviceAdded_cb(UpClient *client, UpDevice *device, gpointer data); | ||||
|   static void deviceRemoved_cb(UpClient *client, const gchar *object_path, gpointer data); | ||||
|   static void deviceNotify_cb(gpointer 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); | ||||
|   void        removeDevice(const std::string devicePath); | ||||
|   void        addDevice(UpDevice *device); | ||||
|   void        setDisplayDevice(); | ||||
|   void        resetDevices(); | ||||
|  | ||||
|   Gtk::Box   box_; | ||||
|   Gtk::Image icon_; | ||||
|   Gtk::Label label_; | ||||
|  | ||||
|   // Config | ||||
|   bool hideIfEmpty = true; | ||||
|   uint iconSize = 32; | ||||
|  | ||||
|   UpClient                         *client = NULL; | ||||
|   UpDevice                         *displayDevice = NULL; | ||||
|   std::map<std::string, UpDevice *> devices; | ||||
|   guint                             login1_id; | ||||
|   GDBusConnection                  *login1_connection; | ||||
| }; | ||||
|  | ||||
| }  // namespace waybar::modules | ||||
		Reference in New Issue
	
	Block a user
	 Erik Reider
					Erik Reider