summaryrefslogtreecommitdiff
path: root/openbox/client.h
diff options
context:
space:
mode:
authorDana Jansens <danakj@orodu.net>2003-09-26 07:08:07 +0000
committerDana Jansens <danakj@orodu.net>2003-09-26 07:08:07 +0000
commit365940477b77e6993412dfd7136172a4d4318ac1 (patch)
tree49361e7ab20de3163384d4025bba3ecb1a8c0269 /openbox/client.h
parentf370cbc858cd0e7f86e99684543c3656b93dd0fb (diff)
add some more client tree searching functions. make transients always get focused when a parent has focus, not just direct parents.
Diffstat (limited to 'openbox/client.h')
-rw-r--r--openbox/client.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/openbox/client.h b/openbox/client.h
index 3b3c78f7..0c523deb 100644
--- a/openbox/client.h
+++ b/openbox/client.h
@@ -485,6 +485,12 @@ void client_get_type(ObClient *self);
ObClientIcon *client_icon(ObClient *self, int w, int h);
+/*! Searches a client's direct parents for a focused window. The function does
+ not check for the passed client, only for *ONE LEVEL* of its parents.
+ If no focused parentt is found, NULL is returned.
+*/
+ObClient *client_search_focus_parent(ObClient *self);
+
/*! Searches a client's transients for a focused window. The function does not
check for the passed client, only for its transients.
If no focused transient is found, NULL is returned.
@@ -505,6 +511,10 @@ ObClient *client_search_modal_child(ObClient *self);
ObClient *client_search_top_transient(ObClient *self);
+/*! Search for a parent of a client. This only searches up *ONE LEVEL*, and
+ returns the searched for parent if it is a parent, or NULL if not. */
+ObClient *client_search_parent(ObClient *self, ObClient *search);
+
/*! Search for a transient of a client. The transient is returned if it is one,
NULL is returned if the given search is not a transient of the client. */
ObClient *client_search_transient(ObClient *self, ObClient *search);