Difference between revisions of "Drop hooks"
Jump to navigation
Jump to search
(One intermediate revision by the same user not shown) | |||
Line 1: | Line 1: | ||
− | Register a "drop hook" with the new <i>trees</i> object. A drop hook is triggered when a specific mime type is dropped into the Trees view. | + | Register a "drop hook" with the new <i>trees</i> object. A drop hook is triggered when a specific mime type is dropped into the Trees view. |
+ | For example, to respond to files from the desktop being dropped, use mime type "text/uri-list". | ||
− | <syntaxhighlight lang="python"> | + | <syntaxhighlight lang="python" enclose> |
def drop_hook(type, data): | def drop_hook(type, data): | ||
print type, data | print type, data | ||
Line 8: | Line 9: | ||
</syntaxhighlight> | </syntaxhighlight> | ||
− | |||
− |
Latest revision as of 21:46, 18 November 2016
Register a "drop hook" with the new trees object. A drop hook is triggered when a specific mime type is dropped into the Trees view. For example, to respond to files from the desktop being dropped, use mime type "text/uri-list".
def drop_hook(type, data):
print type, data
trees.registerDropHook("text/plain", drop_hook)