s/2008,2009/2008,2009,2010/
[adg.git] / adg / adg-dress-builtins.h
blob9cb4b756450dacdf35a27232b5872245ea4c7cc6
1 /* ADG - Automatic Drawing Generation
2 * Copyright (C) 2007,2008,2009,2010 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/adg.h> can be included directly."
23 #endif
26 #ifndef __ADG_DRESS_BUILTINS_H__
27 #define __ADG_DRESS_BUILTINS_H__
29 #include <adg/adg-dress.h>
32 G_BEGIN_DECLS
34 #define ADG_DRESS_UNDEFINED 0
35 #define ADG_DRESS_COLOR (_adg_dress_color())
36 #define ADG_DRESS_COLOR_STROKE (_adg_dress_color_stroke())
37 #define ADG_DRESS_COLOR_DIMENSION (_adg_dress_color_dimension())
38 #define ADG_DRESS_COLOR_HATCH (_adg_dress_color_hatch())
39 #define ADG_DRESS_LINE (_adg_dress_line())
40 #define ADG_DRESS_LINE_MEDIUM (_adg_dress_line_medium())
41 #define ADG_DRESS_LINE_THIN (_adg_dress_line_thin())
42 #define ADG_DRESS_LINE_THICK (_adg_dress_line_thick())
43 #define ADG_DRESS_LINE_THINNER (_adg_dress_line_thinner())
44 #define ADG_DRESS_LINE_THICKER (_adg_dress_line_thinner())
45 #define ADG_DRESS_LINE_HATCH (_adg_dress_line_hatch())
46 #define ADG_DRESS_LINE_GRID (_adg_dress_line_grid())
47 #define ADG_DRESS_LINE_FRAME (_adg_dress_line_frame())
48 #define ADG_DRESS_TEXT (_adg_dress_text())
49 #define ADG_DRESS_TEXT_VALUE (_adg_dress_text_value())
50 #define ADG_DRESS_TEXT_LIMIT (_adg_dress_text_limit())
51 #define ADG_DRESS_DIMENSION (_adg_dress_dimension())
52 #define ADG_DRESS_FILL (_adg_dress_fill())
53 #define ADG_DRESS_FILL_HATCH (_adg_dress_fill_hatch())
54 #define ADG_DRESS_TABLE (_adg_dress_table())
57 AdgDress _adg_dress_color (void) G_GNUC_CONST;
58 AdgDress _adg_dress_color_stroke (void) G_GNUC_CONST;
59 AdgDress _adg_dress_color_dimension (void) G_GNUC_CONST;
60 AdgDress _adg_dress_color_hatch (void) G_GNUC_CONST;
61 AdgDress _adg_dress_line (void) G_GNUC_CONST;
62 AdgDress _adg_dress_line_medium (void) G_GNUC_CONST;
63 AdgDress _adg_dress_line_thin (void) G_GNUC_CONST;
64 AdgDress _adg_dress_line_thick (void) G_GNUC_CONST;
65 AdgDress _adg_dress_line_thinner (void) G_GNUC_CONST;
66 AdgDress _adg_dress_line_thicker (void) G_GNUC_CONST;
67 AdgDress _adg_dress_line_hatch (void) G_GNUC_CONST;
68 AdgDress _adg_dress_line_grid (void) G_GNUC_CONST;
69 AdgDress _adg_dress_line_frame (void) G_GNUC_CONST;
70 AdgDress _adg_dress_text (void) G_GNUC_CONST;
71 AdgDress _adg_dress_text_value (void) G_GNUC_CONST;
72 AdgDress _adg_dress_text_limit (void) G_GNUC_CONST;
73 AdgDress _adg_dress_dimension (void) G_GNUC_CONST;
74 AdgDress _adg_dress_fill (void) G_GNUC_CONST;
75 AdgDress _adg_dress_fill_hatch (void) G_GNUC_CONST;
76 AdgDress _adg_dress_table (void) G_GNUC_CONST;
78 G_END_DECLS
81 #endif /* __ADG_DRESS_BUILTINS_H__ */