adg: refactored _adg_read_cairo_path()
[adg.git] / src / adg / adg-dress-builtins.h
bloba317ccf87191f86dd701685d6a9be7481b9eadc1
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 #if !defined(__ADG_H__)
22 #error "Only <adg.h> can be included directly."
23 #endif
26 #ifndef __ADG_DRESS_BUILTINS_H__
27 #define __ADG_DRESS_BUILTINS_H__
30 G_BEGIN_DECLS
32 #define ADG_DRESS_UNDEFINED 0
33 #define ADG_DRESS_COLOR (_adg_dress_color())
34 #define ADG_DRESS_COLOR_BACKGROUND (_adg_dress_color_background())
35 #define ADG_DRESS_COLOR_STROKE (_adg_dress_color_stroke())
36 #define ADG_DRESS_COLOR_DIMENSION (_adg_dress_color_dimension())
37 #define ADG_DRESS_COLOR_ANNOTATION (_adg_dress_color_annotation())
38 #define ADG_DRESS_COLOR_FILL (_adg_dress_color_fill())
39 #define ADG_DRESS_COLOR_AXIS (_adg_dress_color_axis())
40 #define ADG_DRESS_COLOR_HIDDEN (_adg_dress_color_hidden())
41 #define ADG_DRESS_LINE (_adg_dress_line())
42 #define ADG_DRESS_LINE_STROKE (_adg_dress_line_stroke())
43 #define ADG_DRESS_LINE_DIMENSION (_adg_dress_line_dimension())
44 #define ADG_DRESS_LINE_FILL (_adg_dress_line_fill())
45 #define ADG_DRESS_LINE_GRID (_adg_dress_line_grid())
46 #define ADG_DRESS_LINE_FRAME (_adg_dress_line_frame())
47 #define ADG_DRESS_LINE_AXIS (_adg_dress_line_axis())
48 #define ADG_DRESS_LINE_HIDDEN (_adg_dress_line_hidden())
49 #define ADG_DRESS_FONT (_adg_dress_font())
50 #define ADG_DRESS_FONT_TEXT (_adg_dress_font_text())
51 #define ADG_DRESS_FONT_ANNOTATION (_adg_dress_font_annotation())
52 #define ADG_DRESS_FONT_QUOTE_TEXT (_adg_dress_font_quote_text())
53 #define ADG_DRESS_FONT_QUOTE_ANNOTATION (_adg_dress_font_quote_annotation())
54 #define ADG_DRESS_DIMENSION (_adg_dress_dimension())
55 #define ADG_DRESS_FILL (_adg_dress_fill())
56 #define ADG_DRESS_FILL_HATCH (_adg_dress_fill_hatch())
57 #define ADG_DRESS_TABLE (_adg_dress_table())
60 AdgDress _adg_dress_color (void) G_GNUC_CONST;
61 AdgDress _adg_dress_color_background (void) G_GNUC_CONST;
62 AdgDress _adg_dress_color_stroke (void) G_GNUC_CONST;
63 AdgDress _adg_dress_color_dimension (void) G_GNUC_CONST;
64 AdgDress _adg_dress_color_fill (void) G_GNUC_CONST;
65 AdgDress _adg_dress_color_axis (void) G_GNUC_CONST;
66 AdgDress _adg_dress_color_hidden (void) G_GNUC_CONST;
67 AdgDress _adg_dress_color_annotation (void) G_GNUC_CONST;
68 AdgDress _adg_dress_line (void) G_GNUC_CONST;
69 AdgDress _adg_dress_line_stroke (void) G_GNUC_CONST;
70 AdgDress _adg_dress_line_dimension (void) G_GNUC_CONST;
71 AdgDress _adg_dress_line_fill (void) G_GNUC_CONST;
72 AdgDress _adg_dress_line_grid (void) G_GNUC_CONST;
73 AdgDress _adg_dress_line_frame (void) G_GNUC_CONST;
74 AdgDress _adg_dress_line_axis (void) G_GNUC_CONST;
75 AdgDress _adg_dress_line_hidden (void) G_GNUC_CONST;
76 AdgDress _adg_dress_font (void) G_GNUC_CONST;
77 AdgDress _adg_dress_font_text (void) G_GNUC_CONST;
78 AdgDress _adg_dress_font_annotation (void) G_GNUC_CONST;
79 AdgDress _adg_dress_font_quote_text (void) G_GNUC_CONST;
80 AdgDress _adg_dress_font_quote_annotation(void) G_GNUC_CONST;
81 AdgDress _adg_dress_dimension (void) G_GNUC_CONST;
82 AdgDress _adg_dress_fill (void) G_GNUC_CONST;
83 AdgDress _adg_dress_fill_hatch (void) G_GNUC_CONST;
84 AdgDress _adg_dress_table (void) G_GNUC_CONST;
86 G_END_DECLS
89 #endif /* __ADG_DRESS_BUILTINS_H__ */