1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48
|
/*
* ion/floatws/floatws.h
*
* Copyright (c) Tuomo Valkonen 1999-2004.
*
* Ion is free software; you can redistribute it and/or modify it under
* the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation; either version 2.1 of the License, or
* (at your option) any later version.
*/
#ifndef ION_FLOATWS_FLOATWS_H
#define ION_FLOATWS_FLOATWS_H
#include <ioncore/common.h>
#include <ioncore/region.h>
#include <ioncore/screen.h>
#include <ioncore/genws.h>
#include <ioncore/manage.h>
#include <ioncore/extl.h>
#include <ioncore/objlist.h>
INTROBJ(WFloatWS);
DECLOBJ(WFloatWS){
WGenWS genws;
Window dummywin;
WRegion *managed_list;
WRegion *current_managed;
};
extern WFloatWS *create_floatws(WWindow *parent, const WRectangle *bounds);
extern WRegion *floatws_circulate(WFloatWS *ws);
extern WRegion *floatws_backcirculate(WFloatWS *ws);
extern WRegion *floatws_load(WWindow *par, const WRectangle *geom,
ExtlTab tab);
extern bool add_clientwin_floatws_transient(WClientWin *cwin,
const WManageParams *param);
extern WRegion* floatws_current(WFloatWS *floatws);
extern WObjList *floatws_sticky_list;
#endif /* ION_FLOATWS_FLOATWS_H */
|