Only define LUA when lua is actually on the PATH
[notion/jeffpc.git] / ioncore / group-ws.h
blob786df60d3d9cc152a0162fe36869fcfef76747c1
1 /*
2 * ion/ioncore/groupws.h
4 * Copyright (c) Tuomo Valkonen 1999-2009.
6 * See the included file LICENSE for details.
7 */
9 #ifndef ION_IONCORE_GROUPWS_H
10 #define ION_IONCORE_GROUPWS_H
12 #include <ioncore/common.h>
13 #include <ioncore/rectangle.h>
14 #include <ioncore/group.h>
15 #include "classes.h"
18 DECLCLASS(WGroupWS){
19 WGroup grp;
23 extern WPHolder *groupws_prepare_manage(WGroupWS *ws,
24 const WClientWin *cwin,
25 const WManageParams *param,
26 int redir);
28 extern WPHolder *groupws_prepare_manage_transient(WGroupWS *ws,
29 const WClientWin *cwin,
30 const WManageParams *param,
31 int unused);
33 extern bool groupws_handle_drop(WGroupWS *ws, int x, int y,
34 WRegion *dropped);
36 extern WGroupWS *create_groupws(WWindow *parent, const WFitParams *fp);
37 extern bool groupws_init(WGroupWS *ws, WWindow *parent, const WFitParams *fp);
38 extern void groupws_deinit(WGroupWS *ws);
40 extern WRegion *groupws_load(WWindow *par, const WFitParams *fp, ExtlTab tab);
42 extern void ioncore_groupws_set(ExtlTab tab);
43 extern void ioncore_groupws_get(ExtlTab t);
45 #endif /* ION_IONCORE_GROUPWS_H */