com.github.moaxcp.x11client.protocol.xproto.GeGenericEvent 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.XGenericEvent;
import java.io.IOException;
import java.lang.Override;
import lombok.Builder;
import lombok.Value;
@Value
@Builder
public class GeGenericEvent implements XGenericEvent {
public static final byte NUMBER = 35;
private boolean sentEvent;
private byte extension;
private short sequenceNumber;
private short eventType;
@Override
public byte getResponseCode() {
return NUMBER;
}
public static GeGenericEvent readGeGenericEvent(boolean sentEvent, byte extension,
short sequenceNumber, int length, short eventType, X11Input in) throws IOException {
in.readPad(22);
GeGenericEvent.GeGenericEventBuilder javaBuilder = GeGenericEvent.builder();
javaBuilder.extension(extension);
javaBuilder.sequenceNumber(sequenceNumber);
javaBuilder.eventType(eventType);
javaBuilder.sentEvent(sentEvent);
return javaBuilder.build();
}
@Override
public void write(X11Output out) throws IOException {
out.writeCard8(sentEvent ? 0b10000000 & NUMBER : NUMBER);
out.writeCard8(extension);
out.writeCard16(sequenceNumber);
out.writeCard32(getLength() - 32);
out.writeCard16(eventType);
out.writePad(22);
}
@Override
public int getSize() {
return 32;
}
public static class GeGenericEventBuilder {
public int getSize() {
return 32;
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy