Package org.rsbot.client.input

Examples of org.rsbot.client.input.Canvas


    releaseMouse(x, y, true);
  }

  @SuppressWarnings("unused")
  private void gainFocus() {
    final Canvas cw = getCanvasWrapper();
    if (!cw.hasFocus()) {
      cw.setFocused(true);
    }
  }
View Full Code Here


    moveMouse(x, y);
  }

  @SuppressWarnings("unused")
  private void loseFocus() {
    final Canvas cw = getCanvasWrapper();
    if (cw.hasFocus()) {
      cw.setFocused(false);
    }
  }
View Full Code Here

TOP

Related Classes of org.rsbot.client.input.Canvas

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.