Searched refs:GraphicsDevice (Results 1 - 25 of 89) sorted by relevance

1234

/openjdk7/jdk/src/share/classes/sun/awt/image/
H A DBufferedImageDevice.java28 import java.awt.GraphicsDevice;
31 public class BufferedImageDevice extends GraphicsDevice
40 * Returns the type of this <code>GraphicsDevice</code>.
41 * @return the type of this <code>GraphicsDevice</code>, which can
48 return GraphicsDevice.TYPE_IMAGE_BUFFER;
53 * <code>GraphicsDevice</code>.
55 * of this <code>GraphicsDevice</code>.
63 * objects associated with this <code>GraphicsDevice</code>.
66 * <code>GraphicsDevice</code>.
74 * associated with this <code>GraphicsDevice</cod
[all...]
H A DBufferedImageGraphicsConfig.java32 import java.awt.GraphicsDevice;
67 GraphicsDevice gd;
88 public GraphicsDevice getDevice() {
/openjdk7/jdk/src/share/classes/java/awt/
H A DPointerInfo.java30 * It provides the <code>GraphicsDevice</code> where the
47 private GraphicsDevice device;
53 PointerInfo(GraphicsDevice device, Point location) {
59 * Returns the <code>GraphicsDevice</code> where the mouse pointer
62 * @return <code>GraphicsDevice</code> corresponding to the pointer
65 public GraphicsDevice getDevice() {
H A DMouseInfo.java48 * The <code>GraphicsDevice</code> stored in this <code>PointerInfo</code>
50 * depends on whether or not the <code>GraphicsDevice</code> is part of a virtual
54 * of the <code>GraphicsDevice</code>. See {@link GraphicsConfiguration}
84 GraphicsDevice[] gds = GraphicsEnvironment.getLocalGraphicsEnvironment().
102 private static boolean areScreenDevicesIndependent(GraphicsDevice[] gds) {
/openjdk7/jdk/src/macosx/classes/sun/lwawt/macosx/
H A DCPrinterDevice.java30 public class CPrinterDevice extends GraphicsDevice {
38 * Returns the type of this <code>GraphicsDevice</code>.
39 * @return the type of this <code>GraphicsDevice</code>, which can
46 return GraphicsDevice.TYPE_PRINTER;
51 * <code>GraphicsDevice</code>.
53 * of this <code>GraphicsDevice</code>.
61 * objects associated with this <code>GraphicsDevice</code>.
64 * <code>GraphicsDevice</code>.
72 * associated with this <code>GraphicsDevice</code>.
74 * of this <code>GraphicsDevice</cod
[all...]
H A DCPrinterGraphicsConfig.java38 GraphicsDevice gd;
51 * Returns the {@link GraphicsDevice} associated with this
53 * @return a <code>GraphicsDevice</code> object that is
56 public GraphicsDevice getDevice() {
/openjdk7/jdk/test/java/awt/GraphicsEnvironment/
H A DPreferLocaleFonts.java55 public GraphicsDevice getDefaultScreenDevice() throws HeadlessException {
58 public GraphicsDevice[] getScreenDevices() throws HeadlessException {
/openjdk7/jdk/test/java/awt/Multiscreen/TranslucencyThrowsExceptionWhenFullScreen/
H A DTranslucencyThrowsExceptionWhenFullScreen.java50 GraphicsDevice[] devices = ge.getScreenDevices();
51 for (GraphicsDevice device : devices) {
61 private static void testGraphicsDevice(GraphicsDevice device, Frame frame) {
/openjdk7/jdk/src/share/classes/sun/print/
H A DPrinterGraphicsDevice.java30 import java.awt.GraphicsDevice;
33 public final class PrinterGraphicsDevice extends GraphicsDevice {
H A DPrinterGraphicsConfig.java29 import java.awt.GraphicsDevice;
42 GraphicsDevice gd;
57 public GraphicsDevice getDevice() {
/openjdk7/jdk/test/java/awt/GraphicsDevice/
H A DCloneConfigsTest.java39 import java.awt.GraphicsDevice;
52 GraphicsDevice[] devices = env.getScreenDevices();
56 for (GraphicsDevice gd : devices) {
82 public GraphicsDevice getDevice() {
/openjdk7/jdk/src/windows/classes/sun/awt/
H A DWin32GraphicsEnvironment.java29 import java.awt.GraphicsDevice;
55 * @see GraphicsDevice
76 * includes everything from the native GraphicsDevice elements to
95 public GraphicsDevice getDefaultScreenDevice() {
129 GraphicsDevice newDevices[] = new GraphicsDevice[getNumScreens()];
130 GraphicsDevice oldScreens[] = screens;
167 for (GraphicsDevice gd : screens) {
205 protected GraphicsDevice makeScreenDevice(int screennum) {
206 GraphicsDevice devic
[all...]
/openjdk7/jdk/test/java/awt/FullScreen/UninitializedDisplayModeChangeTest/
H A DDisplayModeChanger.java27 import java.awt.GraphicsDevice;
40 final GraphicsDevice gd =
77 private static DisplayMode findDisplayMode(GraphicsDevice gd) {
/openjdk7/jdk/test/java/awt/Multiscreen/LocationRelativeToTest/
H A DLocationRelativeToTest.java54 GraphicsDevice[] gds = ge.getScreenDevices();
55 GraphicsDevice gdDef = ge.getDefaultScreenDevice();
69 for (GraphicsDevice gd : gds)
/openjdk7/jdk/src/share/classes/sun/java2d/
H A DHeadlessGraphicsEnvironment.java29 import java.awt.GraphicsDevice;
70 public GraphicsDevice[] getScreenDevices()
75 public GraphicsDevice getDefaultScreenDevice()
H A DSunGraphicsEnvironment.java32 import java.awt.GraphicsDevice;
73 * @see GraphicsDevice
128 protected GraphicsDevice[] screens;
133 public synchronized GraphicsDevice[] getScreenDevices() {
134 GraphicsDevice[] ret = screens;
137 ret = new GraphicsDevice[num];
162 protected abstract GraphicsDevice makeScreenDevice(int screennum);
167 public GraphicsDevice getDefaultScreenDevice() {
251 * Return the bounds of a GraphicsDevice, less its screen insets.
254 public static Rectangle getUsableBounds(GraphicsDevice g
[all...]
/openjdk7/jdk/src/macosx/classes/sun/awt/
H A DCGraphicsEnvironment.java38 * @see GraphicsDevice
169 public synchronized GraphicsDevice getDefaultScreenDevice() throws HeadlessException {
183 public synchronized GraphicsDevice[] getScreenDevices() throws HeadlessException {
187 public synchronized GraphicsDevice getScreenDevice(int displayID) {
197 protected GraphicsDevice makeScreenDevice(int screennum) {
/openjdk7/jdk/test/java/awt/Multiscreen/UpdateGCTest/
H A DUpdateGCTest.java46 GraphicsDevice[] gds = ge.getScreenDevices();
53 for (GraphicsDevice gd : gds)
73 for (GraphicsDevice gdOrig : gds)
104 for (GraphicsDevice gd : gds)
/openjdk7/jdk/test/java/awt/Multiscreen/WindowGCChangeTest/
H A DWindowGCChangeTest.java67 GraphicsDevice[] gds = ge.getScreenDevices();
77 GraphicsDevice defgd = ge.getDefaultScreenDevice();
101 GraphicsDevice defGD = gds[defGDNo];
102 GraphicsDevice nondefGD = gds[nondefGDNo];
/openjdk7/jdk/test/java/awt/Robot/CtorTest/
H A DCtorTest.java27 @summary Robot(GraphicsDevice) constructor initializes LEGAL_BUTTON_MASK variable improperly
48 GraphicsDevice graphicsDevice = GraphicsEnvironment.
/openjdk7/jdk/test/java/awt/FullScreen/TranslucentWindow/
H A DTranslucentWindow.java35 import static java.awt.GraphicsDevice.WindowTranslucency.*;
42 GraphicsDevice gd = ge.getDefaultScreenDevice();
/openjdk7/jdk/test/sun/java2d/DirectX/OpaqueImageToSurfaceBlitTest/
H A DOpaqueImageToSurfaceBlitTest.java38 import java.awt.GraphicsDevice;
50 GraphicsDevice gd = ge.getDefaultScreenDevice();
/openjdk7/jdk/test/java/awt/Multiscreen/DeviceIdentificationTest/
H A DDeviceIdentificationTest.java51 import java.awt.GraphicsDevice;
83 GraphicsDevice gds[] =
88 for (GraphicsDevice gd : gds) {
103 GraphicsDevice gd = gc.getDevice();
116 final GraphicsDevice gd = gc.getDevice();
/openjdk7/jdk/src/share/classes/java/awt/image/
H A DVolatileImage.java32 import java.awt.GraphicsDevice;
/openjdk7/jdk/src/windows/classes/sun/awt/windows/
H A DWRobotPeer.java36 WRobotPeer(GraphicsDevice screen) {

Completed in 7788 milliseconds

1234