Searched defs:window (Results 26 - 50 of 116) sorted by relevance

12345

/openjdk7/jdk/src/share/classes/com/sun/awt/
H A DAWTUtilities.java39 * <li>Setting a constant alpha value for each pixel of a top-level window
40 * <li>Making a window non-opaque, after that it paints only explicitly
45 * A "top-level window" is an instance of the {@code Window} class (or its
145 * Set the opacity of the window. The opacity is at the range [0..1].
147 * the mouse event handling on this window. This is
154 * <p>Also note that the window must not be in the full-screen mode
158 * @param window the window to set the opacity level to
159 * @param opacity the opacity level to set to the window
160 * @throws NullPointerException if the window argumen
168 setWindowOpacity(Window window, float opacity) argument
184 getWindowOpacity(Window window) argument
218 getWindowShape(Window window) argument
249 setWindowShape(Window window, Shape shape) argument
351 setWindowOpaque(Window window, boolean isOpaque) argument
371 isWindowOpaque(Window window) argument
[all...]
/openjdk7/jdk/src/solaris/native/sun/awt/
H A DMouseInfo.c96 (JNIEnv * env, jclass cls, jobject window)
112 winPeer = (*env)->GetObjectField(env, window, componentIDs.peer);
95 Java_sun_awt_DefaultMouseInfoPeer_isWindowUnderMouse(JNIEnv * env, jclass cls, jobject window) argument
H A Dawt_DrawingSurface.c271 /* Get window attributes to set other values */
388 Window window = (Window)platformInfo; local
396 if (window != None) {
397 widget = XtWindowToWidget(awt_display, window);
H A Dawt_Robot.c82 * a window resize operation. Works only with XTEST2.2*/
93 static XImage *getWindowImage(Display * display, Window window, argument
128 window,
143 window,
/openjdk7/jdk/src/windows/classes/sun/awt/windows/
H A DTranslucentWindowPainter.java54 * The window associated with the peer is updated either given an image or
55 * the window is repainted to an internal buffer which is then used to update
56 * the window.
63 protected Window window; field in class:TranslucentWindowPainter
104 this.window = (Window)peer.getTarget();
114 * Updates the the window associated with this painter with the contents
127 * Updates the window associated with the painter.
129 * @param repaint indicates if the window should be completely repainted
139 window.paintAll(g);
166 * A painter which uses BufferedImage as the internal buffer. The window
[all...]
/openjdk7/jdk/test/java/awt/Focus/WindowInitialFocusTest/
H A DWindowInitialFocusTest.java41 Window window = new Window(frame); field in class:WindowInitialFocusTest
64 window.setBounds(800, 200, 200, 100);
65 window.setLayout(new FlowLayout());
66 window.add(button);
68 window.addWindowFocusListener(new WindowAdapter() {
80 // Test 1. Show the window, check that it become focused.
82 window.setVisible(true);
86 throw new TestFailedException("the window didn't get focused on its showing!");
89 // Test 2. Show unfocusable window, check that it doesn't become focused.
91 window
[all...]
/openjdk7/jdk/test/java/awt/xembed/server/
H A DTestXEmbedServer.java174 public abstract Process startClient(Rectangle bounds[], long window); argument
186 log.fine("Added XEmbed server(Canvas) with X window ID " + pid.getWindow());
/openjdk7/jdk/src/share/demo/scripting/jconsole-plugin/src/com/sun/demo/scripting/jconsole/
H A DScriptJConsolePlugin.java57 private volatile ScriptShellPanel window; field in class:ScriptJConsolePlugin
87 window = new ScriptShellPanel(this);
91 tabs.put("Script Shell", window);
109 window.dispose();
178 engine.put("window", window);
/openjdk7/jdk/src/share/native/java/util/zip/zlib-1.2.3/
H A Dinffast.c104 unsigned wsize; /* window size or zero if not using window */
105 unsigned whave; /* valid bytes in the window */
106 unsigned write; /* window write index */
107 unsigned char FAR *window; /* allocated sliding window, if wsize != 0 */ local
116 /* window position, window bytes to copy */
134 window = state->window;
[all...]
/openjdk7/jdk/src/solaris/classes/sun/awt/X11/
H A DXPanelPeer.java36 * Embeds the given window into container using XEmbed protocol
38 public void xembed(long window) { argument
40 embedder.add(window);
H A DXPropertyCache.java31 * Implements abstract X window property caching mechanism. The
80 public static boolean isCached(long window, XAtom property) { argument
81 Map<XAtom, PropertyCacheEntry> entryMap = windowToMap.get(window);
89 public static PropertyCacheEntry getCacheEntry(long window, XAtom property) { argument
90 Map<XAtom, PropertyCacheEntry> entryMap = windowToMap.get(window);
98 public static void storeCache(PropertyCacheEntry entry, long window, XAtom property) { argument
99 Map<XAtom, PropertyCacheEntry> entryMap = windowToMap.get(window);
102 windowToMap.put(window, entryMap);
107 public static void clearCache(long window) { argument
108 windowToMap.remove(window);
111 clearCache(long window, XAtom property) argument
[all...]
H A DXlibUtil.java67 // all the Xinerama windows share the same root window
82 * Checks if the given window is a root window for the given screen
103 * Returns the bounds of the given window, in absolute coordinates
105 static Rectangle getWindowGeometry(long window) argument
111 window,
138 * Translates the given point from one window to another. Returns
174 * Translates the given rectangle from one window to another.
191 * Returns the parent for the given window
193 static long getParentWindow(long window) argument
234 getChildWindows(long window) argument
286 isXAWTToplevelWindow(long window) argument
294 isToplevelWindow(long window) argument
332 isTrueToplevelWindow(long window) argument
342 getWindowMapState(long window) argument
[all...]
H A DMotifDnDDragSourceProtocol.java72 long window = XDragSourceProtocol.getDragSourceWindow();
78 MotifDnDConstants.writeDragInitiatorInfoStruct(window, index);
178 public TargetWindowInfo getTargetWindowInfo(long window) { argument
182 new WindowPropertyGetter(window,
H A DWindowPropertyGetter.java38 private final long window; field in class:WindowPropertyGetter
45 public WindowPropertyGetter(long window, XAtom property, long offset, argument
55 if (window == 0) {
58 this.window = window;
70 public WindowPropertyGetter(long window, XAtom property, long offset, argument
73 this(window, property, offset, length, auto_delete, type.getAtom());
105 int status = XlibWrapper.XGetWindowProperty(XToolkit.getDisplay(), window, property.getAtom(),
197 return XPropertyCache.isCached(window, property);
206 XPropertyCache.PropertyCacheEntry entry = XPropertyCache.getCacheEntry(window, propert
[all...]
H A DXDnDDragSourceProtocol.java78 long window = XDragSourceProtocol.getDragSourceWindow();
100 XDnDConstants.XA_XdndActionList.setAtomData(window,
121 XDnDConstants.XA_XdndTypeList.setAtomData(window,
191 public TargetWindowInfo getTargetWindowInfo(long window) { argument
195 new WindowPropertyGetter(window, XDnDConstants.XA_XdndAware, 0, 1,
214 new WindowPropertyGetter(window, XDnDConstants.XA_XdndProxy,
H A DXInputMethod.java144 private native boolean createXICNative(long window); argument
145 private native void setXICFocusNative(long window, argument
147 private native void adjustStatusWindow(long window); argument
H A DXWINProtocol.java44 public void setState(XWindowPeer window, int state) { argument
45 if (window.isShowing()) {
48 * _WIN_STATE ClientMessage to root window.
61 req.set_window(window.getWindow());
71 window.getScreenNumber()),
83 * WIN_STATE property on the window to the desired state before
87 long win_state = XA_WIN_STATE.getCard32Property(window);
114 if (log.isLoggable(PlatformLogger.FINE)) log.fine("Setting WIN_STATE on " + window + " to change the state to " + win_state);
115 XA_WIN_STATE.setCard32Property(window, win_state);
120 public int getState(XWindowPeer window) { argument
136 unshadeKludge(XWindowPeer window) argument
149 setLayer(XWindowPeer window, int layer) argument
[all...]
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/runtime/sparc/
H A DSPARCRegisterMap.java36 /** Register window save area (for L and I regs) */
37 private Address window; field in class:SPARCRegisterMap
109 window = fr.getSP();
111 window = null;
115 window = fr.getSP();
153 Assert.that(youngerWindow != null, "Younger window should be available");
159 Assert.that(window != null, "Window should be available");
161 return window.addOffsetTo(reg.spOffsetInSavedWindow() + secondWord);
164 // Only the window'd GPRs get handled this way; not the globals.
169 window
[all...]
/openjdk7/jdk/src/share/classes/com/sun/java/swing/plaf/windows/
H A DDesktopProperty.java116 * Updates the UI of the passed in window and all its children.
118 private static void updateWindowUI(Window window) { argument
119 SwingUtilities.updateComponentTreeUI(window);
120 Window ownedWins[] = window.getOwnedWindows();
/openjdk7/jdk/src/macosx/classes/com/apple/eawt/event/
H A DGestureHandler.java68 static void handleGestureFromNative(final Window window, final int type, final double x, final double y, final double a, final double b) { argument
69 if (window == null) return; // should never happen...
73 final Component component = SwingUtilities.getDeepestComponentAt(window, (int)x, (int)y);
/openjdk7/jdk/src/solaris/native/sun/java2d/opengl/
H A DGLXSurfaceData.c89 glxsdo->window = JNU_CallMethodByName(env, NULL, peer,
92 glxsdo->window = 0;
323 * This function initializes a native window surface and caches the window
331 Window window; local
354 window = glxsdo->window;
355 if (window == 0) {
357 "OGLSD_InitOGLWindow: window is invalid");
361 XGetWindowAttributes(awt_display, window,
468 OGLSD_SwapBuffers(JNIEnv *env, jlong window) argument
[all...]
/openjdk7/jdk/src/solaris/native/sun/jdga/
H A Djdga.h94 * the pixel information for the window.
103 * Location and size information of the entire window (may include
108 JDgaBounds window; member in struct:__anon1037
112 * window (includes only portions that are inside the writable
/openjdk7/jdk/src/share/classes/java/awt/
H A DDefaultKeyboardFocusManager.java104 private Window getOwningFrameDialog(Window window) { argument
105 while (window != null && !(window instanceof Frame ||
106 window instanceof Dialog)) {
107 window = (Window)window.getParent();
109 return window;
301 // we can not accept focus on such window, so reject it.
305 // If there exists a current focused window, then notify it
366 // window i
[all...]
H A DSystemColor.java103 * {@link #window} system color.
104 * @see SystemColor#window
255 0xFFFFFFFF, // window = Color.white;
282 * The color rendered for the window-title background of the currently active window.
287 * The color rendered for the window-title text of the currently active window.
292 * The color rendered for the border around the currently active window.
297 * The color rendered for the window-title background of inactive windows.
302 * The color rendered for the window
314 public final static SystemColor window = new SystemColor((byte)WINDOW); field in class:SystemColor
[all...]
/openjdk7/jdk/src/macosx/classes/com/apple/eawt/
H A DApplication.java45 * <li>Open a preferences window when the users chooses Preferences from the application menu.</li>
141 * Installs a handler to show a custom About window for your application.
143 * Setting the {@link AboutHandler} to <code>null</code> reverts it to the default Cocoa About window.
386 * @param window to animate into or out of full screen mode
391 public void requestToggleFullScreen(final Window window) { argument
392 final ComponentPeer peer = window.getPeer();
453 * a standard About window when an application may not, by default this is set to <code>true</code>.

Completed in 437 milliseconds

12345