/* * Bibliothek - DockingFrames * Library built on Java/Swing, allows the user to "drag and drop" * panels containing any Swing-Component the developer likes to add. * * Copyright (C) 2012 Herve Guillaume, Benjamin Sigg * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 2.1 of the License, or (at your option) any later version. * * This library is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public * License along with this library; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA * * Herve Guillaume * rvguillaume@hotmail.com * FR - France * * Benjamin Sigg * benjamin_sigg@gmx.ch * CH - Switzerland */ package bibliothek.gui.dock.station.toolbar.title; import java.awt.Color; import java.awt.Dimension; import java.awt.Graphics; import java.awt.Graphics2D; import java.awt.RenderingHints; import java.awt.geom.RoundRectangle2D; import javax.swing.JComponent; import bibliothek.gui.Dockable; import bibliothek.gui.ToolbarExtension; import bibliothek.gui.dock.action.DockAction; import bibliothek.gui.dock.themes.basic.action.BasicTitleViewItem; import bibliothek.gui.dock.title.AbstractDockTitle; import bibliothek.gui.dock.title.DockTitle; import bibliothek.gui.dock.title.DockTitleFactory; import bibliothek.gui.dock.title.DockTitleRequest; import bibliothek.gui.dock.title.DockTitleVersion; /** * A implementation of a {@link DockTitle}. This particular implementation shows * round rectangular grip. Usually, this kind of title is used as top level * title, it means with toolbar and not with group components or components. * * @author Herve Guillaume */ public class ToolbarDockTitleRoundedBound extends AbstractDockTitle{ private final Color color; /** * Creates a new factory that creates new {@link ToolbarDockTitle}s. * * @param color * the color of the title * @return the new factory */ public static DockTitleFactory createFactory( final Color color ){ return new DockTitleFactory(){ @Override public void uninstall( DockTitleRequest request ){ // ignore } @Override public void request( DockTitleRequest request ){ request.answer(new ToolbarDockTitleRoundedBound(request .getVersion(), request.getTarget(), color)); } @Override public void install( DockTitleRequest request ){ // ignore } }; } public ToolbarDockTitleRoundedBound( DockTitleVersion origin, Dockable dockable, Color color ){ super(dockable, origin, true); this.color = color; } @Override protected BasicTitleViewItem<JComponent> createItemFor( DockAction action, Dockable dockable ){ return dockable.getController().getActionViewConverter() .createView(action, ToolbarExtension.TOOLBAR_TITLE, dockable); } @Override public Dimension getPreferredSize(){ final Dimension size = super.getPreferredSize(); return new Dimension(Math.max(5, size.width), Math.max(5, size.height)); } @Override public void setActive( boolean active ){ super.setActive(active); repaint(); } @Override public void paintBackground( Graphics g, JComponent component ){ super.paintComponents(g); final Graphics2D g2D = (Graphics2D) g; g2D.setRenderingHint(RenderingHints.KEY_ANTIALIASING, RenderingHints.VALUE_ANTIALIAS_ON); g2D.setColor(color); if (getOrientation().isHorizontal()){ final RoundRectangle2D rectangleRounded = new RoundRectangle2D.Double( 0, 0, getWidth(), getHeight() * 2, 8, 8); g2D.fill(rectangleRounded); } else{ final RoundRectangle2D rectangleRounded = new RoundRectangle2D.Double( 0, 0, getWidth() * 2, getHeight(), 8, 8); g2D.fill(rectangleRounded); } } }