[AdgDimStyle] Added the "beyond" property
[adg.git] / adg / adg-dim-style.h
blobeb8bef1c98bbd08abb22be376d4d262a8fc5c624
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-font-style.h>
26 #include <adg/adg-line-style.h>
27 #include <adg/adg-arrow-style.h>
28 #include <adg/adg-pair.h>
29 #include <adg/adg-enums.h>
32 G_BEGIN_DECLS
34 #define ADG_TYPE_DIM_STYLE (adg_dim_style_get_type())
35 #define ADG_DIM_STYLE(obj) (G_TYPE_CHECK_INSTANCE_CAST((obj), ADG_TYPE_DIM_STYLE, AdgDimStyle))
36 #define ADG_DIM_STYLE_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST((klass), ADG_TYPE_DIM_STYLE, AdgDimStyleClass))
37 #define ADG_IS_DIM_STYLE(obj) (G_TYPE_CHECK_INSTANCE_TYPE((obj), ADG_TYPE_DIM_STYLE))
38 #define ADG_IS_DIM_STYLE_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE((klass), ADG_TYPE_DIM_STYLE))
39 #define ADG_DIM_STYLE_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS((obj), ADG_TYPE_DIM_STYLE, AdgDimStyleClass))
40 #define ADG_SLOT_DIM_STYLE (_adg_dim_style_get_slot())
42 typedef struct _AdgDimStyle AdgDimStyle;
43 typedef struct _AdgDimStyleClass AdgDimStyleClass;
45 struct _AdgDimStyle {
46 /*< private >*/
47 AdgStyle parent;
48 gpointer data;
51 struct _AdgDimStyleClass {
52 /*< private >*/
53 AdgStyleClass parent_class;
57 GType adg_dim_style_get_type (void) G_GNUC_CONST;
58 AdgStyleSlot _adg_dim_style_get_slot (void) G_GNUC_CONST;
59 AdgStyle * adg_dim_style_new (void);
61 AdgStyle * adg_dim_style_get_value_style (AdgDimStyle *dim_style);
62 void adg_dim_style_set_value_style (AdgDimStyle *dim_style,
63 AdgFontStyle *style);
64 AdgStyle * adg_dim_style_get_tolerance_style
65 (AdgDimStyle *dim_style);
66 void adg_dim_style_set_tolerance_style
67 (AdgDimStyle *dim_style,
68 AdgFontStyle *style);
69 AdgStyle * adg_dim_style_get_note_style (AdgDimStyle *dim_style);
70 void adg_dim_style_set_note_style (AdgDimStyle *dim_style,
71 AdgFontStyle *style);
72 AdgStyle * adg_dim_style_get_line_style (AdgDimStyle *dim_style);
73 void adg_dim_style_set_line_style (AdgDimStyle *dim_style,
74 AdgLineStyle *style);
75 AdgStyle * adg_dim_style_get_arrow_style (AdgDimStyle *dim_style);
76 void adg_dim_style_set_arrow_style (AdgDimStyle *dim_style,
77 AdgArrowStyle *style);
78 gdouble adg_dim_style_get_from_offset (AdgDimStyle *dim_style);
79 void adg_dim_style_set_from_offset (AdgDimStyle *dim_style,
80 gdouble offset);
81 gdouble adg_dim_style_get_to_offset (AdgDimStyle *dim_style);
82 void adg_dim_style_set_to_offset (AdgDimStyle *dim_style,
83 gdouble offset);
84 gdouble adg_dim_style_beyond (AdgDimStyle *dim_style);
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_tolerance_spacing
94 (AdgDimStyle *dim_style);
95 void adg_dim_style_set_tolerance_spacing
96 (AdgDimStyle *dim_style,
97 gdouble spacing);
98 const AdgPair * adg_dim_style_get_quote_shift (AdgDimStyle *dim_style);
99 void adg_dim_style_set_quote_shift (AdgDimStyle *dim_style,
100 const AdgPair *shift);
101 const AdgPair * adg_dim_style_get_tolerance_shift
102 (AdgDimStyle *dim_style);
103 void adg_dim_style_set_tolerance_shift
104 (AdgDimStyle *dim_style,
105 const AdgPair *shift);
106 const AdgPair * adg_dim_style_get_note_shift (AdgDimStyle *dim_style);
107 void adg_dim_style_set_note_shift (AdgDimStyle *dim_style,
108 const AdgPair *shift);
109 const gchar * adg_dim_style_get_number_format (AdgDimStyle *dim_style);
110 void adg_dim_style_set_number_format (AdgDimStyle *dim_style,
111 const gchar *format);
112 const gchar * adg_dim_style_get_number_tag (AdgDimStyle *dim_style);
113 void adg_dim_style_set_number_tag (AdgDimStyle *dim_style,
114 const gchar *tag);
116 G_END_DECLS
119 #endif /* __ADG_DIM_STYLE_H__ */