Qt 工具栏按钮图标在 MinGW 构建后显示在 Windows 中,但在使用 g++ 构建后消失。

发布于 2024-07-12 06:14:27 字数 485 浏览 9 评论 0原文

我正在开发一个类似于 Eclipse 的 PHP IDE,但重量更轻。 对于界面,我使用 Qt 4.4.3,它似乎工作得很好。 我主要使用 Windows 机器在 Eclipse CDT 中完成大部分编码,并使用 MinGW 作为编译器。

几天前,我把代码放在我的 Linux Eee PC 上,只是为了看看是否可以构建它。 好吧,在获得 build-essential、Qt 和 Eclipse 后,程序编译得很好。 然而,当我在Linux中启动它时,程序工具栏上的所有图标都消失了。 这些是常见的图标,如剪切、复制、粘贴、打开、新建...构建不会给我任何警告,工具栏的行为就像它有图标一样(即,如果图标不可用,则有一个文本标签显示按钮。它不显示文本标签,因此它认为图像在那里)。

关于为什么图标不显示的任何想法? 文件结构完全相同,并且图标的路径是正确的。 资源文件找到图像。 我对 Linux 和在 Linux 上进行开发还很陌生,所以我将不胜感激。

多谢!

I'm developing a PHP IDE similar to Eclipse, but much more light weight. For the interface I'm using Qt 4.4.3 which seems to be working great. I've primarily been using my Windows machine to do most of the coding in Eclipse CDT and using MinGW as the compiler.

A couple of days ago I took the code an put it on my Eee PC with Linux just to see if I could get it to build. Well, after getting build-essential, Qt, and Eclipse going, the program compiled just fine. However, when I start it up in Linux, all the icons on the toolbar of my program have disappeared. These are common icons like Cut, Copy, Paste, Open, New... The build doesn't give me any warnings, and the toolbar acts like it has the icons (i.e. if the icons aren't available, there's a text label to show for the button. It doesn't show the text label so it thinks the images are there).

Any ideas on why the icons aren't showing up? The file structure is exactly the same, and the paths to the icons are correct. The resource file finds the images. I'm pretty new to Linux and developing on Linux, so I'd appreciate any help.

Thanks a lot!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

神爱温柔 2024-07-19 06:14:27

您使用哪种图像格式(例如 GIF、PNG)作为图标? 目标计算机上的 Qt 可能无法成功加载该格式的 插件

Which image format, e.g. GIF, PNG, did you use for the icons? It might be that Qt on the target machine does not successfully load the plugins for that format.

桜花祭 2024-07-19 06:14:27

使用“strace -e file -o LOG ./YourBinary”,启动后立即退出程序。

查看日志中的“文件未找到错误”。 在这种神秘的情况下,仔细检查路径是否确实正确总是没有坏处的

Use 'strace -e file -o LOG ./YourBinary', and exit program immediately after startup.

Look through the LOG for 'file not found errors'. In mysterious cases like this it never hurts to double-check this way that paths are indeed correct

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