#!/usr/bin/perl -w use Tk; use strict; my $MW; my $Array_Index=""; my @Widget_List; my $Abort_Has_Run; MAIN: { debug("+MAIN"); my $my_ref; my @file_references ; my $i; $MW = MainWindow->new; $Abort_Has_Run = 0 ; push @Widget_List, $MW->title("test box 1"); push @Widget_List, $MW->Label(-text=>"Choose one option", -font=>"courierfont") -> pack; @file_references = ("Ref1", "Ref2", "Ref3", "Ref4"); $i=1; foreach $my_ref (@file_references) { push @Widget_List, $MW->Button(-text => "$my_ref", -command => [ \&do_button, "$my_ref,$i"]) -> pack; $i++; } MainLoop(); debug ("-MAIN"); } sub do_button { my $params; my $widget; debug("+do_button"); $params = shift; (my $ref, $Array_Index) = split (/,/,$params); debug("do_button Array_Index: $Array_Index"); # DO SOMETHING USEFUL HERE TO START A PROCESS # $MW->Label(-text=>"This line will cause a segfault") -> pack; foreach $widget (@Widget_List) { $widget->destroy(); } $MW->Button(-text => "Shutdown and close", -command => [ \&abort_routine]) -> pack; $MW->OnDestroy([\&abort_routine]); debug("-do_button"); } sub abort_routine { return if $Abort_Has_Run == 1 ; $Abort_Has_Run = 1 ; debug("+abort_routine"); # DO SOMETHING USEFUL HERE TO CLEAN UP THE PROCESS $MW->destroy(); debug("-abort_routine"); } sub debug { my @msg = shift; print @msg, "\n"; } #### # $MW->Label(-text=>"This line will cause a segfault") -> pack;