使用 gtkmm 设置自定义应用程序主题

发布于 2024-10-16 04:06:10 字数 210 浏览 2 评论 0原文

我正在开发一个小型企业应用程序,我的开发环境是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 技术交流群。

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

发布评论

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

评论(1

财迷小姐 2024-10-23 04:06:10

对于 Gtk 2.4,有 RC 文件。您可以为应用程序的主题创建一个 gtkrc 文件,然后调用一个函数在 init 上解析它。这就是 GIMP 在 Windows 上所做的事情。

GTK+ (C) 文档位于此处,但 gtkmm 文档似乎缺乏。尝试/usr/include/gtkmm-2.4/gtkmm/rc.h。例如:

Gtk::RC::add_default_file("some_file");

至少对我来说是编译的。

对于 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:

Gtk::RC::add_default_file("some_file");

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.

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