我创建一个小应用程序必须能够接收URL。如果应用程序窗口是打开的,我应该能够从浏览器中拖动链接并将其放入应用程序 - 应用程序会将URL保存到数据库。Python GTK拖放 - 获取URL
我在Python/GTk中创建了这个。但是我对它的拖放功能有些困惑。那么,它是如何呢?
一些示例代码来实现拖/放(我的应用程序,使用比特这段代码的)...
import pygtk
pygtk.require('2.0')
import gtk
# function to print out the mime type of the drop item
def drop_cb(wid, context, x, y, time):
l.set_text('\n'.join([str(t) for t in context.targets]))
# What should I put here to get the URL of the link?
context.finish(True, False, time)
return True
# Create a GTK window and Label, and hook up
# drag n drop signal handlers to the window
w = gtk.Window()
w.set_size_request(200, 150)
w.drag_dest_set(0, [], 0)
w.connect('drag_drop', drop_cb)
w.connect('destroy', lambda w: gtk.main_quit())
l = gtk.Label()
w.add(l)
w.show_all()
# Start the program
gtk.main()
是,你可能要小心如果数据是以uri列表的形式调用data.get_uris()。例如,如果你是从konqueror/nautilus到窗口的文件列表中,并且接受了'text/uri-list'的话,GtkSelectionData上的get_data()将返回None。 – 2009-08-31 21:41:11