Frames | No Frames |
1: /* ======================================================================== 2: * JCommon : a free general purpose class library for the Java(tm) platform 3: * ======================================================================== 4: * 5: * (C) Copyright 2000-2005, by Object Refinery Limited and Contributors. 6: * 7: * Project Info: http://www.jfree.org/jcommon/index.html 8: * 9: * This library is free software; you can redistribute it and/or modify it 10: * under the terms of the GNU Lesser General Public License as published by 11: * the Free Software Foundation; either version 2.1 of the License, or 12: * (at your option) any later version. 13: * 14: * This library is distributed in the hope that it will be useful, but 15: * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY 16: * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public 17: * License for more details. 18: * 19: * You should have received a copy of the GNU Lesser General Public 20: * License along with this library; if not, write to the Free Software 21: * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, 22: * USA. 23: * 24: * [Java is a trademark or registered trademark of Sun Microsystems, Inc. 25: * in the United States and other countries.] 26: * 27: * -------------------- 28: * L1R3ButtonPanel.java 29: * -------------------- 30: * (C) Copyright 2000-2004, by Object Refinery Limited. 31: * 32: * Original Author: David Gilbert (for Object Refinery Limited); 33: * Contributor(s): -; 34: * 35: * $Id: L1R3ButtonPanel.java,v 1.5 2007/11/02 17:50:36 taqua Exp $ 36: * 37: * Changes (from 26-Oct-2001) 38: * -------------------------- 39: * 26-Oct-2001 : Changed package to com.jrefinery.ui.* (DG); 40: * 26-Jun-2002 : Removed unnecessary import (DG); 41: * 14-Oct-2002 : Fixed errors reported by Checkstyle (DG); 42: * 43: */ 44: 45: package org.jfree.ui; 46: 47: import java.awt.BorderLayout; 48: import javax.swing.JButton; 49: import javax.swing.JPanel; 50: 51: /** 52: * A 'ready-made' panel that has one button on the left and three buttons on the right - nested 53: * panels and layout managers take care of resizing. 54: * 55: * @author David Gilbert 56: */ 57: public class L1R3ButtonPanel extends JPanel { 58: 59: /** The left button. */ 60: private JButton left; 61: 62: /** The first button on the right of the panel. */ 63: private JButton right1; 64: 65: /** The second button on the right of the panel. */ 66: private JButton right2; 67: 68: /** The third button on the right of the panel. */ 69: private JButton right3; 70: 71: /** 72: * Standard constructor - creates panel with the specified button labels. 73: * 74: * @param label1 the label for button 1. 75: * @param label2 the label for button 2. 76: * @param label3 the label for button 3. 77: * @param label4 the label for button 4. 78: */ 79: public L1R3ButtonPanel(final String label1, final String label2, final String label3, final String label4) { 80: 81: setLayout(new BorderLayout()); 82: 83: // create the pieces... 84: final JPanel panel = new JPanel(new BorderLayout()); 85: final JPanel panel2 = new JPanel(new BorderLayout()); 86: this.left = new JButton(label1); 87: this.right1 = new JButton(label2); 88: this.right2 = new JButton(label3); 89: this.right3 = new JButton(label4); 90: 91: // ...and put them together 92: panel.add(this.left, BorderLayout.WEST); 93: panel2.add(this.right1, BorderLayout.EAST); 94: panel.add(panel2, BorderLayout.CENTER); 95: panel.add(this.right2, BorderLayout.EAST); 96: add(panel, BorderLayout.CENTER); 97: add(this.right3, BorderLayout.EAST); 98: 99: } 100: 101: /** 102: * Returns a reference to button 1, allowing the caller to set labels, action-listeners etc. 103: * 104: * @return the left button. 105: */ 106: public JButton getLeftButton() { 107: return this.left; 108: } 109: 110: /** 111: * Returns a reference to button 2, allowing the caller to set labels, action-listeners etc. 112: * 113: * @return the right button 1. 114: */ 115: public JButton getRightButton1() { 116: return this.right1; 117: } 118: 119: /** 120: * Returns a reference to button 3, allowing the caller to set labels, action-listeners etc. 121: * 122: * @return the right button 2. 123: */ 124: public JButton getRightButton2() { 125: return this.right2; 126: } 127: 128: /** 129: * Returns a reference to button 4, allowing the caller to set labels, action-listeners etc. 130: * 131: * @return the right button 3. 132: */ 133: public JButton getRightButton3() { 134: return this.right3; 135: } 136: 137: }