com.github.moaxcp.x11client.protocol.render.Glyphinfo Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of x11-client Show documentation
Show all versions of x11-client Show documentation
An x11 client implemented in java
package com.github.moaxcp.x11client.protocol.render;
import com.github.moaxcp.x11client.protocol.X11Input;
import com.github.moaxcp.x11client.protocol.X11Output;
import com.github.moaxcp.x11client.protocol.XStruct;
import java.io.IOException;
import java.lang.Override;
import lombok.Builder;
import lombok.Value;
@Value
@Builder
public class Glyphinfo implements XStruct {
private short width;
private short height;
private short x;
private short y;
private short xOff;
private short yOff;
public static Glyphinfo readGlyphinfo(X11Input in) throws IOException {
short width = in.readCard16();
short height = in.readCard16();
short x = in.readInt16();
short y = in.readInt16();
short xOff = in.readInt16();
short yOff = in.readInt16();
Glyphinfo.GlyphinfoBuilder javaBuilder = Glyphinfo.builder();
javaBuilder.width(width);
javaBuilder.height(height);
javaBuilder.x(x);
javaBuilder.y(y);
javaBuilder.xOff(xOff);
javaBuilder.yOff(yOff);
return javaBuilder.build();
}
@Override
public void write(X11Output out) throws IOException {
out.writeCard16(width);
out.writeCard16(height);
out.writeInt16(x);
out.writeInt16(y);
out.writeInt16(xOff);
out.writeInt16(yOff);
}
@Override
public int getSize() {
return 12;
}
public static class GlyphinfoBuilder {
public int getSize() {
return 12;
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy