NAME
Fl::RadioButton - Button that Turns Siblings Off
Synopsis
use Fl;
my $button = Fl::RadioButton->new(0, 0, 100, 200, 'Hello, World!');
$button->callback(sub {print q[It's dat boi]} );
Description
You're probably looking for Fl::RadioRoundButton.
The Fl::RadioButton class represents a button that, when turned on, turns off all other buttons in the same group. It looks like a normal button though.
Methods
Fl::RadioButton inherits from Fl::Button and Fl::Widget. On top of that, it exposes the following methods...
new(...)
my $button_a = Fl::RadioButton->new(0, 0, 250, 500, 'Important Stuff');
my $button_b = Fl::RadioButton->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>