Searched defs:window (Results 51 - 75 of 116) sorted by relevance

12345

/openjdk7/jdk/src/windows/native/sun/java2d/d3d/
H A DD3DGraphicsDevice.cpp140 (JNIEnv *env, jclass gdc, jint gdiScreen, jlong window)
161 w = (AwtWindow *)AwtComponent::GetComponent((HWND)window);
164 "D3DGD_enterFullScreenExclusiveNative: disposed window");
168 // REMIND: should we also move the non-topleve window from
175 // set the proper current focus window for us, which ConfigureContext will
223 // we're exiting fs, the device window can be 0
237 // exited fs, update current focus window
252 (JNIEnv *env, jclass gdc, jint gdiScreen, jlong window,
335 // the full screen window doesn't receive WM_SIZE event when
139 Java_sun_java2d_d3d_D3DGraphicsDevice_enterFullScreenExclusiveNative(JNIEnv *env, jclass gdc, jint gdiScreen, jlong window) argument
251 Java_sun_java2d_d3d_D3DGraphicsDevice_configDisplayModeNative(JNIEnv *env, jclass gdc, jint gdiScreen, jlong window, jint width, jint height, jint bitDepth, jint refreshRate) argument
H A DD3DSurfaceData.cpp567 AwtWindow *window; local
584 RETURN_STATUS_IF_NULL(window = (AwtWindow *)jlong_to_ptr(pData), JNI_FALSE);
624 window->UpdateWindow(env, NULL, w, h, hBitmap);
/openjdk7/jdk/src/windows/native/sun/java2d/opengl/
H A DWGLSurfaceData.c99 wglsdo->window = (HWND)jlong_to_ptr(hwnd);
281 dstHDC = GetDC(dstWGLOps->window);
309 ReleaseDC(dstWGLOps->window, dstHDC);
322 ReleaseDC(dstWGLOps->window, dstHDC);
329 * This function initializes a native window surface and caches the window
339 HWND window; local
365 window = wglsdo->window;
366 if (!IsWindow(window)) {
540 HWND window; local
[all...]
/openjdk7/jdk/test/java/awt/Focus/AutoRequestFocusTest/
H A DAutoRequestFocusSetVisibleTest.java48 static Window window; field in class:AutoRequestFocusSetVisibleTest
82 window.dispose();
97 window = new Window(focusedFrame);
131 window.setBounds(140, 140, 220, 220);
132 window.add(winButton);
262 test("Stage 4.1 in progress...", window, winButton);
314 // Having some window not excluded from modality, so that it would be blocked.
350 * @param showWindow a window to show/test (if ownedWindow == null)
351 * @param ownedWindow an owned window to show/test, or null if showWindow should be tested
352 * @param clickButton a button of the window (owne
[all...]
H A DAutoRequestFocusToFrontTest.java51 static Window window; field in class:AutoRequestFocusToFrontTest
93 window.dispose();
111 window = new Window(null);
136 window.setBounds(120, 120, 260, 260);
137 window.add(winButton);
166 Test.setWindows(window, null, null);
250 static Window testWindow; // a window to move to front with autoRequestFocus set
251 static Window focusWindow; // a window to gain focus
267 * @param testButton a button of the window (owner or owned) that is to be on the top of stack order
297 throw new TestFailedException("the window mus
[all...]
/openjdk7/jdk/src/share/native/java/util/zip/zlib-1.2.3/
H A Dinflate.h111 /* sliding window */
112 unsigned wbits; /* log base 2 of requested window size */
113 unsigned wsize; /* window size or zero if not using window */
114 unsigned whave; /* valid bytes in the window */
115 unsigned write; /* window write index */
116 unsigned char FAR *window; /* allocated sliding window, if needed */ member in struct:inflate_state
/openjdk7/jdk/src/share/native/sun/awt/splashscreen/
H A Dsplashscreen_impl.h90 Window window; member in struct:Splash
100 NSWindow * window; member in struct:Splash
/openjdk7/jdk/test/javax/swing/JComponent/4337267/
H A Dbug4337267.java27 JFrame window; field in class:bug4337267
45 window = new JFrame("bug4337267");
46 window.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
47 window.setSize(800, 600);
49 window.add(content);
50 window.setVisible(true);
103 window.repaint();
117 window.repaint();
131 window.repaint();
/openjdk7/jdk/src/solaris/classes/sun/awt/X11/
H A DMotifDnDDropTargetProtocol.java75 public void registerDropTarget(long window) { argument
78 MotifDnDConstants.writeDragReceiverInfoStruct(window);
81 public void unregisterDropTarget(long window) { argument
84 MotifDnDConstants.XA_MOTIF_ATOM_0.DeleteProperty(window);
159 unsafe.putInt(data + 4, (int)newProxy); /* proxy window */
320 public boolean isProtocolSupported(long window) { argument
322 new WindowPropertyGetter(window,
476 /* Append source window id to the event data, so that we can send the
581 * Otherwise the event should go to the event->window, as we don't use
H A DNative.java411 static void putWindow(long ptr, long window) { argument
412 putLong(ptr, window);
415 static void putWindow(long ptr, int index, long window) { argument
416 putLong(ptr, index, window);
H A DXDragSourceProtocol.java51 // Always use the XAWT root window as the drag source window.
147 public final boolean attachTargetWindow(long window, long time) { argument
150 TargetWindowInfo info = getTargetWindowInfo(window);
154 targetWindow = window;
162 public abstract TargetWindowInfo getTargetWindowInfo(long window); argument
H A DXDropTargetProtocol.java71 public abstract void registerDropTarget(long window); argument
74 public abstract void unregisterDropTarget(long window); argument
77 public abstract void registerEmbedderDropSite(long window); argument
80 public abstract void unregisterEmbedderDropSite(long window); argument
92 public abstract boolean isProtocolSupported(long window); argument
183 * is not over a plugin window;
192 * site. When the mouse is dragged over plugin window embedded in the
H A DXDropTargetRegistry.java63 * Returns the XID of the topmost window with WM_STATE set in the ancestor
64 * heirarchy of the specified window or 0 if none found.
66 private long getToplevelWindow(long window) { argument
67 XBaseWindow candWindow = XToolkit.windowToXWindow(window);
75 /* Traverse the ancestor tree from window up to the root and find
76 the top-level client window nearest to the root. */
78 if (XlibUtil.isTrueToplevelWindow(window)) {
79 return window;
82 window = XlibUtil.getParentWindow(window);
119 addSite(long window, boolean isXEmbedClient) argument
128 removeSite(long window) argument
412 registerEmbeddedDropSite(long toplevel, long window) argument
494 unregisterEmbeddedDropSite(long toplevel, long window) argument
540 registerDropSite(long window) argument
581 unregisterDropSite(long window) argument
659 addDelayedRegistrationEntry(final long window) argument
678 removeDelayedRegistrationEntry(long window) argument
[all...]
H A DXEmbedHelper.java93 void sendMessage(long window, int message) { argument
94 sendMessage(window, message, 0, 0, 0);
96 void sendMessage(long window, int message, long detail, long data1, long data2) { argument
99 msg.set_window(window);
110 XlibWrapper.XSendEvent(XToolkit.getDisplay(), window, false, XConstants.NoEventMask, msg.pData);
H A DXNETProtocol.java47 public void setState(XWindowPeer window, int state) { argument
48 if (log.isLoggable(PlatformLogger.FINE)) log.fine("Setting state of " + window + " to " + state);
49 if (window.isShowing()) {
50 requestState(window, state);
52 setInitialState(window, state);
56 private void setInitialState(XWindowPeer window, int state) { argument
57 XAtomList old_state = window.getNETWMState();
58 log.fine("Current state of the window {0} is {1}", window, old_state);
69 log.fine("Setting initial state of the window {
73 requestState(XWindowPeer window, int state) argument
124 getState(XWindowPeer window) argument
131 getStateImpl(XWindowPeer window) argument
160 unshadeKludge(XWindowPeer window) argument
173 requestState(XWindow window, XAtom state, boolean isAdd) argument
208 setStateHelper(XWindowPeer window, XAtom state, boolean set) argument
228 setLayer(XWindowPeer window, int layer) argument
358 setWMIcons(XWindowPeer window, java.util.List<IconInfo> icons) argument
396 isWMStateNetHidden(XWindowPeer window) argument
[all...]
H A DXWarningWindow.java198 * @param x,y,w,h coordinates of the untrusted window
208 return "Warning window";
235 return SystemColor.window;
280 /** Send a synthetic UnmapNotify in order to withdraw the window.
336 protected void enterNotify(long window) { argument
337 super.enterNotify(window);
338 if (window == getWindow()) {
344 protected void leaveNotify(long window) { argument
345 super.leaveNotify(window);
346 if (window
[all...]
/openjdk7/jdk/src/solaris/classes/sun/awt/
H A DX11GraphicsDevice.java272 private static native void enterFullScreenExclusive(long window); argument
273 private static native void exitFullScreenExclusive(long window); argument
457 // update bounds of the fullscreen window
/openjdk7/jdk/src/share/classes/javax/swing/
H A DToolTipManager.java65 private Window window; field in class:ToolTipManager
352 window = SwingUtilities.windowForComponent(tip);
353 if (window != null && window != componentWindow) {
354 window.addMouseListener(this);
357 window = null;
367 if (window != null) {
368 window.removeMouseListener(this);
369 window = null;
439 if (event.getSource() == window) {
[all...]
/openjdk7/jdk/src/share/classes/javax/swing/plaf/metal/
H A DMetalRootPaneUI.java91 private Window window; field in class:MetalRootPaneUI
94 * <code>JComponent</code> providing window decorations. This will be
95 * null if not providing window decorations.
167 * to render the window decoration style, this method will remove it.
217 window = (Window)parent;
220 window = SwingUtilities.getWindowAncestor(parent);
222 if (window != null) {
226 window.addMouseListener(mouseInputListener);
227 window.addMouseMotionListener(mouseInputListener);
236 if (window !
[all...]
/openjdk7/jdk/src/share/classes/sun/awt/im/
H A DInputContext.java102 // true if the current input method requires client window change notification
104 // client window to which this input context is listening
274 * input method window.
292 * components (e.g., IIIMP status window), it causes deadlock,
334 // we suppressed a deactivate cause by an input method window
342 // input style, then make the composition window undecorated without a title bar.
441 * input method window.
504 // infinite loop: create input method -> create some input method window ->
681 // in case the input method enabled the client window
699 // cleanup client window notificatio
947 notifyClientWindowChange(Window window) argument
[all...]
/openjdk7/jdk/src/share/classes/java/lang/
H A DSecurityManager.java1308 * thread is not trusted to bring up the top-level window indicated
1309 * by the <code>window</code> argument. In this case, the caller can
1310 * still decide to show the window, but the window should include
1312 * <code>true</code>, then the window can be shown without any
1331 * @param window the new window that is being created.
1334 * @exception NullPointerException if the <code>window</code> argument is
1339 public boolean checkTopLevelWindow(Object window) { argument
1340 if (window
[all...]
/openjdk7/jdk/src/macosx/classes/com/apple/laf/
H A DAquaInternalFrameBorder.java62 protected static AquaInternalFrameBorder window() { method in class:AquaInternalFrameBorder
92 private final WindowType fWindowKind; // Which kind of window to draw
171 // window title looks like: | 0 0 0(sAfterButtonPad)IconWidth Title(right pad) |
479 protected void setMetrics(final JInternalFrame frame, final Component window) { argument
/openjdk7/jdk/src/macosx/classes/sun/lwawt/macosx/
H A DCWrapper.java47 public static native void setLevel(long window, int level); argument
49 public static native void makeKeyAndOrderFront(long window); argument
50 public static native void makeKeyWindow(long window); argument
51 public static native void makeMainWindow(long window); argument
52 public static native boolean canBecomeMainWindow(long window); argument
53 public static native boolean isKeyWindow(long window); argument
55 public static native void orderFront(long window); argument
56 public static native void orderFrontRegardless(long window); argument
57 public static native void orderWindow(long window, int ordered, long relativeTo); argument
58 public static native void orderOut(long window); argument
63 setFrame(long window, int x, int y, int w, int h, boolean display) argument
65 setAlphaValue(long window, float alpha) argument
66 setOpaque(long window, boolean opaque) argument
67 setBackgroundColor(long window, long color) argument
69 miniaturize(long window) argument
70 deminiaturize(long window) argument
71 zoom(long window) argument
73 makeFirstResponder(long window, long responder) argument
75 screen(long window) argument
84 public static native long window(long view); method in class:CWrapper.NSView
[all...]
/openjdk7/jdk/src/windows/classes/sun/awt/windows/
H A DWPrintDialogPeer.java83 for (WWindowPeer window : blockedWindows) {
85 window.modalDisable((Dialog)target, hwnd);
87 window.modalEnable((Dialog)target);
92 synchronized void blockWindow(WWindowPeer window) { argument
93 blockedWindows.add(window);
95 window.modalDisable((Dialog)target, hwnd);
98 synchronized void unblockWindow(WWindowPeer window) { argument
99 blockedWindows.remove(window);
101 window.modalEnable((Dialog)target);
/openjdk7/jdk/src/windows/native/sun/java2d/windows/
H A DGDIWindowSurfaceData.h146 * window field remains because once it is set for a given wsdo
163 HWND window; member in struct:_GDIWinSDOps

Completed in 80 milliseconds

12345