doc: updated copyright
[adg.git] / src / adg / adg-text-internal.h
blob8392c8b018cead5249a6e83daeed68dffed55c1e
1 /* ADG - Automatic Drawing Generation
2 * Copyright (C) 2007,2008,2009,2010,2011,2012,2013 Nicola Fontana <ntd at entidi.it>
4 * This library is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Lesser General Public
6 * License as published by the Free Software Foundation; either
7 * version 2 of the License, or (at your option) any later version.
9 * This library is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * Lesser General Public License for more details.
14 * You should have received a copy of the GNU Lesser General Public
15 * License along with this library; if not, write to the
16 * Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
17 * Boston, MA 02110-1301, USA.
21 * This header provides:
23 * - an internal proxy type (AdgBestFontStyle) that resolves to
24 * AdgFontStyle or AdgPangoStyle, depending on wheter or not
25 * the pango support has been compiled;
26 * - an internal proxy type (AdgBestText) that resolves to
27 * AdgToyText or AdgText, depending on wheter or not the pango
28 * support has been compiled;
31 #ifndef __ADG_TEXT_INTERNAL_H__
32 #define __ADG_TEXT_INTERNAL_H__
35 #include "adg-textual.h"
36 #include "adg-entity.h"
37 #include "adg-toy-text.h"
38 #include "adg-style.h"
39 #include "adg-font-style.h"
42 #ifdef PANGO_ENABLED
44 #include <pango/pango.h>
45 #include "adg-text.h"
46 #include "adg-pango-style.h"
48 #define ADG_TYPE_BEST_TEXT ADG_TYPE_TEXT
49 #define ADG_TYPE_BEST_FONT_STYLE ADG_TYPE_PANGO_STYLE
51 #else /* ! PANGO_ENABLED */
53 #define ADG_TYPE_BEST_TEXT ADG_TYPE_TOY_TEXT
54 #define ADG_TYPE_BEST_FONT_STYLE ADG_TYPE_FONT_STYLE
56 #endif /* PANGO_ENABLED */
59 #endif /* __ADG_TEXT_INTERNAL_H__ */