如何在Qt子类中处理信号?

发布于 2024-09-05 06:27:11 字数 178 浏览 7 评论 0原文

如何处理子类中的信号?假设我的子类派生自 QTextEdit 并且对信号 textChanged 感兴趣。将对象连接到自身似乎很愚蠢,我应该能够简单地重写 textChange 方法 - 但它不是虚拟

接受的方法是什么?

How do I process a signal of in a subclass? Let's say my subclass is derived from QTextEdit and is interested in the signal textChanged. It seems silly to connect an object to itself, I should be able to simply override the textChange method -- but it isn't virtual.

What is the accepted way to do this?

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

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

发布评论

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

评论(3

嘦怹 2024-09-12 06:27:11

您无法实现/覆盖信号,因此唯一的方法是创建一个新插槽并将其连接到 textChanged():

connect( this, SIGNAL(textChanged(QString)), this, SLOT(slotTextChanged(QString)) );

You can't implement/override a signal, so the only way is to create a new slot and connect it to textChanged():

connect( this, SIGNAL(textChanged(QString)), this, SLOT(slotTextChanged(QString)) );
原来是傀儡 2024-09-12 06:27:11

也许这看起来很愚蠢,但这就是我所做的:将我的派生类连接到父类发出的信号。

但我很感兴趣是否还有其他解决方案!

Maybe it seems silly, but that's the way I did it : connecting my derived class to the signal emited by the parent class.

But I'm interested if there are any other solutions !

时光清浅 2024-09-12 06:27:11

将信号连接到同一类中的插槽是完全可以的。
因此,实现您的插槽并将其连接到 textChanged(QString)

It is perfectly ok to connect a signal to a slot in the same class.
So implement your slot and connect it to textChanged(QString)

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