The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

Fl::ReturnButton - Button with a Check Box

Synopsis

    use Fl;
    my $button = Fl::ReturnButton->new(0, 0, 100, 200, 'Hello, World!');
    $button->callback(sub {print q[It's dat boi]} );

Description

The Fl::ReturnButton class represents a button that triggers a callback when pressed as well as whenever the user presses the Enter key. The carriage-return symbol is drawn to the right of the button label.

Methods

Fl::ReturnButton inherits from Fl::Button which in turns inherits from Fl::Widget. On top of that, it exposes the following methods...

new(...)

    my $button_a = Fl::ReturnButton->new(0, 0, 250, 500, 'Important Stuff');
    my $button_b = Fl::ReturnButton->new(0, 0, 250, 500);

The constructor creates a new button using the given position, size, and label.

The destructor removes the button.

LICENSE

Copyright (C) Sanko Robinson.

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

AUTHOR

Sanko Robinson <sanko@cpan.org>