/* * Copyright (c) 2002 and later by MH Software-Entwicklung. All Rights Reserved. * * JTattoo is multiple licensed. If your are an open source developer you can use * it under the terms and conditions of the GNU General Public License version 2.0 * or later as published by the Free Software Foundation. * * see: gpl-2.0.txt * * If you pay for a license you will become a registered user who could use the * software under the terms and conditions of the GNU Lesser General Public License * version 2.0 or later with classpath exception as published by the Free Software * Foundation. * * see: lgpl-2.0.txt * see: classpath-exception.txt * * Registered users could also use JTattoo under the terms and conditions of the * Apache License, Version 2.0 as published by the Apache Software Foundation. * * see: APACHE-LICENSE-2.0.txt */ package com.jtattoo.plaf.smart; import com.jtattoo.plaf.*; import java.awt.*; import javax.swing.Icon; import javax.swing.JInternalFrame; /** * @author Michael Hagen */ public class SmartInternalFrameTitlePane extends BaseInternalFrameTitlePane { public SmartInternalFrameTitlePane(JInternalFrame f) { super(f); } public void paintPalette(Graphics g) { int width = getWidth(); int height = getHeight(); Color backColor = null; Color frameColor = null; if (JTattooUtilities.isFrameActive(this)) { JTattooUtilities.fillHorGradient(g, AbstractLookAndFeel.getTheme().getWindowTitleColors(), 0, 0, width, height); backColor = AbstractLookAndFeel.getTheme().getWindowTitleColors()[10]; frameColor = ColorHelper.darker(AbstractLookAndFeel.getWindowTitleColorDark(), 15); } else { JTattooUtilities.fillHorGradient(g, AbstractLookAndFeel.getTheme().getWindowInactiveTitleColors(), 0, 0, width, height); backColor = AbstractLookAndFeel.getTheme().getWindowInactiveTitleColors()[10]; frameColor = ColorHelper.darker(AbstractLookAndFeel.getWindowInactiveTitleColorDark(), 15); } g.setColor(frameColor); g.drawLine(0, height - 1, width, height - 1); int dx = 8; int dy = 2; int dw = width - buttonsWidth - 2 * 8; Graphics2D g2D = (Graphics2D) g; Composite composite = g2D.getComposite(); AlphaComposite alpha = AlphaComposite.getInstance(AlphaComposite.SRC_OVER, 0.6f); g2D.setComposite(alpha); float dc1 = 50.0f; float dc2 = 5.0f; Color c1 = ColorHelper.brighter(backColor, dc1); Color c2 = null; while ((dy + 2) < height) { c2 = ColorHelper.darker(backColor, dc2); dc2 += 5.0f; g.setColor(c1); g.drawLine(dx, dy, dx + dw, dy); dy++; g.setColor(c2); g.drawLine(dx, dy, dx + dw, dy); dy += 2; } g2D.setComposite(composite); } public void paintBackground(Graphics g) { Graphics2D g2D = (Graphics2D) g; int width = getWidth(); int height = getHeight(); Color backColor = null; Color frameColor = null; if (JTattooUtilities.isActive(this)) { backColor = AbstractLookAndFeel.getTheme().getWindowTitleColors()[10]; frameColor = AbstractLookAndFeel.getTheme().getFrameColor(); JTattooUtilities.fillHorGradient(g, AbstractLookAndFeel.getTheme().getWindowTitleColors(), 0, 0, width, height); } else { backColor = AbstractLookAndFeel.getTheme().getWindowInactiveTitleColors()[10]; frameColor = ColorHelper.brighter(AbstractLookAndFeel.getTheme().getFrameColor(), 40); JTattooUtilities.fillHorGradient(g, AbstractLookAndFeel.getTheme().getWindowInactiveTitleColors(), 0, 0, width, height); } int iconWidth = 0; Icon icon = frame.getFrameIcon(); if (icon != null) { iconWidth = icon.getIconWidth() + 5; } int titleWidth = 0; String frameTitle = frame.getTitle(); if (frameTitle != null) { g.setFont(getFont()); FontMetrics fm = JTattooUtilities.getFontMetrics(this, g, getFont()); titleWidth = fm.stringWidth(JTattooUtilities.getClippedText(frame.getTitle(), fm, getWidth() - iconWidth - buttonsWidth - 15)) + 10; } int dx; int dw; boolean leftToRight = JTattooUtilities.isLeftToRight(frame); int xOffset = leftToRight ? iconWidth + 10 + titleWidth : width - 10 - iconWidth - titleWidth; if (leftToRight) { dw = width - buttonsWidth - xOffset - 10; dx = xOffset; } else { dw = xOffset - buttonsWidth - 10; dx = buttonsWidth + 10; } int dy = 3; if (!AbstractLookAndFeel.getTheme().isMacStyleWindowDecorationOn() && !AbstractLookAndFeel.getTheme().isCenterWindowTitleOn() && (dw > 0)) { Composite composite = g2D.getComposite(); AlphaComposite alpha = AlphaComposite.getInstance(AlphaComposite.SRC_OVER, 0.6f); g2D.setComposite(alpha); float dc1 = 50.0f; float dc2 = 5.0f; Color c1 = ColorHelper.brighter(backColor, dc1); Color c2 = null; while ((dy + 5) < height) { c2 = ColorHelper.darker(backColor, dc2); dc2 += 5.0f; g.setColor(c1); g.drawLine(dx, dy, dx + dw, dy); dy++; g.setColor(c2); g.drawLine(dx, dy, dx + dw, dy); dy += 3; } g2D.setComposite(composite); } g.setColor(frameColor); g.drawLine(0, height - 1, width, height - 1); } public void paintBorder(Graphics g) { } public void paintText(Graphics g, int x, int y, String title) { if (isActive()) { Color titleColor = AbstractLookAndFeel.getWindowTitleForegroundColor(); if (ColorHelper.getGrayValue(titleColor) > 164) { g.setColor(Color.black); JTattooUtilities.drawString(frame, g, title, x + 1, y); } g.setColor(titleColor); JTattooUtilities.drawString(frame, g, title, x, y - 1); } else { g.setColor(AbstractLookAndFeel.getWindowInactiveTitleForegroundColor()); JTattooUtilities.drawString(frame, g, title, x, y - 1); } } }