CGraphicsDevice.java 7.9 KB
Newer Older
1
/*
2
 * Copyright (c) 2012, 2013, Oracle and/or its affiliates. All rights reserved.
3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
 *
 * This code is free software; you can redistribute it and/or modify it
 * under the terms of the GNU General Public License version 2 only, as
 * published by the Free Software Foundation.  Oracle designates this
 * particular file as subject to the "Classpath" exception as provided
 * by Oracle in the LICENSE file that accompanied this code.
 *
 * This code 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 General Public License
 * version 2 for more details (a copy is included in the LICENSE file that
 * accompanied this code).
 *
 * You should have received a copy of the GNU General Public License version
 * 2 along with this work; if not, write to the Free Software Foundation,
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
 *
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
 * or visit www.oracle.com if you need additional information or have any
 * questions.
 */

package sun.awt;

28 29
import java.awt.AWTPermission;
import java.awt.DisplayMode;
30 31
import java.awt.GraphicsConfiguration;
import java.awt.GraphicsDevice;
32
import java.awt.Insets;
33
import java.awt.Window;
34
import java.util.Objects;
35 36 37

import sun.java2d.opengl.CGLGraphicsConfig;

38 39
public final class CGraphicsDevice extends GraphicsDevice
        implements DisplayChangedListener {
40

41 42 43 44 45 46 47 48
    /**
     * CoreGraphics display ID. This identifier can become non-valid at any time
     * therefore methods, which is using this id should be ready to it.
     */
    private volatile int displayID;
    private volatile double xResolution;
    private volatile double yResolution;
    private volatile int scale;
49 50

    // Array of all GraphicsConfig instances for this device
51
    private final GraphicsConfiguration[] configs;
52 53 54 55 56 57

    // Default config (temporarily hard coded)
    private final int DEFAULT_CONFIG = 0;

    private static AWTPermission fullScreenExclusivePermission;

A
alexsch 已提交
58 59 60
    // Save/restore DisplayMode for the Full Screen mode
    private DisplayMode originalMode;

61
    public CGraphicsDevice(final int displayID) {
62
        this.displayID = displayID;
63
        configs = new GraphicsConfiguration[] {
64 65 66 67 68
            CGLGraphicsConfig.getConfig(this, 0)
        };
    }

    /**
69 70 71
     * Returns CGDirectDisplayID, which is the same id as @"NSScreenNumber" in
     * NSScreen.
     *
72 73
     * @return CoreGraphics display id.
     */
74
    public int getCGDisplayID() {
75 76 77 78 79 80 81 82
        return displayID;
    }

    /**
     * Return a list of all configurations.
     */
    @Override
    public GraphicsConfiguration[] getConfigurations() {
83
        return configs.clone();
84 85 86 87 88 89 90 91 92 93 94 95 96 97 98
    }

    /**
     * Return the default configuration.
     */
    @Override
    public GraphicsConfiguration getDefaultConfiguration() {
        return configs[DEFAULT_CONFIG];
    }

    /**
     * Return a human-readable screen description.
     */
    @Override
    public String getIDstring() {
99
        return "Display " + displayID;
100 101 102 103 104 105 106 107 108 109 110 111 112 113
    }

    /**
     * Returns the type of the graphics device.
     * @see #TYPE_RASTER_SCREEN
     * @see #TYPE_PRINTER
     * @see #TYPE_IMAGE_BUFFER
     */
    @Override
    public int getType() {
        return TYPE_RASTER_SCREEN;
    }

    public double getXResolution() {
114
        return xResolution;
115 116 117
    }

    public double getYResolution() {
118
        return yResolution;
119 120
    }

121
    public Insets getScreenInsets() {
122 123 124 125 126 127 128
        // the insets are queried synchronously and are not cached
        // since there are no Quartz or Cocoa means to receive notifications
        // on insets changes (e.g. when the Dock is resized):
        // the existing CGDisplayReconfigurationCallBack is not notified
        // as well as the NSApplicationDidChangeScreenParametersNotification
        // is fired on the Dock location changes only
        return nativeGetScreenInsets(displayID);
129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149
    }

    public int getScaleFactor() {
        return scale;
    }

    public void invalidate(final int defaultDisplayID) {
        displayID = defaultDisplayID;
    }

    @Override
    public void displayChanged() {
        xResolution = nativeGetXResolution(displayID);
        yResolution = nativeGetYResolution(displayID);
        scale = (int) nativeGetScaleFactor(displayID);
        //TODO configs/fullscreenWindow/modes?
    }

    @Override
    public void paletteChanged() {
        // devices do not need to react to this event.
150
    }
151 152 153 154 155 156 157 158 159 160 161 162

    /**
     * Enters full-screen mode, or returns to windowed mode.
     */
    @Override
    public synchronized void setFullScreenWindow(Window w) {
        Window old = getFullScreenWindow();
        if (w == old) {
            return;
        }

        boolean fsSupported = isFullScreenSupported();
A
alexsch 已提交
163

164
        if (fsSupported && old != null) {
165 166
            // enter windowed mode and restore original display mode
            exitFullScreenExclusive(old);
A
alexsch 已提交
167 168 169 170
            if (originalMode != null) {
                setDisplayMode(originalMode);
                originalMode = null;
            }
171 172 173 174 175
        }

        super.setFullScreenWindow(w);

        if (fsSupported && w != null) {
A
alexsch 已提交
176 177 178
            if (isDisplayChangeSupported()) {
                originalMode = getDisplayMode();
            }
179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221
            // enter fullscreen mode
            enterFullScreenExclusive(w);
        }
    }

    /**
     * Returns true if this GraphicsDevice supports
     * full-screen exclusive mode and false otherwise.
     */
    @Override
    public boolean isFullScreenSupported() {
        return isFSExclusiveModeAllowed();
    }

    private static boolean isFSExclusiveModeAllowed() {
        SecurityManager security = System.getSecurityManager();
        if (security != null) {
            if (fullScreenExclusivePermission == null) {
                fullScreenExclusivePermission =
                    new AWTPermission("fullScreenExclusive");
            }
            try {
                security.checkPermission(fullScreenExclusivePermission);
            } catch (SecurityException e) {
                return false;
            }
        }
        return true;
    }

    private static void enterFullScreenExclusive(Window w) {
        FullScreenCapable peer = (FullScreenCapable)w.getPeer();
        if (peer != null) {
            peer.enterFullScreenMode();
        }
    }

    private static void exitFullScreenExclusive(Window w) {
        FullScreenCapable peer = (FullScreenCapable)w.getPeer();
        if (peer != null) {
            peer.exitFullScreenMode();
        }
    }
222 223 224 225 226 227 228

    @Override
    public boolean isDisplayChangeSupported() {
        return true;
    }

    @Override
229
    public void setDisplayMode(final DisplayMode dm) {
230 231 232
        if (dm == null) {
            throw new IllegalArgumentException("Invalid display mode");
        }
233 234
        if (!Objects.equals(dm, getDisplayMode())) {
            nativeSetDisplayMode(displayID, dm.getWidth(), dm.getHeight(),
235 236 237
                    dm.getBitDepth(), dm.getRefreshRate());
            if (isFullScreenSupported() && getFullScreenWindow() != null) {
                getFullScreenWindow().setSize(dm.getWidth(), dm.getHeight());
238
            }
239 240 241 242 243 244 245 246 247 248 249 250 251
        }
    }

    @Override
    public DisplayMode getDisplayMode() {
        return nativeGetDisplayMode(displayID);
    }

    @Override
    public DisplayMode[] getDisplayModes() {
        return nativeGetDisplayModes(displayID);
    }

252 253
    private static native double nativeGetScaleFactor(int displayID);

254 255 256
    private static native void nativeSetDisplayMode(int displayID, int w, int h, int bpp, int refrate);

    private static native DisplayMode nativeGetDisplayMode(int displayID);
257

258 259 260 261 262
    private static native DisplayMode[] nativeGetDisplayModes(int displayID);

    private static native double nativeGetXResolution(int displayID);

    private static native double nativeGetYResolution(int displayID);
263

264
    private static native Insets nativeGetScreenInsets(int displayID);
265
}