pygobject创建拖放源

时间:2011-10-09 13:59:12

标签: python pygobject gtk3

from gi.repository import Gtk, Gdk

def drag_data_get_cb(widget, drag_context, selection_data, info, time):
    print selection_data.get_data_type()
    print widget.get_text()
    return widget.get_text()

def drag_begin_cb(widget, dragcontext):
    print dragcontext, widget
    return dragcontext

label = Gtk.Label()
label.drag_source_set(Gdk.ModifierType.BUTTON1_MASK, [], Gdk.DragAction.COPY)
label.set_text("Drag Me!")
label.connect("drag_data_get", drag_data_get_cb)
label.connect("drag_begin", drag_begin_cb)

window = Gtk.Window()
window.add(label)
window.connect("delete_event", Gtk.main_quit)
window.set_default_size(300, 250)
window.show_all()

Gtk.main()
现在,我已经把头靠在墙上几天了, 任何人都可以告诉我为什么这不允许我将文本拖动到其他小部件?这些拖拽事件都没有发射

1 个答案:

答案 0 :(得分:4)

在此tutorial中,您不能使用没有窗口的窗口小部件,例如Gtk.Label作为拖放源。您可以使用按钮替换标签,例如:

label = Gtk.Button.new_with_label("Drag Me!")

为了让这个例子有效。