使用 gtkmm 设置自定义应用程序主题
我正在开发一个小型企业应用程序,我的开发环境是Linux系统。无论如何,我使用的是 Boost/GtkMM/SQLite 等库,因此很容易将其移植到 Windows 系统(这是目标平台)或 Mac。我想让我的应用程序在每个平台上都以相同的主题出现,那么有没有办法对主题进行硬编码或至少从 C++ 加载它?我想这种问题涉及像gtk-engines这样的东西,但真的不知道如何解决这个问题。感谢您提出任何建议!
I am developing a small business application, and my development environment is a Linux system. Anyway, I'm using libraries like Boost/GtkMM/SQLite, so it would be easy to port it to Windows systems (which is the target platform) or Mac. I'd like to let my application appear with the same theme on every platform, so is there any way to hardcode the theme or at least load it from C++? I suppose this kind of problem involves stuff like gtk-engines, but really don't know how to solve this trouble. Thanks in advice for any suggestions!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
对于 Gtk 2.4,有 RC 文件。您可以为应用程序的主题创建一个 gtkrc 文件,然后调用一个函数在 init 上解析它。这就是 GIMP 在 Windows 上所做的事情。
GTK+ (C) 文档位于此处,但 gtkmm 文档似乎缺乏。尝试
/usr/include/gtkmm-2.4/gtkmm/rc.h
。例如:至少对我来说是编译的。
对于 GTK 3 显然现在有 CSS 文件,它们类似< /em> 我们都知道并且喜欢的 CSS(?),但并不完全相同。
For Gtk 2.4, there are RC files. You can create a
gtkrc
file for your applicaiton's theme and then call a function to parse it on init. This is what GIMP does on windows.The GTK+ (C) docs are here, but the gtkmm docs seem lacking. Try
/usr/include/gtkmm-2.4/gtkmm/rc.h
. For example:at least compiles for me.
For GTK 3 apparently there are now CSS files, which are like the CSS we all know and love(?) but not identical.