The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.

NAME

AnyEvent::Tickit - Use AnyEvent with Tickit user interface.

VERSION

version 0.01

SYNOPSIS

    use AnyEvent;
    use AnyEvent::Tickit;

    my $loop = AE::cv;

    my $tickit = AnyEvent::Tickit->new( cv => $cv );

    # Create some widgets
    # ...

    $tickit->set_root_widget( $rootwidget );

    # Create some AnyEvent event handlers
    # ...

    $tickit->run();

DESCRIPTION

Use AnyEvent with Tickit user interface.

SEE ALSO

AUTHOR

Alex J. G. Burzyński <ajgb@cpan.org>

COPYRIGHT AND LICENSE

This software is copyright (c) 2014 by Alex J. G. Burzyński <ajgb@cpan.org>.

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