[AdgDress] Rearranged font dresses
[adg.git] / src / adg / adg-dress-builtins.h
bloba30b4c1a941999ca95dc92a00f423fd37a5b25c8
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.h> can be included directly."
23 #endif
26 #ifndef __ADG_DRESS_BUILTINS_H__
27 #define __ADG_DRESS_BUILTINS_H__
29 #include "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_BACKGROUND (_adg_dress_color_background())
37 #define ADG_DRESS_COLOR_STROKE (_adg_dress_color_stroke())
38 #define ADG_DRESS_COLOR_DIMENSION (_adg_dress_color_dimension())
39 #define ADG_DRESS_COLOR_HATCH (_adg_dress_color_hatch())
40 #define ADG_DRESS_COLOR_ANNOTATION (_adg_dress_color_annotation())
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_HATCH (_adg_dress_line_hatch())
45 #define ADG_DRESS_LINE_GRID (_adg_dress_line_grid())
46 #define ADG_DRESS_LINE_FRAME (_adg_dress_line_frame())
47 #define ADG_DRESS_FONT (_adg_dress_font())
48 #define ADG_DRESS_FONT_TEXT (_adg_dress_font_text())
49 #define ADG_DRESS_FONT_ANNOTATION (_adg_dress_font_annotation())
50 #define ADG_DRESS_FONT_QUOTE_TEXT (_adg_dress_font_quote_text())
51 #define ADG_DRESS_FONT_QUOTE_ANNOTATION (_adg_dress_font_quote_annotation())
52 #define ADG_DRESS_DIMENSION (_adg_dress_dimension())
53 #define ADG_DRESS_FILL (_adg_dress_fill())
54 #define ADG_DRESS_FILL_HATCH (_adg_dress_fill_hatch())
55 #define ADG_DRESS_TABLE (_adg_dress_table())
58 AdgDress _adg_dress_color (void) G_GNUC_CONST;
59 AdgDress _adg_dress_color_background (void) G_GNUC_CONST;
60 AdgDress _adg_dress_color_stroke (void) G_GNUC_CONST;
61 AdgDress _adg_dress_color_dimension (void) G_GNUC_CONST;
62 AdgDress _adg_dress_color_hatch (void) G_GNUC_CONST;
63 AdgDress _adg_dress_color_annotation (void) G_GNUC_CONST;
64 AdgDress _adg_dress_line (void) G_GNUC_CONST;
65 AdgDress _adg_dress_line_stroke (void) G_GNUC_CONST;
66 AdgDress _adg_dress_line_dimension (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_font (void) G_GNUC_CONST;
71 AdgDress _adg_dress_font_text (void) G_GNUC_CONST;
72 AdgDress _adg_dress_font_annotation (void) G_GNUC_CONST;
73 AdgDress _adg_dress_font_quote_text (void) G_GNUC_CONST;
74 AdgDress _adg_dress_font_quote_annotation(void) G_GNUC_CONST;
75 AdgDress _adg_dress_dimension (void) G_GNUC_CONST;
76 AdgDress _adg_dress_fill (void) G_GNUC_CONST;
77 AdgDress _adg_dress_fill_hatch (void) G_GNUC_CONST;
78 AdgDress _adg_dress_table (void) G_GNUC_CONST;
80 G_END_DECLS
83 #endif /* __ADG_DRESS_BUILTINS_H__ */