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

NAME

UI::Various::Tk::Radio - concrete implementation of UI::Various::Radio

SYNOPSIS

    # This module should never be used directly!
    # It is used indirectly via the following:
    use UI::Various::Radio;

ABSTRACT

This module is the specific implementation of UI::Various::Radio using Perl/Tk.

DESCRIPTION

The documentation of this module is only intended for developers of the package itself.

METHODS

_prepare - prepare UI element

    $ui_element->_prepare($row, $column);

example:

    my ($errors, $row) = (0, 0);
    while ($_ = $self->child)
    {   $errors += $_->_prepare($row++, 0);   }

parameters:

    $row                grid row
    $column             grid column

description:

Prepare the UI element for Tk. The method should only be called from UI::Various::Tk container elements!

returns:

1 in case of errors, 0 otherwise

SEE ALSO

UI::Various, UI::Various::Radio

LICENSE

Copyright (C) Thomas Dorner.

This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself. See LICENSE file for more details.

AUTHOR

Thomas Dorner <dorner (at) cpan (dot) org>