NAME
UI::Various::Curses::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 Curses::UI.
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
relative row
$column
relative column
description:
Prepare the UI element for Curses::UI. The method should only be called from UI::Various::Curses
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>