The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.

NAME

Gapp::Table - Table Widget

SYNOPSIS

    Gapp::Table->new(
                map => "
        +-------%------+>>>>>>>>>>>>>>>+
        |     Name     |               |
        +--------------~ Image         |
        | Keywords     |               |
        +-------+------+[--------------+
        ^       ' More | Something     |
        ^       |      +-----+--------]+
        _ Notes |      |     |     Foo |
        +-------+------+-----+---------+
        ^ Bar          | Baz           |
        +--------------+---------------+",
                content => [
                        ...
                ]
        );

OBJECT HIERARCHY

Gapp::Widget
....+-- Gapp::Container
........+-- Gapp::Table

DESCRIPTION

Gapp::Table will allow you to create complex table layouts with ease. Just draw your table and define your content and Gapp will handle packing the widgets and applying formatting.

See Gapp::TableMap for more information on drawing tables.

PROVIDED ATTRIBUTES

map
isa: Gapp::TableMap
coercions: Str

AUTHORS

Jeffrey Ray Hallock <jeffrey.hallock at gmail dot com>

COPYRIGHT & LICENSE

    Copyright (c) 2011-2012 Jeffrey Ray Hallock.

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