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

  1. /*
  2.  * @(#)ComponentView.java    1.17 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.event.*;
  24.  
  25. /**
  26.  * Component decorator that implements the view interface.  The 
  27.  * entire element is used to represent the component.  This acts
  28.  * as a gateway from the display-only View implementations to
  29.  * interactive lightweight components (ie it allows components
  30.  * to be embedded into the View hierarchy.  The parent of the component
  31.  * is the container that is handed out by the associated view 
  32.  * factory.
  33.  *
  34.  * @author Timothy Prinzing
  35.  * @version 1.17 12/09/97
  36.  */
  37. public class ComponentView extends View  {
  38.  
  39.     /**
  40.      * Creates a new JComponentView object.
  41.      *
  42.      * @param elem the element to decorate
  43.      */
  44.     public ComponentView(Element elem) {
  45.     super(elem);
  46.     AttributeSet attr = elem.getAttributes();
  47.     c = StyleConstants.getComponent(attr);
  48.     c.setVisible(false);
  49.     }
  50.  
  51.     // --- View methods ---------------------------------------------
  52.  
  53.     /**
  54.      * Paints a component view.
  55.      * The real paint behavior occurs naturally from the association
  56.      * that the component has with its parent container (the same
  57.      * container hosting this view), so this simply allows us to 
  58.      * position the component properly relative to the view.  Since
  59.      * the coordinate system for the view is simply the parent 
  60.      * containers, positioning the child component is easy.
  61.      *
  62.      * @param g the graphics context
  63.      * @param a the shape
  64.      * @see View#paint
  65.      */
  66.     public void paint(Graphics g, Shape a) {
  67.     c.setBounds(a.getBounds());
  68.     if (! c.isVisible()) {
  69.         c.setVisible(true);
  70.     }
  71.     }
  72.  
  73.     /**
  74.      * Determines the preferred span for this view along an
  75.      * axis.
  76.      *
  77.      * @param axis may be either X_AXIS or Y_AXIS
  78.      * @returns  the span the view would like to be rendered into.
  79.      *           Typically the view is told to render into the span
  80.      *           that is returned, although there is no guarantee.  
  81.      *           The parent may choose to resize or break the view.
  82.      */
  83.     public float getPreferredSpan(int axis) {
  84.     Dimension size = c.getPreferredSize();
  85.     switch (axis) {
  86.     case View.X_AXIS:
  87.         return size.width;
  88.     case View.Y_AXIS:
  89.         return size.height;
  90.     default:
  91.         throw new IllegalArgumentException("Invalid axis: " + axis);
  92.     }
  93.     }
  94.  
  95.     /**
  96.      * Determines the desired alignment for this view along an
  97.      * axis.  This is implemented to give the alignment of the
  98.      * embedded component.
  99.      *
  100.      * @param axis may be either X_AXIS or Y_AXIS
  101.      * @returns the desired alignment.  This should be a value
  102.      *   between 0.0 and 1.0 where 0 indicates alignment at the
  103.      *   origin and 1.0 indicates alignment to the full span
  104.      *   away from the origin.  An alignment of 0.5 would be the
  105.      *   center of the view.
  106.      */
  107.     public float getAlignment(int axis) {
  108.     switch (axis) {
  109.     case View.X_AXIS:
  110.         return c.getAlignmentX();
  111.     case View.Y_AXIS:
  112.         return c.getAlignmentY();
  113.     default:
  114.         return super.getAlignment(axis);
  115.     }
  116.     }
  117.  
  118.     /**
  119.      * Sets the size of the view.
  120.      *
  121.      * @param width the width
  122.      * @param height the height
  123.      */
  124.     public void setSize(float width, float height) {
  125.     c.setSize((int) width, (int) height);
  126.     }
  127.  
  128.     /**
  129.      * Sets the parent for a child view.
  130.      * The parent calls this on the child to tell it who its
  131.      * parent is.  If this is null, the view has been removed
  132.      * and we need to remove the associated component from its
  133.      * parent.
  134.      *
  135.      * @param p the parent
  136.      */
  137.     public void setParent(View p) {
  138.     super.setParent(p);
  139.     if (p == null) {
  140.         Container parent = c.getParent();
  141.         parent.remove(c);
  142.     } else {
  143.         Container parent = getContainer();
  144.         parent.add(c);
  145.     }
  146.     }
  147.  
  148.     /**
  149.      * Provides a mapping from the coordinate space of the model to
  150.      * that of the view.
  151.      *
  152.      * @param pos the position to convert
  153.      * @param a the allocated region to render into
  154.      * @return the bounding box of the given position is returned
  155.      * @exception BadLocationException  if the given position does not
  156.      *   represent a valid location in the associated document
  157.      * @see View#modelToView
  158.      */
  159.     public Shape modelToView(int pos, Shape a) throws BadLocationException {
  160.     int p0 = getStartOffset();
  161.     int p1 = getEndOffset();
  162.     if ((pos >= p0) && (pos < p1)) {
  163.         Rectangle r = new Rectangle(a.getBounds());
  164.         r.width = 0;
  165.         return r;
  166.     }
  167.     return null;
  168.     }
  169.  
  170.     /**
  171.      * Provides a mapping from the view coordinate space to the logical
  172.      * coordinate space of the model.
  173.      *
  174.      * @param x the X coordinate
  175.      * @param y the Y coordinate
  176.      * @param a the allocated region to render into
  177.      * @return the location within the model that best represents
  178.      *    the given point in the view
  179.      * @see View#viewToModel
  180.      */
  181.     public int viewToModel(float x, float y, Shape a) {
  182.     return getStartOffset();
  183.     }
  184.  
  185.     // --- member variables ------------------------------------------------
  186.  
  187.     private Component c;
  188. }
  189.  
  190.