001: /* ========================================================================
002: * JCommon : a free general purpose class library for the Java(tm) platform
003: * ========================================================================
004: *
005: * (C) Copyright 2000-2005, by Object Refinery Limited and Contributors.
006: *
007: * Project Info: http://www.jfree.org/jcommon/index.html
008: *
009: * This library is free software; you can redistribute it and/or modify it
010: * under the terms of the GNU Lesser General Public License as published by
011: * the Free Software Foundation; either version 2.1 of the License, or
012: * (at your option) any later version.
013: *
014: * This library is distributed in the hope that it will be useful, but
015: * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
016: * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
017: * License for more details.
018: *
019: * You should have received a copy of the GNU Lesser General Public
020: * License along with this library; if not, write to the Free Software
021: * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,
022: * USA.
023: *
024: * [Java is a trademark or registered trademark of Sun Microsystems, Inc.
025: * in the United States and other countries.]
026: *
027: * ----------------------
028: * AbstractTabbedGUI.java
029: * ----------------------
030: * (C)opyright 2004, by Thomas Morgner and Contributors.
031: *
032: * Original Author: Thomas Morgner;
033: * Contributor(s): David Gilbert (for Object Refinery Limited);
034: *
035: * $Id: TabbedFrame.java,v 1.6 2005/10/18 13:23:37 mungady Exp $
036: *
037: * Changes
038: * -------------------------
039: * 16-Feb-2004 : Initial version
040: * 07-Jun-2004 : Added standard header (DG);
041: */
042:
043: package org.jfree.ui.tabbedui;
044:
045: import java.awt.BorderLayout;
046: import java.awt.event.ActionEvent;
047: import java.awt.event.WindowAdapter;
048: import java.awt.event.WindowEvent;
049: import java.beans.PropertyChangeEvent;
050: import java.beans.PropertyChangeListener;
051:
052: import javax.swing.JFrame;
053: import javax.swing.JPanel;
054:
055: /**
056: * A JFrame implementation that uses a tabbed UI as backend.
057: *
058: * @author Thomas Morgner
059: */
060: public class TabbedFrame extends JFrame {
061:
062: /** The backend. */
063: private AbstractTabbedUI tabbedUI;
064:
065: /**
066: * A property change listener that waits for the menubar to change.
067: */
068: private class MenuBarChangeListener implements
069: PropertyChangeListener {
070:
071: /**
072: * Creates a new change listener.
073: */
074: public MenuBarChangeListener() {
075: }
076:
077: /**
078: * This method gets called when a bound property is changed.
079: *
080: * @param evt A PropertyChangeEvent object describing the event source
081: * and the property that has changed.
082: */
083: public void propertyChange(final PropertyChangeEvent evt) {
084: if (evt.getPropertyName().equals(
085: AbstractTabbedUI.JMENUBAR_PROPERTY)) {
086: setJMenuBar(getTabbedUI().getJMenuBar());
087: }
088: }
089: }
090:
091: /**
092: * Default constructor.
093: */
094: public TabbedFrame() {
095: }
096:
097: /**
098: * Creates a new tabbed frame with the specified title.
099: *
100: * @param title the frame title.
101: */
102: public TabbedFrame(final String title) {
103: super (title);
104: }
105:
106: /**
107: * Returns the UI implementation for the frame.
108: *
109: * @return Returns the tabbedUI.
110: */
111: protected final AbstractTabbedUI getTabbedUI() {
112: return tabbedUI;
113: }
114:
115: /**
116: * Initialises the dialog.
117: *
118: * @param tabbedUI the UI that controls the dialog.
119: */
120: public void init(final AbstractTabbedUI tabbedUI) {
121:
122: this .tabbedUI = tabbedUI;
123: this .tabbedUI.addPropertyChangeListener(
124: AbstractTabbedUI.JMENUBAR_PROPERTY,
125: new MenuBarChangeListener());
126:
127: addWindowListener(new WindowAdapter() {
128: public void windowClosing(final WindowEvent e) {
129: getTabbedUI().getCloseAction().actionPerformed(
130: new ActionEvent(this ,
131: ActionEvent.ACTION_PERFORMED, null, 0));
132: }
133: });
134:
135: final JPanel panel = new JPanel();
136: panel.setLayout(new BorderLayout());
137: panel.add(tabbedUI, BorderLayout.CENTER);
138: setContentPane(panel);
139: setJMenuBar(tabbedUI.getJMenuBar());
140: }
141:
142: }
|