Searched defs:getThumbBounds (Results 1 - 2 of 2) sorted by relevance

/openjdk7/jdk/test/javax/swing/JScrollBar/6542335/
H A Dbug6542335.java79 thumbBounds[0] = new Rectangle(ui.getThumbBounds());
93 Rectangle newThumbBounds = ui.getThumbBounds();
104 public Rectangle getThumbBounds() { method in class:bug6542335.MyScrollBarUI
105 return super.getThumbBounds();
/openjdk7/jdk/src/share/classes/javax/swing/plaf/basic/
H A DBasicScrollBarUI.java397 Rectangle rect = getThumbBounds();
411 scrollbar.repaint(getThumbBounds());
427 Rectangle thumbBounds = getThumbBounds();
487 Rectangle thumbR = getThumbBounds();
519 Rectangle thumbR = getThumbBounds();
876 * @see #getThumbBounds
915 protected Rectangle getThumbBounds() { method in class:BasicScrollBarUI
1117 if(getThumbBounds().contains(currentMouseX, currentMouseY)) {
1120 offset = currentMouseY - getThumbBounds().y;
1123 offset = currentMouseX - getThumbBounds()
[all...]

Completed in 33 milliseconds