diff options
| author | Dana Jansens <danakj@orodu.net> | 2003-08-25 07:43:27 +0000 |
|---|---|---|
| committer | Dana Jansens <danakj@orodu.net> | 2003-08-25 07:43:27 +0000 |
| commit | 7120face258ee4bd71fb19ded271665acde6465c (patch) | |
| tree | 737c91c09192693b06683d9d653ed6df01db2783 /openbox/stacking.h | |
| parent | 496fbac21c0f734aa31d09af01a3362d7fd13231 (diff) | |
add stacking_below which moves a window to immediately below another window. use with care it doesn't enforce transient shit etc..
Diffstat (limited to 'openbox/stacking.h')
| -rw-r--r-- | openbox/stacking.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/openbox/stacking.h b/openbox/stacking.h index 132ef490..083d2024 100644 --- a/openbox/stacking.h +++ b/openbox/stacking.h @@ -32,7 +32,10 @@ void stacking_add_nonintrusive(ObWindow *win); /*! Raises a window above all others in its stacking layer */ void stacking_raise(ObWindow *window); -/*! Lowers a client window below all others in its stacking layer */ +/*! Lowers a window below all others in its stacking layer */ void stacking_lower(ObWindow *window); +/*! Moves a window below another if its in the same layer */ +void stacking_below(ObWindow *window, ObWindow *below); + #endif |
