home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 1995 November / PCWK1195.iso / inne / win95 / sieciowe / hotja32.lzh / hotjava / classsrc / awt / textdisplayitem.java < prev    next >
Text File  |  1995-08-11  |  3KB  |  95 lines

  1. /*
  2.  * @(#)TextDisplayItem.java    1.19 95/04/10 Jonathan Payne
  3.  *
  4.  * Copyright (c) 1994 Sun Microsystems, Inc. All Rights Reserved.
  5.  *
  6.  * Permission to use, copy, modify, and distribute this software
  7.  * and its documentation for NON-COMMERCIAL purposes and without
  8.  * fee is hereby granted provided that this copyright notice
  9.  * appears in all copies. Please refer to the file "copyright.html"
  10.  * for further important copyright and licensing information.
  11.  *
  12.  * SUN MAKES NO REPRESENTATIONS OR WARRANTIES ABOUT THE SUITABILITY OF
  13.  * THE SOFTWARE, EITHER EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED
  14.  * TO THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A
  15.  * PARTICULAR PURPOSE, OR NON-INFRINGEMENT. SUN SHALL NOT BE LIABLE FOR
  16.  * ANY DAMAGES SUFFERED BY LICENSEE AS A RESULT OF USING, MODIFYING OR
  17.  * DISTRIBUTING THIS SOFTWARE OR ITS DERIVATIVES.
  18.  */
  19. package awt;
  20.  
  21. import java.util.*;
  22.  
  23. /**
  24.  * A DisplayItem that displays text that can have font and color
  25.  * properties associated with it.
  26.  *
  27.  * @version 1.19 10 Apr 1995
  28.  * @author Jonathan Payne
  29.  */
  30. public class TextDisplayItem extends DisplayItem {
  31.     static final boolean    debug = false;
  32.     protected Font font;
  33.     protected FontMetrics metrics;
  34.  
  35.     public abstract String getText();
  36.  
  37.     public void setFont(Font f) {
  38.     font = f;
  39.     metrics = null;
  40.     invalidate();
  41.     }
  42.  
  43.     public void setup(Font f, Color c, int x, int y, int w, int h) {
  44.     font = f;
  45.     metrics = null;
  46.     fgColor = c;
  47.     reshape(x, y, w, h);
  48.     }
  49.  
  50.     public void validate() {
  51.     Dimension s = getPreferredSize();
  52.     resize(s.width, s.height);
  53.     super.validate();
  54.     }
  55.  
  56.     public Dimension getPreferredSize() {
  57.     if (metrics == null && parent != null) {
  58.         metrics = parent.getFontMetrics(font);
  59.     }
  60.     return (metrics == null) ? new Dimension(0,0) :
  61.         new Dimension(metrics.stringWidth(getText()), metrics.height);
  62.     }
  63.     public void moveBaseline(int y) {
  64.     if (metrics == null && parent != null) {
  65.         metrics = parent.getFontMetrics(font);
  66.     }
  67.     move(x, y - metrics.ascent);
  68.     }
  69.  
  70.     public String toString() {
  71.     return "[" + super.toString() + ", " + getText() + "]";
  72.     }
  73.  
  74.     public void paint(awt.Window window, int x, int y) {
  75.     if (!valid)
  76.         validate();
  77.     if (metrics == null) {
  78.         metrics = window.getFontMetrics(font);
  79.     }
  80.  
  81.     if (debug) {
  82.         window.setForeground(Color.white);
  83.         window.fillRect(x, y, width, height);
  84.         window.setForeground(Color.red);
  85.         window.drawLine(x, y + metrics.ascent,
  86.                 x + width, y + metrics.ascent);
  87.         window.drawLine(x, y + metrics.height / 2,
  88.                 x + width, y + metrics.height / 2);
  89.     }
  90.     window.setFont(font);
  91.     window.setForeground(fgColor);
  92.     window.drawString(getText(), x, y + metrics.ascent);
  93.     }
  94. }
  95.