#pragma once #include #include "common.hpp" #include "utils/memory.hpp" POLYBAR_NS struct position; using ewmh_connection_t = malloc_ptr_t; namespace ewmh_util { ewmh_connection_t initialize(); bool supports(xcb_ewmh_connection_t* ewmh, xcb_atom_t atom, int screen = 0); string get_wm_name(xcb_ewmh_connection_t* conn, xcb_window_t win); string get_visible_name(xcb_ewmh_connection_t* conn, xcb_window_t win); string get_icon_name(xcb_ewmh_connection_t* conn, xcb_window_t win); string get_reply_string(xcb_ewmh_get_utf8_strings_reply_t* reply); vector get_desktop_viewports(xcb_ewmh_connection_t* conn, int screen = 0); vector get_desktop_names(xcb_ewmh_connection_t* conn, int screen = 0); unsigned int get_current_desktop(xcb_ewmh_connection_t* conn, int screen = 0); xcb_window_t get_active_window(xcb_ewmh_connection_t* conn, int screen = 0); void change_current_desktop(xcb_ewmh_connection_t* conn, unsigned int desktop); } POLYBAR_NS_END