0N/A/*
3261N/A * Copyright (c) 2002, 2010, Oracle and/or its affiliates. All rights reserved.
0N/A * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
0N/A *
0N/A * This code is free software; you can redistribute it and/or modify it
0N/A * under the terms of the GNU General Public License version 2 only, as
2362N/A * published by the Free Software Foundation. Oracle designates this
0N/A * particular file as subject to the "Classpath" exception as provided
2362N/A * by Oracle in the LICENSE file that accompanied this code.
0N/A *
0N/A * This code is distributed in the hope that it will be useful, but WITHOUT
0N/A * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
0N/A * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
0N/A * version 2 for more details (a copy is included in the LICENSE file that
0N/A * accompanied this code).
0N/A *
0N/A * You should have received a copy of the GNU General Public License version
0N/A * 2 along with this work; if not, write to the Free Software Foundation,
0N/A * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
0N/A *
2362N/A * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
2362N/A * or visit www.oracle.com if you need additional information or have any
2362N/A * questions.
0N/A */
0N/A
0N/Apackage javax.swing.plaf.synth;
0N/A
0N/Aimport java.awt.*;
0N/Aimport java.awt.event.*;
0N/Aimport javax.swing.*;
0N/Aimport javax.swing.plaf.*;
0N/Aimport javax.swing.plaf.basic.BasicInternalFrameUI;
0N/Aimport java.beans.*;
0N/A
0N/A
0N/A/**
1999N/A * Provides the Synth L&F UI delegate for
1999N/A * {@link javax.swing.JInternalFrame}.
0N/A *
0N/A * @author David Kloba
0N/A * @author Joshua Outwater
0N/A * @author Rich Schiavi
1999N/A * @since 1.7
0N/A */
1999N/Apublic class SynthInternalFrameUI extends BasicInternalFrameUI
1999N/A implements SynthUI, PropertyChangeListener {
0N/A private SynthStyle style;
0N/A
1999N/A /**
1999N/A * Creates a new UI object for the given component.
1999N/A *
1999N/A * @param b component to create UI object for
1999N/A * @return the UI object
1999N/A */
0N/A public static ComponentUI createUI(JComponent b) {
0N/A return new SynthInternalFrameUI((JInternalFrame)b);
0N/A }
0N/A
1999N/A protected SynthInternalFrameUI(JInternalFrame b) {
0N/A super(b);
0N/A }
0N/A
1999N/A /**
1999N/A * @inheritDoc
1999N/A */
1999N/A @Override
0N/A public void installDefaults() {
0N/A frame.setLayout(internalFrameLayout = createLayoutManager());
0N/A updateStyle(frame);
0N/A }
0N/A
1999N/A /**
1999N/A * @inheritDoc
1999N/A */
1999N/A @Override
0N/A protected void installListeners() {
0N/A super.installListeners();
0N/A frame.addPropertyChangeListener(this);
0N/A }
0N/A
1999N/A /**
1999N/A * @inheritDoc
1999N/A */
1999N/A @Override
0N/A protected void uninstallComponents() {
0N/A if (frame.getComponentPopupMenu() instanceof UIResource) {
0N/A frame.setComponentPopupMenu(null);
0N/A }
0N/A super.uninstallComponents();
0N/A }
0N/A
1999N/A /**
1999N/A * @inheritDoc
1999N/A */
1999N/A @Override
0N/A protected void uninstallListeners() {
0N/A frame.removePropertyChangeListener(this);
0N/A super.uninstallListeners();
0N/A }
0N/A
0N/A private void updateStyle(JComponent c) {
0N/A SynthContext context = getContext(c, ENABLED);
0N/A SynthStyle oldStyle = style;
0N/A
0N/A style = SynthLookAndFeel.updateStyle(context, this);
0N/A if (style != oldStyle) {
0N/A Icon frameIcon = frame.getFrameIcon();
0N/A if (frameIcon == null || frameIcon instanceof UIResource) {
0N/A frame.setFrameIcon(context.getStyle().getIcon(
0N/A context, "InternalFrame.icon"));
0N/A }
0N/A if (oldStyle != null) {
0N/A uninstallKeyboardActions();
0N/A installKeyboardActions();
0N/A }
0N/A }
0N/A context.dispose();
0N/A }
0N/A
1999N/A /**
1999N/A * @inheritDoc
1999N/A */
1999N/A @Override
0N/A protected void uninstallDefaults() {
0N/A SynthContext context = getContext(frame, ENABLED);
0N/A style.uninstallDefaults(context);
0N/A context.dispose();
0N/A style = null;
0N/A if(frame.getLayout() == internalFrameLayout) {
0N/A frame.setLayout(null);
0N/A }
0N/A
0N/A }
0N/A
1999N/A /**
1999N/A * @inheritDoc
1999N/A */
1999N/A @Override
0N/A public SynthContext getContext(JComponent c) {
0N/A return getContext(c, getComponentState(c));
0N/A }
0N/A
0N/A private SynthContext getContext(JComponent c, int state) {
0N/A return SynthContext.getContext(SynthContext.class, c,
0N/A SynthLookAndFeel.getRegion(c), style, state);
0N/A }
0N/A
1999N/A private int getComponentState(JComponent c) {
0N/A return SynthLookAndFeel.getComponentState(c);
0N/A }
0N/A
1999N/A /**
1999N/A * @inheritDoc
1999N/A */
1999N/A @Override
0N/A protected JComponent createNorthPane(JInternalFrame w) {
0N/A titlePane = new SynthInternalFrameTitlePane(w);
0N/A titlePane.setName("InternalFrame.northPane");
0N/A return titlePane;
0N/A }
0N/A
1999N/A /**
1999N/A * @inheritDoc
1999N/A */
1999N/A @Override
0N/A protected ComponentListener createComponentListener() {
0N/A if (UIManager.getBoolean("InternalFrame.useTaskBar")) {
0N/A return new ComponentHandler() {
1999N/A @Override public void componentResized(ComponentEvent e) {
0N/A if (frame != null && frame.isMaximum()) {
0N/A JDesktopPane desktop = (JDesktopPane)e.getSource();
0N/A for (Component comp : desktop.getComponents()) {
0N/A if (comp instanceof SynthDesktopPaneUI.TaskBar) {
0N/A frame.setBounds(0, 0,
0N/A desktop.getWidth(),
0N/A desktop.getHeight() - comp.getHeight());
0N/A frame.revalidate();
0N/A break;
0N/A }
0N/A }
0N/A }
0N/A
0N/A // Update the new parent bounds for next resize, but don't
0N/A // let the super method touch this frame
0N/A JInternalFrame f = frame;
0N/A frame = null;
0N/A super.componentResized(e);
0N/A frame = f;
0N/A }
0N/A };
0N/A } else {
0N/A return super.createComponentListener();
0N/A }
0N/A }
0N/A
1999N/A /**
2146N/A * Notifies this UI delegate to repaint the specified component.
2146N/A * This method paints the component background, then calls
2146N/A * the {@link #paint(SynthContext,Graphics)} method.
2146N/A *
2146N/A * <p>In general, this method does not need to be overridden by subclasses.
2146N/A * All Look and Feel rendering code should reside in the {@code paint} method.
2146N/A *
2146N/A * @param g the {@code Graphics} object used for painting
2146N/A * @param c the component being painted
2146N/A * @see #paint(SynthContext,Graphics)
1999N/A */
1999N/A @Override
0N/A public void update(Graphics g, JComponent c) {
0N/A SynthContext context = getContext(c);
0N/A
0N/A SynthLookAndFeel.update(context, g);
0N/A context.getPainter().paintInternalFrameBackground(context,
0N/A g, 0, 0, c.getWidth(), c.getHeight());
0N/A paint(context, g);
0N/A context.dispose();
0N/A }
0N/A
1999N/A /**
2146N/A * Paints the specified component according to the Look and Feel.
2146N/A * <p>This method is not used by Synth Look and Feel.
2146N/A * Painting is handled by the {@link #paint(SynthContext,Graphics)} method.
2146N/A *
2146N/A * @param g the {@code Graphics} object used for painting
2146N/A * @param c the component being painted
2146N/A * @see #paint(SynthContext,Graphics)
1999N/A */
1999N/A @Override
0N/A public void paint(Graphics g, JComponent c) {
0N/A SynthContext context = getContext(c);
0N/A
0N/A paint(context, g);
0N/A context.dispose();
0N/A }
0N/A
1999N/A /**
1999N/A * Paints the specified component. This implementation does nothing.
1999N/A *
1999N/A * @param context context for the component being painted
2146N/A * @param g the {@code Graphics} object used for painting
2146N/A * @see #update(Graphics,JComponent)
1999N/A */
0N/A protected void paint(SynthContext context, Graphics g) {
0N/A }
0N/A
1999N/A /**
1999N/A * @inheritDoc
1999N/A */
1999N/A @Override
0N/A public void paintBorder(SynthContext context, Graphics g, int x,
0N/A int y, int w, int h) {
0N/A context.getPainter().paintInternalFrameBorder(context,
0N/A g, x, y, w, h);
0N/A }
0N/A
1999N/A /**
1999N/A * @inheritDoc
1999N/A */
1999N/A @Override
0N/A public void propertyChange(PropertyChangeEvent evt) {
0N/A SynthStyle oldStyle = style;
0N/A JInternalFrame f = (JInternalFrame)evt.getSource();
0N/A String prop = evt.getPropertyName();
0N/A
0N/A if (SynthLookAndFeel.shouldUpdateStyle(evt)) {
0N/A updateStyle(f);
0N/A }
0N/A
0N/A if (style == oldStyle &&
0N/A (prop == JInternalFrame.IS_MAXIMUM_PROPERTY ||
0N/A prop == JInternalFrame.IS_SELECTED_PROPERTY)) {
0N/A // Border (and other defaults) may need to change
0N/A SynthContext context = getContext(f, ENABLED);
0N/A style.uninstallDefaults(context);
0N/A style.installDefaults(context, this);
0N/A }
0N/A }
0N/A}