Searched refs:rect (Results 101 - 125 of 132) sorted by relevance

123456

/openjdk7/jdk/src/windows/native/sun/windows/
H A DThemeReader.cpp415 RECT rect; local
453 rect.left = 0;
454 rect.top = 0;
455 rect.bottom = h;
456 rect.right = w;
460 HRESULT hres = DrawThemeBackground(hTheme, memDC, part, state, &rect, NULL);
H A Dawt_ScrollPane.cpp572 RECT rect, childRect; local
573 ::GetClientRect(GetHWnd(), &rect); local
574 ::MapWindowPoints(GetHWnd(), 0, (LPPOINT)&rect, 2);
576 DASSERT(childRect.left <= rect.left && childRect.top <= rect.top);
H A Dawt_TextArea.cpp286 * client rect.
523 RECT rect; local
524 // rect.left and rect.top are zero.
525 // rect.right and rect.bottom contain the width and height
526 VERIFY(::GetClientRect(hWnd, &rect));
534 LONG visibleLines = rect.bottom / tm.tmHeight + 1;
H A Dawt_Component.cpp4273 RECT rect = drawInfo.rcItem; local
4300 VERIFY(::FillRect (hDC, &rect, hbrBack));
4314 (GetRTL()) ? rect.right - size.cx - 1
4315 : rect.left + 1,
4316 (rect.top + rect.bottom - size.cy) / 2,
4324 VERIFY(::DrawFocusRect(hDC, &rect));
5460 RECT rect; local
5461 VERIFY(::GetWindowRect(p->GetHWnd(),&rect));
5463 rect
7005 RECT rect; local
[all...]
H A Dawt_Choice.cpp407 RECT rect; local
408 ::GetClientRect(hwnd, &rect);
411 if (::PtInRect(&rect, pt)) {
417 if (::PtInRect(&rect, lastPt)) {
H A Dawt_Toolkit.h453 static BOOL GetScreenInsets(int screenNum, RECT * rect);
/openjdk7/jdk/src/share/classes/javax/swing/plaf/basic/
H A DBasicTreeUI.java1271 Rectangle rect = getDropLineRect(loc);
1272 g.fillRect(rect.x, rect.y, rect.width, rect.height);
1284 Rectangle rect;
1292 rect = new Rectangle(insets.left,
1303 rect = tree.getRowBounds(tree.getRowCount() - 1);
1304 rect.y = rect
[all...]
H A DBasicTextUI.java1172 Rectangle rect = (toDamage instanceof Rectangle) ?
1174 editor.repaint(rect.x, rect.y, rect.width, rect.height);
/openjdk7/jdk/src/share/classes/javax/swing/
H A DJTable.java1529 Rectangle rect = getCellRect(row, col, true);
1549 xSection = SwingUtilities2.liesInHorizontal(rect, p, ltr, true);
1560 ySection = SwingUtilities2.liesInVertical(rect, p, true);
1572 if (SwingUtilities2.liesInVertical(rect, p, false) == TRAILING) {
1591 if (SwingUtilities2.liesInVertical(rect, p, false) == TRAILING) {
1608 ySection = SwingUtilities2.liesInVertical(rect, p, true);
1629 if (SwingUtilities2.liesInHorizontal(rect, p, ltr, false) == TRAILING) {
1646 xSection = SwingUtilities2.liesInHorizontal(rect, p, ltr, true);
1662 xSection = SwingUtilities2.liesInHorizontal(rect, p, ltr, true);
1676 ySection = SwingUtilities2.liesInVertical(rect,
5150 leadingEdge(Rectangle rect, int orientation) argument
5167 trailingEdge(Rectangle rect, int orientation) argument
[all...]
H A DSwingUtilities.java533 * Convenience returning an array of rect representing the regions within
1951 Rectangle rect = r;
1954 if (rect == null) {
1955 rect = new Rectangle();
1958 rect.x = insets.left;
1959 rect.y = insets.top;
1960 rect.width = c.getWidth() - insets.left - insets.right;
1961 rect.height = c.getHeight() - insets.top - insets.bottom;
1963 return rect;
H A DToolTipManager.java229 Rectangle rect = config.getBounds();
230 if (rect.contains(toFind)) {
H A DJComponent.java452 Rectangle rect;
455 rect = tempRectangles.remove(size - 1);
458 rect = new Rectangle(0, 0, 0, 0);
460 return rect;
464 private static void recycleRectangle(Rectangle rect) { argument
466 tempRectangles.add(rect);
4421 * Returns the <code>Component</code>'s "visible rect rectangle" - the
4449 * Returns the <code>Component</code>'s "visible rect rectangle" - the
/openjdk7/jdk/src/share/classes/javax/swing/plaf/synth/
H A DSynthTreeUI.java652 Rectangle rect = getDropLineRect(loc);
653 g.fillRect(rect.x, rect.y, rect.width, rect.height);
/openjdk7/jdk/src/solaris/classes/sun/awt/X11/
H A DXBaseMenuWindow.java1004 Rectangle rect = event.getUpdateRect();
1005 repaint(rect.x, rect.y, rect.width, rect.height);
H A DXListPeer.java536 // focus rect is around the item
540 // focus rect is around the list
1944 Rectangle rect = getFocusRect();
1946 // Erase focus rect
1947 if (log.isLoggable(PlatformLogger.FINEST)) log.finest("Erasing previous focus rect " + prevFocusRect);
1954 if (log.isLoggable(PlatformLogger.FINEST)) log.finest("Painting focus rect " + rect);
1956 g.drawRect(rect.x, rect.y, rect
[all...]
H A DXMenuWindow.java339 protected void paintCaption(Graphics g, Rectangle rect) { argument
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/ui/
H A DAnnotatedMemoryPanel.java131 Rectangle rect = new Rectangle();
132 getBounds(rect);
146 int numLines = rect.height / lineHeight;
/openjdk7/jdk/test/sun/java2d/OpenGL/
H A DDrawBufImgOp.java459 Rectangle rect = new Rectangle(pt1.x, pt1.y, TESTW, TESTH);
460 capture = robot.createScreenCapture(rect);
/openjdk7/jdk/make/sun/awt/
H A DFILES_c_windows.gmk109 rect.c
/openjdk7/jdk/src/share/classes/sun/print/
H A DPSPathGraphics.java469 Rectangle2D.Float rect =
472 Shape shape = fullTransform.createTransformedShape(rect);
H A DProxyGraphics2D.java1407 * @param rect The area in device space to check for a hit.
1420 public boolean hit(Rectangle rect, argument
1424 return mGraphics.hit(rect, s, onStroke);
/openjdk7/jdk/src/solaris/native/sun/awt/
H A Dawt_xembed_server.c607 jobject rect = NULL; local
617 rect = (*env)->NewObject(env, clazz, mid, x, y, width, height);
622 return rect;
/openjdk7/jdk/src/share/classes/javax/swing/text/
H A DJTextComponent.java2812 Rectangle rect = null;
2829 rect = (bounds instanceof Rectangle) ?
2839 return rect;
3696 Rectangle rect = null;
3711 rect = (bounds instanceof Rectangle) ?
3721 return rect;
/openjdk7/jdk/src/share/classes/com/sun/imageio/plugins/bmp/
H A DBMPImageWriter.java199 Rectangle rect = new Rectangle(input.getMinX(), input.getMinY(),
202 sourceRegion = rect;
204 sourceRegion = sourceRegion.intersection(rect);
/openjdk7/jdk/src/share/classes/com/sun/imageio/plugins/png/
H A DPNGImageWriter.java817 Rectangle rect = new Rectangle(minX, row, width, 1);
818 Raster ras = image.getData(rect);

Completed in 251 milliseconds

123456