com.github.moaxcp.x11.protocol.xinput.ChangeDevicePropertySixteenBits Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of x11-protocol-xinput Show documentation
Show all versions of x11-protocol-xinput Show documentation
An implementation of the x11 xinput protocol in java
package com.github.moaxcp.x11.protocol.xinput;
import com.github.moaxcp.x11.protocol.X11Input;
import com.github.moaxcp.x11.protocol.X11Output;
import com.github.moaxcp.x11.protocol.xproto.PropMode;
import java.io.IOException;
import lombok.Builder;
import lombok.Value;
@Value
@Builder
public class ChangeDevicePropertySixteenBits implements ChangeDeviceProperty {
public static final String PLUGIN_NAME = "xinput";
public static final byte OPCODE = 37;
private int property;
private int type;
private byte deviceId;
private byte format;
private byte mode;
private int numItems;
public byte getOpCode() {
return OPCODE;
}
public static ChangeDevicePropertySixteenBits readChangeDevicePropertySixteenBits(
byte majorOpcode, byte OPCODE, short length, int property, int type, byte deviceId,
byte format, byte mode, byte[] pad8, int numItems, X11Input in) throws IOException {
ChangeDevicePropertySixteenBits.ChangeDevicePropertySixteenBitsBuilder javaBuilder = ChangeDevicePropertySixteenBits.builder();
javaBuilder.property(property);
javaBuilder.type(type);
javaBuilder.deviceId(deviceId);
javaBuilder.format(format);
javaBuilder.mode(mode);
javaBuilder.numItems(numItems);
return javaBuilder.build();
}
@Override
public void write(byte majorOpcode, X11Output out) throws IOException {
out.writeCard8(majorOpcode);
out.writeCard8((byte)(Byte.toUnsignedInt(OPCODE)));
out.writeCard16((short) getLength());
out.writeCard32(property);
out.writeCard32(type);
out.writeCard8(deviceId);
out.writeCard8(format);
out.writeCard8(mode);
out.writePad(1);
out.writeCard32(numItems);
}
@Override
public int getSize() {
return 20;
}
public String getPluginName() {
return PLUGIN_NAME;
}
public static class ChangeDevicePropertySixteenBitsBuilder {
public ChangeDevicePropertySixteenBits.ChangeDevicePropertySixteenBitsBuilder format(
PropertyFormat format) {
this.format = (byte) format.getValue();
return this;
}
public ChangeDevicePropertySixteenBits.ChangeDevicePropertySixteenBitsBuilder format(
byte format) {
this.format = format;
return this;
}
public ChangeDevicePropertySixteenBits.ChangeDevicePropertySixteenBitsBuilder mode(
PropMode mode) {
this.mode = (byte) mode.getValue();
return this;
}
public ChangeDevicePropertySixteenBits.ChangeDevicePropertySixteenBitsBuilder mode(byte mode) {
this.mode = mode;
return this;
}
public int getSize() {
return 20;
}
}
}