Searched defs:contentRect (Results 1 - 4 of 4) sorted by relevance
/openjdk7/jdk/src/share/classes/javax/swing/plaf/synth/ |
H A D | SynthToolBarUI.java | 55 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 D | JViewport.java | 377 * 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 D | ThemeReader.cpp | 790 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 D | BasicSliderUI.java | 62 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 2973 milliseconds