Qt中多个单选按钮信号连接到同一个槽函数

当多个类似信号需要连接到同一个槽函数时,在槽函数内需要对信号的来源进行判断,这里主要是采用sender()函数,此函数会返回信号来源的方向,让我们来看看效果:

Qt中多个单选按钮信号连接到同一个槽函数_第1张图片 Qt中多个单选按钮信号连接到同一个槽函数_第2张图片

 

 

接下来是具体的代码:

 

 

 

    首先添加3个RadioButton,并且连接到同一个槽函数:

QString str1[3] = {"NetBook", "Handset", "Tablet"};
int ypos = 30;
for(int i = 0 ; i < 3 ; i++)
{
    radio1[i] = new QRadioButton(str1[i], this);
    radio1[i]->setGeometry(10, ypos, 150, 30);

    ypos += 40;
//三个按钮连接到同一个槽函数
    connect(radio1[i],SIGNAL(toggled(bool)),this,SLOT(RBtncheck(bool)));
}

槽函数:

void Widget::RBtncheck(bool flag)
{   QRadioButton *RBtn=qobject_cast(sender()); //得到当前信号来源的对象
    for(int i=0;i<3;i++)
    {
        if(flag==true&&RBtn==radio1[i])//判断对象
        qDebug("RadioButton%d is selected",i);
    }
}

OK,大功告成了

你可能感兴趣的:(信号与槽)