MacOSX 上 uxtheme.dll 的替代方案
Windows 上有一个库 uxtheme.dll,允许渲染系统元素的形状。
这是我的意思的一个例子: http://www.terrainformatica.com/htmlayout/images/themesupport.jpg
MacOSX 上有类似的东西吗?我正在寻找一个功能:
void drawSystemShape(CGContextRef gfx, rect, ctlType, part, state);
或类似的功能。
There is a library uxtheme.dll on Windows that allows to render shapes of system elements.
Here is an illustration of what I mean:
http://www.terrainformatica.com/htmlayout/images/themesupport.jpg
Is there anything close to that on MacOSX? I am looking for a function:
void drawSystemShape(CGContextRef gfx, rect, ctlType, part, state);
or the like.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是的,OS X 具有用于在 HIToolbox 框架中绘制系统控件的 API,您可以在 Carbon 框架中找到该框架。
HIThemeDrawXXX
函数记录在头文件HITheme.h
中。尽管 Carbon 已被弃用,但这些函数并未被弃用,并且也可用于 64 位代码。
Yes OS X has APIs to draw system controls in the HIToolbox framework which you can find inside the Carbon framework. The
HIThemeDrawXXX
functions are documented in the headerHITheme.h
.Even though Carbon is deprecated, those functions are not and also available for 64-bit code.