home *** CD-ROM | disk | FTP | other *** search
/ Internet Gallery / INTERGAL.bin / intergal / prgs / idv21 / data.z / DrawTest.bsp < prev    next >
Text File  |  1995-10-08  |  6KB  |  236 lines

  1. /*
  2.  * @(#)DrawTest.java    1.14 95/09/01 Sami Shaio
  3.  *
  4.  * Copyright (c) 1994-1995 Sun Microsystems, Inc. All Rights Reserved.
  5.  *
  6.  * Permission to use, copy, modify, and distribute this software
  7.  * and its documentation for NON-COMMERCIAL or COMMERCIAL purposes and
  8.  * without fee is hereby granted. 
  9.  * Please refer to the file http://java.sun.com/copy_trademarks.html
  10.  * for further important copyright and trademark information and to
  11.  * http://java.sun.com/licensing.html for further important licensing
  12.  * information for the Java (tm) Technology.
  13.  * 
  14.  * SUN MAKES NO REPRESENTATIONS OR WARRANTIES ABOUT THE SUITABILITY OF
  15.  * THE SOFTWARE, EITHER EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED
  16.  * TO THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A
  17.  * PARTICULAR PURPOSE, OR NON-INFRINGEMENT. SUN SHALL NOT BE LIABLE FOR
  18.  * ANY DAMAGES SUFFERED BY LICENSEE AS A RESULT OF USING, MODIFYING OR
  19.  * DISTRIBUTING THIS SOFTWARE OR ITS DERIVATIVES.
  20.  * 
  21.  * THIS SOFTWARE IS NOT DESIGNED OR INTENDED FOR USE OR RESALE AS ON-LINE
  22.  * CONTROL EQUIPMENT IN HAZARDOUS ENVIRONMENTS REQUIRING FAIL-SAFE
  23.  * PERFORMANCE, SUCH AS IN THE OPERATION OF NUCLEAR FACILITIES, AIRCRAFT
  24.  * NAVIGATION OR COMMUNICATION SYSTEMS, AIR TRAFFIC CONTROL, DIRECT LIFE
  25.  * SUPPORT MACHINES, OR WEAPONS SYSTEMS, IN WHICH THE FAILURE OF THE
  26.  * SOFTWARE COULD LEAD DIRECTLY TO DEATH, PERSONAL INJURY, OR SEVERE
  27.  * PHYSICAL OR ENVIRONMENTAL DAMAGE ("HIGH RISK ACTIVITIES").  SUN
  28.  * SPECIFICALLY DISCLAIMS ANY EXPRESS OR IMPLIED WARRANTY OF FITNESS FOR
  29.  * HIGH RISK ACTIVITIES.
  30.  */
  31. import java.awt.*;
  32. import java.applet.*;
  33.  
  34. import java.util.Vector;
  35.  
  36. public class DrawTest extends Applet {
  37.     public void init() {
  38.     setLayout(new BorderLayout());
  39.     DrawPanel dp = new DrawPanel();
  40.     add("Center", dp);
  41.     add("South",new DrawControls(dp));
  42.     }
  43.  
  44.     public boolean handleEvent(Event e) {
  45.     switch (e.id) {
  46.       case Event.WINDOW_DESTROY:
  47.         System.exit(0);
  48.         return true;
  49.       default:
  50.         return false;
  51.     }
  52.     }
  53.  
  54.     public static void main(String args[]) {
  55.     Frame f = new Frame("DrawTest");
  56.     DrawTest drawTest = new DrawTest();
  57.     drawTest.init();
  58.     drawTest.start();
  59.  
  60.     f.add("Center", drawTest);
  61.     f.resize(300, 300);
  62.     f.show();
  63.     }
  64. }
  65.  
  66. class DrawPanel extends Panel {
  67.     public static final int LINES = 0;
  68.     public static final int POINTS = 1;
  69.     int       mode = LINES;
  70.     Vector lines = new Vector();
  71.     Vector colors = new Vector();
  72.     int x1,y1;
  73.     int x2,y2;
  74.     int xl, yl;
  75.  
  76.     public DrawPanel() {
  77.     setBackground(Color.white);
  78.     }
  79.  
  80.     public void setDrawMode(int mode) {
  81.     switch (mode) {
  82.       case LINES:
  83.       case POINTS:
  84.         this.mode = mode;
  85.         break;
  86.       default:
  87.         throw new IllegalArgumentException();
  88.     }
  89.     }
  90.  
  91.     public boolean handleEvent(Event e) {
  92.     switch (e.id) {
  93.       case Event.MOUSE_DOWN:
  94.         switch (mode) {
  95.           case LINES:
  96.         x1 = e.x;
  97.         y1 = e.y;
  98.         x2 = -1;
  99.         break;
  100.           case POINTS:
  101.           default:
  102.         colors.addElement(getForeground());
  103.         lines.addElement(new Rectangle(e.x, e.y, -1, -1));
  104.         x1 = e.x;
  105.         y1 = e.y;
  106.         repaint();
  107.         break;
  108.         }
  109.         return true;
  110.       case Event.MOUSE_UP:
  111.         switch (mode) {
  112.           case LINES:
  113.         colors.addElement(getForeground());
  114.         lines.addElement(new Rectangle(x1, y1, e.x, e.y));
  115.         x2 = xl = -1;
  116.         break;
  117.           case POINTS:
  118.           default:
  119.         break;
  120.         }
  121.         repaint();
  122.         return true;
  123.       case Event.MOUSE_DRAG:
  124.         switch (mode) {
  125.           case LINES:
  126.         xl = x2;
  127.         yl = y2;
  128.         x2 = e.x;
  129.         y2 = e.y;
  130.         break;
  131.           case POINTS:
  132.           default:
  133.         colors.addElement(getForeground());
  134.         lines.addElement(new Rectangle(x1, y1, e.x, e.y));
  135.         x1 = e.x;
  136.         y1 = e.y;
  137.         break;
  138.         }
  139.         repaint();
  140.         return true;
  141.       case Event.WINDOW_DESTROY:
  142.         System.exit(0);
  143.         return true;
  144.       default:
  145.         return false;
  146.     }
  147.     }
  148.  
  149.     public void paint(Graphics g) {
  150.     int np = lines.size();
  151.  
  152.     /* draw the current lines */
  153.     g.setColor(getForeground());
  154.     g.setPaintMode();
  155.     for (int i=0; i < np; i++) {
  156.         Rectangle p = (Rectangle)lines.elementAt(i);
  157.         g.setColor((Color)colors.elementAt(i));
  158.         if (p.width != -1) {
  159.         g.drawLine(p.x, p.y, p.width, p.height);
  160.         } else {
  161.         g.drawLine(p.x, p.y, p.x, p.y);
  162.         }
  163.     }
  164.     if (mode == LINES) {
  165.         g.setXORMode(getBackground());
  166.         if (xl != -1) {
  167.         /* erase the last line. */
  168.         g.drawLine(x1, y1, xl, yl);
  169.         }
  170.         g.setColor(getForeground());
  171.         g.setPaintMode();
  172.         if (x2 != -1) {
  173.         g.drawLine(x1, y1, x2, y2);
  174.         }
  175.     }
  176.     }
  177. }
  178.  
  179.  
  180. class DrawControls extends Panel {
  181.     DrawPanel target;
  182.  
  183.     public DrawControls(DrawPanel target) {
  184.     this.target = target;
  185.     setLayout(new FlowLayout());
  186.     setBackground(Color.lightGray);
  187.     target.setForeground(Color.red);
  188.     CheckboxGroup group = new CheckboxGroup();
  189.     Checkbox b;
  190.     add(b = new Checkbox(null, group, false));
  191.     b.setBackground(Color.red);
  192.     add(b = new Checkbox(null, group, false));
  193.     b.setBackground(Color.green);
  194.     add(b = new Checkbox(null, group, false));
  195.     b.setBackground(Color.blue);
  196.     add(b = new Checkbox(null, group, false));
  197.     b.setBackground(Color.pink);
  198.     add(b = new Checkbox(null, group, false));
  199.     b.setBackground(Color.orange);
  200.     add(b = new Checkbox(null, group, true));
  201.     b.setBackground(Color.black);
  202.     target.setForeground(b.getForeground());
  203.     Choice shapes = new Choice();
  204.     shapes.addItem("Lines");
  205.     shapes.addItem("Points");
  206.     shapes.setBackground(Color.lightGray);
  207.     add(shapes);
  208.     }
  209.  
  210.     public void paint(Graphics g) {
  211.     Rectangle r = bounds();
  212.  
  213.     g.setColor(Color.lightGray);
  214.     g.draw3DRect(0, 0, r.width, r.height, false);
  215.     }
  216.  
  217.     public boolean action(Event e, Object arg) {
  218.     if (e.target instanceof Checkbox) {
  219.         target.setForeground(((Component)e.target).getBackground());
  220.     } else if (e.target instanceof Choice) {
  221.         String choice = (String)arg;
  222.  
  223.         if (choice.equals("Lines")) {
  224.         target.setDrawMode(DrawPanel.LINES);
  225.         } else if (choice.equals("Points")) {
  226.         target.setDrawMode(DrawPanel.POINTS);
  227.         }
  228.     }
  229.     return true;
  230.     }
  231. }
  232.     
  233.  
  234.  
  235.     
  236.