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

org.purejava.appindicator._GdkEventPadAxis Maven / Gradle / Ivy

There is a newer version: 1.4.1
Show newest version
// Generated by jextract

package org.purejava.appindicator;

import java.lang.foreign.Arena;
import java.lang.foreign.MemoryLayout;
import java.lang.foreign.MemorySegment;
import java.lang.foreign.SegmentAllocator;
import java.lang.invoke.VarHandle;
/**
 * {@snippet :
 * struct _GdkEventPadAxis {
 *     enum GdkEventType type;
 *     struct _GdkWindow* window;
 *     signed char send_event;
 *     unsigned int time;
 *     unsigned int group;
 *     unsigned int index;
 *     unsigned int mode;
 *     double value;
 * };
 * }
 */
public class _GdkEventPadAxis {

    public static MemoryLayout $LAYOUT() {
        return constants$1801.const$0;
    }
    public static VarHandle type$VH() {
        return constants$1801.const$1;
    }
    /**
     * Getter for field:
     * {@snippet :
     * enum GdkEventType type;
     * }
     */
    public static int type$get(MemorySegment seg) {
        return (int)constants$1801.const$1.get(seg);
    }
    /**
     * Setter for field:
     * {@snippet :
     * enum GdkEventType type;
     * }
     */
    public static void type$set(MemorySegment seg, int x) {
        constants$1801.const$1.set(seg, x);
    }
    public static int type$get(MemorySegment seg, long index) {
        return (int)constants$1801.const$1.get(seg.asSlice(index*sizeof()));
    }
    public static void type$set(MemorySegment seg, long index, int x) {
        constants$1801.const$1.set(seg.asSlice(index*sizeof()), x);
    }
    public static VarHandle window$VH() {
        return constants$1801.const$2;
    }
    /**
     * Getter for field:
     * {@snippet :
     * struct _GdkWindow* window;
     * }
     */
    public static MemorySegment window$get(MemorySegment seg) {
        return (java.lang.foreign.MemorySegment)constants$1801.const$2.get(seg);
    }
    /**
     * Setter for field:
     * {@snippet :
     * struct _GdkWindow* window;
     * }
     */
    public static void window$set(MemorySegment seg, MemorySegment x) {
        constants$1801.const$2.set(seg, x);
    }
    public static MemorySegment window$get(MemorySegment seg, long index) {
        return (java.lang.foreign.MemorySegment)constants$1801.const$2.get(seg.asSlice(index*sizeof()));
    }
    public static void window$set(MemorySegment seg, long index, MemorySegment x) {
        constants$1801.const$2.set(seg.asSlice(index*sizeof()), x);
    }
    public static VarHandle send_event$VH() {
        return constants$1801.const$3;
    }
    /**
     * Getter for field:
     * {@snippet :
     * signed char send_event;
     * }
     */
    public static byte send_event$get(MemorySegment seg) {
        return (byte)constants$1801.const$3.get(seg);
    }
    /**
     * Setter for field:
     * {@snippet :
     * signed char send_event;
     * }
     */
    public static void send_event$set(MemorySegment seg, byte x) {
        constants$1801.const$3.set(seg, x);
    }
    public static byte send_event$get(MemorySegment seg, long index) {
        return (byte)constants$1801.const$3.get(seg.asSlice(index*sizeof()));
    }
    public static void send_event$set(MemorySegment seg, long index, byte x) {
        constants$1801.const$3.set(seg.asSlice(index*sizeof()), x);
    }
    public static VarHandle time$VH() {
        return constants$1801.const$4;
    }
    /**
     * Getter for field:
     * {@snippet :
     * unsigned int time;
     * }
     */
    public static int time$get(MemorySegment seg) {
        return (int)constants$1801.const$4.get(seg);
    }
    /**
     * Setter for field:
     * {@snippet :
     * unsigned int time;
     * }
     */
    public static void time$set(MemorySegment seg, int x) {
        constants$1801.const$4.set(seg, x);
    }
    public static int time$get(MemorySegment seg, long index) {
        return (int)constants$1801.const$4.get(seg.asSlice(index*sizeof()));
    }
    public static void time$set(MemorySegment seg, long index, int x) {
        constants$1801.const$4.set(seg.asSlice(index*sizeof()), x);
    }
    public static VarHandle group$VH() {
        return constants$1801.const$5;
    }
    /**
     * Getter for field:
     * {@snippet :
     * unsigned int group;
     * }
     */
    public static int group$get(MemorySegment seg) {
        return (int)constants$1801.const$5.get(seg);
    }
    /**
     * Setter for field:
     * {@snippet :
     * unsigned int group;
     * }
     */
    public static void group$set(MemorySegment seg, int x) {
        constants$1801.const$5.set(seg, x);
    }
    public static int group$get(MemorySegment seg, long index) {
        return (int)constants$1801.const$5.get(seg.asSlice(index*sizeof()));
    }
    public static void group$set(MemorySegment seg, long index, int x) {
        constants$1801.const$5.set(seg.asSlice(index*sizeof()), x);
    }
    public static VarHandle index$VH() {
        return constants$1802.const$0;
    }
    /**
     * Getter for field:
     * {@snippet :
     * unsigned int index;
     * }
     */
    public static int index$get(MemorySegment seg) {
        return (int)constants$1802.const$0.get(seg);
    }
    /**
     * Setter for field:
     * {@snippet :
     * unsigned int index;
     * }
     */
    public static void index$set(MemorySegment seg, int x) {
        constants$1802.const$0.set(seg, x);
    }
    public static int index$get(MemorySegment seg, long index) {
        return (int)constants$1802.const$0.get(seg.asSlice(index*sizeof()));
    }
    public static void index$set(MemorySegment seg, long index, int x) {
        constants$1802.const$0.set(seg.asSlice(index*sizeof()), x);
    }
    public static VarHandle mode$VH() {
        return constants$1802.const$1;
    }
    /**
     * Getter for field:
     * {@snippet :
     * unsigned int mode;
     * }
     */
    public static int mode$get(MemorySegment seg) {
        return (int)constants$1802.const$1.get(seg);
    }
    /**
     * Setter for field:
     * {@snippet :
     * unsigned int mode;
     * }
     */
    public static void mode$set(MemorySegment seg, int x) {
        constants$1802.const$1.set(seg, x);
    }
    public static int mode$get(MemorySegment seg, long index) {
        return (int)constants$1802.const$1.get(seg.asSlice(index*sizeof()));
    }
    public static void mode$set(MemorySegment seg, long index, int x) {
        constants$1802.const$1.set(seg.asSlice(index*sizeof()), x);
    }
    public static VarHandle value$VH() {
        return constants$1802.const$2;
    }
    /**
     * Getter for field:
     * {@snippet :
     * double value;
     * }
     */
    public static double value$get(MemorySegment seg) {
        return (double)constants$1802.const$2.get(seg);
    }
    /**
     * Setter for field:
     * {@snippet :
     * double value;
     * }
     */
    public static void value$set(MemorySegment seg, double x) {
        constants$1802.const$2.set(seg, x);
    }
    public static double value$get(MemorySegment seg, long index) {
        return (double)constants$1802.const$2.get(seg.asSlice(index*sizeof()));
    }
    public static void value$set(MemorySegment seg, long index, double x) {
        constants$1802.const$2.set(seg.asSlice(index*sizeof()), x);
    }
    public static long sizeof() { return $LAYOUT().byteSize(); }
    public static MemorySegment allocate(SegmentAllocator allocator) { return allocator.allocate($LAYOUT()); }
    public static MemorySegment allocateArray(long len, SegmentAllocator allocator) {
        return allocator.allocate(MemoryLayout.sequenceLayout(len, $LAYOUT()));
    }
    public static MemorySegment ofAddress(MemorySegment addr, Arena scope) { return RuntimeHelper.asArray(addr, $LAYOUT(), 1, scope); }
}






© 2015 - 2024 Weber Informatics LLC | Privacy Policy