polybar/include/x11/tray_client.hpp

49 lines
966 B
C++
Raw Normal View History

#pragma once
#include <xcb/xcb.h>
#include "common.hpp"
#include "utils/concurrency.hpp"
POLYBAR_NS
// fwd declarations
class connection;
struct xembed_data;
class tray_client {
public:
2017-01-19 10:11:28 +00:00
explicit tray_client(connection& conn, xcb_window_t win, unsigned int w, unsigned int h);
tray_client(const tray_client& c) = default;
tray_client& operator=(tray_client& c) = default;
2016-12-21 22:22:02 +00:00
~tray_client();
2017-01-19 10:11:28 +00:00
unsigned int width() const;
unsigned int height() const;
2016-12-21 22:22:02 +00:00
void clear_window() const;
2016-12-21 22:22:02 +00:00
bool match(const xcb_window_t& win) const;
bool mapped() const;
void mapped(bool state);
2016-12-21 22:22:02 +00:00
xcb_window_t window() const;
xembed_data* xembed() const;
2016-12-21 22:22:02 +00:00
void ensure_state() const;
2017-01-19 10:11:28 +00:00
void reconfigure(int x, int y) const;
void configure_notify(int x, int y) const;
2016-12-21 22:22:02 +00:00
protected:
connection& m_connection;
xcb_window_t m_window{0};
2016-12-21 22:22:02 +00:00
shared_ptr<xembed_data> m_xembed;
bool m_mapped{false};
2017-01-19 10:11:28 +00:00
unsigned int m_width;
unsigned int m_height;
2016-12-21 22:22:02 +00:00
};
POLYBAR_NS_END