in reply to Re^4: Extensibility of Tk::TableMatrix
in thread Extensibility of Tk::TableMatrix
this line:
is rather simple, it is just looping over a list:$w_t->insert('end', ["row $_;", "$_ bla bla"]) for 'a'..'zzz';
The great advantage of Tcl::Tk over perl/Tk is that in latter you have only those Tk widgets that are happen to be specially adopted for perl, plus pure-perl widgets (and this is not really much)for my $hh ('a'..'zzz') { $w_t->insert('end', ["row $hh;", "$hh bla bla"]); }
Tcl::Tk gives you all zoo of tcl/tk widgets and provides you with a perl/Tk syntax. It is really thin glue between perl and tcl/tk
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^6: Extensibility of Tk::TableMatrix
by elef (Friar) on Feb 08, 2011 at 21:11 UTC | |
by vkon (Curate) on Feb 08, 2011 at 21:45 UTC | |
by elef (Friar) on Feb 09, 2011 at 13:25 UTC | |
by vkon (Curate) on Feb 09, 2011 at 13:33 UTC |