http://www.perlmonks.org?node_id=948566

aslewis has asked for the wisdom of the Perl Monks concerning the following question:

Gtk2::Table->new(3, 3, TRUE);

Is there a good way to set the width and height of the cells in this table?

The only method I can think of is to set the size of each cell individually:

$widget->set_size_request(x, y);

That would be acceptable for a 3x3 table, but perhaps not for a 100x100 table. Is there a more efficient way to do it?