trackingMode property
Implementation
set trackingMode(bindings.GhosttyMouseTrackingMode value) {
_ensureOpen();
final out = calloc<ffi.UnsignedInt>()..value = value.value;
try {
_setOption(
bindings.GhosttyMouseEncoderOption.GHOSTTY_MOUSE_ENCODER_OPT_EVENT,
out.cast(),
);
} finally {
calloc.free(out);
}
}