
Curses::UI::Grid::Row - Create and manipulate row in grid model.

Curses::UI::Grid
|
+----Curses::UI::Row

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_row( -fg=>'blue'
,-bg->'white' );

Curses::UI::Grid::Row is a widget that can be used to
manipulate row in grid model
See exampes/grid-demo.pl in the distribution for a short demo.

-parent,-fg,-bg


Constructs a new grid object using options in the hash OPTIONS.
Lays out the row object with cells, makes sure it fits on the available screen.
Draws the grid object along with cells. If BOOLEAN is true, the screen is not updated after drawing.
By default, BOOLEAN is true so the screen is updated.

Lays out the row with cells, makes sure it fits on the available screen.
Draws the row object along with cells. If BOOLEAN is true, the screen is not updated after drawing.
By default, BOOLEAN is true so the screen is updated.
This routine will set value for given cell. CELL could by either cell object or id cell.
This routine will set values for cells. HASH should contain cells id as keys. This method will not affect cells which are not given in HASH.
This routine will return value for given cell. CELL could by either cell object or id cell.
This routine will return HASH values for row cells. HASH will be contain cells id as keys.
This routine will return HASH reference for given row values.
This routine could set or get foreground color using -fg_ option . If -fg_ is NULL then -fg or parent fg color is return.
This routine could set or get background color using -bg_ option. If -bg_ is NULL then -bg or parent bg color is return.
This routine will set or get value for cell and active row.

Curses::UI::Grid::Cell Curses::UI::Grid

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

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