![JAR search and dependency download from the Maven repository](/logo.png)
org.lwjgl.glfw.GLFWWindowFocusCallback 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
An 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 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#glfwSetWindowFocusCallback SetWindowFocusCallback} method. */
public abstract class GLFWWindowFocusCallback extends Callback implements GLFWWindowFocusCallbackI {
/** Creates a {@code GLFWWindowFocusCallback} instance from the specified function pointer. */
public static GLFWWindowFocusCallback create(long functionPointer) {
if ( functionPointer == NULL )
return null;
GLFWWindowFocusCallbackI instance = Callback.get(functionPointer);
return instance instanceof GLFWWindowFocusCallback
? (GLFWWindowFocusCallback)instance
: new Container(functionPointer, instance);
}
/** Creates a {@code GLFWWindowFocusCallback} instance that delegates to the specified {@code GLFWWindowFocusCallbackI} instance. */
public static GLFWWindowFocusCallback create(GLFWWindowFocusCallbackI instance) {
return instance instanceof GLFWWindowFocusCallback
? (GLFWWindowFocusCallback)instance
: new Container(instance.address(), instance);
}
protected GLFWWindowFocusCallback() {
super(SIGNATURE);
}
private GLFWWindowFocusCallback(long functionPointer) {
super(functionPointer);
}
/** See {@link GLFW#glfwSetWindowFocusCallback SetWindowFocusCallback}. */
public GLFWWindowFocusCallback set(long window) {
glfwSetWindowFocusCallback(window, this);
return this;
}
private static final class Container extends GLFWWindowFocusCallback {
private final GLFWWindowFocusCallbackI delegate;
Container(long functionPointer, GLFWWindowFocusCallbackI delegate) {
super(functionPointer);
this.delegate = delegate;
}
@Override
public void invoke(long window, boolean focused) {
delegate.invoke(window, focused);
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy