GtkTreeView : Drag and drop

2005-08-21 Thread Thym
Hello, ( I speak french, sorry for my english ) in my GtkTreeView, I activated drag and drop with : gtk_tree_view_set_reorderable(GTK_TREE_VIEW(pTreeView), TRUE); The DnD works fine, but I would like control if the row "may" moved. How can I do it ? Thank you.

Signal when a drag and drop on a GtkTreeView is finished

2005-08-21 Thread Thym
I asked it on irc, and here is a solution : g_signal_connect_swapped(G_OBJECT(pMyApp->pTreeStore), "row_inserted", G_CALLBACK(entryMoved), pMyApp); Thank you. ___ gtk-app-devel-list mailing list [EMAIL PROTECTED] http://mail.gnome.org/mailman/listinfo/

Signal when a drag and drop on a GtkTreeView is finished

2005-08-21 Thread Thym
Good evening everybody, ( I speak french, sorry for my english ) when a entry's changed, I changed a label. But, when a drag and drop on a GtkTreeView is finished, how to know it ? When I'll receive this signal, I would like change a label too. So, I need this signal. Thank you. ___

Re: Signal when the content of a GtkEntry is changed

2005-08-16 Thread Thym
Thanks for all this answers :] I choosed the focus-out-event solution : I connect the signal to my entry : g_signal_connect_swapped(pMyApp->pEntryMenuName, "focus-out-event", G_CALLBACK(entryMenuName_changed), (gpointer)pMyApp); pMyApp is a structure contain some pointer like pEntryMenuName or

Signal when the content of a GtkEntry is changed

2005-08-16 Thread Thym
Good evening all, First, sorry for my english, I speak French. I would like to know when the content of a GtkEntry is changed. A signal certainly, but what's its name ? Thank you. ___ gtk-app-devel-list mailing list gtk-app-devel-list@gnome.org http:/

g_signal_emit_by_name

2005-08-14 Thread Thym
Good evening everybody ! I speak french, so sorry for mistakes :] I think I have matter with g_signal_emit_by_name. I sent a signal with : g_signal_emit_by_name(G_OBJECT(pMyApp->pWindow), "delete_event"); Before, I connected this signal with : g_signal_connect(G_OBJECT(pMyApp->pWindow), "de