Searched refs:trackBounds (Results 1 - 8 of 8) sorted by relevance

/openjdk7/jdk/src/share/classes/javax/swing/plaf/metal/
H A DMetalScrollBarUI.java145 protected void paintTrack( Graphics g, JComponent c, Rectangle trackBounds )
147 g.translate( trackBounds.x, trackBounds.y );
154 trackBounds.width += 2;
162 g.drawLine( 0, 0, 0, trackBounds.height - 1 );
163 g.drawLine( trackBounds.width - 2, 0, trackBounds.width - 2, trackBounds.height - 1 );
164 g.drawLine( 2, trackBounds.height - 1, trackBounds
[all...]
/openjdk7/jdk/src/share/classes/com/sun/java/swing/plaf/motif/
H A DMotifScrollBarUI.java78 public void paintTrack(Graphics g, JComponent c, Rectangle trackBounds) { argument
80 g.fillRect(trackBounds.x, trackBounds.y, trackBounds.width, trackBounds.height);
/openjdk7/jdk/src/share/classes/javax/swing/plaf/synth/
H A DSynthScrollBarUI.java300 * @param trackBounds bounding box for the track
303 Rectangle trackBounds) {
304 SynthLookAndFeel.updateSubregion(context, g, trackBounds);
305 context.getPainter().paintScrollBarTrackBackground(context, g, trackBounds.x,
306 trackBounds.y, trackBounds.width, trackBounds.height,
308 context.getPainter().paintScrollBarTrackBorder(context, g, trackBounds.x,
309 trackBounds.y, trackBounds
302 paintTrack(SynthContext context, Graphics g, Rectangle trackBounds) argument
[all...]
H A DSynthSliderUI.java887 * @param trackBounds bounding box for the track
890 Rectangle trackBounds) {
892 SynthLookAndFeel.updateSubregion(context, g, trackBounds);
894 trackBounds.x, trackBounds.y, trackBounds.width,
895 trackBounds.height, orientation);
897 trackBounds.x, trackBounds.y, trackBounds
889 paintTrack(SynthContext context, Graphics g, Rectangle trackBounds) argument
[all...]
/openjdk7/jdk/test/javax/swing/JSlider/6923305/
H A Dbug6923305.java48 protected void paintTrack(SynthContext context, Graphics g, Rectangle trackBounds) {
/openjdk7/jdk/src/share/classes/com/sun/java/swing/plaf/windows/
H A DWindowsScrollBarUI.java134 protected void paintTrack(Graphics g, JComponent c, Rectangle trackBounds){ argument
146 xp.getSkin(sb, part).paintSkin(g, trackBounds, state);
148 super.paintTrack(g, c, trackBounds);
151 thumbGrid.paint(g, trackBounds.x, trackBounds.y, trackBounds.width,
152 trackBounds.height);
/openjdk7/jdk/src/share/classes/javax/swing/plaf/basic/
H A DBasicSliderUI.java970 Rectangle trackBounds = trackRect;
973 int cy = (trackBounds.height / 2) - 2;
974 int cw = trackBounds.width;
976 g.translate(trackBounds.x, trackBounds.y + cy);
987 g.translate(-trackBounds.x, -(trackBounds.y + cy));
990 int cx = (trackBounds.width / 2) - 2;
991 int ch = trackBounds.height;
993 g.translate(trackBounds
[all...]
H A DBasicScrollBarUI.java549 protected void paintTrack(Graphics g, JComponent c, Rectangle trackBounds) argument
552 g.fillRect(trackBounds.x, trackBounds.y, trackBounds.width, trackBounds.height);

Completed in 61 milliseconds