anyButtonPressed property

set anyButtonPressed (bool value)

Implementation

set anyButtonPressed(bool value) {
  _ensureOpen();
  final out = calloc<ffi.Bool>()..value = value;
  try {
    _setOption(
      bindings
          .GhosttyMouseEncoderOption
          .GHOSTTY_MOUSE_ENCODER_OPT_ANY_BUTTON_PRESSED,
      out.cast(),
    );
  } finally {
    calloc.free(out);
  }
}