I wrote a file manager in perl once. What I did was place 'clickable icons' on a canvas (which was really a subclassed label). When you right clicked on these 'icons' you could select 'copy to', 'move to', 'delete' etc. I never implemented drag and drop.

I did plan to though. I was going to use tk's tell function to do it. Essentially, I was going to TK's drag and drop along with tell pass enough information to move/copy/delete files. The problem I found was that in order to make it work right, and feel right to the user, I would have to construct a lot of the features/feels myself. In the end, it would have seemed like a MUNGed up hack.

You can check out the 'clickable icon' i mentioned from the source here: Perlbox - Desktop

Good luck. Keep us posted on how you do.

"Never take yourself too seriously, because everyone knows that fat birds dont fly" -FLC

In reply to Re: Drag and drop with selection by scmason
in thread Drag and drop with selection by blogan

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.