7

我想要一个具有半透明模糊背景的窗口,就像终端可以做的那样。观看此视频,大约 30 秒,了解我的意思:http ://www.youtube.com/watch?v=zo8KPRY6-Mk

在此处查看图片:http: //osxdaily.com/wp-content/uploads/2011/04/mac-os-x-lion-terminal.jpg

我已经在谷歌上搜索了一个小时,但找不到任何工作。我相信我需要以某种方式创建一个核心动画层并添加一个背景过滤器,但到目前为止我一直没有成功......我只看到我的窗口的灰色背景。这是我到目前为止的代码:

代码:

//  Get the content view -- everything but the titlebar.
NSView *theView = [[self window] contentView];
[theView setAlphaValue:0.5];

// Create core animation layer, with filter
CALayer *backgroundLayer = [CALayer layer];
[theView setWantsLayer:YES];
[theView setLayer:backgroundLayer]; 
CIFilter *blurFilter = [CIFilter filterWithName:@"CIGaussianBlur"];
[blurFilter setDefaults];
[theView layer].backgroundFilters = [NSArray arrayWithObject:blurFilter];  
[[theView layer] setBackgroundFilters:[NSArray arrayWithObject:blurFilter]];

有什么提示或例子可以做我想做的事吗?谢谢!

4

3 回答 3

2

不需要图层和过滤器,NSWindow 可以自己做

[mywindow setOpaque:NO];
[mywindow setBackgroundColor: [NSColor colorWithCalibratedHue:0.0 saturation:0.0 brightness:0.2 alpha:0.5]];

请不要使用它,因为它也会显示您的标题栏(张贴在这里以防其他人需要)

[mywindow setOpaque:NO];
[mywindow setBackgroundColor: [NSColor blackColor]];
[mywindow setAlphaValue:0.5];

在此处输入图像描述

于 2013-01-11T22:09:09.690 回答
2

对于透明度,请使用赵九龙的建议。

对于模糊的背景,请使用此

对 NSWindow 的调用:

[self enableBlurForWindow:self];

功能 :

-(void)enableBlurForWindow:(NSWindow *)window
{
    //!!!! Uses private API - copied from http://blog.steventroughtonsmith.com/2008/03/using-core-image-filters-onunder.html

    CGSConnection thisConnection;
    uint32_t compositingFilter;
    int compositingType = 1; // Under the window

    /* Make a new connection to CoreGraphics */
    CGSNewConnection(NULL, &thisConnection);

    /* Create a CoreImage filter and set it up */
    CGSNewCIFilterByName(thisConnection, (CFStringRef)@"CIGaussianBlur", &compositingFilter);
    NSDictionary *options = [NSDictionary dictionaryWithObject:[NSNumber numberWithFloat:2.0] forKey:@"inputRadius"];
    CGSSetCIFilterValuesFromDictionary(thisConnection, compositingFilter, (__bridge CFDictionaryRef)options);

    /* Now apply the filter to the window */
    CGSAddWindowFilter(thisConnection, [window windowNumber], compositingFilter, compositingType);
}

注意:它使用私有 API

于 2013-01-23T08:29:51.903 回答
0

对于那些在 2017 年阅读本文并使用Swift 4并想要更改 BG Alpha的人,您可以将以下内容添加到您的自定义 NSWindow 类中:

self.backgroundColor = NSColor.black
self.backgroundColor = NSColor.init(calibratedHue: 0, saturation: 0, brightness: 0, alpha: 0.2)

ps我还不需要模糊效果,当我需要时,我会更新答案

于 2017-09-03T06:19:14.827 回答