com.github.moaxcp.x11.protocol.xkb.Key Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of x11-protocol-xkb Show documentation
Show all versions of x11-protocol-xkb Show documentation
An implementation of the x11 xkb protocol in java
The newest version!
package com.github.moaxcp.x11.protocol.xkb;
import com.github.moaxcp.x11.protocol.X11Input;
import com.github.moaxcp.x11.protocol.X11Output;
import com.github.moaxcp.x11.protocol.XStruct;
import java.io.IOException;
import java.util.List;
import lombok.Builder;
import lombok.NonNull;
import lombok.Value;
@Value
@Builder
public class Key implements XStruct {
public static final String PLUGIN_NAME = "xkb";
@NonNull
private List name;
private short gap;
private byte shapeNdx;
private byte colorNdx;
public static Key readKey(X11Input in) throws IOException {
Key.KeyBuilder javaBuilder = Key.builder();
List name = in.readChar(4);
short gap = in.readInt16();
byte shapeNdx = in.readCard8();
byte colorNdx = in.readCard8();
javaBuilder.name(name);
javaBuilder.gap(gap);
javaBuilder.shapeNdx(shapeNdx);
javaBuilder.colorNdx(colorNdx);
return javaBuilder.build();
}
@Override
public void write(X11Output out) throws IOException {
out.writeChar(name);
out.writeInt16(gap);
out.writeCard8(shapeNdx);
out.writeCard8(colorNdx);
}
@Override
public int getSize() {
return 4 + 1 * name.size();
}
public String getPluginName() {
return PLUGIN_NAME;
}
public static class KeyBuilder {
public int getSize() {
return 4 + 1 * name.size();
}
}
}