1 /* GAIL - The GNOME Accessibility Implementation Library 2 * Copyright 2001 Sun Microsystems Inc. 3 * Copyright 2013 SUSE LLC. 4 * 5 * This library is free software; you can redistribute it and/or 6 * modify it under the terms of the GNU Library General Public 7 * License as published by the Free Software Foundation; either 8 * version 2 of the License, or (at your option) any later version. 9 * 10 * This library is distributed in the hope that it will be useful, 11 * but WITHOUT ANY WARRANTY; without even the implied warranty of 12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 13 * Library General Public License for more details. 14 * 15 * You should have received a copy of the GNU Library General Public 16 * License along with this library. If not, see <http://www.gnu.org/licenses/>. 17 */ 18 19 #ifndef __GTK_LEVEL_BAR_ACCESSIBLE_H__ 20 #define __GTK_LEVEL_BAR_ACCESSIBLE_H__ 21 22 #if !defined (__GTK_A11Y_H_INSIDE__) && !defined (GTK_COMPILATION) 23 #error "Only <gtk/gtk-a11y.h> can be included directly." 24 #endif 25 26 #include <gtk/a11y/gtkwidgetaccessible.h> 27 28 G_BEGIN_DECLS 29 30 #define GTK_TYPE_LEVEL_BAR_ACCESSIBLE (gtk_level_bar_accessible_get_type ()) 31 #define GTK_LEVEL_BAR_ACCESSIBLE(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), GTK_TYPE_LEVEL_BAR_ACCESSIBLE, GtkLevelBarAccessible)) 32 #define GTK_LEVEL_BAR_ACCESSIBLE_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), GTK_TYPE_LEVEL_BAR_ACCESSIBLE, GtkLevelBarAccessibleClass)) 33 #define GTK_IS_LEVEL_BAR_ACCESSIBLE(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GTK_TYPE_LEVEL_BAR_ACCESSIBLE)) 34 #define GTK_IS_LEVEL_BAR_ACCESSIBLE_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), GTK_TYPE_LEVEL_BAR_ACCESSIBLE)) 35 #define GTK_LEVEL_BAR_ACCESSIBLE_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), GTK_TYPE_LEVEL_BAR_ACCESSIBLE, GtkLevelBarAccessibleClass)) 36 37 typedef struct _GtkLevelBarAccessible GtkLevelBarAccessible; 38 typedef struct _GtkLevelBarAccessibleClass GtkLevelBarAccessibleClass; 39 typedef struct _GtkLevelBarAccessiblePrivate GtkLevelBarAccessiblePrivate; 40 41 struct _GtkLevelBarAccessible 42 { 43 GtkWidgetAccessible parent; 44 45 GtkLevelBarAccessiblePrivate *priv; 46 }; 47 48 struct _GtkLevelBarAccessibleClass 49 { 50 GtkWidgetAccessibleClass parent_class; 51 }; 52 53 GDK_AVAILABLE_IN_ALL 54 GType gtk_level_bar_accessible_get_type (void); 55 56 G_END_DECLS 57 58 #endif /* __GTK_LEVEL_BAR_ACCESSIBLE_H__ */ 59