Searched refs:clipRect (Results 1 - 25 of 35) sorted by relevance

12

/openjdk7/jdk/src/share/classes/java/awt/
H A DGraphics.java89 * be changed through the <code>setClip</code> or <code>clipRect</code>
97 * @see java.awt.Graphics#clipRect(int, int, int, int)
161 * @see java.awt.Graphics#clipRect
167 g.clipRect(0, 0, width, height);
283 * @see java.awt.Graphics#clipRect
309 public abstract void clipRect(int x, int y, int width, int height); method in class:Graphics
321 * @see java.awt.Graphics#clipRect
339 * @see java.awt.Graphics#clipRect
358 * @see java.awt.Graphics#clipRect
1218 Rectangle clipRect
[all...]
H A DScrollPane.java532 cg.clipRect(i.left, i.top, vs.width, vs.height);
/openjdk7/jdk/src/share/classes/com/sun/java/swing/plaf/windows/
H A DWindowsScrollBarUI.java412 Rectangle clipRect = g.getClipBounds();
413 int minX = Math.max(x, clipRect.x);
414 int minY = Math.max(y, clipRect.y);
415 int maxX = Math.min(clipRect.x + clipRect.width, x + w);
416 int maxY = Math.min(clipRect.y + clipRect.height, y + h);
453 Rectangle clipRect = g.getClipBounds();
455 g.fillRect(clipRect.x, clipRect
[all...]
/openjdk7/jdk/src/share/classes/sun/tools/jconsole/
H A DBorderedComponent.java388 Rectangle clipRect = new Rectangle();
394 clipRect.setBounds(saveClip);
395 if (computeIntersection(clipRect, x, y, compLoc.x-1-x, height)) {
396 g.setClip(clipRect);
402 clipRect.setBounds(saveClip);
403 if (computeIntersection(clipRect, compLoc.x+ labelDim.width +1, y,
405 g.setClip(clipRect);
411 clipRect.setBounds(saveClip);
412 if (computeIntersection(clipRect,
416 g.setClip(clipRect);
[all...]
H A DUtilities.java108 g.clipRect(0, 0, getWidth(), insets.top);
/openjdk7/jdk/src/windows/native/sun/windows/
H A Dawt_DrawingSurface.h73 JAWT_Rectangle clipRect; member in class:JAWTDrawingSurfaceInfo
/openjdk7/jdk/src/windows/native/sun/java2d/d3d/
H A DD3DBlitLoops.cpp364 RECT clipRect; local
365 pd3dDevice->GetScissorRect(&clipRect);
367 clipRect.left, clipRect.top,
368 clipRect.right, clipRect.bottom);
1054 RECT clipRect; local
1055 pd3dDevice->GetScissorRect(&clipRect);
1057 clipRect.left, clipRect
[all...]
/openjdk7/jdk/src/macosx/classes/com/apple/laf/
H A DAquaTabbedPaneUI.java138 final Rectangle clipRect = g.getClipBounds();
146 paintScrollingTabs(g, clipRect, tabPlacement, selectedIndex, active, frameActive, isLeftToRight);
151 paintAllTabs(g, clipRect, tabPlacement, selectedIndex, active, frameActive, isLeftToRight);
154 protected void paintAllTabs(final Graphics g, final Rectangle clipRect, final int tabPlacement, final int selectedIndex, final boolean active, final boolean frameActive, final boolean isLeftToRight) { argument
160 if (rects[i].intersects(clipRect)) {
167 if (drawSelectedLast && rects[selectedIndex].intersects(clipRect)) {
172 protected void paintScrollingTabs(final Graphics g, final Rectangle clipRect, final int tabPlacement, final int selectedIndex, final boolean active, final boolean frameActive, final boolean isLeftToRight) { argument
187 if (rects[realIndex].intersects(clipRect)) {
194 if (visibleTabState.needsLeftScrollTab() && leftScrollTabRect.intersects(clipRect)) {
199 if (visibleTabState.needsRightScrollTab() && rightScrollTabRect.intersects(clipRect)) {
[all...]
H A DAquaTableHeaderBorder.java110 g.clipRect(newX, y, newWidth, height);
/openjdk7/jdk/src/share/classes/sun/awt/
H A DSunGraphicsCallback.java47 g.clipRect(0, 0, bounds.width, bounds.height);
/openjdk7/jdk/test/javax/swing/plaf/metal/MetalBumps/
H A DTest6657026.java131 public void clipRect(int x, int y, int width, int height) { method in class:Test6657026.MyGraphics
/openjdk7/jdk/src/share/classes/sun/print/
H A DProxyGraphics.java107 * @see java.awt.Graphics#clipRect
241 * @see java.awt.Graphics#clipRect
269 public void clipRect(int x, int y, int width, int height) { method in class:ProxyGraphics
270 g.clipRect(x, y, width, height);
283 * @see java.awt.Graphics#clipRect
302 * @see java.awt.Graphics#clipRect
323 * @see java.awt.Graphics#clipRect
H A DPSPathGraphics.java546 imageGraphics.clipRect(0, 0,
665 proxy.clipRect(0, 0, deepImage.getWidth(), deepImage.getHeight());
H A DPeekGraphics.java400 * @see java.awt.Graphics#clipRect
424 public void clipRect(int x, int y, int width, int height) { method in class:PeekGraphics
425 mGraphics.clipRect(x, y, width, height);
437 * @see java.awt.Graphics#clipRect
450 * @see java.awt.Graphics#clipRect
469 * @see java.awt.Graphics#clipRect
H A DProxyGraphics2D.java336 * @see java.awt.Graphics#clipRect
360 public void clipRect(int x, int y, int width, int height) { method in class:ProxyGraphics2D
361 mGraphics.clipRect(x, y, width, height);
373 * @see java.awt.Graphics#clipRect
386 * @see java.awt.Graphics#clipRect
405 * @see java.awt.Graphics#clipRect
/openjdk7/jdk/src/share/classes/javax/swing/plaf/basic/
H A DBasicTextFieldUI.java316 g.clipRect(r.x, r.y, r.width, r.height);
H A DBasicProgressBarUI.java769 g2.clipRect(fillStart, y, amountFull, height);
782 g2.clipRect(x, fillStart, width, amountFull);
/openjdk7/jdk/src/share/classes/javax/swing/plaf/synth/
H A DSynthSplitPaneUI.java338 g.clipRect(x, y, w, h);
H A DSynthTabbedPaneUI.java507 Rectangle clipRect = g.getClipBounds();
543 if (rects[j].intersects(clipRect) && selectedIndex != j) {
551 if (rects[selectedIndex].intersects(clipRect)) {
H A DSynthProgressBarUI.java295 g.clipRect(x, y, width, height);
/openjdk7/jdk/src/share/classes/javax/swing/text/
H A DFieldView.java187 g.clipRect(r.x, r.y, r.width, r.height);
/openjdk7/jdk/src/share/classes/javax/swing/
H A DJComponent.java1003 Rectangle clipRect = co.getClipBounds();
1008 if (clipRect == null) {
1014 clipX = clipRect.x;
1015 clipY = clipRect.y;
1016 clipW = clipRect.width;
1017 clipH = clipRect.height;
1048 if (clipRect == null) {
H A DJViewport.java742 g.clipRect(0, 0, viewBounds.width, viewBounds.height);
1505 g.clipRect(dirty.x, dirty.y, dirty.width, dirty.height);
H A DBufferStrategyPaintManager.java327 bsg.clipRect(xOffset + cBounds.x,
/openjdk7/jdk/src/share/classes/javax/swing/text/html/
H A DImageView.java357 g.clipRect(rect.x + leftInset, rect.y + topInset,

Completed in 128 milliseconds

12