Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-01-18 09:28:17

0001 /* ATK -  Accessibility Toolkit
0002  * Copyright 2014 Igalia S.L.
0003  *
0004  * Author: Alejandro PiƱeiro Iglesias <apinheiro@igalia.com>
0005  *
0006  * This library is free software; you can redistribute it and/or
0007  * modify it under the terms of the GNU Library General Public
0008  * License as published by the Free Software Foundation; either
0009  * version 2 of the License, or (at your option) any later version.
0010  *
0011  * This library is distributed in the hope that it will be useful,
0012  * but WITHOUT ANY WARRANTY; without even the implied warranty of
0013  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
0014  * Library General Public License for more details.
0015  *
0016  * You should have received a copy of the GNU Library General Public
0017  * License along with this library; if not, write to the
0018  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
0019  * Boston, MA 02111-1307, USA.
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 /* AtkRange methods */
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 /* __ATK_RANGE_H__ */