in reply to Re^2: Toplevel Window References in Perl Tk
in thread Toplevel Window References in Perl Tk
#!/usr/bin/perl use warnings; use strict; use Tk; my $count = 0; my %tls; #hash to store the toplevels my $mw = MainWindow->new; $mw->title( "MainWindow" ); my $spawn_button = $mw->Button( -text => "Toplevel", -command => \&do_Toplevel )->pack(); my $report_button = $mw->Button( -text => "Report", -command => \&report )->pack(); MainLoop; sub do_Toplevel { my $num = $count++; $tls{$num}{'tl'} = $mw->Toplevel(); $tls{$num}{'tl'}->protocol('WM_DELETE_WINDOW' => sub { print "do nothing here\n"; #prevents destruction of $tl #by WM control }); $tls{$num}{'tl'}->title( "Toplevel $count" ); $tls{$num}{'frame'}= $tls{$num}{'tl'}->Frame() ->pack(-expand=>1, -fill=>'both'); $tls{$num}{'label'} = $tls{$num}{'frame'}->Label(-text=>$count) ->pack(-expand=>1, -fill=>'x'); $tls{$num}{'tl'}->Button( -text => "Close", -command => sub { $tls{$num}{'tl'}->withdraw; } )->pack; } sub report { foreach my $num (keys %tls){ print "toplevel $num has frame ", $tls{$num}{'frame'},"\n"; } }
|
|---|