File indexing completed on 2025-01-30 09:32:47
0001
0002
0003
0004
0005
0006
0007
0008
0009
0010
0011
0012
0013
0014
0015
0016
0017
0018
0019
0020
0021
0022
0023
0024
0025
0026 #ifndef _ATSPI_VALUE_H_
0027 #define _ATSPI_VALUE_H_
0028
0029 #include "glib-object.h"
0030
0031 #include "atspi-constants.h"
0032
0033 #include "atspi-types.h"
0034
0035 G_BEGIN_DECLS
0036
0037 #define ATSPI_TYPE_VALUE (atspi_value_get_type ())
0038 #define ATSPI_IS_VALUE(obj) G_TYPE_CHECK_INSTANCE_TYPE ((obj), ATSPI_TYPE_VALUE)
0039 #define ATSPI_VALUE(obj) G_TYPE_CHECK_INSTANCE_CAST ((obj), ATSPI_TYPE_VALUE, AtspiValue)
0040 #define ATSPI_VALUE_GET_IFACE(obj) (G_TYPE_INSTANCE_GET_INTERFACE ((obj), ATSPI_TYPE_VALUE, AtspiValue))
0041
0042 GType atspi_value_get_type ();
0043
0044 struct _AtspiValue
0045 {
0046 GTypeInterface parent;
0047 };
0048
0049 gdouble atspi_value_get_minimum_value (AtspiValue *obj, GError **error);
0050
0051 gdouble atspi_value_get_current_value (AtspiValue *obj, GError **error);
0052
0053 gdouble atspi_value_get_maximum_value (AtspiValue *obj, GError **error);
0054
0055 gboolean atspi_value_set_current_value (AtspiValue *obj, gdouble new_value, GError **error);
0056
0057 gdouble atspi_value_get_minimum_increment (AtspiValue *obj, GError **error);
0058
0059 gchar *atspi_value_get_text (AtspiValue *obj, GError **error);
0060 G_END_DECLS
0061
0062 #endif