Lines Matching defs:trackRect

65     protected Rectangle trackRect = null;
158 trackRect = new Rectangle();
185 trackRect = null;
475 d.width += trackRect.width + tickRect.width + labelRect.width;
481 d.height += trackRect.height + tickRect.height + labelRect.height;
495 d.width += trackRect.width + tickRect.width + labelRect.width;
501 d.height += trackRect.height + tickRect.height + labelRect.height;
595 thumbRect.y = trackRect.y;
600 thumbRect.x = trackRect.x;
636 trackRect.x = contentRect.x + trackBuffer;
637 trackRect.y = contentRect.y + (contentRect.height - centerSpacing - 1)/2;
638 trackRect.width = contentRect.width - (trackBuffer * 2);
639 trackRect.height = thumbRect.height;
650 trackRect.x = contentRect.x + (contentRect.width - centerSpacing - 1)/2;
651 trackRect.y = contentRect.y + trackBuffer;
652 trackRect.width = thumbRect.width;
653 trackRect.height = contentRect.height - (trackBuffer * 2);
670 tickRect.x = trackRect.x;
671 tickRect.y = trackRect.y + trackRect.height;
672 tickRect.width = trackRect.width;
678 tickRect.x = trackRect.x + trackRect.width;
681 tickRect.x = trackRect.x - tickRect.width;
683 tickRect.y = trackRect.y;
684 tickRect.height = trackRect.height;
925 if ( !clip.intersects(trackRect) && slider.getPaintTrack())
928 if ( slider.getPaintTrack() && clip.intersects( trackRect ) ) {
970 Rectangle trackBounds = trackRect;
1356 int trackLength = trackRect.width;
1359 int trackLeft = trackRect.x;
1360 int trackRight = trackRect.x + (trackRect.width - 1);
1379 return yPositionForValue(value, trackRect.y, trackRect.height);
1425 final int trackLength = trackRect.height;
1426 final int trackTop = trackRect.y;
1427 final int trackBottom = trackRect.y + (trackRect.height - 1);
1457 final int trackLength = trackRect.width;
1458 final int trackLeft = trackRect.x;
1459 final int trackRight = trackRect.x + (trackRect.width - 1);
1757 int trackTop = trackRect.y;
1758 int trackBottom = trackRect.y + (trackRect.height - 1);
1779 int trackLeft = trackRect.x;
1780 int trackRight = trackRect.x + (trackRect.width - 1);