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: * AbstractTabbedGUI.java 29: * ---------------------- 30: * (C)opyright 2004, by Thomas Morgner and Contributors. 31: * 32: * Original Author: Thomas Morgner; 33: * Contributor(s): David Gilbert (for Object Refinery Limited); 34: * 35: * $Id: TabbedFrame.java,v 1.8 2008/09/10 09:19:04 mungady Exp $ 36: * 37: * Changes 38: * ------------------------- 39: * 16-Feb-2004 : Initial version 40: * 07-Jun-2004 : Added standard header (DG); 41: */ 42: 43: package org.jfree.ui.tabbedui; 44: 45: import java.awt.BorderLayout; 46: import java.awt.event.ActionEvent; 47: import java.awt.event.WindowAdapter; 48: import java.awt.event.WindowEvent; 49: import java.beans.PropertyChangeEvent; 50: import java.beans.PropertyChangeListener; 51: import javax.swing.JFrame; 52: import javax.swing.JPanel; 53: 54: /** 55: * A JFrame implementation that uses a tabbed UI as backend. 56: * 57: * @author Thomas Morgner 58: */ 59: public class TabbedFrame extends JFrame { 60: 61: /** The backend. */ 62: private AbstractTabbedUI tabbedUI; 63: 64: /** 65: * A property change listener that waits for the menubar to change. 66: */ 67: private class MenuBarChangeListener implements PropertyChangeListener { 68: 69: /** 70: * Creates a new change listener. 71: */ 72: public MenuBarChangeListener() { 73: } 74: 75: /** 76: * This method gets called when a bound property is changed. 77: * 78: * @param evt A PropertyChangeEvent object describing the event source 79: * and the property that has changed. 80: */ 81: public void propertyChange(final PropertyChangeEvent evt) { 82: if (evt.getPropertyName().equals(AbstractTabbedUI.JMENUBAR_PROPERTY)) { 83: setJMenuBar(getTabbedUI().getJMenuBar()); 84: } 85: } 86: } 87: 88: /** 89: * Default constructor. 90: */ 91: public TabbedFrame() { 92: } 93: 94: /** 95: * Creates a new tabbed frame with the specified title. 96: * 97: * @param title the frame title. 98: */ 99: public TabbedFrame(final String title) { 100: super(title); 101: } 102: 103: /** 104: * Returns the UI implementation for the frame. 105: * 106: * @return Returns the tabbedUI. 107: */ 108: protected final AbstractTabbedUI getTabbedUI() 109: { 110: return this.tabbedUI; 111: } 112: 113: /** 114: * Initialises the dialog. 115: * 116: * @param tabbedUI the UI that controls the dialog. 117: */ 118: public void init(final AbstractTabbedUI tabbedUI) { 119: 120: this.tabbedUI = tabbedUI; 121: this.tabbedUI.addPropertyChangeListener( 122: AbstractTabbedUI.JMENUBAR_PROPERTY, new MenuBarChangeListener() 123: ); 124: 125: addWindowListener(new WindowAdapter() { 126: public void windowClosing(final WindowEvent e) { 127: getTabbedUI().getCloseAction().actionPerformed 128: (new ActionEvent(this, ActionEvent.ACTION_PERFORMED, null, 0)); 129: } 130: }); 131: 132: final JPanel panel = new JPanel(); 133: panel.setLayout(new BorderLayout()); 134: panel.add(tabbedUI, BorderLayout.CENTER); 135: setContentPane(panel); 136: setJMenuBar(tabbedUI.getJMenuBar()); 137: } 138: 139: }