本文主要是介绍Qt连接所有同类部件到同一个槽函数,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
void MainWindow::AutoConnectSignals()
{// 查找所有 QSpinBoxconst auto spinBoxes = findChildren<QSpinBox*>();for (auto *spinBox : spinBoxes){connect(spinBox, static_cast<void(QSpinBox::*)(int)>(&QSpinBox::valueChanged), this, &ParameterWidget::SpinBoxValueChanged);}// 查找所有 QDoubleSpinBoxconst auto doubleSpinBoxes = findChildren<QDoubleSpinBox*>();for (auto *doubleSpinBox : doubleSpinBoxes) {connect(doubleSpinBox, static_cast<void(QDoubleSpinBox::*)(double)>(&QDoubleSpinBox::valueChanged), this, &ParameterWidget::SpinBoxValueChanged);}// 查找所有 QLineEditconst auto lineEdites = findChildren<QLineEdit*>();for (auto *lineEdit : lineEdites) {connect(lineEdit, &QLineEdit::textChanged, this, &ParameterWidget::LineEditTextChanged);}
}
这篇关于Qt连接所有同类部件到同一个槽函数的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!