mirror of
https://github.com/polybar/polybar.git
synced 2024-11-11 13:50:56 -05:00
tray: Cleanup logging
This commit is contained in:
parent
8ec9807145
commit
5fd62edfca
8 changed files with 83 additions and 58 deletions
|
@ -85,8 +85,8 @@ struct position {
|
||||||
};
|
};
|
||||||
|
|
||||||
struct size {
|
struct size {
|
||||||
unsigned int w{1U};
|
unsigned w{1U};
|
||||||
unsigned int h{1U};
|
unsigned h{1U};
|
||||||
};
|
};
|
||||||
|
|
||||||
enum class spacing_type { SPACE, POINT, PIXEL };
|
enum class spacing_type { SPACE, POINT, PIXEL };
|
||||||
|
|
|
@ -25,6 +25,8 @@ class tray_client : public non_copyable_mixin {
|
||||||
tray_client(tray_client&&);
|
tray_client(tray_client&&);
|
||||||
tray_client& operator=(tray_client&&);
|
tray_client& operator=(tray_client&&);
|
||||||
|
|
||||||
|
string name() const;
|
||||||
|
|
||||||
unsigned int width() const;
|
unsigned int width() const;
|
||||||
unsigned int height() const;
|
unsigned int height() const;
|
||||||
void clear_window() const;
|
void clear_window() const;
|
||||||
|
@ -58,6 +60,11 @@ class tray_client : public non_copyable_mixin {
|
||||||
|
|
||||||
connection& m_connection;
|
connection& m_connection;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Name of the client window for debugging.
|
||||||
|
*/
|
||||||
|
string m_name{};
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Embedder window.
|
* Embedder window.
|
||||||
*
|
*
|
||||||
|
|
|
@ -192,7 +192,7 @@ class tray_manager : public xpp::event::sink<evt::expose, evt::visibility_notify
|
||||||
/**
|
/**
|
||||||
* Whether the tray is visible
|
* Whether the tray is visible
|
||||||
*/
|
*/
|
||||||
atomic<bool> m_hidden{false};
|
bool m_hidden{false};
|
||||||
|
|
||||||
thread m_delaythread;
|
thread m_delaythread;
|
||||||
|
|
||||||
|
|
|
@ -42,6 +42,8 @@ namespace xembed {
|
||||||
|
|
||||||
bool is_mapped() const;
|
bool is_mapped() const;
|
||||||
|
|
||||||
|
string to_string() const;
|
||||||
|
|
||||||
protected:
|
protected:
|
||||||
uint32_t version;
|
uint32_t version;
|
||||||
uint32_t flags;
|
uint32_t flags;
|
||||||
|
|
|
@ -66,6 +66,7 @@ screen::screen(connection& conn, signal_emitter& emitter, const logger& logger,
|
||||||
m_connection.flush();
|
m_connection.flush();
|
||||||
|
|
||||||
// Wait until the proxy window has been mapped
|
// Wait until the proxy window has been mapped
|
||||||
|
// TODO replace wait with a `handle` method
|
||||||
using evt = xcb_map_notify_event_t;
|
using evt = xcb_map_notify_event_t;
|
||||||
m_connection.wait_for_response<evt, XCB_MAP_NOTIFY>([&](const evt* evt) -> bool { return evt->window == m_proxy; });
|
m_connection.wait_for_response<evt, XCB_MAP_NOTIFY>([&](const evt* evt) -> bool { return evt->window == m_proxy; });
|
||||||
|
|
||||||
|
|
|
@ -5,6 +5,7 @@
|
||||||
|
|
||||||
#include "utils/memory.hpp"
|
#include "utils/memory.hpp"
|
||||||
#include "x11/connection.hpp"
|
#include "x11/connection.hpp"
|
||||||
|
#include "x11/ewmh.hpp"
|
||||||
#include "x11/winspec.hpp"
|
#include "x11/winspec.hpp"
|
||||||
|
|
||||||
POLYBAR_NS
|
POLYBAR_NS
|
||||||
|
@ -19,14 +20,14 @@ POLYBAR_NS
|
||||||
* 3. Use background color
|
* 3. Use background color
|
||||||
*/
|
*/
|
||||||
tray_client::tray_client(const logger& log, connection& conn, xcb_window_t tray, xcb_window_t win, size s)
|
tray_client::tray_client(const logger& log, connection& conn, xcb_window_t tray, xcb_window_t win, size s)
|
||||||
: m_log(log), m_connection(conn), m_client(win), m_size(s) {
|
: m_log(log), m_connection(conn), m_name(ewmh_util::get_wm_name(win)), m_client(win), m_size(s) {
|
||||||
auto geom = conn.get_geometry(win);
|
auto geom = conn.get_geometry(win);
|
||||||
auto attrs = conn.get_window_attributes(win);
|
auto attrs = conn.get_window_attributes(win);
|
||||||
int client_depth = geom->depth;
|
int client_depth = geom->depth;
|
||||||
auto client_visual = attrs->visual;
|
auto client_visual = attrs->visual;
|
||||||
auto client_colormap = attrs->colormap;
|
auto client_colormap = attrs->colormap;
|
||||||
|
|
||||||
m_log.trace("tray(%s): depth: %u, width: %u, height: %u", conn.id(win), client_depth, geom->width, geom->height);
|
m_log.trace("%s: depth: %u, width: %u, height: %u", name(), client_depth, geom->width, geom->height);
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Create embedder window for tray icon
|
* Create embedder window for tray icon
|
||||||
|
@ -69,6 +70,7 @@ tray_client::~tray_client() {
|
||||||
}
|
}
|
||||||
|
|
||||||
tray_client::tray_client(tray_client&& c) : m_log(c.m_log), m_connection(c.m_connection) {
|
tray_client::tray_client(tray_client&& c) : m_log(c.m_log), m_connection(c.m_connection) {
|
||||||
|
std::swap(m_name, c.m_name);
|
||||||
std::swap(m_wrapper, c.m_wrapper);
|
std::swap(m_wrapper, c.m_wrapper);
|
||||||
std::swap(m_client, c.m_client);
|
std::swap(m_client, c.m_client);
|
||||||
std::swap(m_xembed_supported, c.m_xembed_supported);
|
std::swap(m_xembed_supported, c.m_xembed_supported);
|
||||||
|
@ -81,6 +83,7 @@ tray_client::tray_client(tray_client&& c) : m_log(c.m_log), m_connection(c.m_con
|
||||||
tray_client& tray_client::operator=(tray_client&& c) {
|
tray_client& tray_client::operator=(tray_client&& c) {
|
||||||
m_log = c.m_log;
|
m_log = c.m_log;
|
||||||
m_connection = c.m_connection;
|
m_connection = c.m_connection;
|
||||||
|
std::swap(m_name, c.m_name);
|
||||||
std::swap(m_wrapper, c.m_wrapper);
|
std::swap(m_wrapper, c.m_wrapper);
|
||||||
std::swap(m_client, c.m_client);
|
std::swap(m_client, c.m_client);
|
||||||
std::swap(m_xembed_supported, c.m_xembed_supported);
|
std::swap(m_xembed_supported, c.m_xembed_supported);
|
||||||
|
@ -91,6 +94,10 @@ tray_client& tray_client::operator=(tray_client&& c) {
|
||||||
return *this;
|
return *this;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
string tray_client::name() const {
|
||||||
|
return "tray_client(" + m_connection.id(m_client) + ", " + m_name + ")";
|
||||||
|
}
|
||||||
|
|
||||||
unsigned int tray_client::width() const {
|
unsigned int tray_client::width() const {
|
||||||
return m_size.w;
|
return m_size.w;
|
||||||
}
|
}
|
||||||
|
@ -118,12 +125,12 @@ void tray_client::update_client_attributes() const {
|
||||||
|
|
||||||
connection::pack_values(configure_mask, &configure_params, configure_values);
|
connection::pack_values(configure_mask, &configure_params, configure_values);
|
||||||
|
|
||||||
m_log.trace("tray(%s): Update client window", m_connection.id(client()));
|
m_log.trace("%s: Update client window", name());
|
||||||
m_connection.change_window_attributes_checked(client(), configure_mask, configure_values.data());
|
m_connection.change_window_attributes_checked(client(), configure_mask, configure_values.data());
|
||||||
}
|
}
|
||||||
|
|
||||||
void tray_client::reparent() const {
|
void tray_client::reparent() const {
|
||||||
m_log.trace("tray(%s): Reparent client", m_connection.id(client()));
|
m_log.trace("%s: Reparent client", name());
|
||||||
m_connection.reparent_window_checked(client(), embedder(), 0, 0);
|
m_connection.reparent_window_checked(client(), embedder(), 0, 0);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -145,8 +152,10 @@ bool tray_client::mapped() const {
|
||||||
* Set client window mapped state
|
* Set client window mapped state
|
||||||
*/
|
*/
|
||||||
void tray_client::mapped(bool state) {
|
void tray_client::mapped(bool state) {
|
||||||
m_log.trace("tray(%s): set mapped: %i", m_connection.id(client()), state);
|
if (m_mapped != state) {
|
||||||
m_mapped = state;
|
m_log.trace("%s: set mapped: %i", name(), state);
|
||||||
|
m_mapped = state;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -168,6 +177,12 @@ xcb_window_t tray_client::client() const {
|
||||||
|
|
||||||
void tray_client::query_xembed() {
|
void tray_client::query_xembed() {
|
||||||
m_xembed_supported = xembed::query(m_connection, m_client, m_xembed);
|
m_xembed_supported = xembed::query(m_connection, m_client, m_xembed);
|
||||||
|
|
||||||
|
if (is_xembed_supported()) {
|
||||||
|
m_log.trace("%s: %s", name(), get_xembed().to_string());
|
||||||
|
} else {
|
||||||
|
m_log.trace("%s: no xembed");
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
bool tray_client::is_xembed_supported() const {
|
bool tray_client::is_xembed_supported() const {
|
||||||
|
@ -180,13 +195,13 @@ const xembed::info& tray_client::get_xembed() const {
|
||||||
|
|
||||||
void tray_client::notify_xembed() const {
|
void tray_client::notify_xembed() const {
|
||||||
if (is_xembed_supported()) {
|
if (is_xembed_supported()) {
|
||||||
m_log.trace("tray(%s): Send embbeded notification to client", m_connection.id(client()));
|
m_log.trace("%s: Send embbeded notification to client", name());
|
||||||
xembed::notify_embedded(m_connection, client(), embedder(), m_xembed.get_version());
|
xembed::notify_embedded(m_connection, client(), embedder(), m_xembed.get_version());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
void tray_client::add_to_save_set() const {
|
void tray_client::add_to_save_set() const {
|
||||||
m_log.trace("tray(%s): Add client window to the save set", m_connection.id(client()));
|
m_log.trace("%s: Add client window to the save set", name());
|
||||||
m_connection.change_save_set_checked(XCB_SET_MODE_INSERT, client());
|
m_connection.change_save_set_checked(XCB_SET_MODE_INSERT, client());
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -204,15 +219,17 @@ void tray_client::ensure_state() const {
|
||||||
should_be_mapped = false;
|
should_be_mapped = false;
|
||||||
}
|
}
|
||||||
|
|
||||||
m_log.trace("tray(%s): ensure_state (hidden=%i, mapped=%i, should_be_mapped=%i)", m_connection.id(client()), m_hidden,
|
// TODO can we stop here if should_be_mapped == m_mapped?
|
||||||
m_mapped, should_be_mapped);
|
|
||||||
|
m_log.trace(
|
||||||
|
"%s: ensure_state (hidden=%i, mapped=%i, should_be_mapped=%i)", name(), m_hidden, m_mapped, should_be_mapped);
|
||||||
|
|
||||||
if (should_be_mapped) {
|
if (should_be_mapped) {
|
||||||
m_log.trace("tray(%s): Map client", m_connection.id(client()));
|
m_log.trace("%s: Map client", name());
|
||||||
m_connection.map_window_checked(embedder());
|
m_connection.map_window_checked(embedder());
|
||||||
m_connection.map_window_checked(client());
|
m_connection.map_window_checked(client());
|
||||||
} else {
|
} else {
|
||||||
m_log.trace("tray(%s): Unmap client", m_connection.id(client()));
|
m_log.trace("%s: Unmap client", name());
|
||||||
m_connection.unmap_window_checked(client());
|
m_connection.unmap_window_checked(client());
|
||||||
m_connection.unmap_window_checked(embedder());
|
m_connection.unmap_window_checked(embedder());
|
||||||
}
|
}
|
||||||
|
@ -222,7 +239,7 @@ void tray_client::ensure_state() const {
|
||||||
* Configure window size
|
* Configure window size
|
||||||
*/
|
*/
|
||||||
void tray_client::reconfigure(int x, int y) const {
|
void tray_client::reconfigure(int x, int y) const {
|
||||||
m_log.trace("tray(%s): moving to (%d, %d)", m_connection.id(client()), x, y);
|
m_log.trace("%s: moving to (%d, %d)", name(), x, y);
|
||||||
|
|
||||||
uint32_t configure_mask = 0;
|
uint32_t configure_mask = 0;
|
||||||
std::array<uint32_t, 32> configure_values{};
|
std::array<uint32_t, 32> configure_values{};
|
||||||
|
|
|
@ -123,7 +123,7 @@ void tray_manager::activate() {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
m_log.info("Activating tray manager");
|
m_log.info("tray: Activating tray manager");
|
||||||
|
|
||||||
try {
|
try {
|
||||||
set_tray_colors();
|
set_tray_colors();
|
||||||
|
@ -134,9 +134,8 @@ void tray_manager::activate() {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
xcb_window_t other_owner = XCB_NONE;
|
|
||||||
|
|
||||||
// Attempt to get control of the systray selection
|
// Attempt to get control of the systray selection
|
||||||
|
xcb_window_t other_owner = XCB_NONE;
|
||||||
if (!acquire_selection(other_owner)) {
|
if (!acquire_selection(other_owner)) {
|
||||||
// Transition to WAITING state
|
// Transition to WAITING state
|
||||||
wait_for_selection(other_owner);
|
wait_for_selection(other_owner);
|
||||||
|
@ -150,6 +149,7 @@ void tray_manager::activate() {
|
||||||
m_state = state::ACTIVE;
|
m_state = state::ACTIVE;
|
||||||
|
|
||||||
// Send delayed notification
|
// Send delayed notification
|
||||||
|
// TODO try to remove this?
|
||||||
if (!m_firstactivation) {
|
if (!m_firstactivation) {
|
||||||
notify_clients();
|
notify_clients();
|
||||||
} else {
|
} else {
|
||||||
|
@ -194,7 +194,7 @@ void tray_manager::deactivate() {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
m_log.info("Deactivating tray manager");
|
m_log.info("tray: Deactivating tray manager");
|
||||||
|
|
||||||
m_sig.detach(this);
|
m_sig.detach(this);
|
||||||
|
|
||||||
|
@ -241,7 +241,7 @@ void tray_manager::reconfigure() {
|
||||||
* TODO should we call update_width directly?
|
* TODO should we call update_width directly?
|
||||||
*/
|
*/
|
||||||
void tray_manager::reconfigure_window() {
|
void tray_manager::reconfigure_window() {
|
||||||
m_log.trace("tray: Reconfigure window (hidden=%i, clients=%i)", static_cast<bool>(m_hidden), m_clients.size());
|
m_log.trace("tray: Reconfigure window (hidden=%i, clients=%i)", m_hidden, m_clients.size());
|
||||||
update_width();
|
update_width();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -252,6 +252,7 @@ void tray_manager::update_width() {
|
||||||
unsigned new_width = calculate_w();
|
unsigned new_width = calculate_w();
|
||||||
if (m_tray_width != new_width) {
|
if (m_tray_width != new_width) {
|
||||||
m_tray_width = new_width;
|
m_tray_width = new_width;
|
||||||
|
m_log.trace("tray: new width (width: %d, clients: %d)", m_tray_width, m_clients.size());
|
||||||
m_on_update();
|
m_on_update();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -272,7 +273,7 @@ void tray_manager::reconfigure_clients() {
|
||||||
x += m_opts.client_size.w + m_opts.spacing;
|
x += m_opts.client_size.w + m_opts.spacing;
|
||||||
} catch (const xpp::x::error::window& err) {
|
} catch (const xpp::x::error::window& err) {
|
||||||
// TODO print error
|
// TODO print error
|
||||||
m_log.err("Failed to reconfigure client (%s), removing ... (%s)", m_connection.id(it->client()), err.what());
|
m_log.err("Failed to reconfigure %s, removing ... (%s)", it->name(), err.what());
|
||||||
remove_client(*it, false);
|
remove_client(*it, false);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -282,6 +283,7 @@ void tray_manager::reconfigure_clients() {
|
||||||
* Refresh the bar window by clearing it along with each client window
|
* Refresh the bar window by clearing it along with each client window
|
||||||
*/
|
*/
|
||||||
void tray_manager::refresh_window() {
|
void tray_manager::refresh_window() {
|
||||||
|
// TODO create method that checks is_active and !m_hidden
|
||||||
if (!is_active() || m_hidden) {
|
if (!is_active() || m_hidden) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
@ -294,8 +296,7 @@ void tray_manager::refresh_window() {
|
||||||
client.clear_window();
|
client.clear_window();
|
||||||
}
|
}
|
||||||
} catch (const std::exception& e) {
|
} catch (const std::exception& e) {
|
||||||
m_log.err("Failed to clear tray client %s '%s' (%s)", ewmh_util::get_wm_name(client.client()),
|
m_log.err("tray: Failed to clear %s (%s)", client.name(), e.what());
|
||||||
m_connection.id(client.client()), e.what());
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -304,9 +305,10 @@ void tray_manager::refresh_window() {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Redraw window
|
* Redraw window
|
||||||
|
*
|
||||||
|
* TODO better name
|
||||||
*/
|
*/
|
||||||
void tray_manager::redraw_window() {
|
void tray_manager::redraw_window() {
|
||||||
m_log.info("Redraw tray container");
|
|
||||||
refresh_window();
|
refresh_window();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -377,7 +379,7 @@ bool tray_manager::acquire_selection(xcb_window_t& other_owner) {
|
||||||
*/
|
*/
|
||||||
void tray_manager::notify_clients() {
|
void tray_manager::notify_clients() {
|
||||||
if (is_active()) {
|
if (is_active()) {
|
||||||
m_log.info("Notifying pending tray clients");
|
m_log.info("tray: Notifying pending tray clients");
|
||||||
auto message = m_connection.make_client_message(MANAGER, m_connection.root());
|
auto message = m_connection.make_client_message(MANAGER, m_connection.root());
|
||||||
message.data.data32[0] = XCB_CURRENT_TIME;
|
message.data.data32[0] = XCB_CURRENT_TIME;
|
||||||
message.data.data32[1] = m_atom;
|
message.data.data32[1] = m_atom;
|
||||||
|
@ -405,7 +407,6 @@ void tray_manager::notify_clients_delayed() {
|
||||||
*/
|
*/
|
||||||
void tray_manager::track_selection_owner(xcb_window_t owner) {
|
void tray_manager::track_selection_owner(xcb_window_t owner) {
|
||||||
if (owner != XCB_NONE) {
|
if (owner != XCB_NONE) {
|
||||||
m_log.trace("tray: Listen for events on the new selection window");
|
|
||||||
const unsigned mask{XCB_CW_EVENT_MASK};
|
const unsigned mask{XCB_CW_EVENT_MASK};
|
||||||
const unsigned values[]{XCB_EVENT_MASK_STRUCTURE_NOTIFY};
|
const unsigned values[]{XCB_EVENT_MASK_STRUCTURE_NOTIFY};
|
||||||
m_connection.change_window_attributes(owner, mask, values);
|
m_connection.change_window_attributes(owner, mask, values);
|
||||||
|
@ -416,7 +417,7 @@ void tray_manager::track_selection_owner(xcb_window_t owner) {
|
||||||
* Process client docking request
|
* Process client docking request
|
||||||
*/
|
*/
|
||||||
void tray_manager::process_docking_request(xcb_window_t win) {
|
void tray_manager::process_docking_request(xcb_window_t win) {
|
||||||
m_log.info("Processing docking request from '%s' (%s)", ewmh_util::get_wm_name(win), m_connection.id(win));
|
m_log.info("tray: Processing docking request from '%s' (%s)", ewmh_util::get_wm_name(win), m_connection.id(win));
|
||||||
|
|
||||||
try {
|
try {
|
||||||
tray_client client(m_log, m_connection, m_opts.selection_owner, win, m_opts.client_size);
|
tray_client client(m_log, m_connection, m_opts.selection_owner, win, m_opts.client_size);
|
||||||
|
@ -424,16 +425,10 @@ void tray_manager::process_docking_request(xcb_window_t win) {
|
||||||
try {
|
try {
|
||||||
client.query_xembed();
|
client.query_xembed();
|
||||||
} catch (const xpp::x::error::window& err) {
|
} catch (const xpp::x::error::window& err) {
|
||||||
m_log.err("Failed to query _XEMBED_INFO, removing client... (%s)", err.what());
|
m_log.err("Failed to query _XEMBED_INFO, removing %s ... (%s)", client.name(), err.what());
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
m_log.trace("tray: xembed = %s", client.is_xembed_supported() ? "true" : "false");
|
|
||||||
if (client.is_xembed_supported()) {
|
|
||||||
m_log.trace("tray: version = 0x%x, flags = 0x%x, XEMBED_MAPPED = %s", client.get_xembed().get_version(),
|
|
||||||
client.get_xembed().get_flags(), client.get_xembed().is_mapped() ? "true" : "false");
|
|
||||||
}
|
|
||||||
|
|
||||||
client.update_client_attributes();
|
client.update_client_attributes();
|
||||||
|
|
||||||
client.reparent();
|
client.reparent();
|
||||||
|
@ -446,8 +441,7 @@ void tray_manager::process_docking_request(xcb_window_t win) {
|
||||||
|
|
||||||
m_clients.emplace_back(std::move(client));
|
m_clients.emplace_back(std::move(client));
|
||||||
} catch (const std::exception& err) {
|
} catch (const std::exception& err) {
|
||||||
m_log.err("Failed to setup tray client '%s' (%s) removing... (%s)", ewmh_util::get_wm_name(win),
|
m_log.err("tray: Failed to setup tray client removing... (%s)", err.what());
|
||||||
m_connection.id(win), err.what());
|
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -519,6 +513,7 @@ void tray_manager::remove_client(xcb_window_t win, bool reconfigure) {
|
||||||
m_clients.erase(
|
m_clients.erase(
|
||||||
std::remove_if(m_clients.begin(), m_clients.end(), [win](const auto& client) { return client.match(win); }));
|
std::remove_if(m_clients.begin(), m_clients.end(), [win](const auto& client) { return client.match(win); }));
|
||||||
|
|
||||||
|
// TODO remove param. Reconfigure if clients were deleted
|
||||||
if (reconfigure) {
|
if (reconfigure) {
|
||||||
tray_manager::reconfigure();
|
tray_manager::reconfigure();
|
||||||
}
|
}
|
||||||
|
@ -529,8 +524,7 @@ bool tray_manager::change_visibility(bool visible) {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
m_log.trace("tray: visibility_change (state=%i, activated=%i, hidden=%i)", visible, static_cast<bool>(is_active()),
|
m_log.trace("tray: visibility_change (new_state)", visible ? "visible" : "hidden");
|
||||||
static_cast<bool>(m_hidden));
|
|
||||||
|
|
||||||
m_hidden = !visible;
|
m_hidden = !visible;
|
||||||
|
|
||||||
|
@ -561,6 +555,7 @@ void tray_manager::handle(const evt::expose& evt) {
|
||||||
* Event callback : XCB_VISIBILITY_NOTIFY
|
* Event callback : XCB_VISIBILITY_NOTIFY
|
||||||
*/
|
*/
|
||||||
void tray_manager::handle(const evt::visibility_notify& evt) {
|
void tray_manager::handle(const evt::visibility_notify& evt) {
|
||||||
|
// TODO for which windows is this important?
|
||||||
if (is_active() && !m_clients.empty()) {
|
if (is_active() && !m_clients.empty()) {
|
||||||
m_log.trace("tray: Received visibility_notify for %s", m_connection.id(evt->window));
|
m_log.trace("tray: Received visibility_notify for %s", m_connection.id(evt->window));
|
||||||
reconfigure_window();
|
reconfigure_window();
|
||||||
|
@ -577,7 +572,7 @@ void tray_manager::handle(const evt::client_message& evt) {
|
||||||
|
|
||||||
// Our selection owner window was deleted
|
// Our selection owner window was deleted
|
||||||
if (evt->type == WM_PROTOCOLS && evt->data.data32[0] == WM_DELETE_WINDOW && evt->window == m_opts.selection_owner) {
|
if (evt->type == WM_PROTOCOLS && evt->data.data32[0] == WM_DELETE_WINDOW && evt->window == m_opts.selection_owner) {
|
||||||
m_log.notice("Received WM_DELETE");
|
m_log.notice("Received WM_DELETE for selection owner");
|
||||||
deactivate();
|
deactivate();
|
||||||
} else if (evt->type == _NET_SYSTEM_TRAY_OPCODE && evt->format == 32) {
|
} else if (evt->type == _NET_SYSTEM_TRAY_OPCODE && evt->format == 32) {
|
||||||
m_log.trace("tray: Received client_message");
|
m_log.trace("tray: Received client_message");
|
||||||
|
@ -603,11 +598,12 @@ void tray_manager::handle(const evt::client_message& evt) {
|
||||||
*/
|
*/
|
||||||
void tray_manager::handle(const evt::configure_request& evt) {
|
void tray_manager::handle(const evt::configure_request& evt) {
|
||||||
if (is_active() && is_embedded(evt->window)) {
|
if (is_active() && is_embedded(evt->window)) {
|
||||||
|
auto client = find_client(evt->window);
|
||||||
try {
|
try {
|
||||||
m_log.trace("tray: Client configure request %s", m_connection.id(evt->window));
|
m_log.trace("%s: Client configure request", client->name());
|
||||||
find_client(evt->window)->configure_notify();
|
client->configure_notify();
|
||||||
} catch (const xpp::x::error::window& err) {
|
} catch (const xpp::x::error::window& err) {
|
||||||
m_log.err("Failed to reconfigure tray client, removing... (%s)", err.what());
|
m_log.err("Failed to reconfigure %s, removing... (%s)", client->name(), err.what());
|
||||||
remove_client(evt->window);
|
remove_client(evt->window);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -618,11 +614,12 @@ void tray_manager::handle(const evt::configure_request& evt) {
|
||||||
*/
|
*/
|
||||||
void tray_manager::handle(const evt::resize_request& evt) {
|
void tray_manager::handle(const evt::resize_request& evt) {
|
||||||
if (is_active() && is_embedded(evt->window)) {
|
if (is_active() && is_embedded(evt->window)) {
|
||||||
|
auto client = find_client(evt->window);
|
||||||
try {
|
try {
|
||||||
m_log.trace("tray: Received resize_request for client %s", m_connection.id(evt->window));
|
m_log.trace("%s: Client resize request", client->name());
|
||||||
find_client(evt->window)->configure_notify();
|
client->configure_notify();
|
||||||
} catch (const xpp::x::error::window& err) {
|
} catch (const xpp::x::error::window& err) {
|
||||||
m_log.err("Failed to reconfigure tray client, removing... (%s)", err.what());
|
m_log.err("Failed to reconfigure %s, removing... (%s)", client->name(), err.what());
|
||||||
remove_client(evt->window);
|
remove_client(evt->window);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -662,7 +659,7 @@ void tray_manager::handle(const evt::property_notify& evt) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
m_log.trace("tray: _XEMBED_INFO: %s", m_connection.id(evt->window));
|
m_log.trace("%s: _XEMBED_INFO: %s", client->name());
|
||||||
|
|
||||||
if (evt->state == XCB_PROPERTY_NEW_VALUE) {
|
if (evt->state == XCB_PROPERTY_NEW_VALUE) {
|
||||||
m_log.trace("tray: _XEMBED_INFO value has changed");
|
m_log.trace("tray: _XEMBED_INFO value has changed");
|
||||||
|
@ -671,14 +668,12 @@ void tray_manager::handle(const evt::property_notify& evt) {
|
||||||
try {
|
try {
|
||||||
client->query_xembed();
|
client->query_xembed();
|
||||||
} catch (const xpp::x::error::window& err) {
|
} catch (const xpp::x::error::window& err) {
|
||||||
m_log.err("Failed to query _XEMBED_INFO, removing client... (%s)", err.what());
|
m_log.err("Failed to query _XEMBED_INFO, removing %s ... (%s)", client->name(), err.what());
|
||||||
remove_client(*client, true);
|
remove_client(*client, true);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
m_log.trace("tray: version = 0x%x, flags = 0x%x, XEMBED_MAPPED = %s", client->get_xembed().get_version(),
|
// TODO only reconfigure if should_be_mapped changed
|
||||||
client->get_xembed().get_flags(), client->get_xembed().is_mapped() ? "true" : "false");
|
|
||||||
|
|
||||||
if (client->get_xembed().is_mapped()) {
|
if (client->get_xembed().is_mapped()) {
|
||||||
reconfigure();
|
reconfigure();
|
||||||
}
|
}
|
||||||
|
@ -700,7 +695,7 @@ void tray_manager::handle(const evt::reparent_notify& evt) {
|
||||||
|
|
||||||
// Tray client was reparented to another window
|
// Tray client was reparented to another window
|
||||||
if (evt->parent != client->embedder()) {
|
if (evt->parent != client->embedder()) {
|
||||||
m_log.info("tray: Received reparent_notify for client, remove...");
|
m_log.info("%s: Received reparent_notify for client, remove...", client->name());
|
||||||
remove_client(*client);
|
remove_client(*client);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -724,13 +719,11 @@ void tray_manager::handle(const evt::destroy_notify& evt) {
|
||||||
*/
|
*/
|
||||||
void tray_manager::handle(const evt::map_notify& evt) {
|
void tray_manager::handle(const evt::map_notify& evt) {
|
||||||
if (is_active() && evt->window == m_opts.selection_owner) {
|
if (is_active() && evt->window == m_opts.selection_owner) {
|
||||||
m_log.trace("tray: Received map_notify");
|
m_log.trace("tray: Received map_notify for selection owner");
|
||||||
m_log.trace("tray: Update container mapped flag");
|
|
||||||
redraw_window();
|
redraw_window();
|
||||||
} else if (is_embedded(evt->window)) {
|
} else if (is_embedded(evt->window)) {
|
||||||
m_log.trace("tray: Received map_notify");
|
|
||||||
m_log.trace("tray: Set client mapped");
|
|
||||||
auto client = find_client(evt->window);
|
auto client = find_client(evt->window);
|
||||||
|
m_log.trace("%s: Received map_notify", client->name());
|
||||||
|
|
||||||
if (!client->mapped()) {
|
if (!client->mapped()) {
|
||||||
client->mapped(true);
|
client->mapped(true);
|
||||||
|
@ -744,9 +737,8 @@ void tray_manager::handle(const evt::map_notify& evt) {
|
||||||
*/
|
*/
|
||||||
void tray_manager::handle(const evt::unmap_notify& evt) {
|
void tray_manager::handle(const evt::unmap_notify& evt) {
|
||||||
if (is_active() && is_embedded(evt->window)) {
|
if (is_active() && is_embedded(evt->window)) {
|
||||||
m_log.trace("tray: Received unmap_notify");
|
|
||||||
m_log.trace("tray: Set client unmapped");
|
|
||||||
auto client = find_client(evt->window);
|
auto client = find_client(evt->window);
|
||||||
|
m_log.trace("%s: Received unmap_notify", client->name());
|
||||||
|
|
||||||
if (client->mapped()) {
|
if (client->mapped()) {
|
||||||
client->mapped(false);
|
client->mapped(false);
|
||||||
|
|
|
@ -3,6 +3,7 @@
|
||||||
#include <cassert>
|
#include <cassert>
|
||||||
|
|
||||||
#include "errors.hpp"
|
#include "errors.hpp"
|
||||||
|
#include "utils/string.hpp"
|
||||||
#include "x11/atoms.hpp"
|
#include "x11/atoms.hpp"
|
||||||
#include "x11/ewmh.hpp"
|
#include "x11/ewmh.hpp"
|
||||||
|
|
||||||
|
@ -27,6 +28,11 @@ namespace xembed {
|
||||||
return (flags & XEMBED_MAPPED) == XEMBED_MAPPED;
|
return (flags & XEMBED_MAPPED) == XEMBED_MAPPED;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
string info::to_string() const {
|
||||||
|
return sstream() << "xembed(version=0x" << std::hex << get_version() << ", flags=0x" << get_flags()
|
||||||
|
<< ", XEMBED_MAPPED=" << std::dec << is_mapped() << ")";
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Query _XEMBED_INFO for the given window
|
* Query _XEMBED_INFO for the given window
|
||||||
*
|
*
|
||||||
|
|
Loading…
Reference in a new issue