Moved AdgPair to CpmlPair
[adg.git] / src / adg / adg-dim.h
blobd792586e3613dfeaaa54d3b3a31056804f123ab5
1 /* ADG - Automatic Drawing Generation
2 * Copyright (C) 2007,2008,2009,2010,2011,2012 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_H__
27 #define __ADG_DIM_H__
30 G_BEGIN_DECLS
32 #define ADG_TYPE_DIM (adg_dim_get_type())
33 #define ADG_DIM(obj) (G_TYPE_CHECK_INSTANCE_CAST((obj), ADG_TYPE_DIM, AdgDim))
34 #define ADG_DIM_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST((klass), ADG_TYPE_DIM, AdgDimClass))
35 #define ADG_IS_DIM(obj) (G_TYPE_CHECK_INSTANCE_TYPE((obj), ADG_TYPE_DIM))
36 #define ADG_IS_DIM_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE((klass), ADG_TYPE_DIM))
37 #define ADG_DIM_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS((obj), ADG_TYPE_DIM, AdgDimClass))
39 typedef struct _AdgDim AdgDim;
40 typedef struct _AdgDimClass AdgDimClass;
42 struct _AdgDim {
43 /*< private >*/
44 AdgEntity parent;
45 gpointer data;
48 struct _AdgDimClass {
49 /*< private >*/
50 AdgEntityClass parent_class;
52 /*< public >*/
53 /* Virtual table */
54 gdouble (*quote_angle) (gdouble angle);
55 gchar * (*default_value) (AdgDim *dim);
59 GType adg_dim_get_type (void) G_GNUC_CONST;
60 AdgDress adg_dim_get_dim_dress (AdgDim *dim);
61 void adg_dim_set_dim_dress (AdgDim *dim,
62 AdgDress dress);
63 void adg_dim_set_ref1 (AdgDim *dim,
64 const AdgPoint *ref1);
65 void adg_dim_set_ref1_explicit (AdgDim *dim,
66 gdouble x,
67 gdouble y);
68 void adg_dim_set_ref1_from_pair (AdgDim *dim,
69 const CpmlPair *ref1);
70 void adg_dim_set_ref1_from_model (AdgDim *dim,
71 AdgModel *model,
72 const gchar *ref1);
73 AdgPoint * adg_dim_get_ref1 (AdgDim *dim);
74 void adg_dim_set_ref2 (AdgDim *dim,
75 const AdgPoint *ref2);
76 void adg_dim_set_ref2_explicit (AdgDim *dim,
77 gdouble x,
78 gdouble y);
79 void adg_dim_set_ref2_from_pair (AdgDim *dim,
80 const CpmlPair *ref2);
81 void adg_dim_set_ref2_from_model (AdgDim *dim,
82 AdgModel *model,
83 const gchar *ref2);
84 AdgPoint * adg_dim_get_ref2 (AdgDim *dim);
85 void adg_dim_set_pos (AdgDim *dim,
86 const AdgPoint *pos);
87 void adg_dim_set_pos_explicit (AdgDim *dim,
88 gdouble x,
89 gdouble y);
90 void adg_dim_set_pos_from_pair (AdgDim *dim,
91 const CpmlPair *pos);
92 void adg_dim_set_pos_from_model (AdgDim *dim,
93 AdgModel *model,
94 const gchar *pos);
95 AdgPoint * adg_dim_get_pos (AdgDim *dim);
96 void adg_dim_set_level (AdgDim *dim,
97 gdouble level);
98 gdouble adg_dim_get_level (AdgDim *dim);
99 void adg_dim_set_outside (AdgDim *dim,
100 AdgThreeState outside);
101 AdgThreeState adg_dim_get_outside (AdgDim *dim);
102 void adg_dim_set_detached (AdgDim *dim,
103 AdgThreeState detached);
104 AdgThreeState adg_dim_get_detached (AdgDim *dim);
105 void adg_dim_set_value (AdgDim *dim,
106 const gchar *value);
107 const gchar * adg_dim_get_value (AdgDim *dim);
108 void adg_dim_set_limits (AdgDim *dim,
109 const gchar *min,
110 const gchar *max);
111 void adg_dim_set_min (AdgDim *dim,
112 const gchar *min);
113 const gchar * adg_dim_get_min (AdgDim *dim);
114 void adg_dim_set_max (AdgDim *dim,
115 const gchar *max);
116 const gchar * adg_dim_get_max (AdgDim *dim);
117 gdouble adg_dim_quote_angle (AdgDim *dim,
118 gdouble angle);
119 AdgAlignment * adg_dim_get_quote (AdgDim *dim);
121 G_END_DECLS
124 #endif /* __ADG_DIM_H__ */