home *** CD-ROM | disk | FTP | other *** search
/ Chip 1998 November / Chip_1998-11_cd.bin / tema / Cafe / jfc.bin / IconView.java < prev    next >
Text File  |  1998-02-26  |  5KB  |  168 lines

  1. /*
  2.  * @(#)IconView.java    1.14 97/12/09
  3.  * 
  4.  * Copyright (c) 1997 Sun Microsystems, Inc. All Rights Reserved.
  5.  * 
  6.  * This software is the confidential and proprietary information of Sun
  7.  * Microsystems, Inc. ("Confidential Information").  You shall not
  8.  * disclose such Confidential Information and shall use it only in
  9.  * accordance with the terms of the license agreement you entered into
  10.  * with Sun.
  11.  * 
  12.  * SUN MAKES NO REPRESENTATIONS OR WARRANTIES ABOUT THE SUITABILITY OF THE
  13.  * SOFTWARE, EITHER EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
  14.  * IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR
  15.  * PURPOSE, OR NON-INFRINGEMENT. SUN SHALL NOT BE LIABLE FOR ANY DAMAGES
  16.  * SUFFERED BY LICENSEE AS A RESULT OF USING, MODIFYING OR DISTRIBUTING
  17.  * THIS SOFTWARE OR ITS DERIVATIVES.
  18.  * 
  19.  */
  20. package com.sun.java.swing.text;
  21.  
  22. import java.awt.*;
  23. import com.sun.java.swing.Icon;
  24. import com.sun.java.swing.event.*;
  25.  
  26. /**
  27.  * Icon decorator that implements the view interface.  The 
  28.  * entire element is used to represent the icon.  This acts
  29.  * as a gateway from the display-only View implementations to
  30.  * interactive lightweight icons (that is, it allows icons
  31.  * to be embedded into the View hierarchy.  The parent of the icon
  32.  * is the container that is handed out by the associated view 
  33.  * factory.
  34.  *
  35.  * @author Timothy Prinzing
  36.  * @version 1.14 12/09/97
  37.  */
  38. public class IconView extends View  {
  39.  
  40.     /**
  41.      * Creates a new view that represents an element.
  42.      *
  43.      * @param elem the element to create a view for
  44.      */
  45.     public IconView(Element elem) {
  46.     super(elem);
  47.     AttributeSet attr = elem.getAttributes();
  48.     c = StyleConstants.getIcon(attr);
  49.     }
  50.  
  51.     // --- View methods ---------------------------------------------
  52.  
  53.     /**
  54.      * Paints the icon.
  55.      * The real paint behavior occurs naturally from the association
  56.      * that the icon has with its parent container (the same
  57.      * container hosting this view), so this simply allows us to 
  58.      * position the icon properly relative to the view.  Since
  59.      * the coordinate system for the view is simply the parent 
  60.      * containers, positioning the child icon is easy.
  61.      *
  62.      * @param g the rendering surface to use
  63.      * @param a the allocated region to render into
  64.      * @see View#paint
  65.      */
  66.     public void paint(Graphics g, Shape a) {
  67.     Rectangle alloc = a.getBounds();
  68.     c.paintIcon(getContainer(), g, alloc.x, alloc.y);
  69.     }
  70.  
  71.     /**
  72.      * Determines the preferred span for this view along an
  73.      * axis.
  74.      *
  75.      * @param axis may be either X_AXIS or Y_AXIS
  76.      * @returns  the span the view would like to be rendered into.
  77.      *           Typically the view is told to render into the span
  78.      *           that is returned, although there is no guarantee.  
  79.      *           The parent may choose to resize or break the view.
  80.      */
  81.     public float getPreferredSpan(int axis) {
  82.     switch (axis) {
  83.     case View.X_AXIS:
  84.         return c.getIconWidth();
  85.     case View.Y_AXIS:
  86.         return c.getIconHeight();
  87.     default:
  88.         throw new IllegalArgumentException("Invalid axis: " + axis);
  89.     }
  90.     }
  91.  
  92.     /**
  93.      * Determines the desired alignment for this view along an
  94.      * axis.  This is implemented to give the alignment to the
  95.      * bottom of the icon along the y axis, and the default
  96.      * along the x axis.
  97.      *
  98.      * @param axis may be either X_AXIS or Y_AXIS
  99.      * @returns the desired alignment.  This should be a value
  100.      *   between 0.0 and 1.0 where 0 indicates alignment at the
  101.      *   origin and 1.0 indicates alignment to the full span
  102.      *   away from the origin.  An alignment of 0.5 would be the
  103.      *   center of the view.
  104.      */
  105.     public float getAlignment(int axis) {
  106.     switch (axis) {
  107.     case View.Y_AXIS:
  108.         return 1;
  109.     default:
  110.         return super.getAlignment(axis);
  111.     }
  112.     }
  113.  
  114.     /**
  115.      * Provides a mapping from the document model coordinate space
  116.      * to the coordinate space of the view mapped to it.
  117.      *
  118.      * @param pos the position to convert
  119.      * @param a the allocated region to render into
  120.      * @return the bounding box of the given position
  121.      * @exception BadLocationException  if the given position does not represent a
  122.      *   valid location in the associated document
  123.      * @see View#modelToView
  124.      */
  125.     public Shape modelToView(int pos, Shape a) throws BadLocationException {
  126.     int p0 = getStartOffset();
  127.     int p1 = getEndOffset();
  128.     if ((pos >= p0) && (pos < p1)) {
  129.         Rectangle r = new Rectangle(a.getBounds());
  130.         r.width = 0;
  131.         return r;
  132.     }
  133.     return null;
  134.     }
  135.  
  136.     /**
  137.      * Provides a mapping from the view coordinate space to the logical
  138.      * coordinate space of the model.
  139.      *
  140.      * @param x the X coordinate
  141.      * @param y the Y coordinate
  142.      * @param a the allocated region to render into
  143.      * @return the location within the model that best represents the
  144.      *  given point of view
  145.      * @see View#viewToModel
  146.      */
  147.     public int viewToModel(float x, float y, Shape a) {
  148.     Rectangle alloc = a.getBounds();
  149.     return getStartOffset();
  150.     }
  151.  
  152.     /**
  153.      * Sets the size of the view.  Since Icon doesn't
  154.      * support this functionality, there is nothing 
  155.      * we can do.
  156.      *
  157.      * @param width the width
  158.      * @param height the height
  159.      */
  160.     public void setSize(float width, float height) {
  161.     }
  162.  
  163.     // --- member variables ------------------------------------------------
  164.  
  165.     private Icon c;
  166. }
  167.  
  168.