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.
|
|
|
|
*
|
|
|
|
* 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 ())
|
2002-10-11 22:57:11 +00:00
|
|
|
#define GTK_ACCESSIBLE(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), GTK_TYPE_ACCESSIBLE, GtkAccessible))
|
|
|
|
#define GTK_ACCESSIBLE_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), GTK_TYPE_ACCESSIBLE, GtkAccessibleClass))
|
|
|
|
#define GTK_IS_ACCESSIBLE(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GTK_TYPE_ACCESSIBLE))
|
|
|
|
#define GTK_IS_ACCESSIBLE_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), GTK_TYPE_ACCESSIBLE))
|
|
|
|
#define GTK_ACCESSIBLE_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), GTK_TYPE_ACCESSIBLE, GtkAccessibleClass))
|
2001-05-03 20:11:14 +00:00
|
|
|
|
2011-07-14 23:50:21 +00:00
|
|
|
typedef struct _GtkAccessible GtkAccessible;
|
|
|
|
typedef struct _GtkAccessiblePrivate GtkAccessiblePrivate;
|
|
|
|
typedef struct _GtkAccessibleClass GtkAccessibleClass;
|
2001-05-03 20:11:14 +00:00
|
|
|
|
|
|
|
struct _GtkAccessible
|
|
|
|
{
|
|
|
|
AtkObject parent;
|
|
|
|
|
2010-05-22 23:06:45 +00:00
|
|
|
/*< private >*/
|
2010-08-26 17:15:37 +00:00
|
|
|
GtkAccessiblePrivate *priv;
|
2001-05-03 20:11:14 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
struct _GtkAccessibleClass
|
|
|
|
{
|
|
|
|
AtkObjectClass parent_class;
|
|
|
|
|
2011-07-14 23:50:21 +00:00
|
|
|
void (*connect_widget_destroyed) (GtkAccessible *accessible);
|
|
|
|
|
2011-12-18 11:55:41 +00:00
|
|
|
void (*widget_set) (GtkAccessible *accessible);
|
|
|
|
void (*widget_unset) (GtkAccessible *accessible);
|
2002-02-23 20:22:05 +00:00
|
|
|
/* Padding for future expansion */
|
|
|
|
void (*_gtk_reserved3) (void);
|
|
|
|
void (*_gtk_reserved4) (void);
|
2001-05-03 20:11:14 +00:00
|
|
|
};
|
|
|
|
|
2013-03-20 22:17:32 +00:00
|
|
|
GDK_AVAILABLE_IN_ALL
|
2011-07-14 23:50:21 +00:00
|
|
|
GType gtk_accessible_get_type (void) G_GNUC_CONST;
|
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
|
|
|
|
2012-02-27 12:10:59 +00:00
|
|
|
GDK_DEPRECATED_IN_3_4_FOR(gtk_accessible_set_widget)
|
2011-07-14 23:50:21 +00:00
|
|
|
void gtk_accessible_connect_widget_destroyed (GtkAccessible *accessible);
|
2002-10-11 22:57:11 +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__ */
|
|
|
|
|
|
|
|
|