home *** CD-ROM | disk | FTP | other *** search
/ BUG 15 / BUGCD1998_06.ISO / aplic / jbuilder / jsamples.z / ClickArea.java < prev    next >
Text File  |  1997-07-30  |  4KB  |  103 lines

  1. // $Header: z:/admin/metro_examples/java/demo/ImageMap/rcs/ClickArea.java 1.1 1997/02/06 00:30:08 IPGIntel-2 Exp $ 
  2. /*
  3.  * @(#)ClickArea.java    1.6 96/12/06
  4.  *
  5.  * Copyright (c) 1994-1996 Sun Microsystems, Inc. All Rights Reserved.
  6.  *
  7.  * Sun grants you ("Licensee") a non-exclusive, royalty free, license to use,
  8.  * modify and redistribute this software in source and binary code form,
  9.  * provided that i) this copyright notice and license appear on all copies of
  10.  * the software; and ii) Licensee does not utilize the software in a manner
  11.  * which is disparaging to Sun.
  12.  *
  13.  * This software is provided "AS IS," without a warranty of any kind. ALL
  14.  * EXPRESS OR IMPLIED CONDITIONS, REPRESENTATIONS AND WARRANTIES, INCLUDING ANY
  15.  * IMPLIED WARRANTY OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE OR
  16.  * NON-INFRINGEMENT, ARE HEREBY EXCLUDED. SUN AND ITS LICENSORS SHALL NOT BE
  17.  * LIABLE FOR ANY DAMAGES SUFFERED BY LICENSEE AS A RESULT OF USING, MODIFYING
  18.  * OR DISTRIBUTING THE SOFTWARE OR ITS DERIVATIVES. IN NO EVENT WILL SUN OR ITS
  19.  * LICENSORS BE LIABLE FOR ANY LOST REVENUE, PROFIT OR DATA, OR FOR DIRECT,
  20.  * INDIRECT, SPECIAL, CONSEQUENTIAL, INCIDENTAL OR PUNITIVE DAMAGES, HOWEVER
  21.  * CAUSED AND REGARDLESS OF THE THEORY OF LIABILITY, ARISING OUT OF THE USE OF
  22.  * OR INABILITY TO USE SOFTWARE, EVEN IF SUN HAS BEEN ADVISED OF THE
  23.  * POSSIBILITY OF SUCH DAMAGES.
  24.  *
  25.  * This software is not designed or intended for use in on-line control of
  26.  * aircraft, air traffic, aircraft navigation or aircraft communications; or in
  27.  * the design, construction, operation or maintenance of any nuclear
  28.  * facility. Licensee represents and warrants that it will not use or
  29.  * redistribute the Software for such purposes.
  30.  */
  31.  
  32. import java.awt.Graphics;
  33.  
  34. /**
  35.  * An click feedback ImageArea class.
  36.  * This class extends the basic ImageArea Class to show the locations
  37.  * of clicks in the image in the status message area.  This utility
  38.  * ImageArea class is useful when setting up ImageMaps.
  39.  *
  40.  * @author     Jim Graham
  41.  * @version     1.6, 12/06/96
  42.  */
  43. class ClickArea extends ImageMapArea {
  44.     /** The X location of the last mouse press. */
  45.     int startx;
  46.     /** The Y location of the last mouse press. */
  47.     int starty;
  48.     /** A boolean to indicate whether we are currently being dragged. */
  49.     boolean dragging;
  50.  
  51.     static String ptstr(int x, int y) {
  52.     return "("+x+", "+y+")";
  53.     }
  54.  
  55.     /**
  56.      * When the user presses the mouse button, start showing coordinate
  57.      * feedback in the status message line.
  58.      */
  59.     public boolean press(int x, int y) {
  60.     showStatus("Clicked at "+ptstr(x, y));
  61.     startx = x;
  62.     starty = y;
  63.     dragging = true;
  64.     return false;
  65.     }
  66.  
  67.     /**
  68.      * Update the coordinate feedback every time the user moves the mouse
  69.      * while he has the button pressed.
  70.      */
  71.     public boolean drag(int x, int y) {
  72.     showStatus("Rectangle from "+ptstr(startx, starty)
  73.            +" to "+ptstr(x, y)
  74.            +" is "+(x-startx)+"x"+(y-starty));
  75.     return false;
  76.     }
  77.  
  78.     /**
  79.      * Update the coordinate feedback one last time when the user releases
  80.      * the mouse button.
  81.      */
  82.     public boolean lift(int x, int y) {
  83.     dragging = false;
  84.     return drag(x, y);
  85.     }
  86.  
  87.     /**
  88.      * This utility method returns the status string this area wants to
  89.      * put into the status bar.  If this area is currently animating
  90.      * a message, then that message takes precedence over any other area
  91.      * that a higher stacked area may want to display, otherwise the
  92.      * message from the higher stacked area takes precedence.
  93.      */
  94.     public String getStatus(String prevmsg) {
  95.     if (dragging) {
  96.         return (status != null) ? status : prevmsg;
  97.     } else {
  98.         return (prevmsg == null) ? status : prevmsg;
  99.     }
  100.     }
  101. }
  102.  
  103.