Prevent Firing Signals in Qt(防止在 Qt 中触发信号)
问题描述
我们有一个 QCheckBox
对象,当用户检查它或删除检查时,我们想要调用一个函数,因此我们将我们的函数连接到 stateChanged ( int state )
信号.另一方面,根据某些情况,我们也在代码中改变了 QCheckBox
对象的状态,这会导致不需要的信号.
We have a QCheckBox
object, when user checks it or removes check we want to call a function so we connect our function to stateChanged ( int state )
signal. On the other hand, according to some condition we also change the state of QCheckBox
object inside code, and this causes the unwanted signal.
在某些情况下有什么办法可以防止发射信号吗?
Is there any way to prevent firing signal under some conditions?
推荐答案
您可以使用 clicked
信号,因为它仅在用户实际单击复选框时发出,而不是在您使用 setChecked
.
You can use the clicked
signal because it is only emitted when the user actually clicked the check box, not when you manually check it using setChecked
.
如果您只是不想在某个特定时间发出信号,可以使用 QObject::blockSignals
像这样:
If you just don't want the signal to be emitted at one specific time, you can use QObject::blockSignals
like this:
bool oldState = checkBox->blockSignals(true);
checkBox->setChecked(true);
checkBox->blockSignals(oldState);
这种方法的缺点是所有信号都将被阻塞.但我想这在 QCheckBox
的情况下并不重要.
The downside of this approach is that all signals will be blocked. But I guess that doesn't really matter in case of a QCheckBox
.
这篇关于防止在 Qt 中触发信号的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:防止在 Qt 中触发信号
基础教程推荐
- 如何使图像调整大小以在 Qt 中缩放? 2021-01-01
- 从 std::cin 读取密码 2021-01-01
- 为 C/C++ 中的项目的 makefile 生成依赖项 2022-01-01
- 如何“在 Finder 中显示"或“在资源管理器中显 2021-01-01
- Windows Media Foundation 录制音频 2021-01-01
- 在 C++ 中循环遍历所有 Lua 全局变量 2021-01-01
- 为什么语句不能出现在命名空间范围内? 2021-01-01
- 管理共享内存应该分配多少内存?(助推) 2022-12-07
- 如何在不破坏 vtbl 的情况下做相当于 memset(this, ...) 的操作? 2022-01-01
- 使用从字符串中提取的参数调用函数 2022-01-01