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

  1. /*
  2.  * @(#)RadioButtonPanel.java    1.6 98/01/31
  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. import com.sun.java.swing.*;
  22. import com.sun.java.swing.text.*;
  23. import com.sun.java.swing.border.*;
  24.  
  25. import java.awt.*;
  26. import java.awt.event.*;
  27. import java.util.*;
  28.  
  29.  
  30. /**
  31.  * RadioButtons!
  32.  *
  33.  * @version 1.6 01/31/98
  34.  * @author Jeff Dinkins
  35.  */
  36. public class RadioButtonPanel extends JPanel 
  37. {
  38.     // The Frame
  39.     SwingSet swing;
  40.  
  41.     ImageIcon radio = SwingSet.sharedInstance().loadImageIcon("images/WebSpice/radio.gif","Grey circle with blue triangle inside");
  42.     ImageIcon radioSelected = SwingSet.sharedInstance().loadImageIcon("images/WebSpice/radioSelected.gif","Grey circle with green triangle inside");
  43.     ImageIcon radioPressed = SwingSet.sharedInstance().loadImageIcon("images/WebSpice/radioPressed.gif","Grey circle with purple triangle inside");
  44.  
  45.     public RadioButtonPanel(SwingSet swing) {
  46.     this.swing = swing;
  47.  
  48.     ButtonGroup group;
  49.  
  50.     setBorder(swing.emptyBorder5);
  51.     setLayout(new BoxLayout(this, BoxLayout.X_AXIS));
  52.  
  53.     // *************** radio buttons ****************
  54.     // text buttons
  55.     JPanel textButtons = SwingSet.createHorizontalPanel(false);
  56.     textButtons.setAlignmentX(LEFT_ALIGNMENT);
  57.     Border buttonBorder = new TitledBorder(null, "Text RadioButtons", 
  58.                            TitledBorder.LEFT, TitledBorder.TOP,
  59.                            swing.boldFont);
  60.  
  61.     Border emptyBorder = new EmptyBorder(5,5,5,5);
  62.     Border compoundBorder = new CompoundBorder( buttonBorder, emptyBorder);
  63.     textButtons.setBorder(compoundBorder);
  64.  
  65.     group = new ButtonGroup();
  66.     JRadioButton button;
  67.     button = new JRadioButton("One", true);
  68.     button.setToolTipText("This is a RadioButton with Text");
  69.     group.add(button);
  70.         button.setMnemonic('o');
  71.     swing.radioButtons.addElement(button);
  72.     textButtons.add(button);
  73.     textButtons.add(Box.createRigidArea(swing.hpad10));
  74.     
  75.     button = new JRadioButton("Two");
  76.     group.add(button);
  77.         button.setMnemonic('t');
  78.     button.setToolTipText("This is a RadioButton with Text");
  79.     swing.radioButtons.addElement(button);
  80.     textButtons.add(button);
  81.     textButtons.add(Box.createRigidArea(swing.hpad10));
  82.  
  83.     button = new JRadioButton("Three");
  84.     group.add(button);
  85.         button.setMnemonic('h');
  86.     button.setToolTipText("This is a RadioButton with Text");
  87.     swing.radioButtons.addElement(button);
  88.     textButtons.add(button);
  89.  
  90.  
  91.     // image buttons
  92.     group = new ButtonGroup();
  93.  
  94.     JPanel imageButtons = SwingSet.createHorizontalPanel(false);
  95.     imageButtons.setAlignmentX(LEFT_ALIGNMENT);
  96.     buttonBorder = new TitledBorder(null, "Image RadioButtons", 
  97.                            TitledBorder.LEFT, TitledBorder.TOP,
  98.                            swing.boldFont);
  99.     compoundBorder = new CompoundBorder(buttonBorder, emptyBorder);
  100.     imageButtons.setBorder(compoundBorder);
  101.  
  102.     // 1 image
  103.     button = new JRadioButton(swing.duke2);
  104.     group.add(button);
  105.     button.setSelectedIcon(swing.dukeWave);
  106.     button.setPressedIcon(swing.dukeWaveRed);
  107.     button.setSelected(true);
  108.     button.setToolTipText("This is a RadioButton with a Icon");
  109.     button.getAccessibleContext().setAccessibleName("Duke as a radio button");
  110.     swing.radioButtons.addElement(button);
  111.     imageButtons.add(button);
  112.     imageButtons.add(Box.createRigidArea(swing.hpad10));
  113.     
  114.     // 2 images
  115.     button = new JRadioButton(swing.duke2);
  116.     group.add(button);
  117.     swing.radioButtons.addElement(button);
  118.     button.setSelectedIcon(swing.dukeWave);
  119.     button.setPressedIcon(swing.dukeWaveRed);
  120.     button.setToolTipText("This is a RadioButton with a Icon");
  121.     button.getAccessibleContext().setAccessibleName("Duke as a radio button");
  122.     imageButtons.add(button);
  123.     imageButtons.add(Box.createRigidArea(swing.hpad10));
  124.  
  125.     // 3 images
  126.     button = new JRadioButton(swing.duke2);
  127.     group.add(button);
  128.     button.setSelectedIcon(swing.dukeWave);
  129.     button.setPressedIcon(swing.dukeWaveRed);
  130.     button.setToolTipText("This is a RadioButton with a Icon");
  131.     button.getAccessibleContext().setAccessibleName("Duke as a radio button");
  132.     swing.radioButtons.addElement(button);
  133.     imageButtons.add(button);
  134.  
  135.     // text&image buttons
  136.     group = new ButtonGroup();
  137.  
  138.     JPanel tiButtons = SwingSet.createHorizontalPanel(false);
  139.     tiButtons.setAlignmentX(LEFT_ALIGNMENT);
  140.     buttonBorder = new TitledBorder(null, "Image & Text RadioButtons", 
  141.                            TitledBorder.LEFT, TitledBorder.TOP,
  142.                            swing.boldFont);
  143.     compoundBorder = new CompoundBorder(buttonBorder, emptyBorder);
  144.     tiButtons.setBorder(compoundBorder);
  145.  
  146.     button = new JRadioButton("Left", radio);
  147.     group.add(button);
  148.     button.setToolTipText("This is a RadioButton with a Icon and Text");
  149.     button.setSelected(true);
  150.     button.setSelectedIcon(radioSelected);
  151.     button.setPressedIcon(radioPressed);
  152.     swing.radioButtons.addElement(button);
  153.     tiButtons.add(button);
  154.     tiButtons.add(Box.createRigidArea(swing.hpad10));
  155.  
  156.     button = new JRadioButton("Center", radio);
  157.     group.add(button);
  158.     swing.radioButtons.addElement(button);
  159.     button.setToolTipText("This is a RadioButton with a Icon and Text");
  160.     button.setSelectedIcon(radioSelected);
  161.     button.setPressedIcon(radioPressed);
  162.     tiButtons.add(button);
  163.     tiButtons.add(Box.createRigidArea(swing.hpad10));
  164.  
  165.     button = new JRadioButton("Right", radio);
  166.     group.add(button);
  167.     swing.radioButtons.addElement(button);
  168.     button.setToolTipText("This is a RadioButton with a Icon and Text");
  169.     button.setSelectedIcon(radioSelected);
  170.     button.setPressedIcon(radioPressed);
  171.     tiButtons.add(button);
  172.     tiButtons.add(Box.createHorizontalBox());
  173.  
  174.     // Add button panels to buttonPanel
  175.     JPanel buttonPanel = SwingSet.createVerticalPanel(true);
  176.     buttonPanel.setAlignmentX(LEFT_ALIGNMENT);
  177.     buttonPanel.setAlignmentY(TOP_ALIGNMENT);
  178.  
  179.     buttonPanel.add(textButtons);
  180.  
  181.     buttonPanel.add(Box.createVerticalStrut(10));
  182.  
  183.  
  184.     buttonPanel.add(imageButtons);
  185.  
  186.     buttonPanel.add(Box.createVerticalStrut(10));
  187.  
  188.     buttonPanel.add(tiButtons);
  189.     buttonPanel.add(tiButtons);
  190.     buttonPanel.add(Box.createGlue());
  191.  
  192.  
  193.     // *************** Create the button controls ****************
  194.     JPanel controls = new JPanel() {
  195.         public Dimension getMaximumSize() {
  196.         return new Dimension(300, super.getMaximumSize().height);
  197.         }
  198.     };
  199.     controls.setLayout(new BoxLayout(controls, BoxLayout.Y_AXIS));
  200.     controls.setAlignmentY(TOP_ALIGNMENT);
  201.     controls.setAlignmentX(LEFT_ALIGNMENT);
  202.  
  203.     JPanel buttonControls = SwingSet.createHorizontalPanel(true);
  204.     buttonControls.setAlignmentY(TOP_ALIGNMENT);
  205.     buttonControls.setAlignmentX(LEFT_ALIGNMENT);
  206.  
  207.     JPanel leftColumn = SwingSet.createVerticalPanel(false);
  208.     leftColumn.setAlignmentX(LEFT_ALIGNMENT);
  209.     leftColumn.setAlignmentY(TOP_ALIGNMENT);
  210.  
  211.     JPanel rightColumn = SwingSet.createVerticalPanel(false);
  212.     rightColumn.setAlignmentX(LEFT_ALIGNMENT);
  213.     rightColumn.setAlignmentY(TOP_ALIGNMENT);
  214.  
  215.     buttonControls.add(leftColumn);
  216.     buttonControls.add(Box.createRigidArea(swing.hpad20));
  217.     buttonControls.add(rightColumn);
  218.     buttonControls.add(Box.createRigidArea(swing.hpad20));
  219.  
  220.     controls.add(buttonControls);
  221.  
  222.     // Display Options
  223.     JLabel l = new JLabel("Display Options:");
  224.     leftColumn.add(l);
  225.     l.setFont(swing.boldFont);
  226.  
  227.      JCheckBox bordered = new JCheckBox("Paint Border");
  228.     bordered.setToolTipText("Click here to turn border painting on or off.");
  229.         bordered.setMnemonic('b');
  230.      bordered.addItemListener(swing.buttonDisplayListener);
  231.      leftColumn.add(bordered);
  232.  
  233.      JCheckBox focused = new JCheckBox("Paint Focus");
  234.     focused.setToolTipText("Click here to turn focus painting on or off.");
  235.         focused.setMnemonic('f');
  236.      focused.setSelected(true);
  237.      focused.addItemListener(swing.buttonDisplayListener);
  238.      leftColumn.add(focused);
  239.  
  240.     JCheckBox enabled = new JCheckBox("Enabled");
  241.     enabled.setSelected(true);
  242.     enabled.setToolTipText("Click here to enable or disable the radio buttons.");
  243.         enabled.setMnemonic('e');
  244.     enabled.addItemListener(swing.buttonDisplayListener);
  245.     leftColumn.add(enabled);
  246.  
  247.  
  248.     leftColumn.add(Box.createRigidArea(swing.vpad20));
  249.  
  250.     
  251.     l = new JLabel("Pad Amount:");
  252.     leftColumn.add(l);
  253.     l.setFont(swing.boldFont);
  254.     
  255.     group = new ButtonGroup();
  256.     JRadioButton defaultPad = new JRadioButton("Default");
  257.         defaultPad.setMnemonic('d');
  258.     defaultPad.setToolTipText("Uses the default padding between the border and label.");
  259.     group.add(defaultPad);
  260.     defaultPad.setSelected(true);
  261.      defaultPad.addItemListener(swing.buttonPadListener);
  262.     leftColumn.add(defaultPad);
  263.  
  264.     JRadioButton zeroPad = new JRadioButton("0");
  265.         zeroPad.setMnemonic('0');
  266.     group.add(zeroPad);
  267.     zeroPad.setToolTipText("Uses no padding between the border and label.");
  268.      zeroPad.addItemListener(swing.buttonPadListener);
  269.     leftColumn.add(zeroPad);
  270.  
  271.     JRadioButton tenPad = new JRadioButton("10");
  272.         tenPad.setMnemonic('1');
  273.     tenPad.setToolTipText("Uses a 10 pixel pad between the border and label.");
  274.     group.add(tenPad);
  275.      tenPad.addItemListener(swing.buttonPadListener);
  276.     leftColumn.add(tenPad);
  277.     
  278.     leftColumn.add(Box.createRigidArea(swing.vpad20));
  279.  
  280.     // *************** Create the layout controls ****************
  281.     // Create Text Position Layout control
  282.     JPanel textPosition = DirectionButton.createDirectionPanel(true, "E", swing.textPositionListener);
  283.     JPanel labelAlignment = DirectionButton.createDirectionPanel(true, "C", swing.labelAlignmentListener);
  284.  
  285.     l = new JLabel("Text Position:");
  286.     rightColumn.add(l);
  287.     l.setFont(swing.boldFont);
  288.      rightColumn.add(textPosition);
  289.  
  290.      rightColumn.add(Box.createRigidArea(swing.vpad20));
  291.  
  292.     l = new JLabel("Content Alignment:");
  293.     rightColumn.add(l);
  294.     l.setFont(swing.boldFont);
  295.      rightColumn.add(labelAlignment);
  296.  
  297.      rightColumn.add(Box.createGlue());
  298.  
  299.     add(buttonPanel);
  300.     add(Box.createRigidArea(swing.hpad10));
  301.      add(controls);
  302.     }
  303.  
  304.     
  305. }
  306.