Update copyright and add some missing license info
[platform/upstream/at-spi2-core.git] / atspi / atspi-value.c
1 /*
2  * AT-SPI - Assistive Technology Service Provider Interface
3  * (Gnome Accessibility Project; http://developer.gnome.org/projects/gap)
4  *
5  * Copyright 2001, 2002 Sun Microsystems Inc.,
6  * Copyright 2001, 2002 Ximian, Inc.
7  * Copyright 2010, 2011 Novell, Inc.
8  *
9  * This library is free software; you can redistribute it and/or
10  * modify it under the terms of the GNU Library General Public
11  * License as published by the Free Software Foundation; either
12  * version 2 of the License, or (at your option) any later version.
13  *
14  * This library is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
17  * Library General Public License for more details.
18  *
19  * You should have received a copy of the GNU Library General Public
20  * License along with this library; if not, write to the
21  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
22  * Boston, MA 02111-1307, USA.
23  */
24
25 #include "atspi-private.h"
26
27 /**
28  * atspi_value_get_minimum_value:
29  * @obj: a pointer to the #AtspiValue implementor on which to operate. 
30  *
31  * Get the minimum allowed value for an #AtspiValue.
32  *
33  * Returns: the minimum allowed value for this object.
34  *
35  **/
36 gdouble
37 atspi_value_get_minimum_value (AtspiValue *obj, GError **error)
38 {
39   double retval;
40
41   g_return_val_if_fail (obj != NULL, 0.0);
42   _atspi_dbus_get_property (obj, atspi_interface_value, "MinimumValue", error, "d", &retval);
43   
44   return retval;
45 }
46
47 /**
48  * atspi_value_get_current_value:
49  * @obj: a pointer to the #AtspiValue implementor on which to operate. 
50  *
51  * Get the current value for an #AtspiValue.
52  *
53  * Returns: the current value for this object.
54  **/
55 gdouble
56 atspi_value_get_current_value (AtspiValue *obj, GError **error)
57 {
58   double retval;
59
60   g_return_val_if_fail (obj != NULL, 0.0);
61
62   _atspi_dbus_get_property (obj, atspi_interface_value, "CurrentValue", error, "d", &retval);
63
64   return retval;
65 }
66
67 /**
68  * atspi_value_get_maximum_value:
69  * @obj: a pointer to the #AtspiValue implementor on which to operate. 
70  *
71  * Get the maximum allowed value for an #AtspiValue.
72  *
73  * Returns: the maximum allowed value for this object.
74  **/
75 gdouble
76 atspi_value_get_maximum_value (AtspiValue *obj, GError **error)
77 {
78   double retval;        
79
80   g_return_val_if_fail (obj != NULL, 0.0);
81
82   _atspi_dbus_get_property (obj, atspi_interface_value, "MaximumValue", error, "d", &retval);
83
84   return retval;
85 }
86
87 /**
88  * atspi_value_set_current_value:
89  * @obj: a pointer to the #AtspiValue implementor on which to operate.
90  * @new_value: a #float value which is the desired new value of the object.
91  *
92  * Set the current value of an #AtspiValue.
93  *
94  * Returns: #TRUE if the value could be assigned the specified value,
95  *          #FALSE otherwise.
96  **/
97 gboolean
98 atspi_value_set_current_value (AtspiValue *obj, gdouble new_value, GError **error)
99 {
100   double d_new_value = new_value;
101
102   g_return_val_if_fail (obj != NULL, FALSE);
103
104   _atspi_dbus_call (obj, atspi_interface_value, "SetCurrentValue", error, "d", &d_new_value);
105
106   return TRUE;
107 }
108
109 /**
110  * atspi_value_get_minimum_increment:
111  * @obj: a pointer to the #AtspiValue implementor on which to operate. 
112  *
113  * Get the minimum increment by which an #AtspiValue can be adjusted.
114  *
115  * Returns: the minimum increment by which the value may be changed, or
116  * zero if the minimum increment cannot be determined.
117  *
118  **/
119 gdouble
120 atspi_value_get_minimum_increment (AtspiValue *obj, GError **error)
121 {
122   double retval;
123
124   g_return_val_if_fail (obj != NULL, 0.0);
125
126   _atspi_dbus_get_property (obj, atspi_interface_value, "MinimumIncrement", error, "d", &retval);
127   
128   return retval;
129 }
130
131 static void
132 atspi_value_base_init (AtspiValue *klass)
133 {
134 }
135
136 GType
137 atspi_value_get_type (void)
138 {
139   static GType type = 0;
140
141   if (!type) {
142     static const GTypeInfo tinfo =
143     {
144       sizeof (AtspiValue),
145       (GBaseInitFunc) atspi_value_base_init,
146       (GBaseFinalizeFunc) NULL,
147     };
148
149     type = g_type_register_static (G_TYPE_INTERFACE, "AtspiValue", &tinfo, 0);
150
151   }
152   return type;
153 }