![JAR search and dependency download from the Maven repository](/logo.png)
org.purejava.appindicator._PangoGlyphGeometry 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 _PangoGlyphGeometry {
* int width;
* int x_offset;
* int y_offset;
* };
* }
*/
public class _PangoGlyphGeometry {
public static MemoryLayout $LAYOUT() {
return constants$1598.const$1;
}
public static VarHandle width$VH() {
return constants$1598.const$2;
}
/**
* Getter for field:
* {@snippet :
* int width;
* }
*/
public static int width$get(MemorySegment seg) {
return (int)constants$1598.const$2.get(seg);
}
/**
* Setter for field:
* {@snippet :
* int width;
* }
*/
public static void width$set(MemorySegment seg, int x) {
constants$1598.const$2.set(seg, x);
}
public static int width$get(MemorySegment seg, long index) {
return (int)constants$1598.const$2.get(seg.asSlice(index*sizeof()));
}
public static void width$set(MemorySegment seg, long index, int x) {
constants$1598.const$2.set(seg.asSlice(index*sizeof()), x);
}
public static VarHandle x_offset$VH() {
return constants$1598.const$3;
}
/**
* Getter for field:
* {@snippet :
* int x_offset;
* }
*/
public static int x_offset$get(MemorySegment seg) {
return (int)constants$1598.const$3.get(seg);
}
/**
* Setter for field:
* {@snippet :
* int x_offset;
* }
*/
public static void x_offset$set(MemorySegment seg, int x) {
constants$1598.const$3.set(seg, x);
}
public static int x_offset$get(MemorySegment seg, long index) {
return (int)constants$1598.const$3.get(seg.asSlice(index*sizeof()));
}
public static void x_offset$set(MemorySegment seg, long index, int x) {
constants$1598.const$3.set(seg.asSlice(index*sizeof()), x);
}
public static VarHandle y_offset$VH() {
return constants$1598.const$4;
}
/**
* Getter for field:
* {@snippet :
* int y_offset;
* }
*/
public static int y_offset$get(MemorySegment seg) {
return (int)constants$1598.const$4.get(seg);
}
/**
* Setter for field:
* {@snippet :
* int y_offset;
* }
*/
public static void y_offset$set(MemorySegment seg, int x) {
constants$1598.const$4.set(seg, x);
}
public static int y_offset$get(MemorySegment seg, long index) {
return (int)constants$1598.const$4.get(seg.asSlice(index*sizeof()));
}
public static void y_offset$set(MemorySegment seg, long index, int x) {
constants$1598.const$4.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