Ticket #124 (closed enhancement: not relevant)
drag-and-drop selection
| Reported by: | szabgab | Owned by: | |
|---|---|---|---|
| Priority: | major | Milestone: | |
| Component: | editor | Version: | 0.16 |
| Keywords: | Cc: |
Description
User should be able to select some text and using the mouse to drag-and-drop it in some other place.
Change History
Note: See
TracTickets for help on using
tickets.

This seems to work on Windows out of the box while not on Ubuntu 8.10.
Wx::Event::EVT_STC_START_DRAG($editor, -1, sub {print "start\n"});seems to work
but these two not:
Wx::Event::EVT_STC_DO_DROP($editor, -1, sub {print "stop\n"}); Wx::Event::EVT_STC_DRAG_OVER($editor, -1, sub {print "over\n"});Neither of these seem to be available at all: