防止NSButtonCell图像在其包含的NSScrollView之外绘制

时间:2011-03-08 22:59:50

标签: cocoa core-graphics nsimage nsscrollview nsbuttoncell

我之前有asked(并回答)一个非常相似的问题。这个问题能够解决,因为我知道dirtyRect,因此知道我应该在哪里画图像。现在,我看到了与子类NSButtonCell

相同的行为

enter image description here

在我的子类中,我只是覆盖了drawImage:withFrame:inView方法来添加阴影。

- (void)drawImage:(NSImage *)image withFrame:(NSRect)frame inView:(NSView *)controlView {   

    NSGraphicsContext *ctx = [NSGraphicsContext currentContext];
    [ctx saveGraphicsState];

    // Rounded Rect
    NSBezierPath *path = [NSBezierPath bezierPathWithRoundedRect:frame cornerRadius:kDefaultCornerRadius];
    NSBezierPath *shadowPath = [NSBezierPath bezierPathWithRoundedRect:NSInsetRect(frame, 0.5, 0.5) cornerRadius:kDefaultCornerRadius]; // prevents the baground showing through the image corner

    // Shadow
    NSColor *shadowColor = [UAColor colorWithCalibratedWhite:0 alpha:0.8];
    [NSShadow setShadowWithColor:shadowColor
                  blurRadius:3.0
                      offset:NSMakeSize(0, -1)];
    [[NSColor colorWithCalibratedWhite:0.635 alpha:1.0] set];
    [shadowPath fill];
    [NSShadow clearShadow];

    // Background Gradient in case image is nil
    NSGradient *gradient = [[NSGradient alloc] initWithStartingColor:[UAColor grayColor] endingColor:[UAColor lightGrayColor]];
    [gradient drawInBezierPath:shadowPath angle:90.0];
    [gradient release];

    // Image
    if (image) {
        [path setClip];
        [image drawInRect:frame fromRect:CGRectZero operation:NSCompositeSourceAtop fraction:1.0];
    }

    [ctx restoreGraphicsState];

}

它似乎都非常标准,但图像仍然在包含滚动视图边界之外绘制。我怎么能避免这个?

1 个答案:

答案 0 :(得分:4)

除非确实表示-setClip,否则不应在NSBezierPath上致电‑addClip。通常你需要NSScrollView,它将你的剪切路径添加到当前剪辑区域的集合。

{{1}}使用自己的剪切路径工作,然后在绘制图像之前将其吹走。

这让我绊倒了很长时间。