[docs] Updated TODO.xml
[adg.git] / adg / adg-logo-private.h
blobb49763e171495b8a74d43f49312cab097b20ffd6
1 /* ADG - Automatic Drawing Generation
2 * Copyright (C) 2007,2008,2009 Nicola Fontana <ntd at entidi.it> * * This library is free software; you can redistribute it and/or
3 * modify it under the terms of the GNU Lesser General Public
4 * License as published by the Free Software Foundation; either
5 * version 2 of the License, or (at your option) any later version.
7 * This library is distributed in the hope that it will be useful,
8 * but WITHOUT ANY WARRANTY; without even the implied warranty of
9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
10 * Lesser General Public License for more details.
12 * You should have received a copy of the GNU Lesser General Public
13 * License along with this library; if not, write to the
14 * Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
15 * Boston, MA 02110-1301, USA.
19 #ifndef __ADG_LOGO_PRIVATE_H__
20 #define __ADG_LOGO_PRIVATE_H__
22 #include <adg/adg-path.h>
25 G_BEGIN_DECLS
27 typedef struct _AdgLogoClassPrivate AdgLogoClassPrivate;
28 typedef struct _AdgLogoPrivate AdgLogoPrivate;
30 struct _AdgLogoClassPrivate {
31 AdgPath *symbol;
32 AdgPath *screen;
33 AdgPath *frame;
34 CpmlExtents extents;
37 struct _AdgLogoPrivate {
38 AdgDress symbol_dress;
39 AdgDress screen_dress;
40 AdgDress frame_dress;
43 G_END_DECLS
46 #endif /* __ADG_LOGO_PRIVATE_H__ */