0

当鼠标离开窗口的标题或内容视图时,我试图呈现一个标题/更少窗口的 UI,但在从一个窗口移动到另一个时却没有;本质上将两个跟踪区域作为一个功能(我使用了这个,因为我无法弄清楚如何在隐藏标题视图时创建单个区域):

override func mouseEntered(with theEvent: NSEvent) {
    let hideTitle = (doc?.settings.autoHideTitle.value == true)
    if theEvent.modifierFlags.contains(.shift) {
        NSApp.activate(ignoringOtherApps: true)
    }

    switch theEvent.trackingNumber {
    case closeTrackingTag:
        Swift.print("close entered")
        closeButton?.image = closeButtonImage
        break

    default:
        Swift.print(String(format: "%@ entered",
                           (theEvent.trackingNumber == titleTrackingTag
                            ? "title" : "view")))
        let lastMouseOver = mouseOver
        mouseOver = true
        updateTranslucency()

        //  view or title entered
        if hideTitle && (lastMouseOver != mouseOver) {
            updateTitleBar(didChange: !lastMouseOver)
        }
    }
}

override func mouseExited(with theEvent: NSEvent) {
    let hideTitle = (doc?.settings.autoHideTitle.value == true)

    switch theEvent.trackingNumber {
    case closeTrackingTag:
        Swift.print("close exited")
        closeButton?.image = nullImage
        break

    default:
        Swift.print(String(format: "%@ exited",
                           (theEvent.trackingNumber == titleTrackingTag
                            ? "title" : "view")))

        let lastMouseOver = mouseOver
        mouseOver = false
        updateTranslucency()

        if hideTitle && (lastMouseOver != mouseOver) {
            updateTitleBar(didChange: lastMouseOver)
        }
    }
}

此外,关闭按钮上有一个跟踪矩形,仅在结束时才会出现。无论如何,从我的跟踪器输出中,我看到了问题 - 将鼠标悬停在窗口上,从下方到其标题:

view entered
updateTitleBar
**view entered**
view exited
updateTitleBar
title entered
updateTitleBar
title exited

请注意为什么我会收到第二个视图输入事件(视图输入),但是从视图中移出并移到相邻标题上的每个都会触发一个 updateTilebar() 调用,这在视觉上是断断续续的 - 到目前为止还没有通过动画进行补救:

fileprivate func docIconToggle() {
    let docIconButton = panel.standardWindowButton(.documentIconButton)

    if settings.autoHideTitle.value == false || mouseOver {
        if let doc = self.document {
            docIconButton?.image = (doc as! Document).displayImage
        }
        else
        {
            docIconButton?.image = NSApp.applicationIconImage
        }
        docIconButton?.isHidden = false
        self.synchronizeWindowTitleWithDocumentName()
    }
    else
    {
        docIconButton?.isHidden = true
    }
}

@objc func updateTitleBar(didChange: Bool) {
    if didChange {
        Swift.print("updateTitleBar")
        if settings.autoHideTitle.value == true && !mouseOver {
            NSAnimationContext.runAnimationGroup({ (context) -> Void in
                context.duration = 1.0
                panel.animator().titleVisibility = NSWindowTitleVisibility.hidden
                panel.animator().titlebarAppearsTransparent = true
                panel.animator().styleMask.formUnion(.fullSizeContentView)
            }, completionHandler: {
                self.docIconToggle()
            })
        } else {
            NSAnimationContext.runAnimationGroup({ (context) -> Void in
                context.duration = 1.0
                panel.animator().titleVisibility = NSWindowTitleVisibility.visible
                panel.animator().titlebarAppearsTransparent = false
                panel.animator().styleMask.formSymmetricDifference(.fullSizeContentView)
            }, completionHandler: {
                self.docIconToggle()
            })
        }
    }
}

所以我的问题是当区域相邻时如何推迟行动。

它们(标题栏和内容视图)不是彼此的兄弟,所以不认为 hitTest() 是可行的,但基本上如果我能判断我是否正在移动到相邻的跟踪区域,我希望它是一个不 -同上。

任何关于动画为什么不起作用的帮助都会是一个加分项。

4

1 回答 1

0

不是一个真正的答案,但如果您知道相邻视图的矩形,您可以使用事件的位置来探测您是否要忽略相邻视图之间的移动:

override func mouseExited(with theEvent: NSEvent) {
    let hideTitle = (doc?.settings.autoHideTitle.value == true)
    let location : NSPoint = theEvent.locationInWindow

    switch theEvent.trackingNumber {
    case closeTrackingTag:
        Swift.print("close exited")
        closeButton?.image = nullImage
        break

    default:
        let vSize = self.window?.contentView?.bounds.size

        //  If we exit to the title bar area we're still "inside"
        //  and visa-versa, leaving title to content view.
        if theEvent.trackingNumber == titleTrackingTag, let tSize = titleView?.bounds.size {
            if location.x >= 0.0 && location.x <= (vSize?.width)! && location.y < ((vSize?.height)! + tSize.height) {
                Swift.print("title -> view")
                return
            }
        }
        else
        if theEvent.trackingNumber == viewTrackingTag {
            if location.x >= 0.0 && location.x <= (vSize?.width)! && location.y > (vSize?.height)! {
                Swift.print("view -> title")
                return
            }
        }

        mouseOver = false
        updateTranslucency()

        if hideTitle {
            updateTitleBar(didChange: true)
        }

        Swift.print(String(format: "%@ exited",
                           (theEvent.trackingNumber == titleTrackingTag
                            ? "title" : "view")))
    }
}
于 2018-08-13T21:31:36.747 回答