Searched defs:contentRect (Results 1 - 4 of 4) sorted by relevance

/openjdk7/jdk/src/share/classes/javax/swing/plaf/synth/
H A DSynthToolBarUI.java55 private Rectangle contentRect = new Rectangle(); field in class:SynthToolBarUI
294 paintContent(subcontext, g, contentRect);
456 // Note: contentRect does not take insets into account
459 contentRect.x = ltr ? handleWidth : 0;
460 contentRect.y = 0;
461 contentRect.width = tb.getWidth() - handleWidth;
462 contentRect.height = tb.getHeight();
508 contentRect.x = 0;
509 contentRect.y = handleHeight;
510 contentRect
[all...]
/openjdk7/jdk/src/share/classes/javax/swing/
H A DJViewport.java377 * valid viewport; for example, if <code>contentRect</code> is larger
381 * @param contentRect the <code>Rectangle</code> to display
386 public void scrollRectToVisible(Rectangle contentRect) { argument
394 // may fail if the view is not valid first, contentRect
400 dx = positionAdjustment(getWidth(), contentRect.width, contentRect.x);
401 dy = positionAdjustment(getHeight(), contentRect.height, contentRect.y);
/openjdk7/jdk/src/windows/native/sun/windows/
H A DThemeReader.cpp790 RECT contentRect; local
793 &contentRect))) {
795 contentRect.top, contentRect.left,
796 boundingHeight - contentRect.bottom,
797 boundingWidth - contentRect.right);
/openjdk7/jdk/src/share/classes/javax/swing/plaf/basic/
H A DBasicSliderUI.java62 protected Rectangle contentRect = null; field in class:BasicSliderUI
155 contentRect = new Rectangle();
182 contentRect = null;
543 contentRect.x = focusRect.x + focusInsets.left;
544 contentRect.y = focusRect.y + focusInsets.top;
545 contentRect.width = focusRect.width - (focusInsets.left + focusInsets.right);
546 contentRect.height = focusRect.height - (focusInsets.top + focusInsets.bottom);
636 trackRect.x = contentRect.x + trackBuffer;
637 trackRect.y = contentRect.y + (contentRect
[all...]

Completed in 122 milliseconds