com.github.moaxcp.x11client.protocol.shm.GetImageReply 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.shm;
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 GetImageReply implements XReply {
private byte depth;
private short sequenceNumber;
private int visual;
private int size;
public static GetImageReply readGetImageReply(byte depth, short sequenceNumber, X11Input in)
throws IOException {
int length = in.readCard32();
int visual = in.readCard32();
int size = in.readCard32();
in.readPad(16);
GetImageReply.GetImageReplyBuilder javaBuilder = GetImageReply.builder();
javaBuilder.depth(depth);
javaBuilder.sequenceNumber(sequenceNumber);
javaBuilder.visual(visual);
javaBuilder.size(size);
return javaBuilder.build();
}
@Override
public void write(X11Output out) throws IOException {
out.writeCard8(getResponseCode());
out.writeCard8(depth);
out.writeCard16(sequenceNumber);
out.writeCard32(getLength());
out.writeCard32(visual);
out.writeCard32(size);
}
@Override
public int getSize() {
return 16;
}
public static class GetImageReplyBuilder {
public int getSize() {
return 16;
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy