comparison src/gtkblist.c @ 7650:6db061321ec4

[gaim-migrate @ 8293] I completely reverted the dnd sendfile stuff. I thought most of it was pretty decent. The parts for adding the sendfile option to the conv window looked good to me. I can't comment on the dnd stuff. In oscar.c, I didn't see a need to duplicate the oscar_ask_sendfile function. I also don't think the right click->send file option should have been removed... but that's just one man's opinion. Sean, could you please talk to Chip and/or the author of this patch and work towards making it acceptable by you? committer: Tailor Script <tailor@pidgin.im>
author Mark Doliner <mark@kingant.net>
date Fri, 28 Nov 2003 19:30:45 +0000
parents 9008b5be4275
children 63ac63ec4b46
comparison
equal deleted inserted replaced
7649:7762b3bdfe09 7650:6db061321ec4
2253 selection = gtk_tree_view_get_selection(GTK_TREE_VIEW(gtkblist->treeview)); 2253 selection = gtk_tree_view_get_selection(GTK_TREE_VIEW(gtkblist->treeview));
2254 g_signal_connect(G_OBJECT(selection), "changed", G_CALLBACK(gaim_gtk_blist_selection_changed), NULL); 2254 g_signal_connect(G_OBJECT(selection), "changed", G_CALLBACK(gaim_gtk_blist_selection_changed), NULL);
2255 2255
2256 2256
2257 /* Set up dnd */ 2257 /* Set up dnd */
2258 gtk_tree_view_enable_model_drag_source(GTK_TREE_VIEW(gtkblist->treeview), GDK_BUTTON1_MASK, gte, 2258 gtk_tree_view_enable_model_drag_source(GTK_TREE_VIEW(gtkblist->treeview),
2259 2, GDK_ACTION_COPY); 2259 GDK_BUTTON1_MASK, gte, 2,
2260 2260 GDK_ACTION_COPY);
2261 gtk_tree_view_enable_model_drag_dest(GTK_TREE_VIEW(gtkblist->treeview), gte, 2, 2261 gtk_tree_view_enable_model_drag_dest(GTK_TREE_VIEW(gtkblist->treeview),
2262 GDK_ACTION_COPY | GDK_ACTION_MOVE); 2262 gte, 2,
2263 GDK_ACTION_COPY | GDK_ACTION_MOVE);
2263 2264
2264 g_signal_connect(G_OBJECT(gtkblist->treeview), "drag-data-received", G_CALLBACK(gaim_gtk_blist_drag_data_rcv_cb), NULL); 2265 g_signal_connect(G_OBJECT(gtkblist->treeview), "drag-data-received", G_CALLBACK(gaim_gtk_blist_drag_data_rcv_cb), NULL);
2265 g_signal_connect(G_OBJECT(gtkblist->treeview), "drag-data-get", G_CALLBACK(gaim_gtk_blist_drag_data_get_cb), NULL); 2266 g_signal_connect(G_OBJECT(gtkblist->treeview), "drag-data-get", G_CALLBACK(gaim_gtk_blist_drag_data_get_cb), NULL);
2266 2267
2267 /* Tooltips */ 2268 /* Tooltips */