Bug #325809. Get the cell from the coordinates based on bin_window.
2009-02-25 Li Yuan <li.yuan@sun.com> * gailtreeview.c: (gail_tree_view_ref_accessible_at_point): Bug #325809. Get the cell from the coordinates based on bin_window. svn path=/trunk/; revision=22405
This commit is contained in:
parent
7eff2404d0
commit
01aa0c3932
@ -1,3 +1,9 @@
|
|||||||
|
2009-02-25 Li Yuan <li.yuan@sun.com>
|
||||||
|
|
||||||
|
* gailtreeview.c: (gail_tree_view_ref_accessible_at_point):
|
||||||
|
Bug #325809. Get the cell from the coordinates based on
|
||||||
|
bin_window.
|
||||||
|
|
||||||
2009-02-25 Li Yuan <li.yuan@sun.com>
|
2009-02-25 Li Yuan <li.yuan@sun.com>
|
||||||
|
|
||||||
* gailentry.c: (gail_entry_real_notify_gtk),
|
* gailentry.c: (gail_entry_real_notify_gtk),
|
||||||
|
@ -1074,6 +1074,7 @@ gail_tree_view_ref_accessible_at_point (AtkComponent *component,
|
|||||||
GtkTreePath *path;
|
GtkTreePath *path;
|
||||||
GtkTreeViewColumn *tv_column;
|
GtkTreeViewColumn *tv_column;
|
||||||
gint x_pos, y_pos;
|
gint x_pos, y_pos;
|
||||||
|
gint bx, by;
|
||||||
gboolean ret_val;
|
gboolean ret_val;
|
||||||
|
|
||||||
widget = GTK_ACCESSIBLE (component)->widget;
|
widget = GTK_ACCESSIBLE (component)->widget;
|
||||||
@ -1084,8 +1085,9 @@ gail_tree_view_ref_accessible_at_point (AtkComponent *component,
|
|||||||
tree_view = GTK_TREE_VIEW (widget);
|
tree_view = GTK_TREE_VIEW (widget);
|
||||||
|
|
||||||
atk_component_get_extents (component, &x_pos, &y_pos, NULL, NULL, coord_type);
|
atk_component_get_extents (component, &x_pos, &y_pos, NULL, NULL, coord_type);
|
||||||
|
gtk_tree_view_convert_widget_to_bin_window_coords (tree_view, x, y, &bx, &by);
|
||||||
ret_val = gtk_tree_view_get_path_at_pos (tree_view,
|
ret_val = gtk_tree_view_get_path_at_pos (tree_view,
|
||||||
x - x_pos, y - y_pos,
|
bx - x_pos, by - y_pos,
|
||||||
&path, &tv_column, NULL, NULL);
|
&path, &tv_column, NULL, NULL);
|
||||||
if (ret_val)
|
if (ret_val)
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user