Hi Steve
On 22/12/2012 19:52, Steve Cookson wrote:
As suggested I tried EVT_AUINOTEBOOK_DRAG_DONE, but it needed to be
wrapped. So I opened:
~/wxPerl/ext/aui/AUI.xs
and copied one of the lines to create:
EVT( EVT_AUINOTEBOOK_DRAG_DONE, 3, wxEVT_COMMAND_AUINOTEBOOK_DRAG_DONE )
make
make install
no errors.
But fails on execution with undefined subroutine
&Wx::Event::EVT_AUINOTEBOOK_DRAG_DONE ......
Any thoughts?
Is anyone using AUI?
After adding your extra event you need to rebuild everything:
make clean
perl Makefile.PL
make
make test
make install
Then you should be able to use Wx::Event::EVT_AUINOTEBOOK_DRAG_DONE.
Regards
Mark