Open main menu
Home
Random
Log in
Settings
About Sugar Labs
Disclaimers
Sugar Labs
Search
Changes
← Older edit
Newer edit →
Features/GTK3/Porting/InfoSlicer
(view source)
Revision as of 11:14, 5 July 2012
358 bytes added
,
11:14, 5 July 2012
→Signals
Line 36:
Line 36:
Gdk.drag_status(context, Gdk.DragAction.COPY, timestamp)
Gdk.drag_status(context, Gdk.DragAction.COPY, timestamp)
+
=== Drag And Drop: drag-data-received ===
+
+
* http://developer.gnome.org/gtk3/3.5/gtk3-Selections.html#GtkSelectionData-struct
+
+
+
data_received_type = str(selection_data.type)
+
data = cPickle.loads(str(selection_data.data))
+
+
replaced by:
+
+
data_received_type = str(selection_data.get_data_type())
+
data = cPickle.loads(str(selection_data.get_data()))
== Working with threads ==
== Working with threads ==
Humitos
266
edits