如果用户按住特定键,我需要降低光标速度,以便鼠标精确移动。有没有这样做的API?我试图获得鼠标位置并将其位置设置为其中的一半,但它不起作用。
let mouseLoc = NSEvent.mouseLocation
// get the delta
let deltaX = mouseLoc.x - lastX
let deltaY = mouseLoc.y - lastY
lastX = mouseLoc.x; lastY = mouseLoc.y
// add to the current position by half of the real mouse position
var x = currentMousePos.x + (deltaX / 2)
var y = currentMousePos.y + (deltaY / 2)
// invert the y and set the mouse pos
CGDisplayMoveCursorToPoint(CGMainDisplayID(), carbonPoint(from: currentMousePos))
currentMousePos = NSPoint(x: x, y: y)
如何更改光标速度?
我已查看Mac Mouse/Trackpad Speed Programmatically但该功能已弃用。
答案 0 :(得分:3)
您可能需要取消光标位置与鼠标的关联,处理事件,并以较慢的速度自行移动光标。
import axios from 'axios'
import store from '@/store'
export default axios.create({
baseURL: 'http://localhost:8081/',
auth: store.getters['authentification']
})
答案 1 :(得分:1)
感谢seths answer这里是基本的工作代码:
var shiftPressed = false {
didSet {
if oldValue != shiftPressed {
// disassociate the mouse position if the user is holding shift and associate it if not
CGAssociateMouseAndMouseCursorPosition(boolean_t(truncating: !shiftPressed as NSNumber));
}
}
}
// listen for when the mouse moves
localMouseMonitor = NSEvent.addLocalMonitorForEvents(matching: [.mouseMoved]) { (event: NSEvent) in
self.updateMouse(eventDeltaX: event.deltaX, eventDeltaY: event.deltaY)
return event
}
func updateMouse(eventDeltaX: CGFloat, eventDeltaY: CGFloat) {
let mouseLoc = NSEvent.mouseLocation
var x = mouseLoc.x, y = mouseLoc.y
// slow the mouse speed when shift is pressed
if shiftPressed {
let speed: CGFloat = 0.1
// set the x and y based off a percentage of the mouse delta
x = lastX + (eventDeltaX * speed)
y = lastY - (eventDeltaY * speed)
// move the mouse to the new position
CGDisplayMoveCursorToPoint(CGMainDisplayID(), carbonPoint(from: NSPoint(x: x, y: y)));
}
lastX = x
lastY = y
}