From 84f7139bc6bf22ae5da431865845359d7a393e94 Mon Sep 17 00:00:00 2001 From: Joshua Yun Date: Wed, 12 Mar 2025 01:29:49 -0500 Subject: Moved item from systray patch also into systray --- item.h | 46 ---------------------------------------------- 1 file changed, 46 deletions(-) delete mode 100644 item.h (limited to 'item.h') diff --git a/item.h b/item.h deleted file mode 100644 index dc22e25..0000000 --- a/item.h +++ /dev/null @@ -1,46 +0,0 @@ -#ifndef ITEM_H -#define ITEM_H - -#include "icon.h" -#include "watcher.h" - -#include - -/* - * The FDO spec says "org.freedesktop.StatusNotifierItem"[1], - * but both the client libraries[2,3] actually use "org.kde.StatusNotifierItem" - * - * [1] https://www.freedesktop.org/wiki/Specifications/StatusNotifierItem/ - * [2] https://github.com/AyatanaIndicators/libayatana-appindicator-glib - * [3] https://invent.kde.org/frameworks/kstatusnotifieritem - * - */ -#define SNI_NAME "org.kde.StatusNotifierItem" -#define SNI_OPATH "/StatusNotifierItem" -#define SNI_IFACE "org.kde.StatusNotifierItem" - -typedef struct Item { - struct wl_list icons; - char *busname; - char *busobj; - char *menu_busobj; - char *appid; - Icon *icon; - FallbackIcon *fallback_icon; - - Watcher *watcher; - - int fgcolor; - - int ready; - - struct wl_list link; -} Item; - -Item *createitem (const char *busname, const char *busobj, Watcher *watcher); -void destroyitem (Item *item); - -void item_activate (Item *item); -void item_show_menu (Item *item); - -#endif /* ITEM_H */ -- cgit v1.2.3