使用 Webkit 在 OSX 上创建可换肤的自定义窗口
有一些教程介绍如何在 cocoa 应用程序中使用 webkit 视图来实现可换肤内容,但是如果我想使用 webkit 创建自定义的可换肤窗口,我该怎么办?
示例是仪表板小部件,或者 BowTie
注意,我是菜鸟。
There are tutorials for using a webkit view inside a cocoa application to achieve skinnable contents, but what would I do if I wanted to use webkit to create custom, skinnable windows?
Examples would be dashboard widgets, or
BowTie
Beware, I'm a noob.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我从未尝试过,但我认为您只需将 WebView 设置为透明无边框窗口的内容视图,并告诉 WebView 不要绘制背景。这样,WebView 的内容将定义窗口边界。
您可以通过将 NSBorderlessWindowMask 传递给 NSWindow 的 -initWithContentRect:styleMask:backing:defer: 方法来创建无边框窗口,并且可以通过调用 [window setBackgroundColor:[NSColor clearColor]] 将其背景设置为透明。
您必须自己处理窗口的拖动等。它可能会变得有点混乱。
老实说,这不是我作为第一个 Cocoa 项目时会尝试的事情。
I've never tried it, but I think you'd just set a WebView as the content view of a transparent borderless window, and tell the WebView not to draw a background. That way, the content of the WebView would define the window boundary.
You create a borderless window by passing NSBorderlessWindowMask to the -initWithContentRect:styleMask:backing:defer: method of NSWindow, and you can set its background to transparent by calling [window setBackgroundColor:[NSColor clearColor]].
You'd have to handle dragging of the window etc yourself. It will probably get a bit messy.
To be honest, it's not something I'd attempt as a first Cocoa project.