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/Apackage sun.awt;
4632N/A
4632N/Aimport java.awt.*;
4632N/Aimport java.awt.geom.*;
4632N/Aimport java.awt.image.*;
4632N/A
4632N/Aimport sun.java2d.SurfaceData;
4639N/Aimport sun.java2d.opengl.CGLLayer;
4632N/Aimport sun.lwawt.macosx.CPlatformView;
4632N/A
4632N/Apublic class CGraphicsConfig extends GraphicsConfiguration {
4632N/A private final CGraphicsDevice device;
4632N/A private ColorModel colorModel;
4632N/A
4632N/A public CGraphicsConfig(CGraphicsDevice device) {
4632N/A this.device = device;
4632N/A }
4632N/A
4632N/A @Override
4632N/A public BufferedImage createCompatibleImage(int width, int height) {
4632N/A throw new UnsupportedOperationException("not implemented");
4632N/A }
4632N/A
4632N/A private static native Rectangle2D nativeGetBounds(int screen);
4632N/A
4632N/A @Override
4632N/A public Rectangle getBounds() {
6062N/A final Rectangle2D nativeBounds = nativeGetBounds(device.getCGDisplayID());
4632N/A return nativeBounds.getBounds(); // does integer rounding
4632N/A }
4632N/A
4632N/A @Override
4632N/A public ColorModel getColorModel() {
4632N/A if (colorModel == null) {
4632N/A colorModel = getColorModel(Transparency.OPAQUE);
4632N/A }
4632N/A return colorModel;
4632N/A }
4632N/A
4632N/A @Override
4632N/A public ColorModel getColorModel(int transparency) {
4632N/A throw new UnsupportedOperationException("not implemented");
4632N/A }
4632N/A
4632N/A @Override
4632N/A public AffineTransform getDefaultTransform() {
4632N/A return new AffineTransform();
4632N/A }
4632N/A
4632N/A @Override
4632N/A public CGraphicsDevice getDevice() {
4632N/A return device;
4632N/A }
4632N/A
4632N/A @Override
4632N/A public AffineTransform getNormalizingTransform() {
4632N/A double xscale = device.getXResolution() / 72.0;
4632N/A double yscale = device.getYResolution() / 72.0;
4632N/A return new AffineTransform(xscale, 0.0, 0.0, yscale, 0.0, 0.0);
4632N/A }
4632N/A
4632N/A
4632N/A /**
4632N/A * The following methods are invoked from CToolkit.java and
4632N/A * LWWindowPeer.java rather than having the native
4632N/A * implementations hardcoded in those classes. This way the appropriate
4632N/A * actions are taken based on the peer's GraphicsConfig, whether it is
4632N/A * an CGLGraphicsConfig or something else.
4632N/A */
4632N/A
4632N/A /**
4632N/A * Creates a new SurfaceData that will be associated with the given
4632N/A * LWWindowPeer.
4632N/A */
4632N/A public SurfaceData createSurfaceData(CPlatformView pView) {
4632N/A throw new UnsupportedOperationException("not implemented");
4632N/A }
4632N/A
4632N/A /**
4639N/A * Creates a new SurfaceData that will be associated with the given
4639N/A * CGLLayer.
4639N/A */
4639N/A public SurfaceData createSurfaceData(CGLLayer layer) {
4639N/A throw new UnsupportedOperationException("not implemented");
4639N/A }
4639N/A
4639N/A /**
4632N/A * Creates a new hidden-acceleration image of the given width and height
4632N/A * that is associated with the target Component.
4632N/A */
4632N/A public Image createAcceleratedImage(Component target,
4632N/A int width, int height)
4632N/A {
4632N/A throw new UnsupportedOperationException("not implemented");
4632N/A }
4632N/A
4632N/A /**
4632N/A * The following methods correspond to the multibuffering methods in
4632N/A * LWWindowPeer.java...
4632N/A */
4632N/A
4632N/A /**
4632N/A * Attempts to create a native backbuffer for the given peer. If
4632N/A * the requested configuration is not natively supported, an AWTException
4632N/A * is thrown. Otherwise, if the backbuffer creation is successful, a
4632N/A * handle to the native backbuffer is returned.
4632N/A */
4632N/A public long createBackBuffer(CPlatformView pView,
4632N/A int numBuffers, BufferCapabilities caps)
4632N/A throws AWTException
4632N/A {
4632N/A throw new UnsupportedOperationException("not implemented");
4632N/A }
4632N/A
4632N/A public void destroyBackBuffer(long backBuffer)
4632N/A throws AWTException
4632N/A {
4632N/A throw new UnsupportedOperationException("not implemented");
4632N/A }
4632N/A
4632N/A /**
4632N/A * Creates a VolatileImage that essentially wraps the target Component's
4632N/A * backbuffer, using the provided backbuffer handle.
4632N/A */
4632N/A public VolatileImage createBackBufferImage(Component target,
4632N/A long backBuffer)
4632N/A {
4632N/A throw new UnsupportedOperationException("not implemented");
4632N/A }
4632N/A
4632N/A /**
4632N/A * Performs the native flip operation for the given target Component.
4632N/A */
4632N/A public void flip(CPlatformView delegate,
4632N/A Component target, VolatileImage xBackBuffer,
4632N/A int x1, int y1, int x2, int y2,
4632N/A BufferCapabilities.FlipContents flipAction)
4632N/A {
4632N/A throw new UnsupportedOperationException("not implemented");
4632N/A }
4632N/A
4632N/A @Override
4632N/A public boolean isTranslucencyCapable() {
4632N/A //we know for sure we have capable config :)
4632N/A return true;
4632N/A }
4632N/A}