Re: Aligning in a Table
- From: Dominik <theoniq gmail com>
- To: muppet <scott asofyet org>
- Subject: Re: Aligning in a Table
- Date: Sat, 19 Jul 2008 10:43:31 -0400
Thanks, that put me on the right track. The reason I'm using tables is to save space for a progressbar or other widgets to the left or right.
This is what ended up working for me:
my $table = Gtk2::Table->new(3, 2);
$table->attach($menubar, 0, 2, 0, 1, [ 'fill' ], [ 'fill' ], 0, 0);
$table->attach($notebook,0, 2, 1, 2, [qw(expand fill)], [qw(expand fill)], 0, 0);
$table->attach($statusbar, 0, 2, 2, 3, [ 'fill' ], [ 'fill' ], 0, 0);
Thanks again,
Dominik
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]