summaryrefslogtreecommitdiff
path: root/libs/gtkmm2ext/gtkmm2ext/dndtreeview.h
diff options
context:
space:
mode:
authorRobin Gareus <robin@gareus.org>2015-12-28 04:10:39 +0100
committerRobin Gareus <robin@gareus.org>2015-12-28 04:10:39 +0100
commit0aba08594c9151c4a8859bf92a134d63bb1e7786 (patch)
tree6b2da654ed5f2abcdbb51335bcf724703cb00edf /libs/gtkmm2ext/gtkmm2ext/dndtreeview.h
parentd7475e14193ebed3a325dc1034d02c084ab4f222 (diff)
allow DnD between DnDTreeView and DnDVbox
Diffstat (limited to 'libs/gtkmm2ext/gtkmm2ext/dndtreeview.h')
-rw-r--r--libs/gtkmm2ext/gtkmm2ext/dndtreeview.h25
1 files changed, 9 insertions, 16 deletions
diff --git a/libs/gtkmm2ext/gtkmm2ext/dndtreeview.h b/libs/gtkmm2ext/gtkmm2ext/dndtreeview.h
index d36d82f6ee..aa62166b68 100644
--- a/libs/gtkmm2ext/gtkmm2ext/dndtreeview.h
+++ b/libs/gtkmm2ext/gtkmm2ext/dndtreeview.h
@@ -49,6 +49,7 @@ class LIBGTKMM2EXT_API DnDTreeViewBase : public Gtk::TreeView
void add_object_drag (int column, std::string type_name);
void on_drag_begin (Glib::RefPtr<Gdk::DragContext> const & context);
+ void on_drag_end (Glib::RefPtr<Gdk::DragContext> const & context);
bool on_button_press_event (GdkEventButton *ev) {
press_start_x = ev->x;
@@ -97,6 +98,12 @@ class LIBGTKMM2EXT_API DnDTreeViewBase : public Gtk::TreeView
drag_data.data_column = data_column;
drag_data.object_type = object_type;
}
+
+ void end_object_drag () {
+ drag_data.source = 0;
+ drag_data.data_column = -1;
+ drag_data.object_type = "";
+ }
};
template<class DataType>
@@ -106,7 +113,7 @@ class /*LIBGTKMM2EXT_API*/ DnDTreeView : public DnDTreeViewBase
DnDTreeView() {}
~DnDTreeView() {}
- sigc::signal<void,const std::list<DataType>&,Gtk::TreeView*,int,int,Glib::RefPtr<Gdk::DragContext>&> signal_drop;
+ sigc::signal<void, const Glib::RefPtr<Gdk::DragContext>&, const Gtk::SelectionData&> signal_drop;
void on_drag_data_get(const Glib::RefPtr<Gdk::DragContext>& context, Gtk::SelectionData& selection_data, guint info, guint time) {
if (selection_data.get_target() == "GTK_TREE_MODEL_ROW") {
@@ -134,14 +141,9 @@ class /*LIBGTKMM2EXT_API*/ DnDTreeView : public DnDTreeViewBase
}
if (selection_data.get_target() == "GTK_TREE_MODEL_ROW") {
-
TreeView::on_drag_data_received (context, x, y, selection_data, info, time);
-
-
} else if (selection_data.get_target() == object_type) {
-
- end_object_drag (const_cast<Glib::RefPtr<Gdk::DragContext>& > (context), x, y);
-
+ signal_drop (context, selection_data);
} else {
/* some kind of target type added by the app, which will be handled by a signal handler */
}
@@ -169,15 +171,6 @@ class /*LIBGTKMM2EXT_API*/ DnDTreeView : public DnDTreeViewBase
*source = drag_data.source;
}
-
- private:
- void end_object_drag (Glib::RefPtr<Gdk::DragContext>& context, int x, int y) {
- std::list<DataType> l;
- Gtk::TreeView* source;
- get_object_drag_data (l, &source);
- signal_drop (l, source, x, y, context);
- }
-
};
} // namespace