-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
a56f7cd
commit bff6acd
Showing
1 changed file
with
18 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,13 +2,12 @@ | |
|
||
## Aligner for Parallel Corpora | ||
|
||
Version 0.3 Copyright (C) 2003 | ||
Brian Rassier, [email protected] | ||
Ted Pedersen, [email protected] | ||
University of Minnesota, Duluth | ||
|
||
Released January 27, 2003 | ||
Copyright (C) 2003 | ||
|
||
* Brian Rassier, [email protected] | ||
* Ted Pedersen, [email protected] | ||
* University of Minnesota, Duluth | ||
|
||
http://www.d.umn.edu/~tpederse/parallel.html | ||
|
||
|
||
|
@@ -52,9 +51,19 @@ script which contains the following: | |
use Tk::SimpleFileSelect; | ||
|
||
my $mw = MainWindow->new; | ||
$e1 = $mw->HistEntry(-textvariable,\$file1, -background,"white", -takefocus,1)->pack(-side,'top', -anchor,'w'); | ||
$mw->Button(-text,'Find A File',-command,\&find)->pack(-side,'bottom'); | ||
$mw->Button(-text,'Close',-command,sub{exit;})->pack(-side,'bottom'); | ||
$e1 = $mw->HistEntry( | ||
-textvariable => \$file1, | ||
-background => "white", | ||
-takefocus => 1, | ||
)->pack(-side,'top', -anchor,'w'); | ||
$mw->Button( | ||
-text => 'Find A File', | ||
-command => \&find, | ||
)->pack(-side => 'bottom'); | ||
$mw->Button( | ||
-text => 'Close', | ||
-command => sub{exit;}, | ||
)->pack(-side => 'bottom'); | ||
|
||
MainLoop; | ||
|
||
|