[AdgColorStyle] s/_get_rgb/_put_rgb/
[adg.git] / adg / adg-projection-private.h
blob7cc8adfc56cbfbc46ca2cd5fd8e9e3f2ba69e1b0
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_PROJECTION_PRIVATE_H__
20 #define __ADG_PROJECTION_PRIVATE_H__
22 #include <adg/adg-path.h>
25 G_BEGIN_DECLS
27 typedef struct _AdgProjectionClassPrivate AdgProjectionClassPrivate;
28 typedef struct _AdgProjectionPrivate AdgProjectionPrivate;
30 struct _AdgProjectionClassPrivate {
31 AdgProjectionScheme scheme;
32 AdgPath *symbol;
33 AdgPath *axis;
34 CpmlExtents extents;
37 struct _AdgProjectionPrivate {
38 AdgDress symbol_dress;
39 AdgDress axis_dress;
40 AdgProjectionScheme scheme;
43 G_END_DECLS
46 #endif /* __ADG_PROJECTION_PRIVATE_H__ */