add function to handle window types

This commit is contained in:
2023-03-23 11:14:35 +01:00
parent 02d598107b
commit 3375a1af46
2 changed files with 52 additions and 5 deletions

View File

@ -26,6 +26,7 @@ XWindowChanges wm_client_to_xwchanges(Client c);
Client* wm_client_find(Wm* wm, Window w);
Client *wm_get_last_client(Wm *wm, Monitor m);
Client* wm_client_create(Wm *wm, Window w);
void wm_client_handle_window_types(Wm *wm, Client *c, XMapRequestEvent e);
void wm_client_hide(Wm *wm, Client *c);
void wm_client_show(Wm* wm, Client *c);
void wm_client_focus(Wm* wm, Client *c);