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 theSetKeyCallback
method.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 GLFWKeyCallback
create(long functionPointer)
Creates aGLFWKeyCallback
instance from the specified function pointer.static GLFWKeyCallback
create(GLFWKeyCallbackI instance)
Creates aGLFWKeyCallback
instance that delegates to the specifiedGLFWKeyCallbackI
instance.static GLFWKeyCallback
createSafe(long functionPointer)
GLFWKeyCallback
set(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 aGLFWKeyCallback
instance 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 aGLFWKeyCallback
instance that delegates to the specifiedGLFWKeyCallbackI
instance.
-
set
public GLFWKeyCallback set(long window)
SeeSetKeyCallback
.
-
-