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

com.github.moaxcp.x11.protocol.xinput.DeviceCtlResolution Maven / Gradle / Ivy

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

import com.github.moaxcp.x11.protocol.X11Input;
import com.github.moaxcp.x11.protocol.X11Output;
import java.io.IOException;
import lombok.Builder;
import lombok.Value;

@Value
@Builder
public class DeviceCtlResolution implements DeviceCtl {
  public static final String PLUGIN_NAME = "xinput";

  private short controlId;

  private short len;

  public static DeviceCtlResolution readDeviceCtlResolution(short controlId, short len, X11Input in)
      throws IOException {
    DeviceCtlResolution.DeviceCtlResolutionBuilder javaBuilder = DeviceCtlResolution.builder();
    javaBuilder.controlId(controlId);
    javaBuilder.len(len);
    return javaBuilder.build();
  }

  @Override
  public void write(X11Output out) throws IOException {
    out.writeCard16(controlId);
    out.writeCard16(len);
  }

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

  public String getPluginName() {
    return PLUGIN_NAME;
  }

  public static class DeviceCtlResolutionBuilder {
    public DeviceCtlResolution.DeviceCtlResolutionBuilder controlId(DeviceControl controlId) {
      this.controlId = (short) controlId.getValue();
      return this;
    }

    public DeviceCtlResolution.DeviceCtlResolutionBuilder controlId(short controlId) {
      this.controlId = controlId;
      return this;
    }

    public int getSize() {
      return 4;
    }
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy