aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorXavier Claessens <xclaesse@gmail.com>2007-06-10 02:50:08 +0800
committerXavier Claessens <xclaesse@src.gnome.org>2007-06-10 02:50:08 +0800
commitd4ae6317c7150377911ad9e1b65a1f890a63a175 (patch)
tree15787248b4363ba820bf26507d4dfd8737870e3f
parentea2ef0a14e9d64f16e9e1969b50b988de2a05294 (diff)
downloadgsoc2013-empathy-d4ae6317c7150377911ad9e1b65a1f890a63a175.tar
gsoc2013-empathy-d4ae6317c7150377911ad9e1b65a1f890a63a175.tar.gz
gsoc2013-empathy-d4ae6317c7150377911ad9e1b65a1f890a63a175.tar.bz2
gsoc2013-empathy-d4ae6317c7150377911ad9e1b65a1f890a63a175.tar.lz
gsoc2013-empathy-d4ae6317c7150377911ad9e1b65a1f890a63a175.tar.xz
gsoc2013-empathy-d4ae6317c7150377911ad9e1b65a1f890a63a175.tar.zst
gsoc2013-empathy-d4ae6317c7150377911ad9e1b65a1f890a63a175.zip
Fix warning for DnD. patch imported from gossip.
2007-06-09 Xavier Claessens <xclaesse@gmail.com> * libempathy-gtk/gossip-contact-list-view.c: Fix warning for DnD. patch imported from gossip. svn path=/trunk/; revision=140
-rw-r--r--ChangeLog5
-rw-r--r--libempathy-gtk/gossip-contact-list-view.c92
2 files changed, 49 insertions, 48 deletions
diff --git a/ChangeLog b/ChangeLog
index f2da5d97f..8af8853dc 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,10 @@
2007-06-09 Xavier Claessens <xclaesse@gmail.com>
+ * libempathy-gtk/gossip-contact-list-view.c: Fix warning for DnD.
+ patch imported from gossip.
+
+2007-06-09 Xavier Claessens <xclaesse@gmail.com>
+
* configure.ac: Bump version to 0.8
* libempathy-gtk/gossip-ui-utils.c: Fix usage of contact subscription
diff --git a/libempathy-gtk/gossip-contact-list-view.c b/libempathy-gtk/gossip-contact-list-view.c
index b3c00a33b..74b1d187f 100644
--- a/libempathy-gtk/gossip-contact-list-view.c
+++ b/libempathy-gtk/gossip-contact-list-view.c
@@ -113,27 +113,27 @@ static void contact_list_view_drag_data_received (GtkWidget
gint y,
GtkSelectionData *selection,
guint info,
- guint time,
- gpointer user_data);
+ guint time);
static gboolean contact_list_view_drag_motion (GtkWidget *widget,
GdkDragContext *context,
gint x,
gint y,
- guint time,
- gpointer data);
+ guint time);
static gboolean contact_list_view_drag_motion_cb (DragMotionData *data);
static void contact_list_view_drag_begin (GtkWidget *widget,
- GdkDragContext *context,
- gpointer user_data);
+ GdkDragContext *context);
static void contact_list_view_drag_data_get (GtkWidget *widget,
GdkDragContext *context,
GtkSelectionData *selection,
guint info,
- guint time,
- gpointer user_data);
+ guint time);
static void contact_list_view_drag_end (GtkWidget *widget,
- GdkDragContext *context,
- gpointer user_data);
+ GdkDragContext *context);
+static gboolean contact_list_view_drag_drop (GtkWidget *widget,
+ GdkDragContext *drag_context,
+ gint x,
+ gint y,
+ guint time);
static void contact_list_view_cell_set_background (GossipContactListView *view,
GtkCellRenderer *cell,
gboolean is_group,
@@ -286,12 +286,24 @@ G_DEFINE_TYPE (GossipContactListView, gossip_contact_list_view, GTK_TYPE_TREE_VI
static void
gossip_contact_list_view_class_init (GossipContactListViewClass *klass)
{
- GObjectClass *object_class = G_OBJECT_CLASS (klass);
+ GObjectClass *object_class = G_OBJECT_CLASS (klass);
+ GtkWidgetClass *widget_class = GTK_WIDGET_CLASS (klass);
object_class->finalize = contact_list_view_finalize;
object_class->get_property = contact_list_view_get_property;
object_class->set_property = contact_list_view_set_property;
+ widget_class->drag_data_received = contact_list_view_drag_data_received;
+ widget_class->drag_drop = contact_list_view_drag_drop;
+ widget_class->drag_begin = contact_list_view_drag_begin;
+ widget_class->drag_data_get = contact_list_view_drag_data_get;
+ widget_class->drag_end = contact_list_view_drag_end;
+ /* FIXME: noticed but when you drag the row over the treeview
+ * fast, it seems to stop redrawing itself, if we don't
+ * connect this signal, all is fine.
+ */
+ widget_class->drag_motion = contact_list_view_drag_motion;
+
signals[DRAG_CONTACT_RECEIVED] =
g_signal_new ("drag-contact-received",
G_OBJECT_CLASS_TYPE (klass),
@@ -685,33 +697,6 @@ contact_list_view_setup (GossipContactListView *view)
drag_types_dest,
G_N_ELEMENTS (drag_types_dest),
GDK_ACTION_MOVE | GDK_ACTION_LINK);
-
- g_signal_connect (GTK_WIDGET (view),
- "drag-data-received",
- G_CALLBACK (contact_list_view_drag_data_received),
- NULL);
-
- /* FIXME: noticed but when you drag the row over the treeview
- * fast, it seems to stop redrawing itself, if we don't
- * connect this signal, all is fine.
- */
- g_signal_connect (view,
- "drag-motion",
- G_CALLBACK (contact_list_view_drag_motion),
- NULL);
-
- g_signal_connect (view,
- "drag-begin",
- G_CALLBACK (contact_list_view_drag_begin),
- NULL);
- g_signal_connect (view,
- "drag-data-get",
- G_CALLBACK (contact_list_view_drag_data_get),
- NULL);
- g_signal_connect (view,
- "drag-end",
- G_CALLBACK (contact_list_view_drag_end),
- NULL);
}
static void
@@ -801,8 +786,7 @@ contact_list_view_drag_data_received (GtkWidget *widget,
gint y,
GtkSelectionData *selection,
guint info,
- guint time,
- gpointer user_data)
+ guint time)
{
GossipContactListViewPriv *priv;
EmpathyContactList *list;
@@ -885,8 +869,7 @@ contact_list_view_drag_motion (GtkWidget *widget,
GdkDragContext *context,
gint x,
gint y,
- guint time,
- gpointer data)
+ guint time)
{
static DragMotionData *dm = NULL;
GtkTreePath *path;
@@ -955,8 +938,7 @@ contact_list_view_drag_motion_cb (DragMotionData *data)
static void
contact_list_view_drag_begin (GtkWidget *widget,
- GdkDragContext *context,
- gpointer user_data)
+ GdkDragContext *context)
{
GossipContactListViewPriv *priv;
GtkTreeSelection *selection;
@@ -966,6 +948,9 @@ contact_list_view_drag_begin (GtkWidget *widget,
priv = GET_PRIV (widget);
+ GTK_WIDGET_CLASS (gossip_contact_list_view_parent_class)->drag_begin (widget,
+ context);
+
selection = gtk_tree_view_get_selection (GTK_TREE_VIEW (widget));
if (!gtk_tree_selection_get_selected (selection, &model, &iter)) {
return;
@@ -981,8 +966,7 @@ contact_list_view_drag_data_get (GtkWidget *widget,
GdkDragContext *context,
GtkSelectionData *selection,
guint info,
- guint time,
- gpointer user_data)
+ guint time)
{
GossipContactListViewPriv *priv;
GtkTreePath *src_path;
@@ -1031,19 +1015,31 @@ contact_list_view_drag_data_get (GtkWidget *widget,
static void
contact_list_view_drag_end (GtkWidget *widget,
- GdkDragContext *context,
- gpointer user_data)
+ GdkDragContext *context)
{
GossipContactListViewPriv *priv;
priv = GET_PRIV (widget);
+ GTK_WIDGET_CLASS (gossip_contact_list_view_parent_class)->drag_end (widget,
+ context);
+
if (priv->drag_row) {
gtk_tree_row_reference_free (priv->drag_row);
priv->drag_row = NULL;
}
}
+static gboolean
+contact_list_view_drag_drop (GtkWidget *widget,
+ GdkDragContext *drag_context,
+ gint x,
+ gint y,
+ guint time)
+{
+ return FALSE;
+}
+
static void
contact_list_view_cell_set_background (GossipContactListView *view,
GtkCellRenderer *cell,