com.github.moaxcp.x11client.protocol.xproto.ChangeKeyboardMapping 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.xproto;
import com.github.moaxcp.x11client.protocol.OneWayRequest;
import com.github.moaxcp.x11client.protocol.X11Input;
import com.github.moaxcp.x11client.protocol.X11Output;
import java.io.IOException;
import java.lang.Byte;
import java.lang.Integer;
import java.lang.Override;
import java.util.List;
import lombok.Builder;
import lombok.NonNull;
import lombok.Value;
@Value
@Builder
public class ChangeKeyboardMapping implements OneWayRequest {
public static final byte OPCODE = 100;
private byte keycodeCount;
private byte firstKeycode;
private byte keysymsPerKeycode;
@NonNull
private List keysyms;
public byte getOpCode() {
return OPCODE;
}
public static ChangeKeyboardMapping readChangeKeyboardMapping(X11Input in) throws IOException {
byte keycodeCount = in.readCard8();
short length = in.readCard16();
byte firstKeycode = in.readCard8();
byte keysymsPerKeycode = in.readCard8();
in.readPad(2);
List keysyms = in.readCard32(Byte.toUnsignedInt(keycodeCount) * Byte.toUnsignedInt(keysymsPerKeycode));
ChangeKeyboardMapping.ChangeKeyboardMappingBuilder javaBuilder = ChangeKeyboardMapping.builder();
javaBuilder.keycodeCount(keycodeCount);
javaBuilder.firstKeycode(firstKeycode);
javaBuilder.keysymsPerKeycode(keysymsPerKeycode);
javaBuilder.keysyms(keysyms);
in.readPadAlign(javaBuilder.getSize());
return javaBuilder.build();
}
@Override
public void write(byte offset, X11Output out) throws IOException {
out.writeCard8((byte)(Byte.toUnsignedInt(OPCODE) + Byte.toUnsignedInt(offset)));
out.writeCard8(keycodeCount);
out.writeCard16((short) getLength());
out.writeCard8(firstKeycode);
out.writeCard8(keysymsPerKeycode);
out.writePad(2);
out.writeCard32(keysyms);
out.writePadAlign(getSize());
}
@Override
public int getSize() {
return 8 + 4 * keysyms.size();
}
public static class ChangeKeyboardMappingBuilder {
public int getSize() {
return 8 + 4 * keysyms.size();
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy