File indexing completed on 2025-01-18 09:28:17
0001
0002
0003
0004
0005
0006
0007
0008
0009
0010
0011
0012
0013
0014
0015
0016
0017
0018
0019
0020
0021 #ifndef __ATK_RANGE_H__
0022 #define __ATK_RANGE_H__
0023
0024 #if defined(ATK_DISABLE_SINGLE_INCLUDES) && !defined(__ATK_H_INSIDE__) && !defined(ATK_COMPILATION)
0025 #error "Only <atk/atk.h> can be included directly."
0026 #endif
0027
0028 #include <atk/atkversion.h>
0029 #include <glib-object.h>
0030
0031 G_BEGIN_DECLS
0032
0033 #define ATK_TYPE_RANGE (atk_range_get_type ())
0034
0035 typedef struct _AtkRange AtkRange;
0036
0037
0038 ATK_AVAILABLE_IN_2_12
0039 GType atk_range_get_type (void);
0040
0041 ATK_AVAILABLE_IN_2_12
0042 AtkRange *atk_range_copy (AtkRange *src);
0043 ATK_AVAILABLE_IN_2_12
0044 void atk_range_free (AtkRange *range);
0045
0046 ATK_AVAILABLE_IN_2_12
0047 gdouble atk_range_get_lower_limit (AtkRange *range);
0048 ATK_AVAILABLE_IN_2_12
0049 gdouble atk_range_get_upper_limit (AtkRange *range);
0050 ATK_AVAILABLE_IN_2_12
0051 const gchar *atk_range_get_description (AtkRange *range);
0052 ATK_AVAILABLE_IN_2_12
0053 AtkRange *atk_range_new (gdouble lower_limit,
0054 gdouble upper_limit,
0055 const gchar *description);
0056
0057 G_END_DECLS
0058
0059 #endif