feat(tray): 拦截托盘窗口的 map/configure/property 事件

This commit is contained in:
2026-07-28 03:07:13 +08:00
parent 88e589cc9e
commit 612c2367ca
3 changed files with 79 additions and 0 deletions

View File

@@ -22,3 +22,15 @@ bool tray_handle_client_message(
backend_t *backend,
const xcb_client_message_event_t *ev
);
bool tray_handle_configure_request(
backend_t *backend,
const xcb_configure_request_event_t *ev
);
bool tray_handle_map_request(
backend_t *backend,
const xcb_map_request_event_t *ev
);
bool tray_handle_property_notify(
backend_t *backend,
const xcb_property_notify_event_t *ev
);