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

org.purejava.appindicator._GtkTextAppearance 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 _GtkTextAppearance {
 *     struct _GdkColor bg_color;
 *     struct _GdkColor fg_color;
 *     int rise;
 *      *     unsigned int underline;
 *     unsigned int strikethrough;
 *     unsigned int draw_bg;
 *     unsigned int inside_selection;
 *     unsigned int is_text;
 *     struct _GdkRGBA* rgba[2];
 * };
 * }
 */
public class _GtkTextAppearance {

    public static MemoryLayout $LAYOUT() {
        return constants$2355.const$0;
    }
    public static MemorySegment bg_color$slice(MemorySegment seg) {
        return seg.asSlice(0, 12);
    }
    public static MemorySegment fg_color$slice(MemorySegment seg) {
        return seg.asSlice(12, 12);
    }
    public static VarHandle rise$VH() {
        return constants$2355.const$1;
    }
    /**
     * Getter for field:
     * {@snippet :
     * int rise;
     * }
     */
    public static int rise$get(MemorySegment seg) {
        return (int)constants$2355.const$1.get(seg);
    }
    /**
     * Setter for field:
     * {@snippet :
     * int rise;
     * }
     */
    public static void rise$set(MemorySegment seg, int x) {
        constants$2355.const$1.set(seg, x);
    }
    public static int rise$get(MemorySegment seg, long index) {
        return (int)constants$2355.const$1.get(seg.asSlice(index*sizeof()));
    }
    public static void rise$set(MemorySegment seg, long index, int x) {
        constants$2355.const$1.set(seg.asSlice(index*sizeof()), x);
    }
    public static MemorySegment rgba$slice(MemorySegment seg) {
        return seg.asSlice(32, 16);
    }
    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