summaryrefslogtreecommitdiff
path: root/openbox/client.h
diff options
context:
space:
mode:
authorDana Jansens <danakj@orodu.net>2007-04-12 02:26:26 +0000
committerDana Jansens <danakj@orodu.net>2007-04-12 02:26:26 +0000
commitc03c08415f01a52584158aa4f0356f3a0d7a46aa (patch)
treeed02e2df058d090def4fba6955c97603acf45e3a /openbox/client.h
parent7059cde13b2da3eb3ec07b48fd643de76425fb21 (diff)
don't fallback when a window is hidden right away, it's redundant, we'll get a focusout for the window after the unmapnotify anyways.
show new windows when switching desktops before hiding the old windows.
Diffstat (limited to 'openbox/client.h')
-rw-r--r--openbox/client.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/openbox/client.h b/openbox/client.h
index 53a318e0..40464151 100644
--- a/openbox/client.h
+++ b/openbox/client.h
@@ -458,6 +458,12 @@ void client_kill(ObClient *self);
desktop has been changed. Generally this should be FALSE. */
void client_set_desktop(ObClient *self, guint target, gboolean donthide);
+/*! Show the client if it should be shown. */
+void client_show(ObClient *self);
+
+/*! Show the client if it should be shown. */
+void client_hide(ObClient *self);
+
/*! Show the client if it should be shown, and hide it if it should be
hidden. This is for example, when switching desktops.
*/