trunk: changeset 1972
[notion/jeffpc.git] / ioncore / extlconv.h
blob875dd2d4ec4d839d9e83bccde419d0a083e90b88
1 /*
2 * ion/ioncore/extlconv.h
4 * Copyright (c) Tuomo Valkonen 1999-2005.
6 * Ion is free software; you can redistribute it and/or modify it under
7 * the terms of the GNU Lesser General Public License as published by
8 * the Free Software Foundation; either version 2.1 of the License, or
9 * (at your option) any later version.
12 #ifndef ION_IONCORE_EXTLCONV_H
13 #define ION_IONCORE_EXTLCONV_H
15 #include "common.h"
16 #include "region.h"
17 #include <libextl/extl.h>
19 extern ExtlTab managed_list_to_table(WRegion *list,
20 bool (*filter)(WRegion *r));
22 extern bool extl_table_is_bool_set(ExtlTab tab, const char *entry);
24 extern bool extl_table_to_rectangle(ExtlTab tab, WRectangle *rect);
25 extern ExtlTab extl_table_from_rectangle(const WRectangle *rect);
27 extern bool extl_table_gets_rectangle(ExtlTab tab, const char *nam,
28 WRectangle *rect);
29 extern void extl_table_sets_rectangle(ExtlTab tab, const char *nam,
30 const WRectangle *rect);
32 #endif /* ION_IONCORE_EXTLCONV_H */