Searched defs:screen (Results 1 - 25 of 55) sorted by relevance

123

/openjdk7/jdk/src/macosx/native/sun/java2d/opengl/
H A DCGLGraphicsConfig.h48 /* Do we need this if we are using all off-screen drawing ? */
79 * jint screen;
80 * The screen and PixelFormat for the associated CGLGraphicsConfig.
89 jint screen; member in struct:_CGLGraphicsConfigInfo
/openjdk7/jdk/src/solaris/native/sun/java2d/opengl/
H A DGLXGraphicsConfig.h46 * jint screen, visual;
47 * The X11 screen and visual IDs for the associated GLXGraphicsConfig.
59 jint screen; member in struct:_GLXGraphicsConfigInfo
90 VisualID GLXGC_FindBestVisual(JNIEnv *env, jint screen);
H A DGLXGraphicsConfig.c198 * Attempts to create a new GLXFBConfig for the requested screen and visual.
230 // find all fbconfigs for this screen with the provided attributes
350 * given screen. If no valid visual could be found, this method returns zero.
356 GLXGC_FindBestVisual(JNIEnv *env, jint screen) argument
362 J2dRlsTraceLn1(J2D_TRACE_INFO, "GLXGC_FindBestVisual: scn=%d", screen);
370 fbc = GLXGC_InitFBConfig(env, screen, 0);
388 "GLXGC_FindBestVisual: chose 0x%x as the best visual for screen %d",
389 visualid, screen);
454 * provided its screen number and visual ID. If the minimum requirements are
481 // when Xinerama is enabled, the screen I
[all...]
/openjdk7/jdk/src/windows/native/sun/java2d/opengl/
H A DWGLGraphicsConfig.h38 * jint screen, pixfmt;
39 * The screen and PixelFormat for the associated WGLGraphicsConfig.
45 jint screen; member in struct:_WGLGraphicsConfigInfo
/openjdk7/hotspot/agent/src/share/classes/com/sun/java/swing/ui/
H A DSplashScreen.java41 screen = new ImageIcon(url);
43 mt.addImage(screen.getImage(), 0);
54 if(screen == null)
58 setSize(screen.getIconWidth(), screen.getIconHeight());
63 int w = screen.getIconWidth() + i.left + i.right;
64 int h = screen.getIconHeight() + i.top + i.bottom;
75 if(screen != null)
80 g.drawImage(screen.getImage(), 1, 1, this);
84 private ImageIcon screen; field in class:SplashScreen
[all...]
/openjdk7/jdk/src/solaris/native/sun/awt/
H A Dawt_GraphicsEnv.h64 jfieldID screen; member in struct:X11GraphicsConfigIDs
69 jfieldID screen; member in struct:X11GraphicsDeviceIDs
H A Dawt_Plugin.c48 int32_t screen,
64 if (screen >= 0) {
65 defaultConfig = getDefaultConfig(screen);
47 getExtAwtData(Display *display, int32_t screen, int32_t *awt_depth, Colormap *awt_cmap, Visual **awt_visual, int32_t *awt_num_colors, void *pReserved) argument
/openjdk7/jdk/src/windows/native/sun/windows/
H A Dawt_Win32GraphicsConfig.cpp87 jint screen)
97 if (TRUE == MonitorBounds(AwtWin32GraphicsDevice::GetMonitor(screen), &rRW)) {
105 // primary screen
86 Java_sun_awt_Win32GraphicsConfig_getBounds(JNIEnv *env, jobject thisobj, jint screen) argument
H A Dawt_Win32GraphicsDevice.h42 AwtWin32GraphicsDevice(int screen, HMONITOR mhnd, Devices *arr);
65 int GetDeviceIndex() { return screen; }
86 static HDC GetDCFromScreen(int screen);
105 int screen; member in class:AwtWin32GraphicsDevice
H A Dawt_DrawingSurface.cpp73 int screen = AwtWin32GraphicsDevice::DeviceIndexForWindow(hwnd); local
74 hpalette = AwtWin32GraphicsDevice::GetPalette(screen);
H A Dawt_Label.cpp211 int screen = AwtWin32GraphicsDevice::DeviceIndexForWindow(GetHWnd()); local
212 AwtWin32GraphicsDevice::SelectPalette(hDC, screen);
/openjdk7/jdk/src/solaris/classes/sun/awt/X11/
H A DXMSelectionListener.java39 public void ownerChanged(int screen, XMSelection sel, long newOwner, long data, long timestamp); argument
44 public void ownerDeath(int screen, XMSelection sel, long deadOwner); argument
53 public void selectionChanged(int screen, XMSelection sel, long owner, XPropertyEvent event); argument
H A DXAWTXSettings.java68 public void ownerDeath(int screen, XMSelection sel, long deadOwner) { argument
69 if (log.isLoggable(PlatformLogger.FINE)) log.fine("Owner " + deadOwner + " died for selection " + sel + " screen "+ screen);
73 public void ownerChanged(int screen, XMSelection sel, long newOwner, long data, long timestamp) { argument
74 if (log.isLoggable(PlatformLogger.FINE)) log.fine("New Owner "+ newOwner + " for selection = " + sel + " screen " +screen );
77 public void selectionChanged(int screen, XMSelection sel, long owner , XPropertyEvent event) { argument
78 log.fine("Selection changed on sel " + sel + " screen = " + screen + " owner = " + owner + " event = " + event);
79 updateXSettings(screen,owne
104 updateXSettings(int screen, long owner) argument
[all...]
H A DXMSelection.java44 * will be called with the screen
50 * XMWSelectionListener will be called with the screen number and an event.
65 /* X atom array (one per screen) for this selection */
89 for (int screen = 0; screen < numScreens ; screen ++) {
90 initScreen(display,screen);
96 static void initScreen(long display, final int screen) { argument
99 long root = XlibWrapper.RootWindow(display,screen);
104 processRootEvent(ev, screen);
125 resetOwner(long owner, final int screen) argument
146 selectPerScreen(final int screen, long extra_mask) argument
187 processClientMessage(XEvent xev, int screen) argument
205 processRootEvent(XEvent xev, int screen) argument
265 getAtom(int screen) argument
272 setAtom(XAtom a, int screen) argument
278 getOwner(int screen) argument
285 setOwner(long owner, int screen) argument
296 dispatchSelectionChanged( XPropertyEvent ev, int screen) argument
307 dispatchOwnerDeath(XDestroyWindowEvent de, int screen) argument
319 dispatchSelectionEvent(XEvent xev, int screen) argument
332 dispatchOwnerChangedEvent(XEvent ev, int screen, long owner, long data, long timestamp) argument
[all...]
/openjdk7/jdk/src/windows/classes/sun/awt/windows/
H A DWRobotPeer.java36 WRobotPeer(GraphicsDevice screen) { argument
/openjdk7/jdk/src/share/classes/sun/java2d/pipe/hw/
H A DAccelDeviceEventNotifier.java86 * @param screen a screen number of the device which is a source of
92 public static final void eventOccured(int screen, int eventType) { argument
95 notifier.notifyListeners(eventType, screen);
100 * Adds the listener associated with a device on particular screen.
106 * @param screen the screen number indicating which device the listener is
109 public static final void addListener(AccelDeviceEventListener l,int screen){ argument
110 getInstance(true).add(l, screen);
122 private final void add(AccelDeviceEventListener theListener, int screen) { argument
142 notifyListeners(int deviceEventType, int screen) argument
[all...]
/openjdk7/jdk/src/share/classes/sun/awt/
H A DComponentFactory.java93 RobotPeer createRobot(Robot target, GraphicsDevice screen) argument
/openjdk7/jdk/src/macosx/classes/sun/awt/
H A DCGraphicsConfig.java49 private static native Rectangle2D nativeGetBounds(int screen); argument
/openjdk7/jdk/src/share/classes/java/awt/
H A DRobot.java81 * Constructs a Robot object in the coordinate system of the primary screen.
101 * Creates a Robot for the given screen device. Coordinates passed
104 * specified screen. Note that depending on the platform configuration,
107 * <li>share the same coordinate system to form a combined virtual screen</li>
112 * If screen devices are reconfigured such that the coordinate system is
115 * @param screen A screen GraphicsDevice indicating the coordinate
120 * @throws IllegalArgumentException if <code>screen</code> is not a screen
128 public Robot(GraphicsDevice screen) throw argument
133 init(GraphicsDevice screen) argument
[all...]
/openjdk7/jdk/src/solaris/native/sun/java2d/x11/
H A DX11PMBlitLoops.c217 int screen; local
233 screen = xsdo->configData->awt_visInfo.screen;
240 RootWindow(awt_display, screen),
252 image = XCreateImage(awt_display, DefaultVisual(awt_display, screen),
H A DX11TextRenderer_md.c80 root = RootWindow(awt_display, cData->awt_visInfo.screen);
216 int scan, screen; local
230 screen = xsdo->configData->awt_visInfo.screen;
231 cData = getDefaultConfig(screen);
/openjdk7/jdk/src/windows/classes/sun/awt/
H A DWin32GraphicsConfig.java70 protected Win32GraphicsDevice screen; field in class:Win32GraphicsConfig
101 this.screen = (Win32GraphicsDevice)device;
110 return screen;
121 return screen;
143 return screen.getColorModel();
155 return screen.getDynamicColorModel();
178 * screens. Device coordinates for screen and printer devices will
216 return (super.toString()+"[dev="+screen+",pixfmt="+visual+"]");
219 private native Rectangle getBounds(int screen); argument
222 return getBounds(screen
[all...]
/openjdk7/jdk/src/windows/classes/sun/java2d/d3d/
H A DD3DGraphicsDevice.java82 public static D3DGraphicsDevice createDevice(int screen) { argument
87 ContextCapabilities d3dCaps = getDeviceCaps(screen);
92 "screen " + screen);
97 System.out.println("Direct3D pipeline enabled on screen " + screen);
100 D3DGraphicsDevice gd = new D3DGraphicsDevice(screen, d3dCaps);
104 private static native int getDeviceCapsNative(int screen); argument
105 private static native String getDeviceIdNative(int screen); argument
106 private static ContextCapabilities getDeviceCaps(final int screen) { argument
176 enterFullScreenExclusiveNative(int screen, long hwnd) argument
180 enterFullScreenExclusive(final int screen, WindowPeer wp) argument
206 exitFullScreenExclusiveNative(int screen) argument
208 exitFullScreenExclusive(final int screen, WindowPeer w) argument
311 getCurrentDisplayModeNative(int screen) argument
313 getCurrentDisplayMode(final int screen) argument
334 configDisplayModeNative(int screen, long hwnd, int width, int height, int bitDepth, int refreshRate) argument
339 configDisplayMode(final int screen, final WindowPeer w, final int width, final int height, final int bitDepth, final int refreshRate) argument
383 enumDisplayModesNative(int screen, ArrayList modes) argument
386 enumDisplayModes(final int screen, final ArrayList modes) argument
403 getAvailableAcceleratedMemoryNative(int screen) argument
451 isD3DAvailableOnDeviceNative(int screen) argument
453 isD3DAvailableOnDevice(final int screen) argument
[all...]
/openjdk7/jdk/src/windows/classes/sun/java2d/windows/
H A DGDIWindowSurfaceData.java239 int greenMask, int blueMask, int screen);
238 initOps(WComponentPeer peer, int depth, int redMask, int greenMask, int blueMask, int screen) argument
/openjdk7/jdk/src/share/native/sun/awt/splashscreen/
H A Dsplashscreen_impl.h91 Screen *screen; member in struct:Splash
104 /* various shared and/or platform dependent splash screen functions */

Completed in 82 milliseconds

123