in reply to Formatting Gtk Pages
Please don't use Gtk for new code. It is unmaintained, has never been complete, and binds a library that is obsolete. Have a look at Gtk2 instead.
What you're trying to do is quite simple with Gtk2::Ex::Simple::List.
my $slist = Gtk2::Ex::Simple::List->new ( 'Setting' => 'bool', 'Configuration' => 'int', 'Name' => 'text', 'Description' => 'text', ); @{$slist->{data}} = ( [ 0, 1, 'Configuration 1', 'Description' ], [ 0, 2, 'Another Configuration', 'Another Description' ], [ 0, 102, 'Third configuration', 'Third description' ], );
Makeshifts last the longest.
|
---|
Replies are listed 'Best First'. | |
---|---|
Re^2: Formatting Gtk Pages
by gnubbs (Beadle) on Feb 20, 2005 at 21:52 UTC | |
by gnubbs (Beadle) on Feb 25, 2005 at 15:58 UTC |