aboutsummaryrefslogtreecommitdiffstats
path: root/libempathy-gtk/empathy-roster-view.c
diff options
context:
space:
mode:
Diffstat (limited to 'libempathy-gtk/empathy-roster-view.c')
-rw-r--r--libempathy-gtk/empathy-roster-view.c31
1 files changed, 24 insertions, 7 deletions
diff --git a/libempathy-gtk/empathy-roster-view.c b/libempathy-gtk/empathy-roster-view.c
index 111b643b6..8dc739fde 100644
--- a/libempathy-gtk/empathy-roster-view.c
+++ b/libempathy-gtk/empathy-roster-view.c
@@ -1262,6 +1262,27 @@ empathy_roster_view_key_press_event (GtkWidget *widget,
return chain_up (widget, event);
}
+/**
+ * @out_child: (out) (allow-none)
+ */
+FolksIndividual *
+empathy_roster_view_get_individual_at_y (EmpathyRosterView *self,
+ gint y,
+ GtkWidget **out_child)
+{
+ GtkWidget *child;
+
+ child = egg_list_box_get_child_at_y (EGG_LIST_BOX (self), y);
+
+ if (out_child != NULL)
+ *out_child = child;
+
+ if (!EMPATHY_IS_ROSTER_CONTACT (child))
+ return NULL;
+
+ return empathy_roster_contact_get_individual (EMPATHY_ROSTER_CONTACT (child));
+}
+
static gboolean
empathy_roster_view_query_tooltip (GtkWidget *widget,
gint x,
@@ -1270,18 +1291,14 @@ empathy_roster_view_query_tooltip (GtkWidget *widget,
GtkTooltip *tooltip)
{
EmpathyRosterView *self = EMPATHY_ROSTER_VIEW (widget);
- GtkWidget *child;
- EmpathyRosterContact *contact;
FolksIndividual *individual;
gboolean result;
+ GtkWidget *child;
- child = egg_list_box_get_child_at_y (EGG_LIST_BOX (self), y);
- if (!EMPATHY_IS_ROSTER_CONTACT (child))
+ individual = empathy_roster_view_get_individual_at_y (self, y, &child);
+ if (individual == NULL)
return FALSE;
- contact = EMPATHY_ROSTER_CONTACT (child);
- individual = empathy_roster_contact_get_individual (contact);
-
g_signal_emit (self, signals[SIG_INDIVIDUAL_TOOLTIP], 0,
individual, keyboard_mode, tooltip, &result);