com.github.moaxcp.x11client.protocol.xproto.SetInputFocus 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.Override;
import lombok.Builder;
import lombok.Value;
@Value
@Builder
public class SetInputFocus implements OneWayRequest {
public static final byte OPCODE = 42;
private byte revertTo;
private int focus;
private int time;
public byte getOpCode() {
return OPCODE;
}
public static SetInputFocus readSetInputFocus(X11Input in) throws IOException {
byte revertTo = in.readCard8();
short length = in.readCard16();
int focus = in.readCard32();
int time = in.readCard32();
SetInputFocus.SetInputFocusBuilder javaBuilder = SetInputFocus.builder();
javaBuilder.revertTo(revertTo);
javaBuilder.focus(focus);
javaBuilder.time(time);
return javaBuilder.build();
}
@Override
public void write(byte offset, X11Output out) throws IOException {
out.writeCard8((byte)(Byte.toUnsignedInt(OPCODE) + Byte.toUnsignedInt(offset)));
out.writeCard8(revertTo);
out.writeCard16((short) getLength());
out.writeCard32(focus);
out.writeCard32(time);
}
@Override
public int getSize() {
return 12;
}
public static class SetInputFocusBuilder {
public SetInputFocus.SetInputFocusBuilder revertTo(InputFocus revertTo) {
this.revertTo = (byte) revertTo.getValue();
return this;
}
public SetInputFocus.SetInputFocusBuilder revertTo(byte revertTo) {
this.revertTo = revertTo;
return this;
}
public int getSize() {
return 12;
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy