com.github.moaxcp.x11.protocol.xkb.KeySymMap 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 KeySymMap implements XStruct {
public static final String PLUGIN_NAME = "xkb";
@NonNull
private List ktIndex;
private byte groupInfo;
private byte width;
@NonNull
private List syms;
public static KeySymMap readKeySymMap(X11Input in) throws IOException {
KeySymMap.KeySymMapBuilder javaBuilder = KeySymMap.builder();
List ktIndex = in.readCard8(4);
byte groupInfo = in.readCard8();
byte width = in.readCard8();
short nSyms = in.readCard16();
List syms = in.readCard32(Short.toUnsignedInt(nSyms));
javaBuilder.ktIndex(ktIndex);
javaBuilder.groupInfo(groupInfo);
javaBuilder.width(width);
javaBuilder.syms(syms);
return javaBuilder.build();
}
@Override
public void write(X11Output out) throws IOException {
out.writeCard8(ktIndex);
out.writeCard8(groupInfo);
out.writeCard8(width);
short nSyms = (short) syms.size();
out.writeCard16(nSyms);
out.writeCard32(syms);
}
@Override
public int getSize() {
return 4 + 1 * ktIndex.size() + 4 * syms.size();
}
public String getPluginName() {
return PLUGIN_NAME;
}
public static class KeySymMapBuilder {
public int getSize() {
return 4 + 1 * ktIndex.size() + 4 * syms.size();
}
}
}