X-Git-Url: https://git.dogcows.com/gitweb?a=blobdiff_plain;f=openbox%2Fstacking.h;h=22abb96067475f2d740873025c5d3b04caacd529;hb=79a352a40bd16924b1ca3df49f6c82d77e956a0e;hp=6286181cb36beca75c60cddba7c47933ec7f62c1;hpb=59c3cce4f49f04ed2c2937e7de24255dd53df487;p=chaz%2Fopenbox diff --git a/openbox/stacking.h b/openbox/stacking.h index 6286181c..22abb960 100644 --- a/openbox/stacking.h +++ b/openbox/stacking.h @@ -2,6 +2,7 @@ #define __stacking_h #include +#include struct Client; @@ -20,6 +21,9 @@ typedef enum { /* list of Client*s in stacking order from highest to lowest */ extern GList *stacking_list; +void stacking_startup(); +void stacking_shutdown(); + /*! Sets the client stacking list on the root window from the stacking_clientlist */ void stacking_set_list(); @@ -36,4 +40,7 @@ void stacking_raise(struct Client *client); /*! Lowers a client window below all others in its stacking layer */ void stacking_lower(struct Client *client); +/*! Raises an internal window (e.g. menus) */ +void stacking_raise_internal(Window win); + #endif