com.github.moaxcp.x11client.protocol.xproto.TranslateCoordinatesReply 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.X11Input;
import com.github.moaxcp.x11client.protocol.X11Output;
import com.github.moaxcp.x11client.protocol.XReply;
import java.io.IOException;
import java.lang.Override;
import lombok.Builder;
import lombok.Value;
@Value
@Builder
public class TranslateCoordinatesReply implements XReply {
private boolean sameScreen;
private short sequenceNumber;
private int child;
private short dstX;
private short dstY;
public static TranslateCoordinatesReply readTranslateCoordinatesReply(byte sameScreen,
short sequenceNumber, X11Input in) throws IOException {
int length = in.readCard32();
int child = in.readCard32();
short dstX = in.readInt16();
short dstY = in.readInt16();
in.readPad(16);
TranslateCoordinatesReply.TranslateCoordinatesReplyBuilder javaBuilder = TranslateCoordinatesReply.builder();
javaBuilder.sameScreen(sameScreen > 0);
javaBuilder.sequenceNumber(sequenceNumber);
javaBuilder.child(child);
javaBuilder.dstX(dstX);
javaBuilder.dstY(dstY);
return javaBuilder.build();
}
@Override
public void write(X11Output out) throws IOException {
out.writeCard8(getResponseCode());
out.writeBool(sameScreen);
out.writeCard16(sequenceNumber);
out.writeCard32(getLength());
out.writeCard32(child);
out.writeInt16(dstX);
out.writeInt16(dstY);
}
@Override
public int getSize() {
return 16;
}
public static class TranslateCoordinatesReplyBuilder {
public int getSize() {
return 16;
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy