home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Programming Languages Suite
/
ProgLangD.iso
/
VCAFE.3.0A
/
Sample.bin
/
ButtonPanel.java
< prev
next >
Wrap
Text File
|
1998-06-30
|
10KB
|
289 lines
/*
* @(#)ButtonPanel.java 1.6 98/01/31
*
* Copyright (c) 1997 Sun Microsystems, Inc. All Rights Reserved.
*
* This software is the confidential and proprietary information of Sun
* Microsystems, Inc. ("Confidential Information"). You shall not
* disclose such Confidential Information and shall use it only in
* accordance with the terms of the license agreement you entered into
* with Sun.
*
* SUN MAKES NO REPRESENTATIONS OR WARRANTIES ABOUT THE SUITABILITY OF THE
* SOFTWARE, EITHER EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
* IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR
* PURPOSE, OR NON-INFRINGEMENT. SUN SHALL NOT BE LIABLE FOR ANY DAMAGES
* SUFFERED BY LICENSEE AS A RESULT OF USING, MODIFYING OR DISTRIBUTING
* THIS SOFTWARE OR ITS DERIVATIVES.
*
*/
import com.sun.java.swing.*;
import com.sun.java.swing.border.*;
import com.sun.java.swing.event.*;
import com.sun.java.swing.text.*;
import java.awt.*;
import java.awt.event.*;
import java.util.*;
/**
* Buttons!
*
* @version 1.6 01/31/98
* @author Jeff Dinkins
*/
public class ButtonPanel extends JPanel
{
// The Frame
SwingSet swing;
ImageIcon left = SwingSet.sharedInstance().loadImageIcon("images/WebSpice/left.gif","fancy green arrow pointing left");
ImageIcon leftDown = SwingSet.sharedInstance().loadImageIcon("images/WebSpice/leftDown.gif","fancy yellow arrow pointing left");
ImageIcon leftRollover = SwingSet.sharedInstance().loadImageIcon("images/WebSpice/leftRollover.gif","fancy purple arrow pointing left");
ImageIcon right = SwingSet.sharedInstance().loadImageIcon("images/WebSpice/right.gif","fancy green arrow pointing right");
ImageIcon rightDown = SwingSet.sharedInstance().loadImageIcon("images/WebSpice/rightDown.gif","fancy yellow arrow pointing right");
ImageIcon rightRollover = SwingSet.sharedInstance().loadImageIcon("images/WebSpice/rightRollover.gif","fancy purple arrow pointing right");
public ButtonPanel(SwingSet swing) {
this.swing = swing;
setBorder(swing.emptyBorder5);
setLayout(new BoxLayout(this, BoxLayout.X_AXIS));
// *************** buttons ****************
// text buttons
JPanel textButtons = SwingSet.createHorizontalPanel(false);
textButtons.setAlignmentX(LEFT_ALIGNMENT);
Border buttonBorder = new TitledBorder(null, "Text Buttons",
TitledBorder.LEFT, TitledBorder.TOP,
swing.boldFont);
Border emptyBorder = new EmptyBorder(5,5,5,5);
Border compoundBorder = new CompoundBorder( buttonBorder, emptyBorder);
textButtons.setBorder(compoundBorder);
JButton button;
button = new JButton("One");
button.setToolTipText("This is a Button with Text");
button.setMnemonic('o');
swing.buttons.addElement(button);
textButtons.add(button);
textButtons.add(Box.createRigidArea(swing.hpad10));
button = new JButton("Two");
button.setToolTipText("This is a Button with Text");
button.setMnemonic('t');
swing.buttons.addElement(button);
textButtons.add(button);
textButtons.add(Box.createRigidArea(swing.hpad10));
button = new JButton("Three");
button.setToolTipText("This is a Button with Text");
button.setMnemonic('h');
swing.buttons.addElement(button);
textButtons.add(button);
// image buttons
JPanel imageButtons = swing.createHorizontalPanel(false);
imageButtons.setAlignmentX(LEFT_ALIGNMENT);
buttonBorder = new TitledBorder(null, "Image Buttons",
TitledBorder.LEFT, TitledBorder.TOP,
swing.boldFont);
compoundBorder = new CompoundBorder(buttonBorder, emptyBorder);
imageButtons.setBorder(compoundBorder);
// 1 image
button = new JButton(swing.upButton);
button.setToolTipText("This is a Button with a Icon");
button.getAccessibleContext().setAccessibleName("Right");
// button.setDebugGraphicsOptions(DebugGraphics.FLASH_OPTION);
swing.buttons.addElement(button);
imageButtons.add(button);
imageButtons.add(Box.createRigidArea(swing.hpad10));
// 2 images
button = new JButton(swing.upButton);
button.setToolTipText("This is a Button with a Icon and a PressedIcon");
button.getAccessibleContext().setAccessibleName("Right");
swing.buttons.addElement(button);
button.setPressedIcon(swing.downButton);
imageButtons.add(button);
imageButtons.add(Box.createRigidArea(swing.hpad10));
// 3 images
button = new JButton(swing.upButton);
button.setToolTipText("This is a Button with a Icon, PressedIcon, and DisabledIcon");
button.getAccessibleContext().setAccessibleName("Right");
button.setPressedIcon(swing.downButton);
button.setDisabledIcon(swing.disabledButton);
swing.buttons.addElement(button);
imageButtons.add(button);
// text&image buttons
JPanel tiButtons = swing.createHorizontalPanel(false);
tiButtons.setAlignmentX(LEFT_ALIGNMENT);
buttonBorder = new TitledBorder(null, "Rollover Image Buttons",
TitledBorder.LEFT, TitledBorder.TOP,
swing.boldFont);
compoundBorder = new CompoundBorder(buttonBorder, emptyBorder);
tiButtons.setBorder(compoundBorder);
button = new JButton("Left", left);
button.setPressedIcon(leftDown);
button.setRolloverIcon(leftRollover);
button.setRolloverEnabled(true);
button.setToolTipText("This is a Button with a RolloverIcon");
swing.buttons.addElement(button);
tiButtons.add(button);
tiButtons.add(Box.createRigidArea(swing.hpad10));
button = new JButton("Right", right);
button.setPressedIcon(rightDown);
button.setRolloverIcon(rightRollover);
button.setRolloverEnabled(true);
button.setToolTipText("This is a Button with a Rollover Icon");
swing.buttons.addElement(button);
tiButtons.add(button);
tiButtons.add(Box.createHorizontalBox());
// Add button panels to buttonPanel
JPanel buttonPanel = swing.createVerticalPanel(true);
buttonPanel.setAlignmentX(LEFT_ALIGNMENT);
buttonPanel.setAlignmentY(TOP_ALIGNMENT);
buttonPanel.add(textButtons);
buttonPanel.add(Box.createVerticalStrut(10));
buttonPanel.add(imageButtons);
buttonPanel.add(Box.createVerticalStrut(10));
buttonPanel.add(tiButtons);
buttonPanel.add(tiButtons);
buttonPanel.add(Box.createGlue());
// *************** Create the button controls ****************
JPanel controls = new JPanel() {
public Dimension getMaximumSize() {
return new Dimension(300, super.getMaximumSize().height);
}
};
controls.setLayout(new BoxLayout(controls, BoxLayout.Y_AXIS));
controls.setAlignmentY(TOP_ALIGNMENT);
controls.setAlignmentX(LEFT_ALIGNMENT);
JPanel buttonControls = swing.createHorizontalPanel(true);
buttonControls.setAlignmentY(TOP_ALIGNMENT);
buttonControls.setAlignmentX(LEFT_ALIGNMENT);
JPanel leftColumn = swing.createVerticalPanel(false);
leftColumn.setAlignmentX(LEFT_ALIGNMENT);
leftColumn.setAlignmentY(TOP_ALIGNMENT);
JPanel rightColumn = swing.createVerticalPanel(false);
rightColumn.setAlignmentX(LEFT_ALIGNMENT);
rightColumn.setAlignmentY(TOP_ALIGNMENT);
buttonControls.add(leftColumn);
buttonControls.add(Box.createRigidArea(swing.hpad20));
buttonControls.add(rightColumn);
buttonControls.add(Box.createRigidArea(swing.hpad20));
controls.add(buttonControls);
// Display Options
JLabel l = new JLabel("Display Options:");
leftColumn.add(l);
l.setFont(swing.boldFont);
JCheckBox bordered = new JCheckBox("Paint Border");
bordered.setToolTipText("Click here to turn border painting on or off.");
bordered.setMnemonic('b');
bordered.setSelected(true);
bordered.addItemListener(swing.buttonDisplayListener);
leftColumn.add(bordered);
JCheckBox focused = new JCheckBox("Paint Focus");
focused.setToolTipText("Click here to turn focus painting on or off.");
focused.setMnemonic('f');
focused.setSelected(true);
focused.addItemListener(swing.buttonDisplayListener);
leftColumn.add(focused);
JCheckBox enabled = new JCheckBox("Enabled");
enabled.setToolTipText("Click here to enable or disable the buttons.");
enabled.setSelected(true);
enabled.setMnemonic('e');
enabled.addItemListener(swing.buttonDisplayListener);
leftColumn.add(enabled);
leftColumn.add(Box.createRigidArea(swing.vpad20));
l = new JLabel("Pad Amount:");
leftColumn.add(l);
l.setFont(swing.boldFont);
ButtonGroup group = new ButtonGroup();
JRadioButton defaultPad = new JRadioButton("Default");
defaultPad.setToolTipText("Uses the default padding between the border and label.");
defaultPad.setMnemonic('d');
group.add(defaultPad);
defaultPad.setSelected(true);
defaultPad.addItemListener(swing.buttonPadListener);
leftColumn.add(defaultPad);
JRadioButton zeroPad = new JRadioButton("0");
zeroPad.setToolTipText("Uses no padding between the border and label.");
zeroPad.setMnemonic('0');
group.add(zeroPad);
zeroPad.addItemListener(swing.buttonPadListener);
leftColumn.add(zeroPad);
JRadioButton tenPad = new JRadioButton("10");
tenPad.setMnemonic('1');
tenPad.setToolTipText("Uses a 10 pixel pad between the border and label.");
group.add(tenPad);
tenPad.addItemListener(swing.buttonPadListener);
leftColumn.add(tenPad);
leftColumn.add(Box.createRigidArea(swing.vpad20));
// *************** Create the layout controls ****************
// Create Text Position and Alignment Layout controls
JPanel textPosition = DirectionButton.createDirectionPanel(true, "E", swing.textPositionListener);
JPanel labelAlignment = DirectionButton.createDirectionPanel(true, "C", swing.labelAlignmentListener);
l = new JLabel("Text Position:");
rightColumn.add(l);
l.setFont(swing.boldFont);
rightColumn.add(textPosition);
rightColumn.add(Box.createRigidArea(swing.vpad20));
l = new JLabel("Content Alignment:");
rightColumn.add(l);
l.setFont(swing.boldFont);
rightColumn.add(labelAlignment);
rightColumn.add(Box.createGlue());
add(buttonPanel);
add(Box.createRigidArea(swing.hpad10));
add(controls);
}
}