Lines Matching defs:newX
351 public void dragFrame(JComponent f, int newX, int newY) {
363 g.drawRect( newX, newY, f.getWidth()-1, f.getHeight()-1);
377 currentLoc = new Point (newX, newY);
383 dragFrameFaster(f, newX, newY);
385 setBoundsForFrame(f, newX, newY, f.getWidth(), f.getHeight());
413 * @param newX the new x-coordinate
418 public void resizeFrame(JComponent f, int newX, int newY, int newWidth, int newHeight) {
421 setBoundsForFrame(f, newX, newY, newWidth, newHeight);
431 g.drawRect( newX, newY, newWidth-1, newHeight-1);
437 currentBounds = new Rectangle (newX, newY, newWidth, newHeight);
457 public void setBoundsForFrame(JComponent f, int newX, int newY, int newWidth, int newHeight) {
458 f.setBounds(newX, newY, newWidth, newHeight);
637 private void dragFrameFaster(JComponent f, int newX, int newY) {
645 currentBounds.x = newX;
673 newX - previousBounds.x,
716 dirtyRects[i].x += newX - previousBounds.x;