![JAR search and dependency download from the Maven repository](/logo.png)
org.purejava.appindicator._PangoLayoutLine Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of libappindicator-gtk3-java-full Show documentation
Show all versions of libappindicator-gtk3-java-full Show documentation
Java bindings for libappindicator-gtk3 in 100% pure Java
// 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 _PangoLayoutLine {
* struct _PangoLayout* layout;
* int start_index;
* int length;
* struct _GSList* runs;
* * unsigned int is_paragraph_start;
* unsigned int resolved_dir;
* };
* }
*/
public class _PangoLayoutLine {
public static MemoryLayout $LAYOUT() {
return constants$1621.const$5;
}
public static VarHandle layout$VH() {
return constants$1622.const$0;
}
/**
* Getter for field:
* {@snippet :
* struct _PangoLayout* layout;
* }
*/
public static MemorySegment layout$get(MemorySegment seg) {
return (java.lang.foreign.MemorySegment)constants$1622.const$0.get(seg);
}
/**
* Setter for field:
* {@snippet :
* struct _PangoLayout* layout;
* }
*/
public static void layout$set(MemorySegment seg, MemorySegment x) {
constants$1622.const$0.set(seg, x);
}
public static MemorySegment layout$get(MemorySegment seg, long index) {
return (java.lang.foreign.MemorySegment)constants$1622.const$0.get(seg.asSlice(index*sizeof()));
}
public static void layout$set(MemorySegment seg, long index, MemorySegment x) {
constants$1622.const$0.set(seg.asSlice(index*sizeof()), x);
}
public static VarHandle start_index$VH() {
return constants$1622.const$1;
}
/**
* Getter for field:
* {@snippet :
* int start_index;
* }
*/
public static int start_index$get(MemorySegment seg) {
return (int)constants$1622.const$1.get(seg);
}
/**
* Setter for field:
* {@snippet :
* int start_index;
* }
*/
public static void start_index$set(MemorySegment seg, int x) {
constants$1622.const$1.set(seg, x);
}
public static int start_index$get(MemorySegment seg, long index) {
return (int)constants$1622.const$1.get(seg.asSlice(index*sizeof()));
}
public static void start_index$set(MemorySegment seg, long index, int x) {
constants$1622.const$1.set(seg.asSlice(index*sizeof()), x);
}
public static VarHandle length$VH() {
return constants$1622.const$2;
}
/**
* Getter for field:
* {@snippet :
* int length;
* }
*/
public static int length$get(MemorySegment seg) {
return (int)constants$1622.const$2.get(seg);
}
/**
* Setter for field:
* {@snippet :
* int length;
* }
*/
public static void length$set(MemorySegment seg, int x) {
constants$1622.const$2.set(seg, x);
}
public static int length$get(MemorySegment seg, long index) {
return (int)constants$1622.const$2.get(seg.asSlice(index*sizeof()));
}
public static void length$set(MemorySegment seg, long index, int x) {
constants$1622.const$2.set(seg.asSlice(index*sizeof()), x);
}
public static VarHandle runs$VH() {
return constants$1622.const$3;
}
/**
* Getter for field:
* {@snippet :
* struct _GSList* runs;
* }
*/
public static MemorySegment runs$get(MemorySegment seg) {
return (java.lang.foreign.MemorySegment)constants$1622.const$3.get(seg);
}
/**
* Setter for field:
* {@snippet :
* struct _GSList* runs;
* }
*/
public static void runs$set(MemorySegment seg, MemorySegment x) {
constants$1622.const$3.set(seg, x);
}
public static MemorySegment runs$get(MemorySegment seg, long index) {
return (java.lang.foreign.MemorySegment)constants$1622.const$3.get(seg.asSlice(index*sizeof()));
}
public static void runs$set(MemorySegment seg, long index, MemorySegment x) {
constants$1622.const$3.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 - 2025 Weber Informatics LLC | Privacy Policy