Moved AdgSegment to CpmlSegment
[adg.git] / src / adg / adg-internal.h
blobe8adc85f5d87b6f6c4536aa0f6247916c9606df4
1 /* ADG - Automatic Drawing Generation
2 * Copyright (C) 2007,2008,2009,2010,2011,2012 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 is included by every .c files of the library to
22 * enable the inclusion of the internal headers and initialize
23 * some common stuff (above all, localization).
26 #ifndef __ADG_INTERNAL_H__
27 #define __ADG_INTERNAL_H__
30 /* The following define enables the inclusion of internal headers */
31 #undef __ADG_H__
32 #define __ADG_H__
34 #include <config.h>
35 #define G_LOG_DOMAIN PACKAGE
36 #include <cairo-gobject.h>
37 #include <cpml.h>
39 /* The following headers are autogenerated, so they could be hosted
40 * in a different directory on VPATH builds (in other words, angle
41 * brackets are used instead of quotes) */
42 #include <adg/adg-type-builtins.h>
43 #include <adg/adg-marshal.h>
45 /* ADG headers basically included by every source file */
46 #include "adg-forward-declarations.h"
47 #include "adg-enums.h"
48 #include "adg-utils.h"
49 #include "adg-matrix.h"
50 #include "adg-entity.h"
53 #ifdef ENABLE_NLS
55 #include <libintl.h>
57 #ifndef GETTEXT_PACKAGE
58 #error You must define GETTEXT_PACKAGE before including adg-internal.h. Did you forget to include config.h?
59 #endif
61 #ifdef gettext_noop
62 #define N_(String) gettext_noop(String)
63 #else
64 #define N_(String) (String)
65 #endif
67 #define _(String) _adg_dgettext(GETTEXT_PACKAGE, String)
68 #define P_(String) _adg_dgettext(GETTEXT_PACKAGE "-properties", String)
69 #define Q_(String) _adg_dpgettext(GETTEXT_PACKAGE, String, 0)
70 #define C_(Context,String) _adg_dpgettext(GETTEXT_PACKAGE, Context "\004" String, strlen(Context) + 1)
71 #define NC_(Context,String) N_(String)
73 #else /* !ENABLE_NLS */
75 #define _(String) (String)
76 #define P_(String) (String)
77 #define Q_(String) (String)
78 #define N_(String) (String)
79 #define C_(Context,String) (String)
80 #define NC_(Context, String) (String)
82 #endif
85 const gchar * _adg_dgettext (const gchar *domain,
86 const gchar *msgid) G_GNUC_FORMAT(2);
87 const gchar * _adg_dpgettext (const gchar *domain,
88 const gchar *msgctxtid,
89 gsize msgidoffset) G_GNUC_FORMAT(2);
92 #endif /* __ADG_INTERNAL_H__ */