1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171
|
package Tk::Dialog;
use vars qw($VERSION);
$VERSION = '3.017'; # $Id: //depot/Tk8/Tk/Dialog.pm#17$
# Dialog - a translation of `tk_dialog' from Tcl/Tk to TkPerl (based on
# John Stoffel's idea).
#
# Stephen O. Lidie, Lehigh University Computing Center. 94/12/27
# lusol@Lehigh.EDU
# Documentation after __END__
use Carp;
use strict;
require Tk::Toplevel;
use base qw(Tk::Toplevel);
Construct Tk::Widget 'Dialog';
sub Populate
{
# Dialog object constructor. Uses `new' method from base class
# to create object container then creates the dialog toplevel.
my($cw, $args) = @_;
$cw->SUPER::Populate($args);
my ($w_bitmap,$w_but,$pad1,$pad2);
my $buttons = delete $args->{'-buttons'};
$buttons = ['OK'] unless (defined $buttons);
my $default_button = delete $args->{-default_button};
$default_button = $buttons->[0] unless (defined $default_button);
# Create the Toplevel window and divide it into top and bottom parts.
$cw->{'selected_button'} = '';
my (@pl) = (-side => 'top', -fill => 'both');
($pad1, $pad2) =
([-padx => '3m', -pady => '3m'], [-padx => '3m', -pady => '2m']);
$cw->iconname('Dialog');
$cw->protocol('WM_DELETE_WINDOW' => sub {});
$cw->transient($cw->Parent->toplevel);
$cw->withdraw;
my $w_top = $cw->Frame(Name => 'top',-relief => 'raised', -borderwidth => 1);
my $w_bot = $cw->Frame(Name => 'bot',-relief => 'raised', -borderwidth => 1);
$w_top->pack(@pl);
$w_bot->pack(@pl);
# Fill the top part with the bitmap and message.
@pl = (-side => 'left');
$w_bitmap = $w_top->Label(Name => 'bitmap');
$w_bitmap->pack(@pl, @$pad1);
my $w_msg = $w_top->Label( -wraplength => '3i', -justify => 'left' );
$w_msg->pack(-side => 'right', -expand => 1, -fill => 'both', @$pad1);
# Create a row of buttons at the bottom of the dialog.
my($w_default_button, $bl) = (undef, '');
foreach $bl (@$buttons) {
$w_but = $w_bot->Button(
-text => $bl,
-command => [
sub {
$_[0]->{'selected_button'} = $_[1];
}, $cw, $bl,
]
);
if ($bl eq $default_button) {
$w_default_button = $w_bot->Frame(
-relief => 'sunken',
-borderwidth => 1
);
$w_but->raise($w_default_button);
$w_default_button->pack(@pl, -expand => 1, @$pad2);
$w_but->pack(-in => $w_default_button, -padx => '2m',
-pady => '2m');
$cw->bind(
'<Return>' => [
sub {
$_[1]->flash;
$_[2]->{'selected_button'} = $_[3];
}, $w_but, $cw, $bl,
]
);
} else {
$w_but->pack(@pl, -expand => 1, @$pad2);
}
} # forend all buttons
$cw->Advertise(message => $w_msg);
$cw->Advertise(bitmap => $w_bitmap );
$cw->{'default_button'} = $w_default_button;
$cw->ConfigSpecs(
-image => ['bitmap',undef,undef,undef],
-bitmap => ['bitmap',undef,undef,undef],
-fg => ['ADVERTISED','foreground','Foreground','black'],
-foreground => ['ADVERTISED','foreground','Foreground','black'],
-bg => ['DESCENDANTS','background','Background',undef],
-background => ['DESCENDANTS','background','Background',undef],
-font => ['message','font','Font', '-*-Times-Medium-R-Normal--*-180-*-*-*-*-*-*'],
DEFAULT => ['message',undef,undef,undef]
);
$cw->Delegates('Construct' => $w_top);
} # end Dialog constructor
sub Show {
# Dialog object public method - display the dialog.
my ($cw, $grab_type) = @_;
croak "Dialog: `Show' method requires at least 1 argument"
if scalar @_ < 1 ;
my $old_focus = $cw->focusSave;
my $old_grab = $cw->grabSave;
# Update all geometry information, center the dialog in the display
# and deiconify it
$cw->Popup();
# set a grab and claim the focus.
if (defined $grab_type && length $grab_type) {
$cw->grab($grab_type);
} else {
$cw->grab;
}
$cw->waitVisibility;
$cw->update;
if (defined $cw->{'default_button'})
{
$cw->{'default_button'}->focus;
}
else
{
$cw->focus;
}
# Wait for the user to respond, restore the focus and grab, withdraw
# the dialog and return the label of the selected button.
$cw->waitVariable(\$cw->{'selected_button'});
$cw->grabRelease;
$cw->withdraw;
&$old_focus;
&$old_grab;
return $cw->{'selected_button'};
} # end Dialog Show method
1;
__END__
=cut
|