All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.lwjgl.glfw.GLFWWindowIconifyCallback Maven / Gradle / Ivy

/*
 * 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#glfwSetWindowIconifyCallback SetWindowIconifyCallback} method.
 * 
 * 

Type

* *

 * void (*) (
 *     GLFWwindow *window,
 *     int iconified
 * )
* * @since version 3.0 */ public abstract class GLFWWindowIconifyCallback extends Callback implements GLFWWindowIconifyCallbackI { /** * Creates a {@code GLFWWindowIconifyCallback} instance from the specified function pointer. * * @return the new {@code GLFWWindowIconifyCallback} */ public static GLFWWindowIconifyCallback create(long functionPointer) { GLFWWindowIconifyCallbackI instance = Callback.get(functionPointer); return instance instanceof GLFWWindowIconifyCallback ? (GLFWWindowIconifyCallback)instance : new Container(functionPointer, instance); } /** Like {@link #create(long) create}, but returns {@code null} if {@code functionPointer} is {@code NULL}. */ @Nullable public static GLFWWindowIconifyCallback createSafe(long functionPointer) { return functionPointer == NULL ? null : create(functionPointer); } /** Creates a {@code GLFWWindowIconifyCallback} instance that delegates to the specified {@code GLFWWindowIconifyCallbackI} instance. */ public static GLFWWindowIconifyCallback create(GLFWWindowIconifyCallbackI instance) { return instance instanceof GLFWWindowIconifyCallback ? (GLFWWindowIconifyCallback)instance : new Container(instance.address(), instance); } protected GLFWWindowIconifyCallback() { super(SIGNATURE); } private GLFWWindowIconifyCallback(long functionPointer) { super(functionPointer); } /** See {@link GLFW#glfwSetWindowIconifyCallback SetWindowIconifyCallback}. */ public GLFWWindowIconifyCallback set(long window) { glfwSetWindowIconifyCallback(window, this); return this; } private static final class Container extends GLFWWindowIconifyCallback { private final GLFWWindowIconifyCallbackI delegate; Container(long functionPointer, GLFWWindowIconifyCallbackI delegate) { super(functionPointer); this.delegate = delegate; } @Override public void invoke(long window, boolean iconified) { delegate.invoke(window, iconified); } } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy