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

  1. /*
  2.  * @(#)MacFocusBorder.java    1.5 98/02/02
  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.  
  21.  
  22. package com.sun.java.swing.plaf.mac;
  23.  
  24. import com.sun.java.swing.*;
  25. import com.sun.java.swing.border.*;
  26. import com.sun.java.swing.plaf.*;
  27.  
  28. import java.awt.Component;
  29. import java.awt.Insets;
  30. import java.awt.Color;
  31. import java.awt.Graphics;
  32.  
  33. /**
  34. * @version @(#)MacFocusBorder.java    1.0 12/5/97
  35. * @author Symantec
  36. */
  37.  
  38. class MacFocusBorder extends AbstractBorder implements UIResource
  39. {
  40.     final static Insets borderInsets = new Insets(3, 3, 3, 3);
  41.     final static Insets noInsets = new Insets(0, 0, 0, 0);
  42.     
  43.     private Color black = MacUtilities.GrayscaleAppearanceB;
  44.     private Color white = MacUtilities.GrayscaleAppearanceW;
  45.     private Color macFive = MacUtilities.GrayscaleAppearance5;
  46.     private Color macEight = MacUtilities.GrayscaleAppearance8;
  47.     
  48.        boolean containedInScrollPane = false;
  49.        boolean hasCurrentFocus = false;
  50.       
  51.     public void paintBorder(Component c, Graphics g, int x, int y, int w, int h) 
  52.     {
  53.         //don't draw the border if inside a scroll pane
  54.         Component parent = c.getParent();
  55.         while(parent != null) 
  56.         {
  57.             if(parent instanceof JScrollPane)
  58.                 return;
  59.                 
  60.             parent = parent.getParent();
  61.         }
  62.                     
  63.            boolean ownsFocus = false;
  64.            
  65.            if(!(c instanceof com.sun.java.swing.JComponent))
  66.                return;
  67.                
  68.            JComponent jC = (com.sun.java.swing.JComponent)c;
  69.  
  70.         ownsFocus = jC.hasFocus();
  71.         
  72.         if(ownsFocus == true)
  73.         {
  74.             if(hasCurrentFocus == false)
  75.             {
  76.                 g.setClip(0,0,jC.getWidth(), jC.getHeight());
  77.                 hasCurrentFocus = true;
  78.             }
  79.             g.setColor(black);
  80.             g.drawRect(2, 2, w-5, h-5);
  81.             
  82.             java.awt.Color color = AppearanceFilter.FilterColor(macEight);
  83.             g.setColor(color);
  84.             g.drawRect(1, 1, w-3, h-3);
  85.             g.drawLine(1, 0, w-2, 0);
  86.             g.drawLine(0, 1, 0, h-2);
  87.             g.drawLine(1, h-1, w-2, h-1);
  88.             g.drawLine(w-1, 1, w-1, h-2);
  89.         }
  90.         else
  91.         {
  92.             if(hasCurrentFocus == true)
  93.             {
  94.                 g.setClip(0,0,jC.getWidth(), jC.getHeight());
  95.                 hasCurrentFocus = false;
  96.             }
  97.             g.setColor(black);
  98.             g.drawRect(2, 2, w-5, h-5);
  99.             
  100.             g.setColor(macFive);
  101.             g.drawLine(1, 1, w-3, 1);
  102.             g.drawLine(1, 1, 1, h-3);
  103.             
  104.             g.setColor(white);
  105.             g.drawLine(w-2, 2, w-2, h-2);
  106.             g.drawLine(2, h-2, w-3, h-2);
  107.             
  108.             g.setColor(c.getParent().getBackground());
  109.             g.drawRect(0, 0, w-1, h-1);
  110.         }
  111.     }
  112.     
  113.     public Insets getBorderInsets(Component c)
  114.     {
  115.         //no border if inside a scroll pane
  116.         Component parent = c.getParent();
  117.         while(parent != null)
  118.         {
  119.             if(parent instanceof JScrollPane)
  120.                  return noInsets;
  121.                  
  122.             parent = parent.getParent();
  123.         }
  124.  
  125.         return borderInsets;
  126.     }
  127. }
  128.