diff options
| author | Dana Jansens <danakj@orodu.net> | 2008-03-06 02:46:32 -0500 |
|---|---|---|
| committer | Dana Jansens <danakj@orodu.net> | 2008-03-06 02:46:32 -0500 |
| commit | 18141d78dab9e19161cae3e7e89f8b95591a2e9b (patch) | |
| tree | 326d328ded5628ced985a84b8546e9362909c732 /openbox/client.h | |
| parent | 40377ab10a5970b20ab005a3d4994dfdf244cd4c (diff) | |
| parent | ae0971659fdd41fc7e9ccb6ca2b2536f96c09061 (diff) | |
Merge branch 'backport' into work
Conflicts:
openbox/client.c
Diffstat (limited to 'openbox/client.h')
| -rw-r--r-- | openbox/client.h | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/openbox/client.h b/openbox/client.h index 6a396cf4..5e26ef30 100644 --- a/openbox/client.h +++ b/openbox/client.h @@ -641,12 +641,18 @@ RrImage* client_icon(ObClient *self); transient for */ gboolean client_has_parent(ObClient *self); -/*! 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. +/*! Searches a client's immediate parents for a focused window. The function + does not check for the passed client, only for *ONE LEVEL* of its parents. + If no focused parent is found, NULL is returned. */ ObClient *client_search_focus_parent(ObClient *self); +/*! Searches a client's parents for a focused window. The function + does not check for the passed client, but searches through all of its + parents. If no focused parent is found, NULL is returned. +*/ +ObClient *client_search_focus_parent_full(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. |
