4632N/A/*
4632N/A * Copyright (c) 2011, Oracle and/or its affiliates. All rights reserved.
4632N/A * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4632N/A *
4632N/A * This code is free software; you can redistribute it and/or modify it
4632N/A * under the terms of the GNU General Public License version 2 only, as
4632N/A * published by the Free Software Foundation. Oracle designates this
4632N/A * particular file as subject to the "Classpath" exception as provided
4632N/A * by Oracle in the LICENSE file that accompanied this code.
4632N/A *
4632N/A * This code is distributed in the hope that it will be useful, but WITHOUT
4632N/A * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
4632N/A * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
4632N/A * version 2 for more details (a copy is included in the LICENSE file that
4632N/A * accompanied this code).
4632N/A *
4632N/A * You should have received a copy of the GNU General Public License version
4632N/A * 2 along with this work; if not, write to the Free Software Foundation,
4632N/A * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
4632N/A *
4632N/A * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
4632N/A * or visit www.oracle.com if you need additional information or have any
4632N/A * questions.
4632N/A */
4632N/A
4632N/A//
4632N/A// AquaFocus.java
4632N/A// Copyright (c) 2009 Apple Inc. All rights reserved.
4632N/A//
4632N/A
4632N/Apackage com.apple.laf;
4632N/A
4632N/Aimport java.awt.*;
4632N/A
4632N/Aimport javax.swing.*;
4632N/A
4632N/Aimport sun.java2d.*;
4632N/Aimport apple.laf.JRSUIFocus;
4632N/A
4632N/Aimport com.apple.laf.AquaUtils.Painter;
4632N/A
4632N/Apublic class AquaFocus {
4632N/A interface Drawable {
4639N/A public void draw(final Graphics2D sg2d);
4632N/A }
4632N/A
4632N/A static boolean paintFocus(final Graphics g, final Drawable drawable) {
4632N/A // TODO: requires OSXSurfaceData
4632N/A return false;
4632N/A /*if (!(g instanceof SunGraphics2D)) return false;
4632N/A final SunGraphics2D sg2d = (SunGraphics2D)g;
4632N/A
4632N/A final SurfaceData surfaceData = sg2d.getSurfaceData();
4632N/A if (!(surfaceData instanceof OSXSurfaceData)) return false;
4632N/A
4632N/A try {
4632N/A ((OSXSurfaceData)surfaceData).performCocoaDrawing(sg2d, new OSXSurfaceData.CGContextDrawable() {
4632N/A @Override
4632N/A public void drawIntoCGContext(final long cgContext) {
4632N/A final JRSUIFocus focus = new JRSUIFocus(cgContext);
4632N/A focus.beginFocus(JRSUIFocus.RING_BELOW);
4632N/A drawable.draw(sg2d);
4632N/A focus.endFocus();
4632N/A }
4632N/A });
4632N/A } finally {
4632N/A sg2d.dispose();
4632N/A }
4632N/A return true;*/
4632N/A }
4632N/A
4632N/A public static Icon createFocusedIcon(final Icon tmpIcon, final Component c, final int slack) {
4632N/A return new FocusedIcon(tmpIcon, slack);
4632N/A }
4632N/A
4632N/A/* -- disabled until we can get the real JRSUI focus painter working
4632N/A
4632N/A static class FocusedIcon implements Icon {
4632N/A final Icon icon;
4632N/A final int slack;
4632N/A
4632N/A public FocusedIcon(final Icon icon, final int slack) {
4632N/A this.icon = icon;
4632N/A this.slack = slack;
4632N/A }
4632N/A
4632N/A @Override
4632N/A public int getIconHeight() {
4632N/A return icon.getIconHeight() + slack + slack;
4632N/A }
4632N/A
4632N/A @Override
4632N/A public int getIconWidth() {
4632N/A return icon.getIconWidth() + slack + slack;
4632N/A }
4632N/A
4632N/A @Override
4632N/A public void paintIcon(final Component c, final Graphics g, final int x, final int y) {
4632N/A final boolean painted = paintFocus(g, new Drawable() {
4632N/A @Override
4632N/A public void draw(SunGraphics2D sg2d) {
4632N/A icon.paintIcon(c, sg2d, x + slack, y + slack);
4632N/A }
4632N/A });
4632N/A if (!painted) {
4632N/A icon.paintIcon(c, g, x + slack, y + slack);
4632N/A }
4632N/A }
4632N/A }
4632N/A */
4632N/A
4632N/A static class FocusedIcon extends AquaUtils.ShadowBorder implements Icon {
4632N/A final Icon icon;
4632N/A final int slack;
4632N/A
4632N/A public FocusedIcon(final Icon icon, final int slack) {
4632N/A super(
4632N/A new Painter() {
4632N/A public void paint(Graphics g, int x, int y, int w, int h) {
4632N/A Graphics2D imgG = (Graphics2D)g;
4632N/A imgG.setComposite(AlphaComposite.Src);
4632N/A imgG.setColor(UIManager.getColor("Focus.color"));
4632N/A imgG.fillRect(x, y, w - (slack * 2), h - (slack * 2));
4632N/A imgG.setComposite(AlphaComposite.DstAtop);
4632N/A icon.paintIcon(null, imgG, x, y);
4632N/A }
4632N/A },
4632N/A new Painter() {
4632N/A public void paint(Graphics g, int x, int y, int w, int h) {
4632N/A ((Graphics2D)g).setComposite(AlphaComposite.SrcAtop);
4632N/A icon.paintIcon(null, g, x, y);
4632N/A }
4632N/A },
4632N/A slack, slack, 0.0f, 1.8f, 7
4632N/A );
4632N/A this.icon = icon;
4632N/A this.slack = slack;
4632N/A }
4632N/A
4632N/A @Override
4632N/A public int getIconHeight() {
4632N/A return icon.getIconHeight() + slack + slack;
4632N/A }
4632N/A
4632N/A @Override
4632N/A public int getIconWidth() {
4632N/A return icon.getIconWidth() + slack + slack;
4632N/A }
4632N/A
4632N/A @Override
4632N/A public void paintIcon(final Component c, final Graphics g, final int x, final int y) {
4632N/A paintBorder(c, g, x, y, getIconWidth(), getIconHeight());
4632N/A icon.paintIcon(c, g, x + slack, y + slack);
4632N/A }
4632N/A }
4632N/A}