Lines Matching defs:bounds
42 BOUNDS = "bounds", // bounds of the window, Rectangle
111 protected final void init(long parentWindow, Rectangle bounds) {}
245 XBaseWindow(long parentWindow, Rectangle bounds) {
247 BOUNDS, bounds,
254 XBaseWindow(Rectangle bounds) {
256 BOUNDS, bounds
288 Rectangle bounds = (Rectangle)params.get(BOUNDS);
289 bounds.width = Math.max(MIN_SIZE, bounds.width);
290 bounds.height = Math.max(MIN_SIZE, bounds.height);
335 Rectangle bounds = (Rectangle)params.get(BOUNDS);
368 bounds.x, bounds.y, // location
369 bounds.width, bounds.height, // size
698 public void xSetBounds(Rectangle bounds) {
699 xSetBounds(bounds.x, bounds.y, bounds.width, bounds.height);
707 insLog.fine("Setting bounds on " + this + " to (" + x + ", " + y + "), " + width + "x" + height);