1DropSite(3) perl/Tk Documentation DropSite(3)
2
3
4
6 Tk::DropSite - Receive side of Drag & Drop abstraction
7
9 use Tk::DropSite qw(...);
10 $widget->DropSite(-entercommand => ...,
11 -dropcommand => ...,
12 -motioncommand => ...,
13 -dropcommand => ...,
14 );
15
17 "DropSite" creates an object which represents a site on which things
18 may be "Dropped".
19
20 A DropSite provides the following methods:
21
22 $site->Enter($token,$event)
23 $site->Leave($token,$event)
24 $site->Motion($token,$event)
25 $site->Drop($token,$event)
26
27
28
29Tk804.036 2022-01-21 DropSite(3)