gpt4 book ai didi

swift - NSViewController 注册鼠标事件慢?

转载 作者:搜寻专家 更新时间:2023-10-30 21:58:56 25 4
gpt4 key购买 nike

我一直在为 OS X 开发一个小图片上传菜单栏应用程序。我为上传的项目创建了自定义 NSView 子类。

这是默认情况下的样子:

Ravioli - not hovered

鼠标事件由 View 的 NSViewController 按以下方式处理:

import Cocoa

class MenuItemController: NSViewController {

private var trackingArea: NSTrackingArea?

override func mouseEntered(theEvent: NSEvent) {
if let v = self.view as? MenuItemView {
v.shouldHighlight = true
v.needsDisplay = true
}
}

override func mouseExited(theEvent: NSEvent) {
if let v = self.view as? MenuItemView {
v.shouldHighlight = false
v.needsDisplay = true
}
}


override func viewDidLoad() {
super.viewDidLoad()

if (trackingArea == nil) {
trackingArea = NSTrackingArea(rect: self.view.bounds, options: [.ActiveAlways, .MouseEnteredAndExited], owner: self, userInfo: nil)
self.view.addTrackingArea(trackingArea!)
}

/* rest of the code... */
}

}

在我将光标快速移到项目上之前,它工作正常。似乎没有调用 mouseExited() 事件,并且 View 保持蓝色背景(鼠标实际上在退出按钮上):

Ravioli bug

我还尝试将鼠标处理移动到 NSView 中,但结果相同。我感谢任何输入!谢谢!

最佳答案

在我看来,Apple 在这方面存在缺陷。

假设您根据苹果文档更新您的跟踪区域,添加此附加修复程序可能会解决您的问题...在许多情况下它为我解决了问题。我在 mouseMoved/mouseEntered 例程中验证鼠标光标仍在我的 View 框架内,如果不在,则调用 mouseExited: 我自己。

- (void) adjustTrackingArea
{
if ( trackingArea )
{
[self removeTrackingArea:trackingArea];
[trackingArea release];
}

// determine the tracking options
NSTrackingAreaOptions trackingOptions = // NSTrackingEnabledDuringMouseDrag | // don't track during drag
NSTrackingMouseMoved |
NSTrackingMouseEnteredAndExited |
//NSTrackingActiveInActiveApp | NSTrackingActiveInKeyWindow | NSTrackingActiveWhenFirstResponder |
NSTrackingActiveAlways;
NSRect theRect = [self visibleRect];
trackingArea = [[NSTrackingArea alloc]
initWithRect: theRect
options: trackingOptions
owner: self
userInfo: nil];
[self addTrackingArea:trackingArea];
}


- (void)resetCursorRects
{
[self adjustTrackingArea];
}
- (void)mouseEntered:(NSEvent *)ev
{
[self setNeedsDisplay:YES];
// make sure current mouse cursor location remains under the mouse cursor
NSPoint cursorPt = [self convertPoint:[[self window] mouseLocationOutsideOfEventStream] fromView:NULL];

// apple bug!!!
//NSPoint cursorPt2 = [self convertPointFromBase:[ev locationInWindow]];
//if ( cursorPt.x != cursorPt2.x )
// NSLog( @"hello old cursorPt" );
NSRect r = [self frame];
if ( cursorPt.x > NSMaxX( r ) || cursorPt.x < 0 )
{
[self mouseExited:ev];
//cursorPt.x = [self convertPointFromBase:[ev locationInWindow]];
//if ( cursorPt.x > NSMaxX( r ) || cursorPt.x < r.origin.x )
return;
}

... your custom stuff here ...
}

- (void)mouseExited:(NSEvent *)theEvent
{
if ( isTrackingCursor == NO )
return;

[[NSCursor arrowCursor] set];
isTrackingCursor = NO;
[self setNeedsDisplay:YES];
}

- (void)mouseMoved:(NSEvent *)theEvent
{
[self mouseEntered:theEvent];
}

关于swift - NSViewController 注册鼠标事件慢?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34730023/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com