ADG: corrected g-ir-scanner warnings where possible
[adg.git] / src / adg / adg-dim-style.h
blob1796fd0d92b461bb045c23af3b7f5232514a8e9e
1 /* ADG - Automatic Drawing Generation
2 * Copyright (C) 2007,2008,2009,2010,2011 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_DIM_STYLE_H__
27 #define __ADG_DIM_STYLE_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 AdgDimStyle * adg_dim_style_new (void);
57 void adg_dim_style_set_marker1 (AdgDimStyle *dim_style,
58 AdgMarker *marker);
59 AdgMarker * adg_dim_style_marker1_new (AdgDimStyle *dim_style);
60 void adg_dim_style_set_marker2 (AdgDimStyle *dim_style,
61 AdgMarker *marker);
62 AdgMarker * adg_dim_style_marker2_new (AdgDimStyle *dim_style);
63 void adg_dim_style_set_color_dress (AdgDimStyle *dim_style,
64 AdgDress dress);
65 AdgDress adg_dim_style_get_color_dress (AdgDimStyle *dim_style);
66 void adg_dim_style_set_value_dress (AdgDimStyle *dim_style,
67 AdgDress dress);
68 AdgDress adg_dim_style_get_value_dress (AdgDimStyle *dim_style);
69 void adg_dim_style_set_min_dress (AdgDimStyle *dim_style,
70 AdgDress dress);
71 AdgDress adg_dim_style_get_min_dress (AdgDimStyle *dim_style);
72 void adg_dim_style_set_max_dress (AdgDimStyle *dim_style,
73 AdgDress dress);
74 AdgDress adg_dim_style_get_max_dress (AdgDimStyle *dim_style);
75 void adg_dim_style_set_line_dress (AdgDimStyle *dim_style,
76 AdgDress dress);
77 AdgDress adg_dim_style_get_line_dress (AdgDimStyle *dim_style);
78 void adg_dim_style_set_from_offset (AdgDimStyle *dim_style,
79 gdouble offset);
80 gdouble adg_dim_style_get_from_offset (AdgDimStyle *dim_style);
81 void adg_dim_style_set_to_offset (AdgDimStyle *dim_style,
82 gdouble offset);
83 gdouble adg_dim_style_get_to_offset (AdgDimStyle *dim_style);
84 void adg_dim_style_set_beyond (AdgDimStyle *dim_style,
85 gdouble beyond);
86 gdouble adg_dim_style_get_beyond (AdgDimStyle *dim_style);
87 void adg_dim_style_set_baseline_spacing
88 (AdgDimStyle *dim_style,
89 gdouble spacing);
90 gdouble adg_dim_style_get_baseline_spacing
91 (AdgDimStyle *dim_style);
92 void adg_dim_style_set_limits_spacing(AdgDimStyle *dim_style,
93 gdouble spacing);
94 gdouble adg_dim_style_get_limits_spacing(AdgDimStyle *dim_style);
95 void adg_dim_style_set_quote_shift (AdgDimStyle *dim_style,
96 const AdgPair *shift);
97 const AdgPair * adg_dim_style_get_quote_shift (AdgDimStyle *dim_style);
98 void adg_dim_style_set_limits_shift (AdgDimStyle *dim_style,
99 const AdgPair *shift);
100 const AdgPair * adg_dim_style_get_limits_shift (AdgDimStyle *dim_style);
101 void adg_dim_style_set_number_format (AdgDimStyle *dim_style,
102 const gchar *format);
103 const gchar * adg_dim_style_get_number_format (AdgDimStyle *dim_style);
104 void adg_dim_style_set_number_tag (AdgDimStyle *dim_style,
105 const gchar *tag);
106 const gchar * adg_dim_style_get_number_tag (AdgDimStyle *dim_style);
108 G_END_DECLS
111 #endif /* __ADG_DIM_STYLE_H__ */