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

  1. // $Header: z:/admin/metro_examples/java/demo/ImageMap/rcs/TickerArea.java 1.1 1997/02/06 00:30:17 IPGIntel-2 Exp $ 
  2. /*
  3.  * @(#)TickerArea.java    1.3 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. import java.awt.Color;
  34. import java.awt.Font;
  35. import java.awt.FontMetrics;
  36. import java.util.StringTokenizer;
  37.  
  38. /**
  39.  * This ImageArea renders a string of text that constantly scrolls across
  40.  * the indicated area of the ImageMap in the specified color.
  41.  *
  42.  * @author    Jim Graham
  43.  * @version    1.3, 12/06/96
  44.  */
  45. class TickerArea extends ImageMapArea {
  46.  
  47.     String tickertext;
  48.     Color  tickercolor;
  49.     Font   tickerfont;
  50.     int    speed;        // In pixels per second for scrolling
  51.  
  52.     int tickerx;
  53.     int tickery;
  54.     int tickerlen;
  55.     long lasttick;
  56.  
  57.     public void handleArg(String s) {
  58.     StringTokenizer st = new StringTokenizer(s, ",");
  59.  
  60.     tickertext = st.nextToken();
  61.     tickercolor = Color.black;
  62.     speed = 100;
  63.     String fontname = "TimesRoman";
  64.  
  65.     if (st.hasMoreTokens()) {
  66.         fontname = st.nextToken();
  67.         if (st.hasMoreTokens()) {
  68.         String str = st.nextToken();
  69.         if (str.startsWith("#")) {
  70.             str = str.substring(1);
  71.         }
  72.         try {
  73.             int colorval = Integer.parseInt(str, 16);
  74.             tickercolor = new Color((colorval >> 16) & 0xff,
  75.                         (colorval >> 8) & 0xff,
  76.                         (colorval >> 0) & 0xff);
  77.         } catch (Exception e) {
  78.             tickercolor = Color.black;
  79.         }
  80.         if (st.hasMoreTokens()) {
  81.             str = st.nextToken();
  82.             try {
  83.             speed = Integer.parseInt(str);
  84.             } catch (Exception e) {
  85.             speed = 100;
  86.             }
  87.         }
  88.         }
  89.     }
  90.  
  91.     FontMetrics fm;
  92.     int size;
  93.     int nextsize = H;
  94.     do {
  95.         size = nextsize;
  96.         tickerfont = new Font(fontname, Font.PLAIN, size);
  97.         fm = parent.getFontMetrics(tickerfont);
  98.         nextsize = (size * 9) / 10;
  99.     } while (fm.getHeight() > H && size > 0);
  100.     tickerlen = fm.stringWidth(tickertext);
  101.     tickery = fm.getAscent();
  102.     }
  103.  
  104.     public void getMedia() {
  105.     tickerx = 0;
  106.     repaint();
  107.     lasttick = System.currentTimeMillis();
  108.     }
  109.  
  110.     public boolean animate() {
  111.     long curtick = System.currentTimeMillis();
  112.     tickerx -= ((speed * (curtick - lasttick)) / 1000);
  113.     if (tickerx > W || tickerx + tickerlen < 0) {
  114.         tickerx = W;
  115.     }
  116.     repaint();
  117.     lasttick = curtick;
  118.     return true;
  119.     }
  120.  
  121.     public void highlight(Graphics g) {
  122.     g.setColor(tickercolor);
  123.     g.setFont(tickerfont);
  124.     g.drawString(tickertext, X+tickerx, Y+tickery);
  125.     }
  126. }
  127.  
  128.