summaryrefslogtreecommitdiff
path: root/gtk/a11y/gtkcontaineraccessibleprivate.h
diff options
context:
space:
mode:
authorCarlos Garnacho <carlosg@gnome.org>2014-03-10 16:12:05 +0100
committerCarlos Garnacho <carlosg@gnome.org>2014-03-10 23:01:59 +0100
commitd4d6968e1a7db86c12089ca0056e4d492d647e75 (patch)
treecbd0326fcd7590b9b499a10f99939d4cbf67a176 /gtk/a11y/gtkcontaineraccessibleprivate.h
parent9d54fee952460c84d6ea84a7e90942605484c07e (diff)
downloadgtk+-d4d6968e1a7db86c12089ca0056e4d492d647e75.tar.gz
a11y: Add private GtkContainerAccessible functions to add/remove a child
This may be useful in container implementations, or for internal children that trigger no signal emission. https://bugzilla.gnome.org/show_bug.cgi?id=725864
Diffstat (limited to 'gtk/a11y/gtkcontaineraccessibleprivate.h')
-rw-r--r--gtk/a11y/gtkcontaineraccessibleprivate.h33
1 files changed, 33 insertions, 0 deletions
diff --git a/gtk/a11y/gtkcontaineraccessibleprivate.h b/gtk/a11y/gtkcontaineraccessibleprivate.h
new file mode 100644
index 0000000000..fa692ce59e
--- /dev/null
+++ b/gtk/a11y/gtkcontaineraccessibleprivate.h
@@ -0,0 +1,33 @@
+/* GTK+ - accessibility implementations
+ * 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
+ * License along with this library. If not, see <http://www.gnu.org/licenses/>.
+ */
+
+#ifndef __GTK_CONTAINER_ACCESSIBLE_PRIVATE_H__
+#define __GTK_CONTAINER_ACCESSIBLE_PRIVATE_H__
+
+#include <gtk/a11y/gtkcontaineraccessible.h>
+
+G_BEGIN_DECLS
+
+void _gtk_container_accessible_add_child (GtkContainerAccessible *accessible,
+ AtkObject *child,
+ gint index);
+void _gtk_container_accessible_remove_child (GtkContainerAccessible *accessible,
+ AtkObject *child,
+ gint index);
+G_END_DECLS
+
+#endif /* __GTK_CONTAINER_ACCESSIBLE_PRIVATE_H__ */