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

  1. /*
  2.  * @(#)PasswordView.java    1.2 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.JPasswordField;
  24.  
  25. /**
  26.  * Implements a View suitable for use in JPasswordField 
  27.  * UI implementations.  This is basically a field ui that
  28.  * renders its contents as the echo character specified
  29.  * in the associated component (if it can narrow the 
  30.  * component to a JPasswordField).
  31.  *
  32.  * @author  Timothy Prinzing
  33.  * @version 1.2 12/09/97
  34.  * @see     View
  35.  */
  36. public class PasswordView extends FieldView {
  37.  
  38.     /**
  39.      * Constructs a new view wrapped on an element.
  40.      *
  41.      * @param elem the element
  42.      */
  43.     public PasswordView(Element elem) {
  44.     super(elem);
  45.     }
  46.  
  47.     /**
  48.      * Renders the given range in the model as normal unselected
  49.      * text.  
  50.      *
  51.      * @param g the graphics context
  52.      * @param x the starting X coordinate
  53.      * @param y the starting Y coordinate
  54.      * @param p0 the starting offset in the model
  55.      * @param p1 the ending offset in the model
  56.      * @returns the location of the end of the range
  57.      * @exception BadLocationException if p0 or p1 are out of range
  58.      */
  59.     protected int drawUnselectedText(Graphics g, int x, int y, 
  60.                      int p0, int p1) throws BadLocationException {
  61.                      
  62.     Container c = getContainer();
  63.     if (c instanceof JPasswordField) {
  64.         JPasswordField f = (JPasswordField) c;
  65.         g.setColor(f.getForeground());
  66.         char echoChar = f.getEchoChar();
  67.         int n = p1 - p0;
  68.         for (int i = 0; i < n; i++) {
  69.         x = drawEchoCharacter(g, x, y, echoChar);
  70.         }
  71.     }
  72.     return x;
  73.     }
  74.  
  75.     /**
  76.      * Renders the given range in the model as selected text.  This
  77.      * is implemented to render the text in the color specified in
  78.      * the hosting component.  It assumes the highlighter will render
  79.      * the selected background.
  80.      *
  81.      * @param g the graphics context
  82.      * @param x the starting X coordinate
  83.      * @param y the starting Y coordinate
  84.      * @param p0 the starting offset in the model
  85.      * @param p1 the ending offset in the model
  86.      * @returns the location of the end of the range.
  87.      * @exception BadLocationException if p0 or p1 are out of range
  88.      */
  89.     protected int drawSelectedText(Graphics g, int x, 
  90.                    int y, int p0, int p1) throws BadLocationException {
  91.     g.setColor(selected);
  92.     Container c = getContainer();
  93.     if (c instanceof JPasswordField) {
  94.         JPasswordField f = (JPasswordField) c;
  95.         g.setColor(f.getSelectedTextColor());
  96.         char echoChar = f.getEchoChar();
  97.         int n = p1 - p0;
  98.         for (int i = 0; i < n; i++) {
  99.         x = drawEchoCharacter(g, x, y, echoChar);
  100.         }
  101.     }
  102.     return x;
  103.     }
  104.  
  105.     /**
  106.      * Renders the echo character, or whatever graphic should be used 
  107.      * to display the password characters.  The color in the Graphics
  108.      * object is set to the appropriate foreground color for selected
  109.      * or unselected text.
  110.      *
  111.      * @param g the graphics context
  112.      * @param x the starting X coordinate
  113.      * @param y the starting Y coordinate
  114.      * @param c the echo character
  115.      * @return the updated X position
  116.      */
  117.     protected int drawEchoCharacter(Graphics g, int x, int y, char c) {
  118.     ONE[0] = c;
  119.     g.drawChars(ONE, 0, 1, x, y);
  120.     return x + g.getFontMetrics().charWidth(c);
  121.     }
  122.  
  123.     static char[] ONE = new char[1];
  124. }
  125.