The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.
    ListboxDnD - A Tk::Listbox widget with drag and drop capability.
    Copyright (C) 2002  Greg London

    This program is free software; you can redistribute it and/or modify
    it under the same terms as Perl 5 itself.

    This program is distributed in the hope that it will be useful,
    but WITHOUT ANY WARRANTY; without even the implied warranty of
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    Perl 5 License schemes for more details.

    contact the author via http://www.greglondon.com

NAME

    ListboxDnD - A Tk::Listbox widget with drag and drop capability.

DESCRIPTION

   The intent is to add Drag and Drop functionality to the Tk::Listbox
   widget. You can drag items within the listbox to another location 
   within the listbox by using <Button-1>.

   I would like some beta-testers to see if they can break
   this module or find any bugs with it.

EXPORT

INSTALLATION

   Just put this file in a directory called "Tk".
   Above that directory, create a test perl script with the following
   code in it: 

        use Tk;
        use Tk::ListboxDnD;
        my $top = MainWindow->new();
        my $listbox = $top->ListboxDnD(-dragformat=>"<%s>")->pack();
        $listbox->insert('end', qw/alpha bravo charlie delta echo fox/);
        MainLoop();

AUTHOR

    ListboxDnD - A Tk::Listbox widget with drag and drop capability.
    Copyright (C) 2002  Greg London

    This program is free software; you can redistribute it and/or modify
    it under the same terms as Perl 5 itself.

    This program is distributed in the hope that it will be useful,
    but WITHOUT ANY WARRANTY; without even the implied warranty of
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    Perl 5 License schemes for more details.

    contact the author via http://www.greglondon.com

SEE ALSO

1 POD Error

The following errors were encountered while parsing the POD:

Around line 4:

=for without a target?