NAME
UI::Various::Tk::Button - concrete implementation of UI::Various::Button
SYNOPSIS
# This module should never be used directly!
# It is used indirectly via the following:
use UI::Various::Button;
ABSTRACT
This module is the specific implementation of UI::Various::Button 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::Button
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>