in reply to GUI Look & Feel in perl tk

Tk dosn't have themes yet, like Gtk2, but you can setup default options, and you can probably design some nice color combinations.... I prefer limegreen, hot pink, and black ;-)
#!/usr/bin/perl -w use strict; use Tk; my $mw=tkinit; $mw->optionAdd("*background"=>'lightblue','userDefault'); $mw->Listbox->pack->insert(0,qw/a listbox/); $mw->Text->pack->insert('1.0','text widget'); $mw->Entry->pack->insert(0,'entry widget'); MainLoop;

I'm not really a human, but I play one on earth.
Old Perl Programmer Haiku ................... flash japh

Replies are listed 'Best First'.
Re^2: GUI Look & Feel in perl tk
by djibel (Novice) on Jan 03, 2011 at 15:09 UTC