com.github.moaxcp.x11client.protocol.xproto.CirculateNotifyEvent 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.XEvent;
import java.io.IOException;
import java.lang.Override;
import lombok.Builder;
import lombok.Value;
@Value
@Builder
public class CirculateNotifyEvent implements XEvent {
public static final byte NUMBER = 26;
private boolean sentEvent;
private short sequenceNumber;
private int event;
private int window;
private byte place;
@Override
public byte getResponseCode() {
return NUMBER;
}
public static CirculateNotifyEvent readCirculateNotifyEvent(boolean sentEvent, X11Input in) throws
IOException {
in.readPad(1);
short sequenceNumber = in.readCard16();
int event = in.readCard32();
int window = in.readCard32();
in.readPad(4);
byte place = in.readByte();
in.readPad(3);
in.readPad(12);
CirculateNotifyEvent.CirculateNotifyEventBuilder javaBuilder = CirculateNotifyEvent.builder();
javaBuilder.sequenceNumber(sequenceNumber);
javaBuilder.event(event);
javaBuilder.window(window);
javaBuilder.place(place);
javaBuilder.sentEvent(sentEvent);
return javaBuilder.build();
}
@Override
public void write(X11Output out) throws IOException {
out.writeCard8(sentEvent ? 0b10000000 & NUMBER : NUMBER);
out.writePad(1);
out.writeCard16(sequenceNumber);
out.writeCard32(event);
out.writeCard32(window);
out.writePad(4);
out.writeByte(place);
out.writePad(3);
out.writePad(12);
}
@Override
public int getSize() {
return 32;
}
public static class CirculateNotifyEventBuilder {
public CirculateNotifyEvent.CirculateNotifyEventBuilder place(Place place) {
this.place = (byte) place.getValue();
return this;
}
public CirculateNotifyEvent.CirculateNotifyEventBuilder place(byte place) {
this.place = place;
return this;
}
public int getSize() {
return 32;
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy