[build] Bumped version to 0.5.3
[adg.git] / adg / adg-dim-style.h
blobd8697976d81047dc42e85f6919efae96ec3c1dae
1 /* ADG - Automatic Drawing Generation
2 * Copyright (C) 2007,2008,2009 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 #ifndef __ADG_DIM_STYLE_H__
22 #define __ADG_DIM_STYLE_H__
24 #include <adg/adg-style.h>
25 #include <adg/adg-dress.h>
26 #include <adg/adg-marker.h>
27 #include <adg/adg-pair.h>
30 G_BEGIN_DECLS
32 #define ADG_TYPE_DIM_STYLE (adg_dim_style_get_type())
33 #define ADG_DIM_STYLE(obj) (G_TYPE_CHECK_INSTANCE_CAST((obj), ADG_TYPE_DIM_STYLE, AdgDimStyle))
34 #define ADG_DIM_STYLE_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST((klass), ADG_TYPE_DIM_STYLE, AdgDimStyleClass))
35 #define ADG_IS_DIM_STYLE(obj) (G_TYPE_CHECK_INSTANCE_TYPE((obj), ADG_TYPE_DIM_STYLE))
36 #define ADG_IS_DIM_STYLE_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE((klass), ADG_TYPE_DIM_STYLE))
37 #define ADG_DIM_STYLE_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS((obj), ADG_TYPE_DIM_STYLE, AdgDimStyleClass))
40 typedef struct _AdgDimStyle AdgDimStyle;
41 typedef struct _AdgDimStyleClass AdgDimStyleClass;
43 struct _AdgDimStyle {
44 /*< private >*/
45 AdgStyle parent;
46 gpointer data;
49 struct _AdgDimStyleClass {
50 /*< private >*/
51 AdgStyleClass parent_class;
55 GType adg_dim_style_get_type (void) G_GNUC_CONST;
56 AdgStyle * adg_dim_style_new (void);
58 AdgMarker * adg_dim_style_marker1_new (AdgDimStyle *dim_style);
59 AdgMarker * adg_dim_style_marker2_new (AdgDimStyle *dim_style);
60 void adg_dim_style_use_marker1 (AdgDimStyle *dim_style,
61 AdgMarker *marker);
62 void adg_dim_style_use_marker2 (AdgDimStyle *dim_style,
63 AdgMarker *marker);
64 AdgDress adg_dim_style_get_color_dress (AdgDimStyle *dim_style);
65 void adg_dim_style_set_color_dress (AdgDimStyle *dim_style,
66 AdgDress dress);
67 AdgDress adg_dim_style_get_value_dress (AdgDimStyle *dim_style);
68 void adg_dim_style_set_value_dress (AdgDimStyle *dim_style,
69 AdgDress dress);
70 AdgDress adg_dim_style_get_min_dress (AdgDimStyle *dim_style);
71 void adg_dim_style_set_min_dress (AdgDimStyle *dim_style,
72 AdgDress dress);
73 AdgDress adg_dim_style_get_max_dress (AdgDimStyle *dim_style);
74 void adg_dim_style_set_max_dress (AdgDimStyle *dim_style,
75 AdgDress dress);
76 AdgDress adg_dim_style_get_line_dress (AdgDimStyle *dim_style);
77 void adg_dim_style_set_line_dress (AdgDimStyle *dim_style,
78 AdgDress dress);
79 gdouble adg_dim_style_get_from_offset (AdgDimStyle *dim_style);
80 void adg_dim_style_set_from_offset (AdgDimStyle *dim_style,
81 gdouble offset);
82 gdouble adg_dim_style_get_to_offset (AdgDimStyle *dim_style);
83 void adg_dim_style_set_to_offset (AdgDimStyle *dim_style,
84 gdouble offset);
85 gdouble adg_dim_style_get_beyond (AdgDimStyle *dim_style);
86 void adg_dim_style_set_beyond (AdgDimStyle *dim_style,
87 gdouble length);
88 gdouble adg_dim_style_get_baseline_spacing
89 (AdgDimStyle *dim_style);
90 void adg_dim_style_set_baseline_spacing
91 (AdgDimStyle *dim_style,
92 gdouble spacing);
93 gdouble adg_dim_style_get_limits_spacing(AdgDimStyle *dim_style);
94 void adg_dim_style_set_limits_spacing(AdgDimStyle *dim_style,
95 gdouble spacing);
96 const AdgPair * adg_dim_style_get_quote_shift (AdgDimStyle *dim_style);
97 void adg_dim_style_set_quote_shift (AdgDimStyle *dim_style,
98 const AdgPair *shift);
99 const AdgPair * adg_dim_style_get_limits_shift (AdgDimStyle *dim_style);
100 void adg_dim_style_set_limits_shift (AdgDimStyle *dim_style,
101 const AdgPair *shift);
102 const gchar * adg_dim_style_get_number_format (AdgDimStyle *dim_style);
103 void adg_dim_style_set_number_format (AdgDimStyle *dim_style,
104 const gchar *format);
105 const gchar * adg_dim_style_get_number_tag (AdgDimStyle *dim_style);
106 void adg_dim_style_set_number_tag (AdgDimStyle *dim_style,
107 const gchar *tag);
109 G_END_DECLS
112 #endif /* __ADG_DIM_STYLE_H__ */