使用 Webkit 在 OSX 上创建可换肤的自定义窗口

发布于 2024-08-04 04:25:40 字数 192 浏览 8 评论 0原文

有一些教程介绍如何在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

み青杉依旧 2024-08-11 04:25:40

我从未尝试过,但我认为您只需将 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文