Adrian Witas > Curses-UI-Grid-0.14 > Curses::UI::Grid::Cell

Download:
Curses-UI-Grid-0.14.tar.gz

Dependencies

Annotate this POD

CPAN RT

Open  0
Report a bug
Module Version: 0.13   Source   Latest Release: Curses-UI-Grid-0.15

NAME ^

Curses::UI::Grid::Cell - Create and manipulate cell in grid model.

CLASS HIERARCHY ^

 Curses::UI::Grid
    |
    +----Curses::UI::Cell

SYNOPSIS ^

    use Curses::UI;
    my $cui = new Curses::UI;
    my $win = $cui->add('window_id', 'Window');
    my $grid =$win->add('mygrid','Grid');

    my $row1=$grid->add_cell( -id=>'cell1'
                             ,-fg=>'blue'
                             ,-bg->'red'
                             ,-frozen=>1
                             ,-align => 'R'
                           );

DESCRIPTION ^

       Curses::UI::Grid::Cell is a widget that can be 
       used to manipulate cell in grid model


      See exampes/grid-demo.pl in the distribution for a short demo.

STANDARD OPTIONS ^

       -parent,-fg,-bg,-focusable,-width

For an explanation of these standard options, see Curses::UI::Widget.

WIDGET-SPECIFIC OPTIONS ^

METHODS ^

WIDGET-SPECIFIC METHODS ^

SEE ALSO ^

Crses::UI::Grid::Row Curses::UI::Grid

AUTHOR ^

Copyright (c) 2004 by Adrian Witas. All rights reserved.

COPYRIGHT AND LICENSE ^

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