1

我有下面的子类 NSWindow 代码,有一个可以缩放的动画视图,我想在正确的位置单击它时接受单击,如果它在外部则拒绝(单击)。

下面的代码运行良好,只是窗口不允许点击通过。

- (void)mouseDragged:(NSEvent *)theEvent {
  if (allowDrag) {
    NSRect screenVisibleFrame = [[NSScreen mainScreen] visibleFrame];
    NSRect windowFrame = [self frame];
    NSPoint newOrigin = windowFrame.origin;

    // Get the mouse location in window coordinates.
    NSPoint currentLocation = [theEvent locationInWindow];
    // Update the origin with the difference between the new mouse location and the old mouse location.
    newOrigin.x += (currentLocation.x - initialMouseLocation.x);
    newOrigin.y += (currentLocation.y - initialMouseLocation.y);

    if ((newOrigin.y + windowFrame.size.height) > (screenVisibleFrame.origin.y + screenVisibleFrame.size.height)) {
        newOrigin.y = screenVisibleFrame.origin.y + (screenVisibleFrame.size.height - windowFrame.size.height);
    }

    // Move the window to the new location
    [self setFrameOrigin:newOrigin];
  }
}



- (void)mouseDown:(NSEvent *)theEvent
{
    screenResolution = [[NSScreen mainScreen] frame];

   initialMouseLocation = [theEvent locationInWindow];

    float scale = [[NSUserDefaults standardUserDefaults] floatForKey:@"widgetScale"]/100;

    float pX = initialMouseLocation.x;
    float pY = initialMouseLocation.y;
    float fX = self.frame.size.width;
    float fY = self.frame.size.height;

    if (pX>(fX-fX*scale)/2 && pX<(fX+fX*scale)/2 && pY>(fY+fY*scale)/2) {
        allowDrag = YES;
    } else {
        allowDrag = NO;
    }
}
4

2 回答 2

1

在 Cocoa 中,您有两个基本选择:1)您可以使整个窗口通过点击[window setIgnoresMouseEvents:YES],或者 2)您可以使您的部分窗口透明并且默认情况下点击会通过。

限制是窗口服务器决定将事件传递给哪个应用程序一次。将事件传递到您的应用程序后,无法让它取回事件并将其传递到另一个应用程序。

一种可能的解决方案可能是使用Quartz Event Taps。这个想法是让你的窗口忽略鼠标事件,但设置一个事件点击,它将查看登录会话的所有事件。如果你想让一个正在通过你的窗口的事件实际上停止在你的窗口,你手动处理它然后丢弃它。你不要让事件继续到它本来可以到达的应用程序上。我希望这将是非常棘手的正确做法。例如,您不想拦截您前面的另一个应用程序窗口的事件。

如果可能的话,我建议您使用 Cocoa 支持的技术。我认为您只希望点击通过透明的窗口,否则用户将如何知道他们在点击什么?

于 2013-03-03T06:07:39.487 回答
0

请调用透明覆盖 CHILD WINDOW 以接受控制,并按照 Ken 的指示设置主窗口 -setIgnoresMouseEvents:YES。

我在名为“Overlay”的应用程序中使用了这个技巧。

于 2013-10-23T20:46:06.520 回答