--- loncom/homework/imagechoice.pm 2004/01/12 19:53:54 1.2
+++ loncom/homework/imagechoice.pm 2005/08/25 19:33:14 1.9
@@ -1,4 +1,4 @@
-# $Id: imagechoice.pm,v 1.2 2004/01/12 19:53:54 albertel Exp $
+# $Id: imagechoice.pm,v 1.9 2005/08/25 19:33:14 albertel Exp $
#
# Copyright Michigan State University Board of Trustees
#
@@ -25,15 +25,18 @@
package Apache::imagechoice;
use strict;
use Apache::Constants qw(:common :http);
-
+use Apache::lonnet;
sub deletedata {
my ($id)=@_;
- &Apache::lonnet::delenv("imagechoice\\.$id");
+ &Apache::lonnet::delenv("imagechoice\\.$id\\.coords");
}
sub closewindow {
- my ($r,$output,$filename)=@_;
+ my ($r,$output,$filename,$needimage,$display)=@_;
+ if ($needimage) {
+ $needimage="";
+ }
$r->print(<<"ENDSUBM");
The X coordinate is $x
\n"; } - if ($ENV{"imagechoice.$id.formy"}) { - $output.='opener.document.forms.'.$ENV{"imagechoice.$id.formname"}.'.'.$ENV{"imagechoice.$id.formy"}. - '.value='.$ENV{"imagechoice.$id.y"}.';'; + if ($env{"imagechoice.$id.formy"}) { + $output.='opener.document.forms.'.$env{"imagechoice.$id.formname"}.'.'.$env{"imagechoice.$id.formy"}.'.value='.$y.';'; + $display.="The Y coordinate is $y
\n"; } - } elsif ($mode eq 'pairthree') { - my $output=''; - my $outputpair='('.$ENV{"imagechoice.$id.selx"}.','.$ENV{"imagechoice.$id.sely"}.')-('.$ENV{"imagechoice.$id.x"}.','.$ENV{"imagechoice.$id.y"}.')'; - - if ($ENV{"imagechoice.$id.formcoord"}) { - $output.='opener.document.forms.'.$ENV{"imagechoice.$id.formname"}.'.'.$ENV{"imagechoice.$id.formcoord"}. - '.value="'.$outputpair.'";'; - } - } elsif ($mode eq 'polygon') { + } elsif ($type eq 'polygon' or $type eq 'box') { my $coordstr; while (@coords) { $coordstr.='('.shift(@coords).','.shift(@coords).')-'; } chop($coordstr); - $output.='opener.document.forms.'.$ENV{"imagechoice.$id.formname"}.'.'.$ENV{"imagechoice.$id.formcoord"}.'.value="'.$coordstr.'";'; + $display.="The selected coordinates are $coordstr
\n"; + $output.='opener.document.forms.'.$env{"imagechoice.$id.formname"}.'.'.$env{"imagechoice.$id.formcoord"}.'.value="'.$coordstr.'";'; + } + if ($display) { + $display.="If this window fails to close you may need to manually replace the old coordinates with the above value.
\n"; } &deletedata($id); - &closewindow($r,$output,$filename); + &closewindow($r,$output,$filename,$needimage,$display); } sub getcoord { - my ($r,$mode,$filename,$id)=@_; - my $heading='Position'; + my ($r,$type,$filename,$id)=@_; + my $heading='Select Position on Image'; my $nextstage=''; - if ($mode eq 'pair') { - $heading='First Coordinate'; - $nextstage=''; - } elsif ($mode eq 'pairtwo') { - $heading='Second Coordinate'; - $nextstage=''; - } elsif ($mode eq 'polygon') { + if ($type eq 'box') { + my (undef,@coords)=split(':',$env{"imagechoice.$id.coords"}); + my $step=scalar(@coords)/2; + if ($step == 0) { + $heading='Select First Coordinate on Image'; + #$nextstage=''; + } elsif ($step == 1) { + $heading='Select Second Coordinate on Image'; + #$nextstage=''; + } else { + $heading='Select Finish to store selection.'; + $nextstage=''; + } + } elsif ($type eq 'polygon') { $heading='Enter Coordinate or click finish to close Polygon'; $nextstage=''; + } elsif ($type eq 'point') { + $heading='Click to select a Coordinate or click Finish to store current selection.'; + $nextstage=''; } $r->print(<<"END"); -