polybar-dwm/include/x11/tray_client.hpp

85 lines
1.8 KiB
C++
Raw Normal View History

#pragma once
#include <xcb/xcb.h>
#include "common.hpp"
#include "utils/concurrency.hpp"
#include "x11/xembed.hpp"
POLYBAR_NS
// fwd declarations
class connection;
class tray_client : public non_copyable_mixin {
public:
explicit tray_client(const logger& log, connection& conn, xcb_window_t tray, xcb_window_t win, size s);
2016-12-21 22:22:02 +00:00
~tray_client();
tray_client(tray_client&&);
tray_client& operator=(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);
xcb_window_t embedder() const;
xcb_window_t client() const;
void query_xembed();
bool is_xembed_supported() const;
const xembed::info& get_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:
const logger& m_log;
2016-12-21 22:22:02 +00:00
connection& m_connection;
/**
* Embedder window.
*
* The docking client window is reparented to this window.
* This window is itself a child of the main tray window.
*
* This class owns this window and is responsible for creating/destroying it.
*/
xcb_window_t m_wrapper{XCB_NONE};
/**
* Client window.
*
* The window itself is owned by the application providing it.
* This class is responsible for correctly mapping and reparenting it in accordance with the XEMBED protocol.
*/
xcb_window_t m_client{XCB_NONE};
/**
* Whether the client window supports XEMBED.
*
* A tray client can still work when it doesn't support XEMBED.
*/
bool m_xembed_supported{false};
/**
* _XEMBED_INFO of the client window
*
* Only valid if m_xembed_supported == true
*/
xembed::info m_xembed;
// TODO
2016-12-21 22:22:02 +00:00
bool m_mapped{false};
2022-02-27 20:36:16 +00:00
size m_size;
2016-12-21 22:22:02 +00:00
};
POLYBAR_NS_END