public bool Equals(EventTouchpadSwipe other) { return(true && Type.Equals(other.Type) && Window.Equals(other.Window) && SendEvent.Equals(other.SendEvent) && Phase.Equals(other.Phase) && NFingers.Equals(other.NFingers) && Time.Equals(other.Time) && X.Equals(other.X) && Y.Equals(other.Y) && Dx.Equals(other.Dx) && Dy.Equals(other.Dy) && XRoot.Equals(other.XRoot) && YRoot.Equals(other.YRoot) && State.Equals(other.State)); }
public bool Equals(EventPadButton other) { return(true && Type.Equals(other.Type) && Window.Equals(other.Window) && SendEvent.Equals(other.SendEvent) && Time.Equals(other.Time) && Group.Equals(other.Group) && Button.Equals(other.Button) && Mode.Equals(other.Mode)); }
public bool Equals(EventPadAxis other) { return(true && Type.Equals(other.Type) && Window.Equals(other.Window) && SendEvent.Equals(other.SendEvent) && Time.Equals(other.Time) && Group.Equals(other.Group) && Index.Equals(other.Index) && Mode.Equals(other.Mode) && Value.Equals(other.Value)); }