Package de.lessvoid.nifty.spi.render

Examples of de.lessvoid.nifty.spi.render.MouseCursor


    lastMouseMoveEventTime = timeProvider.getMsTime();
  }

  @Override
  public void registerMouseCursor(final String id, final String filename, final int hotspotX, final int hotspotY) throws IOException {
    MouseCursor mouseCursor = renderDevice.createMouseCursor(filename, hotspotX, hotspotY);
    if (mouseCursor == null) {
      log.warning("Your RenderDevice does not support the createMouseCursor() method. Mouse cursors can't be changed.");
      return;
    }
    registeredMouseCursors.put(id, mouseCursor);
View Full Code Here

TOP

Related Classes of de.lessvoid.nifty.spi.render.MouseCursor

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.