Drag from TreeView to non-TreeView

2009-04-26 Thread Jeffrey Barish
Is it possible to drag from a TreeView to a widget that is not a TreeView? In my case, I am trying to drag to an EventBox. -- Jeffrey Barish ___ gtk-app-devel-list mailing list gtk-app-devel-list@gnome.org http://mail.gnome.org/mailman/listinfo/gtk-app

Known gtk_tree_view_set_enable_tree_lines()-issues??

2009-04-26 Thread Nikolaj Thygesen
Hi list, Am I the only one having issues with "gtk_tree_view_set_enable_tree_lines()" and "gtk_tree_view_set_grid_lines()"??? I use GTK-2.16.1 under freebsd 7.1 and even last year my program would crash whenever I used the function "gtk_tree_view_set_grid_lines()", but lately even "gtk_tr

question about g_file_test();

2009-04-26 Thread cet cet
For a broken symlink  file called file(full path); g_file_test(file,G_FILE_TEST_IS_SYMLINK) returning TRUE; g_remove(file);removes file; g_file_test(file,G_FILE_TEST_EXISTS) returning FALSE<-why; is it correct the g_file_test(file,G_FILE_TEST_EXISTS) returning FALSE?