Implement a command for hiding all floating windows (and showing them again)

This commit is contained in:
Michael Stapelberg
2009-06-19 13:59:29 +02:00
parent 5c48444b4e
commit 89c0caaec4
4 changed files with 46 additions and 6 deletions

View File

@ -52,4 +52,11 @@ void floating_focus_direction(xcb_connection_t *conn, Client *currently_focused,
*/
void floating_move(xcb_connection_t *conn, Client *currently_focused, direction_t direction);
/**
* Hides all floating clients (or show them if they are currently hidden) on
* the specified workspace.
*
*/
void floating_toggle_hide(xcb_connection_t *conn, Workspace *workspace);
#endif