#! /usr/bin/env perl # Demo programme. # 3 panels, one each containing a exit button, a StrfClock and a # calender. BEGIN { $^W = 1; } use 5; use lib './blib/lib'; use Tk; use Tk::Panel; use Tk::StrfClock; use Tk::Month; $top=MainWindow->new(); $frame=$top->Frame()->pack(-expand=>1, -fill=>'x'); # Exit button in a panel. $f = $frame->Panel(-toggle=>0)->pack(-side=>'right'); $m = $f->Button( -text => 'Exit', -command => sub { exit; }, )->pack(); # Strftime based clock in a panel with title. $f = $frame->Panel(-text=>'Tk::StrfClock', -flatheight=>'flat')->pack(-side=>'left'); $m = $f->StrfClock()->pack(); # Month based calender in a panel with title. $f = $top->Panel(-text=>'Tk::Month')->pack(-anchor=>'nw'); $m = $f->Month()->pack(); # Run. MainLoop;