home *** CD-ROM | disk | FTP | other *** search
/ Programming Languages Suite / ProgLangD.iso / VCAFE.3.0A / JFC.bin / MotifOptionPaneUI.java < prev    next >
Text File  |  1998-06-30  |  4KB  |  127 lines

  1. /*
  2.  * @(#)MotifOptionPaneUI.java    1.8 98/02/05
  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. package com.sun.java.swing.plaf.motif;
  22.  
  23. import com.sun.java.swing.*;
  24. import com.sun.java.swing.plaf.basic.AbstractOptionPaneUI.SyncingLayoutManager;
  25. import com.sun.java.swing.plaf.basic.BasicOptionPaneUI;
  26. import com.sun.java.swing.plaf.ComponentUI;
  27. import java.awt.Color;
  28. import java.awt.Component;
  29. import java.awt.Container;
  30. import java.awt.Dimension;
  31. import java.awt.Graphics;
  32. import java.awt.Insets;
  33. import java.awt.Rectangle;
  34.  
  35. /**
  36.  * Provides the CDE/Motif look and feel for a JOptionPane.
  37.  * <p>
  38.  * Warning: serialized objects of this class will not be compatible with
  39.  * future swing releases.  The current serialization support is appropriate
  40.  * for short term storage or RMI between Swing1.0 applications.  It will
  41.  * not be possible to load serialized Swing1.0 objects with future releases
  42.  * of Swing.  The JDK1.2 release of Swing will be the compatibility
  43.  * baseline for the serialized form of Swing objects.
  44.  * 
  45.  * @version 1.8 02/05/98
  46.  * @author Scott Violet
  47.  */
  48. public class MotifOptionPaneUI extends BasicOptionPaneUI
  49. {
  50.     /**
  51.       * Creates a new MotifOptionPaneUI instance.
  52.       */
  53.     public static ComponentUI createUI(JComponent x) {
  54.     return new MotifOptionPaneUI();
  55.     }
  56.  
  57.     /**
  58.      * Creates and returns a Container containin the buttons. The buttons
  59.      * are created by calling <code>getButtons</code>.
  60.      */
  61.     protected Container createButtons() {
  62.     Container          b = super.createButtons();
  63.  
  64.     if(b != null && b.getLayout() instanceof SyncingLayoutManager) {
  65.         ((SyncingLayoutManager)b.getLayout()).setCentersChildren(false);
  66.     }
  67.     return b;
  68.     }
  69.  
  70.     /**
  71.      * Returns the insets to be used in the Container housing the buttons.
  72.      */
  73.     protected Insets getButtonInsets() {
  74.     return new Insets(18, 0, 0, 0);
  75.     }
  76.  
  77.     public void paint(Graphics g, JComponent c) {
  78.     // Draws a line dividing the buttons and body, this relies on the
  79.     // fact that AbstractOptionPaneUI.createButtons installs a top
  80.     // inset on the button Container, that is why this can draw over it.
  81.     if(c.getComponentCount() > 1) {
  82.         Rectangle          buttonBorder = c.getComponent(1).getBounds();
  83.         int                lineY = buttonBorder.y;
  84.         int                lineWidth = c.getBounds().width;
  85.  
  86.         g.setColor(Color.darkGray);
  87.         g.drawLine(0, lineY, lineWidth, lineY);
  88.         lineY++;
  89.         g.setColor(Color.white);
  90.         g.drawLine(0, lineY, lineWidth, lineY);
  91.     }
  92.     }
  93.  
  94.     /**
  95.      * Creates and adds a JLabel representing the icon returned from
  96.      * <code>getIcon</code> to <code>top</code>. This is messaged from
  97.      * <code>createBody</code>
  98.      */
  99.     protected void addIcon(Container top) {
  100.     /* Create the icon. */
  101.     Icon                  sideIcon = getIcon();
  102.  
  103.     if (sideIcon != null) {
  104.         JLabel            iconLabel = new JLabel(sideIcon);
  105.  
  106.         iconLabel.setVerticalAlignment(SwingConstants.CENTER);
  107.         top.add(iconLabel, "West");
  108.     }
  109.     }
  110.  
  111.     /**
  112.      * Returns null, CDE/Motif does not impose a minimum size.
  113.      */
  114.     public Dimension getMinimumOptionPaneSize() {
  115.     return null;
  116.     }
  117.  
  118.     /**
  119.      * Returns the insets to be used for the body, the body contains both
  120.      * the image and the actual message.
  121.      */
  122.     protected Insets getBodyInsets() {
  123.     return new Insets(0, 0, 12, 0);
  124.     }
  125.  
  126. }
  127.