I am trying to add drag-and-drop feature to Padre
http://padre.perlide.org/ticket/124
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 fire when I start to drag a selection with my mouse
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:
$editor->GetDragAllowMove
$editor->SetDragAllowMove(1);
Is this a limitation of GTK or wxWidgets or wxPerl?
regards
Gabor