org.lwjgl.glfw.GLFWCursorEnterCallback Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of lwjgl-glfw Show documentation
Show all versions of lwjgl-glfw Show documentation
A multi-platform library for OpenGL, OpenGL ES and Vulkan development on the desktop. It provides a simple API for creating windows, contexts and surfaces, receiving input and events.
/*
* Copyright LWJGL. All rights reserved.
* License terms: https://www.lwjgl.org/license
* MACHINE GENERATED FILE, DO NOT EDIT
*/
package org.lwjgl.glfw;
import javax.annotation.*;
import org.lwjgl.system.*;
import static org.lwjgl.system.MemoryUtil.*;
import static org.lwjgl.glfw.GLFW.*;
/**
* Instances of this class may be passed to the {@link GLFW#glfwSetCursorEnterCallback SetCursorEnterCallback} method.
*
* Type
*
*
* void (*) (
* GLFWwindow *window,
* int entered
* )
*
* @since version 3.0
*/
public abstract class GLFWCursorEnterCallback extends Callback implements GLFWCursorEnterCallbackI {
/**
* Creates a {@code GLFWCursorEnterCallback} instance from the specified function pointer.
*
* @return the new {@code GLFWCursorEnterCallback}
*/
public static GLFWCursorEnterCallback create(long functionPointer) {
GLFWCursorEnterCallbackI instance = Callback.get(functionPointer);
return instance instanceof GLFWCursorEnterCallback
? (GLFWCursorEnterCallback)instance
: new Container(functionPointer, instance);
}
/** Like {@link #create(long) create}, but returns {@code null} if {@code functionPointer} is {@code NULL}. */
@Nullable
public static GLFWCursorEnterCallback createSafe(long functionPointer) {
return functionPointer == NULL ? null : create(functionPointer);
}
/** Creates a {@code GLFWCursorEnterCallback} instance that delegates to the specified {@code GLFWCursorEnterCallbackI} instance. */
public static GLFWCursorEnterCallback create(GLFWCursorEnterCallbackI instance) {
return instance instanceof GLFWCursorEnterCallback
? (GLFWCursorEnterCallback)instance
: new Container(instance.address(), instance);
}
protected GLFWCursorEnterCallback() {
super(SIGNATURE);
}
private GLFWCursorEnterCallback(long functionPointer) {
super(functionPointer);
}
/** See {@link GLFW#glfwSetCursorEnterCallback SetCursorEnterCallback}. */
public GLFWCursorEnterCallback set(long window) {
glfwSetCursorEnterCallback(window, this);
return this;
}
private static final class Container extends GLFWCursorEnterCallback {
private final GLFWCursorEnterCallbackI delegate;
Container(long functionPointer, GLFWCursorEnterCallbackI delegate) {
super(functionPointer);
this.delegate = delegate;
}
@Override
public void invoke(long window, boolean entered) {
delegate.invoke(window, entered);
}
}
}