All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.moaxcp.x11client.protocol.randr.GetScreenSizeRangeReply Maven / Gradle / Ivy

There is a newer version: 0.18.2
Show newest version
package com.github.moaxcp.x11client.protocol.randr;

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 GetScreenSizeRangeReply implements XReply {
  private short sequenceNumber;

  private short minWidth;

  private short minHeight;

  private short maxWidth;

  private short maxHeight;

  public static GetScreenSizeRangeReply readGetScreenSizeRangeReply(byte pad, short sequenceNumber,
      X11Input in) throws IOException {
    int length = in.readCard32();
    short minWidth = in.readCard16();
    short minHeight = in.readCard16();
    short maxWidth = in.readCard16();
    short maxHeight = in.readCard16();
    in.readPad(16);
    GetScreenSizeRangeReply.GetScreenSizeRangeReplyBuilder javaBuilder = GetScreenSizeRangeReply.builder();
    javaBuilder.sequenceNumber(sequenceNumber);
    javaBuilder.minWidth(minWidth);
    javaBuilder.minHeight(minHeight);
    javaBuilder.maxWidth(maxWidth);
    javaBuilder.maxHeight(maxHeight);
    return javaBuilder.build();
  }

  @Override
  public void write(X11Output out) throws IOException {
    out.writeCard8(getResponseCode());
    out.writePad(1);
    out.writeCard16(sequenceNumber);
    out.writeCard32(getLength());
    out.writeCard16(minWidth);
    out.writeCard16(minHeight);
    out.writeCard16(maxWidth);
    out.writeCard16(maxHeight);
    out.writePad(16);
  }

  @Override
  public int getSize() {
    return 32;
  }

  public static class GetScreenSizeRangeReplyBuilder {
    public int getSize() {
      return 32;
    }
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy