2018-08-29 18:36:39 +00:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <dbus-status-notifier-item.h>
|
2019-01-08 20:05:44 +00:00
|
|
|
#include <glibmm/refptr.h>
|
|
|
|
#include <gtkmm/eventbox.h>
|
|
|
|
#include <gtkmm/image.h>
|
|
|
|
#include <gtkmm/icontheme.h>
|
|
|
|
#include <gtkmm/menu.h>
|
2018-10-26 12:53:39 +00:00
|
|
|
#include <json/json.h>
|
2018-11-16 11:01:03 +00:00
|
|
|
#include <libdbusmenu-gtk/dbusmenu-gtk.h>
|
2018-11-02 19:59:41 +00:00
|
|
|
#ifdef FILESYSTEM_EXPERIMENTAL
|
2018-11-22 14:47:23 +00:00
|
|
|
#include <experimental/filesystem>
|
2018-11-02 19:59:41 +00:00
|
|
|
#else
|
2018-11-22 14:47:23 +00:00
|
|
|
#include <filesystem>
|
2018-11-02 19:59:41 +00:00
|
|
|
#endif
|
2018-08-29 18:36:39 +00:00
|
|
|
|
|
|
|
namespace waybar::modules::SNI {
|
|
|
|
|
|
|
|
class Item {
|
2018-10-04 16:47:06 +00:00
|
|
|
public:
|
2018-11-22 14:47:23 +00:00
|
|
|
Item(std::string, std::string, const Json::Value&);
|
|
|
|
~Item() = default;
|
2018-10-04 16:47:06 +00:00
|
|
|
|
|
|
|
std::string bus_name;
|
|
|
|
std::string object_path;
|
|
|
|
|
|
|
|
int icon_size;
|
|
|
|
int effective_icon_size;
|
2018-11-22 14:47:23 +00:00
|
|
|
Gtk::Image image;
|
|
|
|
Gtk::EventBox event_box;
|
2018-10-04 16:47:06 +00:00
|
|
|
std::string category;
|
|
|
|
std::string id;
|
|
|
|
std::string status;
|
|
|
|
|
|
|
|
std::string title;
|
|
|
|
int32_t window_id;
|
|
|
|
std::string icon_name;
|
|
|
|
Glib::RefPtr<Gdk::Pixbuf> icon_pixmap;
|
|
|
|
std::string overlay_icon_name;
|
|
|
|
std::string attention_icon_name;
|
|
|
|
std::string attention_movie_name;
|
|
|
|
std::string icon_theme_path;
|
2018-11-22 14:47:23 +00:00
|
|
|
std::string menu;
|
|
|
|
DbusmenuGtkMenu *dbus_menu = nullptr;
|
2018-11-16 11:01:03 +00:00
|
|
|
Gtk::Menu *gtk_menu = nullptr;
|
2018-10-04 16:47:06 +00:00
|
|
|
bool item_is_menu;
|
|
|
|
|
|
|
|
private:
|
|
|
|
static void proxyReady(GObject *obj, GAsyncResult *res, gpointer data);
|
|
|
|
static void getAll(GObject *obj, GAsyncResult *res, gpointer data);
|
|
|
|
|
|
|
|
void updateImage();
|
|
|
|
Glib::RefPtr<Gdk::Pixbuf> extractPixBuf(GVariant *variant);
|
|
|
|
Glib::RefPtr<Gdk::Pixbuf> getIconByName(std::string name, int size);
|
2018-11-22 14:47:23 +00:00
|
|
|
static void onMenuDestroyed(Item *self);
|
|
|
|
bool makeMenu(GdkEventButton *const &ev);
|
2018-10-04 16:47:06 +00:00
|
|
|
bool handleClick(GdkEventButton *const & /*ev*/);
|
|
|
|
|
|
|
|
GCancellable *cancellable_ = nullptr;
|
2018-10-26 08:05:54 +00:00
|
|
|
SnItem *proxy_ = nullptr;
|
2018-08-29 18:36:39 +00:00
|
|
|
};
|
|
|
|
|
2018-10-04 16:47:06 +00:00
|
|
|
} // namespace waybar::modules::SNI
|