[AdgDress] Splitted table line style for grid and frame
[adg.git] / src / adg / adg-dress-builtins.h
blob33611161872a3049cf07273e890659248844d9b4
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_TABLE (_adg_dress_color_table())
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_TEXT (_adg_dress_text())
48 #define ADG_DRESS_TEXT_VALUE (_adg_dress_text_value())
49 #define ADG_DRESS_TEXT_LIMIT (_adg_dress_text_limit())
50 #define ADG_DRESS_DIMENSION (_adg_dress_dimension())
51 #define ADG_DRESS_FILL (_adg_dress_fill())
52 #define ADG_DRESS_FILL_HATCH (_adg_dress_fill_hatch())
53 #define ADG_DRESS_TABLE (_adg_dress_table())
56 AdgDress _adg_dress_color (void) G_GNUC_CONST;
57 AdgDress _adg_dress_color_background (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_color_table (void) G_GNUC_CONST;
62 AdgDress _adg_dress_line (void) G_GNUC_CONST;
63 AdgDress _adg_dress_line_stroke (void) G_GNUC_CONST;
64 AdgDress _adg_dress_line_dimension (void) G_GNUC_CONST;
65 AdgDress _adg_dress_line_hatch (void) G_GNUC_CONST;
66 AdgDress _adg_dress_line_grid (void) G_GNUC_CONST;
67 AdgDress _adg_dress_line_frame (void) G_GNUC_CONST;
68 AdgDress _adg_dress_text (void) G_GNUC_CONST;
69 AdgDress _adg_dress_text_value (void) G_GNUC_CONST;
70 AdgDress _adg_dress_text_limit (void) G_GNUC_CONST;
71 AdgDress _adg_dress_dimension (void) G_GNUC_CONST;
72 AdgDress _adg_dress_fill (void) G_GNUC_CONST;
73 AdgDress _adg_dress_fill_hatch (void) G_GNUC_CONST;
74 AdgDress _adg_dress_table (void) G_GNUC_CONST;
76 G_END_DECLS
79 #endif /* __ADG_DRESS_BUILTINS_H__ */