在appkit中禁用右键单击

时间:2018-03-06 21:11:43

标签: swift macos appkit nsresponder

我目前正在mouseDrag函数中接受nextEvent

    while true {
        guard let nextEvent = self.window?.nextEvent(matching: [.leftMouseDragged, .leftMouseUp, .rightMouseUp]) else {
            continue
        }
        switch nextEvent.type {
        case .leftMouseDragged:
            self.cursorUpdate(with: nextEvent)
            self.mouseDragged(with: nextEvent)

        case .rightMouseUp:
            continue

        default:
            self.mouseUp(with: nextEvent)
            return
        }
    }

我只是试图在此期间禁用右键单击。但是,通过这种实现,右键单击只是排队并在循环结束后调用。

如何禁用正确的点击注册?

1 个答案:

答案 0 :(得分:0)

尝试将.rightMouseDown.rightMouseDragged添加到匹配的掩码中。 .rightMouseDown事件使AppKit显示上下文菜单。

    guard let nextEvent = self.window?.nextEvent(matching: [.leftMouseDragged, .leftMouseUp, .rightMouseDown, .rightMouseDragged, .rightMouseUp]) else {
        continue
    }

您也可以考虑切换到NSWindow.trackEvents(matching:timeout:mode:handler:)而不是编写自己的循环:

    window.trackEvents(matching: [.leftMouseDragged, .leftMouseUp, .rightMouseDown, .rightMouseDragged, .rightMouseUp], timeout: NSEvent.foreverDuration, mode: .eventTrackingRunLoopMode) { (event, outStop) in
        guard let event = event else { return }
        switch event.type {
        case .rightMouseDown, .rightMouseDragged, .rightMouseUp: return
        case .leftMouseDragged:
            self.cursorUpdate(with: event)
            self.mouseDragged(with: event)
        case .leftMouseUp:
            self.mouseUp(with: event)
            outStop.pointee = true
        default:
            break
        }
    }

使用trackEvents可让AppKit运行主运行循环,因此计时器和观察者可以继续触发(如果它们被安排为.eventTrackingRunLoopMode)。