Re: Gtk2::Table
- From: Grant McLean <grant mclean net nz>
- To: Gtk Perl List <gtk-perl-list gnome org>
- Subject: Re: Gtk2::Table
- Date: Tue, 17 May 2005 10:20:12 +1200
On Mon, 2005-05-16 at 13:06 +0200, Louis-Xavier Storme wrote:
can anyone tell me how to retrieve a widget at a fixed position (col,
row) from a Gtk2::Table widget ?
I don't think the table widget has a method to do that, but the
information is available:
foreach my $child ($table->get_children) {
my $top = $table->child_get_property($child, 'top-attach');
my $left = $table->child_get_property($child, 'left-attach');
my $bottom = $table->child_get_property($child, 'bottom-attach');
my $right = $table->child_get_property($child, 'right-attach');
print "Child: " . $child->get_name . "\n";
print " Top : $top\n";
print " Left: $left\n";
print " Bottom: $bottom\n";
print " Right: $right\n";
}
Cheers
Grant
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]