com.github.moaxcp.x11.protocol.xinput.FeedbackCtlKeyboard 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 java.io.IOException;
import lombok.Builder;
import lombok.Value;
@Value
@Builder
public class FeedbackCtlKeyboard implements FeedbackCtl {
public static final String PLUGIN_NAME = "xinput";
private byte classId;
private byte feedbackId;
private short len;
private byte key;
private byte autoRepeatMode;
private byte keyClickPercent;
private byte bellPercent;
private short bellPitch;
private short bellDuration;
private int ledMask;
private int ledValues;
public static FeedbackCtlKeyboard readFeedbackCtlKeyboard(byte classId, byte feedbackId,
short len, X11Input in) throws IOException {
FeedbackCtlKeyboard.FeedbackCtlKeyboardBuilder javaBuilder = FeedbackCtlKeyboard.builder();
byte key = in.readCard8();
byte autoRepeatMode = in.readCard8();
byte keyClickPercent = in.readInt8();
byte bellPercent = in.readInt8();
short bellPitch = in.readInt16();
short bellDuration = in.readInt16();
int ledMask = in.readCard32();
int ledValues = in.readCard32();
javaBuilder.classId(classId);
javaBuilder.feedbackId(feedbackId);
javaBuilder.len(len);
javaBuilder.key(key);
javaBuilder.autoRepeatMode(autoRepeatMode);
javaBuilder.keyClickPercent(keyClickPercent);
javaBuilder.bellPercent(bellPercent);
javaBuilder.bellPitch(bellPitch);
javaBuilder.bellDuration(bellDuration);
javaBuilder.ledMask(ledMask);
javaBuilder.ledValues(ledValues);
return javaBuilder.build();
}
@Override
public void write(X11Output out) throws IOException {
out.writeCard8(classId);
out.writeCard8(feedbackId);
out.writeCard16(len);
out.writeCard8(key);
out.writeCard8(autoRepeatMode);
out.writeInt8(keyClickPercent);
out.writeInt8(bellPercent);
out.writeInt16(bellPitch);
out.writeInt16(bellDuration);
out.writeCard32(ledMask);
out.writeCard32(ledValues);
}
@Override
public int getSize() {
return 20;
}
public String getPluginName() {
return PLUGIN_NAME;
}
public static class FeedbackCtlKeyboardBuilder {
public FeedbackCtlKeyboard.FeedbackCtlKeyboardBuilder classId(FeedbackClass classId) {
this.classId = (byte) classId.getValue();
return this;
}
public FeedbackCtlKeyboard.FeedbackCtlKeyboardBuilder classId(byte classId) {
this.classId = classId;
return this;
}
public int getSize() {
return 20;
}
}
}