diff options
author | Benjamin Otte <otte@redhat.com> | 2011-11-10 22:07:19 +0100 |
---|---|---|
committer | Benjamin Otte <otte@redhat.com> | 2011-11-16 04:31:06 +0100 |
commit | 02fd1e5a6260d8f74977a56f311be117b5417d38 (patch) | |
tree | febf346b6417d2311447774e16d6f18304d26ee3 /gtk/a11y/gtkcellaccessibleparent.h | |
parent | 2bd69cbf8c4eda845eeac205cc5132c6bf2b8565 (diff) | |
download | gtk+-02fd1e5a6260d8f74977a56f311be117b5417d38.tar.gz |
a11y: Add _gtk_cell_accessible_parent_get_child_index()
This will soon replace the shenanigans we do to keep the index of cells
current.
Diffstat (limited to 'gtk/a11y/gtkcellaccessibleparent.h')
-rw-r--r-- | gtk/a11y/gtkcellaccessibleparent.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/gtk/a11y/gtkcellaccessibleparent.h b/gtk/a11y/gtkcellaccessibleparent.h index 7969a8b7fb..f4e1ea28b8 100644 --- a/gtk/a11y/gtkcellaccessibleparent.h +++ b/gtk/a11y/gtkcellaccessibleparent.h @@ -58,6 +58,8 @@ struct _GtkCellAccessibleParentIface GdkRectangle *cell_rect); gboolean ( *grab_focus) (GtkCellAccessibleParent *parent, GtkCellAccessible *cell); + int ( *get_child_index) (GtkCellAccessibleParent *parent, + GtkCellAccessible *cell); }; GType _gtk_cell_accessible_parent_get_type (void); @@ -74,6 +76,8 @@ void _gtk_cell_accessible_parent_get_cell_area (GtkCellAccessibleParent * GdkRectangle *cell_rect); gboolean _gtk_cell_accessible_parent_grab_focus (GtkCellAccessibleParent *parent, GtkCellAccessible *cell); +int _gtk_cell_accessible_parent_get_child_index (GtkCellAccessibleParent *parent, + GtkCellAccessible *cell); G_END_DECLS |