我正在创建一个小应用必须能够接收网址。如果应用程序窗口打开,我应该能够从浏览器拖动链接并将其放入应用程序 - 应用程序将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()
答案 0 :(得分:8)
您必须自己获取数据。这是一个简单的工作示例,它将为丢弃的URL设置标签:
#!/usr/local/env python
import pygtk
pygtk.require('2.0')
import gtk
def motion_cb(wid, context, x, y, time):
l.set_text('\n'.join([str(t) for t in context.targets]))
context.drag_status(gtk.gdk.ACTION_COPY, time)
# Returning True which means "I accept this data".
return True
def drop_cb(wid, context, x, y, time):
# Some data was dropped, get the data
wid.drag_get_data(context, context.targets[-1], time)
return True
def got_data_cb(wid, context, x, y, data, info, time):
# Got data.
l.set_text(data.get_text())
context.finish(True, False, time)
w = gtk.Window()
w.set_size_request(200, 150)
w.drag_dest_set(0, [], 0)
w.connect('drag_motion', motion_cb)
w.connect('drag_drop', drop_cb)
w.connect('drag_data_received', got_data_cb)
w.connect('destroy', lambda w: gtk.main_quit())
l = gtk.Label()
w.add(l)
w.show_all()
gtk.main()
答案 1 :(得分:3)
为了确保只从DnD获取文件资源管理器中的文件列表中的一个文件或目录的数据,您可以使用类似的内容:
data.get_text().split(None,1)[0]
“got_data_cb”方法的代码如下所示:
def got_data_cb(wid, context, x, y, data, info, time):
# Got data.
l.set_text(data.get_text().split(None,1)[0])
context.finish(True, False, time)
这将按任何空格分割数据,并返回第一个项目。
答案 2 :(得分:1)
唯一适合我的解决方案是:
def got_data_cb(wid, context, x, y, data, info, time):
# Got data.
l.set_text(data.get_uris()[0])
context.finish(True, False, time)
答案 3 :(得分:0)
以下代码是从an example of the (old) PyGTK tutorial移植的,我猜这是the accepted answer,但是使用了pygi:
def check(tuple_, list_):
v1, v2 = tuple_
if (v1, v2) in list_ or (v2, v1) in list_:
return True
return False
f1 = [(6, 1), (1, 2), (2, 7), (7, 6)]
print(check((6, 1), f1)) # this prints True
print(check((1, 6), f1)) # this prints True