com.github.moaxcp.x11.protocol.xinput.InputInfo 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.XStruct;
import java.io.IOException;
public interface InputInfo extends XStruct {
static InputInfo readInputInfo(X11Input in) throws IOException {
byte classId = in.readCard8();
byte len = in.readCard8();
InputClass ref = InputClass.getByCode(classId);
if(ref == InputClass.KEY) {
return InputInfoKey.readInputInfoKey(classId, len, in);
}
if(ref == InputClass.BUTTON) {
return InputInfoButton.readInputInfoButton(classId, len, in);
}
if(ref == InputClass.VALUATOR) {
return InputInfoValuator.readInputInfoValuator(classId, len, in);
}
throw new IllegalStateException("Could not find class for " + ref);
}
}