如何在 .ui 文件中手动将信号连接到插槽?

发布于 2024-12-29 10:44:39 字数 178 浏览 1 评论 0原文

由于我使用 SCons 而不是 qmake,因此我没有项目 (.pro) 文件,因此 Qt Creator (我使用它只是为了制作 GUI)拒绝将信号连接到插槽。我想手动编辑 .ui 文件以添加适当的连接。我应该改变什么?

Since I'm using SCons instead of qmake, I have no project (.pro) file, and for this reason Qt Creator (I use it only to make GUI) refuses to connect signals to slots. I'd like to manually edit .ui file to add appropriate connections. What should I change?

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

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

发布评论

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

评论(2

静谧 2025-01-05 10:44:39

正如Karlson所说,使用uic编译ui文件。例如:

uic yourinterface.ui -o uicompiled.h

通过这种方式,您可以从 ui 文件生成完整的类,然后将它们插入到您的代码库中

Use uic to compile the ui file as Karlson said. For example:

uic yourinterface.ui -o uicompiled.h

This way you can generate complete class from the ui files and than you can just plug them into your codebase

倥絔 2025-01-05 10:44:39

qmake 会将 .ui 文件转换为 .pro,然后转换为 make 文件。但您仍然需要运行 uic 来编译 .ui 文件以生成元对象以允许发生信号槽连接。类定义的标题也可能会有所帮助。

通常,当您对 ui 进行子类化时,您将使用 connect 函数将信号连接到子类中自定义定义的插槽。

qmake will convert the .ui file into .pro and then to a make file. But you still need to run uic to compile your .ui files to generate the meta objects to allow the Signal-Slot connection to occur. Also headers for class definitions might be helpful.

Normally when you subclass the ui you will connect the signals using connect functions to custom defined slots within the subclassed class.

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