Searched defs:width (Results 301 - 325 of 532) sorted by relevance

<<11121314151617181920>>

/openjdk7/jdk/src/solaris/classes/sun/awt/X11/
H A DXWarningWindow.java218 void paint(Graphics g, int x, int y, int width, int height) { argument
247 paint(g, 0, 0, bounds.width, bounds.height);
260 final int width = xe.get_width();
267 paint(g, x, y, width, height);
/openjdk7/jdk/src/solaris/classes/sun/awt/
H A DX11GraphicsDevice.java279 int width, int height,
372 return new DisplayMode(r.width, r.height,
278 configDisplayMode(int screen, int width, int height, int displayMode) argument
/openjdk7/jdk/src/solaris/classes/sun/java2d/xr/
H A DMaskTileManager.java93 public void addRect(int x, int y, int width, int height) { argument
94 mainTile.addRect(x, y, width, height);
191 int width = tileDirtyArea.x2 - tileDirtyArea.x;
193 width = Math.min(width, MASK_SIZE);
217 x, y, width, height);
224 width, height);
H A DXRPMBlitLoops.java239 public Rectangle getCompositeBounds(AffineTransform tr, int dstx, int dsty, int width, int height) { argument
243 compBounds[2] = dstx + width;
245 compBounds[4] = dstx + width;
266 int dstx, int dsty, int width, int height) {
277 Rectangle bounds = getCompositeBounds(xform, dstx, dsty, width, height);
298 int maskPicture = mask.prepareBlitMask(x11sdDst, maskTX, width, height);
300 0, 0, 0, 0, bounds.x, bounds.y, bounds.width, bounds.height);
305 x11sdDst.maskBuffer.compositeBlit(x11sdSrc, x11sdDst, 0, 0, bounds.x, bounds.y, bounds.width, bounds.height);
265 Transform(SurfaceData src, SurfaceData dst, Composite comp, Region clip, AffineTransform xform, int hint, int srcx, int srcy, int dstx, int dsty, int width, int height) argument
H A DXRRenderer.java90 int x, int y, int width, int height) {
91 draw(sg2d, new Rectangle2D.Float(x, y, width, height));
113 int x, int y, int width, int height) {
123 tileManager.addRect(x, y, width, height);
137 int x, int y, int width, int height,
139 draw(sg2d, new RoundRectangle2D.Float(x, y, width, height,
144 int width, int height,
146 fill(sg2d, new RoundRectangle2D.Float(x, y, width, height,
151 int x, int y, int width, int height) {
152 draw(sg2d, new Ellipse2D.Float(x, y, width, heigh
89 drawRect(SunGraphics2D sg2d, int x, int y, int width, int height) argument
112 fillRect(SunGraphics2D sg2d, int x, int y, int width, int height) argument
136 drawRoundRect(SunGraphics2D sg2d, int x, int y, int width, int height, int arcWidth, int arcHeight) argument
143 fillRoundRect(SunGraphics2D sg2d, int x, int y, int width, int height, int arcWidth, int arcHeight) argument
150 drawOval(SunGraphics2D sg2d, int x, int y, int width, int height) argument
155 fillOval(SunGraphics2D sg2d, int x, int y, int width, int height) argument
160 drawArc(SunGraphics2D sg2d, int x, int y, int width, int height, int startAngle, int arcAngle) argument
167 fillArc(SunGraphics2D sg2d, int x, int y, int width, int height, int startAngle, int arcAngle) argument
[all...]
/openjdk7/jdk/src/share/classes/javax/swing/
H A DJDialog.java1125 * @param width the width
1130 public void repaint(long time, int x, int y, int width, int height) { argument
1133 this, x, y, width, height);
1136 super.repaint(time, x, y, width, height);
H A DJFrame.java770 * @param width the width
775 public void repaint(long time, int x, int y, int width, int height) { argument
778 this, x, y, width, height);
781 super.repaint(time, x, y, width, height);
/openjdk7/jdk/src/share/classes/javax/swing/plaf/basic/
H A DBasicHTML.java75 * @param w the width to get the baseline for
77 * @throws IllegalArgumentException if width or height is &lt; 0
406 // width currently laid out to
407 return width;
453 * @param width true if the width preference has changed
456 public void preferenceChanged(View child, boolean width, boolean height) { argument
480 view.setSize(alloc.width, alloc.height);
604 * @param width the width
607 setSize(float width, float height) argument
638 private int width; field in class:BasicHTML.Renderer
[all...]
/openjdk7/jdk/src/share/classes/javax/swing/plaf/metal/
H A DMetalRootPaneUI.java460 cpWidth = cpd.width;
467 mbWidth = mbd.width;
479 tpWidth = tpd.width;
512 cpWidth = cpd.width;
519 mbWidth = mbd.width;
530 tpWidth = tpd.width;
560 cpWidth = cpd.width;
568 mbWidth = mbd.width;
581 tpWidth = tpd.width;
614 int w = b.width
973 calculatePosition(int spot, int width) argument
[all...]
/openjdk7/jdk/src/share/classes/javax/swing/plaf/synth/
H A DSynthSliderUI.java237 public int getBaseline(JComponent c, int width, int height) { argument
241 if (width < 0 || height < 0) {
274 return centerY + label.getBaseline(pref.width, pref.height);
297 label.getBaseline(pref.width, pref.height);
310 Dimension d = new Dimension(contentRect.width, contentRect.height);
314 d.width = 200;
317 d.width += i.left + i.right;
328 Dimension d = new Dimension(contentRect.width, contentRect.height);
332 d.width = thumbRect.width
[all...]
/openjdk7/jdk/src/share/classes/javax/swing/text/
H A DFlowView.java178 * @param width the width to lay out against >= 0. This is
179 * the width inside of the inset area.
183 protected void layout(int width, int height) { argument
187 newSpan = width;
220 super.layout(width, height);
377 host.repaint(alloc.x, alloc.y, alloc.width, alloc.height);
397 host.repaint(alloc.x, alloc.y, alloc.width, alloc.height);
419 host.repaint(alloc.x, alloc.y, alloc.width, alloc.height);
H A DWrappedPlainView.java377 * @param width the width >= 0
380 public void setSize(float width, float height) { argument
382 if ((int) width != getWidth()) {
384 // desired widths will be based upon this views width.
388 super.setSize(width, height);
552 float width = getWidth();
553 if (width == Integer.MAX_VALUE) {
558 return width;
623 alloc.width
[all...]
/openjdk7/jdk/src/share/classes/javax/swing/tree/
H A DDefaultTreeCellRenderer.java569 retDimension = new Dimension(retDimension.width + 3,
602 public void repaint(long tm, int x, int y, int width, int height) {} argument
/openjdk7/jdk/src/share/classes/sun/awt/image/
H A DBufImgSurfaceData.java345 int width,
342 initRaster(Object theArray, int offset, int bitoffset, int width, int height, int pixStr, int scanStr, IndexColorModel icm) argument
H A DGifImageDecoder.java290 // Global width&height
354 private native boolean parseImage(int x, int y, int width, int height, argument
359 private int sendPixels(int x, int y, int width, int height, argument
373 // rasline[width] == pixel at coordinate (x+width, y)
376 width += x; // same as (width -= rasbeg)
380 // width -= 0; // same as (width -= rasbeg)
384 // rasline[width]
638 int width; field in class:GifFrame
[all...]
/openjdk7/jdk/src/share/classes/sun/dc/
H A DDuctusRenderingEngine.java79 float width,
93 stroker.setPenDiameter(width);
78 createStrokedShape(Shape src, float width, int caps, int join, float miterlimit, float dashes[], float dashphase) argument
/openjdk7/jdk/src/share/classes/java/awt/geom/
H A DArc2D.java103 * The overall width of the full ellipse of which this arc is
109 public float width; field in class:Arc2D.Float
164 * @param w The overall width of the full ellipse of which
179 this.width = w;
203 this.width = (float) ellipseBounds.getWidth();
242 return (double) width;
278 return (width <= 0.0 || height <= 0.0);
290 this.width = (float) w;
398 * The overall width of the full ellipse of which this arc is
403 public double width; field in class:Arc2D.Double
[all...]
/openjdk7/jdk/src/share/classes/java/awt/image/
H A DRaster.java59 * minY, width, and height values. The minX and minY values define
94 * bounding rectangle of the same width and height but with a
143 /** The width of this Raster. */
144 protected int width; field in class:Raster
178 * specified data type, width, height, and number of bands.
192 * @param w the width in pixels of the image data
197 * width, height and number of bands.
218 * specified data type, width, height, scanline stride, pixel
234 * @param w the width in pixels of the image data
241 * width, heigh
1311 createChild(int parentX, int parentY, int width, int height, int childMinX, int childMinY, int bandList[]) argument
[all...]
/openjdk7/jdk/src/share/classes/java/awt/peer/
H A DComponentPeer.java197 * @param width the width of the component
206 void setBounds(int x, int y, int width, int height, int op); argument
379 * Creates an empty image with the specified width and height. This is
383 * @param width the width of the image
392 Image createImage(int width, int height); argument
395 * Creates an empty volatile image with the specified width and height.
399 * @param width the width o
407 createVolatileImage(int width, int height) argument
[all...]
/openjdk7/jdk/src/share/classes/com/sun/java/swing/plaf/motif/
H A DMotifBorders.java201 int width, int height) {
207 drawBezel(g, x, y, width, height,
211 drawBezel(g, x, y, width, height,
216 drawBezel(g, x, y, width, height, false, false,
233 public void paintBorder(Component c, Graphics g, int x, int y, int width, int height) { argument
241 drawBezel(g,x,y,size.width,size.height,false,false,
259 // The width of the border
301 int x, int y, int width, int height) {
302 Rectangle titleBarRect = new Rectangle(x, y, width, BORDER_SIZE);
307 int maxX = width
200 paintBorder(Component c, Graphics g, int x, int y, int width, int height) argument
300 drawTopBorder(Component c, Graphics g, int x, int y, int width, int height) argument
334 drawLeftBorder(Component c, Graphics g, int x, int y, int width, int height) argument
359 drawRightBorder(Component c, Graphics g, int x, int y, int width, int height) argument
385 drawBottomBorder(Component c, Graphics g, int x, int y, int width, int height) argument
420 paintBorder(Component c, Graphics g, int x, int y, int width, int height) argument
482 drawTopBorder(Component c, Graphics g, int x, int y, int width, int height) argument
501 drawLeftBorder(Component c, Graphics g, int x, int y, int width, int height) argument
520 drawRightBorder(Component c, Graphics g, int x, int y, int width, int height) argument
540 drawBottomBorder(Component c, Graphics g, int x, int y, int width, int height) argument
661 paintBorder(Component c, Graphics g, int x, int y, int width, int height) argument
[all...]
/openjdk7/jdk/src/share/classes/java/awt/
H A DGraphics.java151 * is specified by the <code>width</code> and <code>height</code>
157 * @param width the width of the clipping rectangle.
163 public Graphics create(int x, int y, int width, int height) { argument
167 g.clipRect(0, 0, width, height);
304 * @param width the width of the rectangle to intersect the clip with
309 public abstract void clipRect(int x, int y, int width, int height); argument
319 * @param width the width o
326 setClip(int x, int y, int width, int height) argument
383 copyArea(int x, int y, int width, int height, int dx, int dy) argument
416 fillRect(int x, int y, int width, int height) argument
434 drawRect(int x, int y, int width, int height) argument
468 clearRect(int x, int y, int width, int height) argument
486 drawRoundRect(int x, int y, int width, int height, int arcWidth, int arcHeight) argument
505 fillRoundRect(int x, int y, int width, int height, int arcWidth, int arcHeight) argument
527 draw3DRect(int x, int y, int width, int height, boolean raised) argument
557 fill3DRect(int x, int y, int width, int height, boolean raised) argument
593 drawOval(int x, int y, int width, int height) argument
606 fillOval(int x, int y, int width, int height) argument
645 drawArc(int x, int y, int width, int height, int startAngle, int arcAngle) argument
684 fillArc(int x, int y, int width, int height, int startAngle, int arcAngle) argument
921 drawImage(Image img, int x, int y, int width, int height, ImageObserver observer) argument
1008 drawImage(Image img, int x, int y, int width, int height, Color bgcolor, ImageObserver observer) argument
1214 hitClip(int x, int y, int width, int height) argument
[all...]
/openjdk7/jdk/src/macosx/classes/com/apple/laf/
H A DAquaIcon.java46 static UIResource getIconFor(final JRSUIControlSpec spec, final int width, final int height) { argument
47 return new CachableJRSUIIcon(width, height) {
112 int width; field in class:AquaIcon.CachingScalingIcon
116 public CachingScalingIcon(final int width, final int height) { argument
117 this.width = width;
121 void setSize(final int width, final int height) { argument
122 this.width = width;
183 return width;
193 CachableJRSUIIcon(final int width, final int height) argument
215 FileIcon(final File file, final int width, final int height) argument
288 SystemIcon(final String iconSelector, final int width, final int height) argument
[all...]
H A DAquaProgressBarUI.java180 final int width = progressBar.getWidth() - (i.right + i.left);
183 painter.paint(g, progressBar, i.left, i.top, width, height);
186 paintString(g, i.left, i.top, width, height);
196 protected void paintString(final Graphics g, final int x, final int y, final int width, final int height) { argument
202 final Point renderLocation = getStringPlacement(g2, progressString, x, y, width, height);
230 protected Point getStringPlacement(final Graphics g, final String progressString, int x, int y, int width, int height) { argument
236 // swapping x & y and width & height
238 height = width;
239 width = oldH;
246 return new Point(x + Math.round(width /
[all...]
H A DAquaUtilControlSize.java265 public SizeVariant alterMinSize(final int width, final int height) { argument
266 this.w += width; this.h += height;
/openjdk7/jdk/src/macosx/classes/sun/java2d/
H A DCompositeCRenderer.java59 public synchronized void drawRect(SunGraphics2D sg2d, int x, int y, int width, int height) { argument
61 rectangle.setRect(x, y, width, height);
66 public synchronized void drawRoundRect(SunGraphics2D sg2d, int x, int y, int width, int height, int arcWidth, int arcHeight) { argument
68 roundrectangle.setRoundRect(x, y, width, height, arcWidth, arcHeight);
73 public synchronized void drawOval(SunGraphics2D sg2d, int x, int y, int width, int height) { argument
75 ellipse.setFrame(x, y, width, height);
80 public synchronized void drawArc(SunGraphics2D sg2d, int x, int y, int width, int height, int startAngle, int arcAngle) { argument
82 arc.setArc(x, y, width, height, startAngle, arcAngle, Arc2D.OPEN);
95 public synchronized void fillRect(SunGraphics2D sg2d, int x, int y, int width, int height) { argument
97 rectangle.setRect(x, y, width, heigh
102 fillRoundRect(SunGraphics2D sg2d, int x, int y, int width, int height, int arcWidth, int arcHeight) argument
109 fillOval(SunGraphics2D sg2d, int x, int y, int width, int height) argument
116 fillArc(SunGraphics2D sg2d, int x, int y, int width, int height, int startAngle, int arcAngle) argument
[all...]

Completed in 81 milliseconds

<<11121314151617181920>>