X-Git-Url: https://git.decadent.org.uk/gitweb/?a=blobdiff_plain;f=ioncore%2Fgroup.h;h=1b3fd3c743063e985da64316a0f8fe37f616763c;hb=0c733f17d41080cd8240eecc5251d08a1776cdc5;hp=f9e9647dccc34ec6038d059c1cd070240872e0f5;hpb=a91cc07e7f876e79a733f25c266073c0b9afda1d;p=ion3.git diff --git a/ioncore/group.h b/ioncore/group.h index f9e9647..1b3fd3c 100644 --- a/ioncore/group.h +++ b/ioncore/group.h @@ -1,7 +1,7 @@ /* * ion/ioncore/group.h * - * Copyright (c) Tuomo Valkonen 1999-2007. + * Copyright (c) Tuomo Valkonen 1999-2009. * * See the included file LICENSE for details. */ @@ -17,7 +17,6 @@ #include #include #include -#include INTRSTRUCT(WGroupAttachParams); @@ -34,6 +33,7 @@ DECLSTRUCT(WGroupAttachParams){ uint switchto:1; uint bottom:1; + uint whatever:1; int geom_weak; WRectangle geom; @@ -44,7 +44,7 @@ DECLSTRUCT(WGroupAttachParams){ }; #define GROUPATTACHPARAMS_INIT \ - {0, 0, 0, 0, 0, 0, 0, 0, {0, 0, 0, 0}, 0, 0, NULL} + {0, 0, 0, 0, 0, 0, 0, 0, 0, {0, 0, 0, 0}, 0, 0, NULL} DECLCLASS(WGroup){ @@ -54,6 +54,7 @@ DECLCLASS(WGroup){ WStacking *current_managed; WStacking *bottom; Window dummywin; + WGroupPHolder *phs; }; @@ -72,6 +73,9 @@ DYNFUN WStacking *group_do_add_managed(WGroup *ws, WRegion *reg, extern WStacking *group_do_add_managed_default(WGroup *ws, WRegion *reg, int level, WSizePolicy szplcy); +extern void group_get_attach_params(WGroup *ws, ExtlTab tab, + WGroupAttachParams *par); + extern WRegion *group_do_attach(WGroup *ws, WGroupAttachParams *param, WRegionAttachData *data);