如何在 .ui 文件中手动将信号连接到插槽?
由于我使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
正如Karlson所说,使用
uic
编译ui文件。例如:通过这种方式,您可以从 ui 文件生成完整的类,然后将它们插入到您的代码库中
Use
uic
to compile the ui file as Karlson said. For example:This way you can generate complete class from the ui files and than you can just plug them into your codebase
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 runuic
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 usingconnect
functions to custom defined slots within the subclassed class.