[gtk+/gtk-3-0] entry: Fix gtk_entry_get_icon_at_pos()



commit 44b5fe2a60a8dd7146e876fe7ea001ae02e83da0
Author: Benjamin Otte <otte redhat com>
Date:   Sat Apr 16 21:59:36 2011 +0200

    entry: Fix gtk_entry_get_icon_at_pos()
    
    The passed in coordinates are widget-relative, not window-relative.

 gtk/gtkentry.c |    7 ++++---
 1 files changed, 4 insertions(+), 3 deletions(-)
---
diff --git a/gtk/gtkentry.c b/gtk/gtkentry.c
index 283d48e..7b87f45 100644
--- a/gtk/gtkentry.c
+++ b/gtk/gtkentry.c
@@ -8164,10 +8164,11 @@ gtk_entry_get_icon_storage_type (GtkEntry             *entry,
 /**
  * gtk_entry_get_icon_at_pos:
  * @entry: a #GtkEntry
- * @x: the x coordinate of the position to find
+ * @x: the x coordinate of the position to fine
  * @y: the y coordinate of the position to find
  *
- * Finds the icon at the given position and return its index.
+ * Finds the icon at the given position and return its index. The
+ * position's coordinates are relative to the @entry's top left corner.
  * If @x, @y doesn't lie inside an icon, -1 is returned.
  * This function is intended for use in a #GtkWidget::query-tooltip
  * signal handler.
@@ -8187,7 +8188,7 @@ gtk_entry_get_icon_at_pos (GtkEntry *entry,
 
   g_return_val_if_fail (GTK_IS_ENTRY (entry), -1);
 
-  get_frame_size (entry, TRUE, &frame_x, &frame_y, NULL, NULL);
+  get_frame_size (entry, FALSE, &frame_x, &frame_y, NULL, NULL);
   x -= frame_x;
   y -= frame_y;
 



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]