Package org.lwjgl.glfw
Class GLFWKeyCallback
- java.lang.Object
-
- org.lwjgl.system.Callback
-
- org.lwjgl.glfw.GLFWKeyCallback
-
- All Implemented Interfaces:
java.lang.AutoCloseable,GLFWKeyCallbackI,org.lwjgl.system.CallbackI,org.lwjgl.system.NativeResource,org.lwjgl.system.Pointer
public abstract class GLFWKeyCallback extends org.lwjgl.system.Callback implements GLFWKeyCallbackI
Instances of this class may be passed to theSetKeyCallbackmethod.Type
void (*GLFWKeyCallbackI.invoke(long, int, int, int, int)) ( GLFWwindow *window, int key, int scancode, int action, int mods )
-
-
Field Summary
-
Fields inherited from interface org.lwjgl.glfw.GLFWKeyCallbackI
CIF
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static GLFWKeyCallbackcreate(long functionPointer)Creates aGLFWKeyCallbackinstance from the specified function pointer.static GLFWKeyCallbackcreate(GLFWKeyCallbackI instance)Creates aGLFWKeyCallbackinstance that delegates to the specifiedGLFWKeyCallbackIinstance.static GLFWKeyCallbackcreateSafe(long functionPointer)GLFWKeyCallbackset(long window)SeeSetKeyCallback.-
Methods inherited from class org.lwjgl.system.Callback
address, equals, free, free, get, getSafe, hashCode, toString
-
Methods inherited from interface org.lwjgl.glfw.GLFWKeyCallbackI
callback, getCallInterface, invoke
-
-
-
-
Method Detail
-
create
public static GLFWKeyCallback create(long functionPointer)
Creates aGLFWKeyCallbackinstance from the specified function pointer.- Returns:
- the new
GLFWKeyCallback
-
createSafe
@Nullable public static GLFWKeyCallback createSafe(long functionPointer)
-
create
public static GLFWKeyCallback create(GLFWKeyCallbackI instance)
Creates aGLFWKeyCallbackinstance that delegates to the specifiedGLFWKeyCallbackIinstance.
-
set
public GLFWKeyCallback set(long window)
SeeSetKeyCallback.
-
-