How can I use NSVisualEffectView in window's title bar?

后端 未结 3 1038
Happy的楠姐
Happy的楠姐 2020-12-12 21:13

In OS X Yosemite, Apple introduced a new class NSVisualEffectView. Currently, this class is undocumented, but we can use it in Interface Builder.

How ca

3条回答
  •  情书的邮戳
    2020-12-12 21:43

    Step by step Tutorial with examples:

    http://eon.codes/blog/2016/01/23/Chromeless-window/

    Setting up translucency:

    1. Set the styleMask of your NSWindow subclass to NSFullSizeContentViewWindowMask (so that the translucency will also be visible in the titlebar area, leave this out and the titlebar area will be blank)
    2. Set the self.titlebarAppearsTransparent = true (hides the titlebar default graphics)
    3. Add the code bellow to your NSWindow subclass: (you should now have a translucent window)

    .

    let visualEffectView = NSVisualEffectView(frame: NSMakeRect(0, 0, 0, 0))//<---the width and height is set to 0, as this doesn't matter. 
    visualEffectView.material = NSVisualEffectMaterial.AppearanceBased//Dark,MediumLight,PopOver,UltraDark,AppearanceBased,Titlebar,Menu
    visualEffectView.blendingMode = NSVisualEffectBlendingMode.BehindWindow//I think if you set this to WithinWindow you get the effect safari has in its TitleBar. It should have an Opaque background behind it or else it will not work well
    visualEffectView.state = NSVisualEffectState.Active//FollowsWindowActiveState,Inactive
    self.contentView = visualEffectView/*you can also add the visualEffectView to the contentview, just add some width and height to the visualEffectView, you also need to flip the view if you like to work from TopLeft, do this through subclassing*/
    

    Also allows you to create chrome-less windows that are translucent:

提交回复
热议问题