polybar/include/modules/xwindow.hpp

54 lines
1.2 KiB
C++
Raw Normal View History

#pragma once
#include <bitset>
#include "components/config.hpp"
2016-11-20 22:04:31 +00:00
#include "modules/meta/static_module.hpp"
#include "x11/events.hpp"
#include "x11/ewmh.hpp"
#include "x11/icccm.hpp"
#include "x11/window.hpp"
2016-11-19 05:22:44 +00:00
POLYBAR_NS
2016-11-20 22:04:31 +00:00
class connection;
namespace modules {
class active_window {
public:
2016-12-01 07:35:59 +00:00
explicit active_window(xcb_window_t win);
~active_window();
bool match(const xcb_window_t win) const;
string title(xcb_ewmh_connection_t* ewmh) const;
private:
connection& m_connection;
window m_window{m_connection};
};
/**
* Module used to display information about the
* currently active X window.
*/
class xwindow_module : public static_module<xwindow_module>, public xpp::event::sink<evt::property_notify> {
public:
2016-12-09 08:40:46 +00:00
explicit xwindow_module(const bar_settings&, string);
void setup();
void teardown();
void handle(const evt::property_notify& evt);
void update();
2016-11-25 12:55:15 +00:00
bool build(builder* builder, const string& tag) const;
private:
2016-11-26 05:13:20 +00:00
static constexpr const char* TAG_LABEL{"<label>"};
2016-12-01 07:35:59 +00:00
connection& m_connection;
2016-11-26 05:13:20 +00:00
ewmh_connection_t m_ewmh;
unique_ptr<active_window> m_active;
label_t m_label;
};
}
2016-11-19 05:22:44 +00:00
POLYBAR_NS_END