2008-07-01 22:57:50 +00:00
|
|
|
/* GTK - The GIMP Toolkit
|
2001-05-03 20:11:14 +00:00
|
|
|
* Copyright 2001 Sun Microsystems Inc.
|
2020-04-20 15:47:50 +00:00
|
|
|
* Copyright 2020 GNOME Foundation
|
2001-05-03 20:11:14 +00:00
|
|
|
*
|
|
|
|
* 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
|
2012-02-27 13:01:10 +00:00
|
|
|
* License along with this library. If not, see <http://www.gnu.org/licenses/>.
|
2001-05-03 20:11:14 +00:00
|
|
|
*/
|
|
|
|
|
2012-12-28 14:57:34 +00:00
|
|
|
#ifndef __GTK_ACCESSIBLE_H__
|
|
|
|
#define __GTK_ACCESSIBLE_H__
|
|
|
|
|
2009-10-21 18:30:04 +00:00
|
|
|
#if !defined (__GTK_H_INSIDE__) && !defined (GTK_COMPILATION)
|
2008-05-28 15:07:04 +00:00
|
|
|
#error "Only <gtk/gtk.h> can be included directly."
|
|
|
|
#endif
|
|
|
|
|
2001-05-03 20:11:14 +00:00
|
|
|
#include <atk/atk.h>
|
2002-01-24 15:59:37 +00:00
|
|
|
#include <gtk/gtkwidget.h>
|
2001-05-03 20:11:14 +00:00
|
|
|
|
2005-03-20 07:01:23 +00:00
|
|
|
G_BEGIN_DECLS
|
2001-05-03 20:11:14 +00:00
|
|
|
|
|
|
|
#define GTK_TYPE_ACCESSIBLE (gtk_accessible_get_type ())
|
|
|
|
|
2020-04-20 15:47:50 +00:00
|
|
|
#if !ATK_CHECK_VERSION(2, 37, 0)
|
|
|
|
G_DEFINE_AUTOPTR_CLEANUP_FUNC(AtkObject, g_object_unref)
|
|
|
|
#endif
|
2001-05-03 20:11:14 +00:00
|
|
|
|
2020-04-20 15:47:50 +00:00
|
|
|
GDK_AVAILABLE_IN_ALL
|
|
|
|
G_DECLARE_DERIVABLE_TYPE (GtkAccessible, gtk_accessible, GTK, ACCESSIBLE, AtkObject)
|
2001-05-03 20:11:14 +00:00
|
|
|
|
|
|
|
struct _GtkAccessibleClass
|
|
|
|
{
|
|
|
|
AtkObjectClass parent_class;
|
|
|
|
|
2020-04-20 15:47:50 +00:00
|
|
|
void (* widget_set) (GtkAccessible *accessible);
|
|
|
|
void (* widget_unset) (GtkAccessible *accessible);
|
2001-05-03 20:11:14 +00:00
|
|
|
|
2020-04-20 15:47:50 +00:00
|
|
|
gpointer _padding[8];
|
|
|
|
};
|
2002-10-11 22:57:11 +00:00
|
|
|
|
2013-03-20 22:17:32 +00:00
|
|
|
GDK_AVAILABLE_IN_ALL
|
2011-07-14 23:50:21 +00:00
|
|
|
void gtk_accessible_set_widget (GtkAccessible *accessible,
|
|
|
|
GtkWidget *widget);
|
2013-03-20 22:17:32 +00:00
|
|
|
GDK_AVAILABLE_IN_ALL
|
2011-07-14 23:50:21 +00:00
|
|
|
GtkWidget *gtk_accessible_get_widget (GtkAccessible *accessible);
|
2011-12-18 19:24:46 +00:00
|
|
|
|
2005-03-20 07:01:23 +00:00
|
|
|
G_END_DECLS
|
2001-05-03 20:11:14 +00:00
|
|
|
|
|
|
|
#endif /* __GTK_ACCESSIBLE_H__ */
|