Is it possible to create such GtkTreeView
to be able:
- To reorder rows of that tree by DND;
- To drop rows from another tree to that tree.
GTK+ manual says about "reorderable" property:
The reordering is implemented by setting up the tree view as a drag source and destination. Therefore, drag and drop can not be used in a reorderable view for any other purpose.
So, I can't make my Tree reorderable with gtk_tree_view_set_reorderable()
.
And that means that I can't implement what I want at all?