OXIESEC PANEL
- Current Dir:
/
/
usr
/
include
/
atk-1.0
/
atk
Server IP: 139.59.38.164
Upload:
Create Dir:
Name
Size
Modified
Perms
π
..
-
10/28/2024 06:50:16 AM
rwxr-xr-x
π
atk-enum-types.h
2.25 KB
03/13/2018 02:32:22 PM
rw-r--r--
π
atk.h
1.86 KB
03/12/2018 07:47:13 AM
rw-r--r--
π
atkaction.h
4.65 KB
03/12/2018 07:47:13 AM
rw-r--r--
π
atkcomponent.h
10.79 KB
03/12/2018 07:47:13 AM
rw-r--r--
π
atkdocument.h
4.86 KB
03/12/2018 07:47:13 AM
rw-r--r--
π
atkeditabletext.h
4.84 KB
03/12/2018 07:47:13 AM
rw-r--r--
π
atkgobjectaccessible.h
2.55 KB
03/12/2018 07:47:13 AM
rw-r--r--
π
atkhyperlink.h
4.06 KB
03/12/2018 07:47:13 AM
rw-r--r--
π
atkhyperlinkimpl.h
2.39 KB
03/12/2018 07:47:13 AM
rw-r--r--
π
atkhypertext.h
2.87 KB
03/12/2018 07:47:13 AM
rw-r--r--
π
atkimage.h
3.54 KB
03/12/2018 07:47:13 AM
rw-r--r--
π
atkmisc.h
3.55 KB
03/12/2018 07:47:13 AM
rw-r--r--
π
atknoopobject.h
2.12 KB
03/12/2018 07:47:13 AM
rw-r--r--
π
atknoopobjectfactory.h
2.32 KB
03/12/2018 07:47:13 AM
rw-r--r--
π
atkobject.h
38.1 KB
03/12/2018 07:47:13 AM
rw-r--r--
π
atkobjectfactory.h
2.66 KB
03/12/2018 07:47:13 AM
rw-r--r--
π
atkplug.h
2.07 KB
03/12/2018 07:47:13 AM
rw-r--r--
π
atkrange.h
1.94 KB
03/12/2018 07:47:13 AM
rw-r--r--
π
atkregistry.h
2.64 KB
03/12/2018 07:47:13 AM
rw-r--r--
π
atkrelation.h
3.64 KB
03/12/2018 07:47:13 AM
rw-r--r--
π
atkrelationset.h
3.7 KB
03/12/2018 07:47:13 AM
rw-r--r--
π
atkrelationtype.h
6.08 KB
03/12/2018 07:47:13 AM
rw-r--r--
π
atkselection.h
3.83 KB
03/12/2018 07:47:13 AM
rw-r--r--
π
atksocket.h
2.28 KB
03/12/2018 07:47:13 AM
rw-r--r--
π
atkstate.h
14.01 KB
03/12/2018 07:47:13 AM
rw-r--r--
π
atkstateset.h
3.66 KB
03/12/2018 07:47:13 AM
rw-r--r--
π
atkstreamablecontent.h
4.74 KB
03/12/2018 07:47:13 AM
rw-r--r--
π
atktable.h
12.5 KB
03/12/2018 07:47:13 AM
rw-r--r--
π
atktablecell.h
4.53 KB
03/12/2018 07:47:13 AM
rw-r--r--
π
atktext.h
21.44 KB
03/12/2018 07:47:13 AM
rw-r--r--
π
atkutil.h
14.22 KB
03/12/2018 07:47:13 AM
rw-r--r--
π
atkvalue.h
6.04 KB
03/12/2018 07:47:13 AM
rw-r--r--
π
atkversion.h
12.14 KB
03/13/2018 02:32:22 PM
rw-r--r--
π
atkwindow.h
1.78 KB
03/12/2018 07:47:13 AM
rw-r--r--
Editing: atkrange.h
Close
/* ATK - Accessibility Toolkit * Copyright 2014 Igalia S.L. * * Author: Alejandro PiΓ±eiro Iglesias <apinheiro@igalia.com> * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Library General Public * License as published by the Free Software Foundation; either * version 2 of the License, or (at your option) any later version. * * This library is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Library General Public License for more details. * * You should have received a copy of the GNU Library General Public * License along with this library; if not, write to the * Free Software Foundation, Inc., 59 Temple Place - Suite 330, * Boston, MA 02111-1307, USA. */ #ifndef __ATK_RANGE_H__ #define __ATK_RANGE_H__ #if defined(ATK_DISABLE_SINGLE_INCLUDES) && !defined (__ATK_H_INSIDE__) && !defined (ATK_COMPILATION) #error "Only <atk/atk.h> can be included directly." #endif #include <glib-object.h> #include <atk/atkversion.h> G_BEGIN_DECLS #define ATK_TYPE_RANGE (atk_range_get_type ()) typedef struct _AtkRange AtkRange; /* AtkRange methods */ ATK_AVAILABLE_IN_2_12 GType atk_range_get_type (void); ATK_AVAILABLE_IN_2_12 AtkRange* atk_range_copy (AtkRange *src); ATK_AVAILABLE_IN_2_12 void atk_range_free (AtkRange *range); ATK_AVAILABLE_IN_2_12 gdouble atk_range_get_lower_limit (AtkRange *range); ATK_AVAILABLE_IN_2_12 gdouble atk_range_get_upper_limit (AtkRange *range); ATK_AVAILABLE_IN_2_12 const gchar* atk_range_get_description (AtkRange *range); ATK_AVAILABLE_IN_2_12 AtkRange* atk_range_new (gdouble lower_limit, gdouble upper_limit, const gchar *description); G_END_DECLS #endif /* __ATK_RANGE_H__ */