您的位置:首页 > 编程语言 > Qt开发

QT信号槽传递参数技巧

2016-03-24 11:09 281 查看
信号槽如何传递参数(或带参数的信号槽)

利用Qt进行程序开发时,有时需要信号槽来完成参数传递。带参数的信号槽在使用时,有几点需要注意的地方,下面结合实例进行介绍。

第一点:当信号与槽函数的参数数量相同时,它们参数类型要完全一致。

信号:

[cpp] view
plain

void iSignal(int b);

槽:

[cpp] view
plain

void MainWindow::iSlot(int b)

{

QString qString;

qDebug()<<qString.number(b);

}

信号槽绑定:

[cpp] view
plain

connect(this, SIGNAL(iSignal(int)), this, SLOT(iSlot(int)));

发送信号:

[cpp] view
plain

emit iSignal(5);

结果:



可以看出,参数已经成功传递。

第二点:当信号的参数与槽函数的参数数量不同时,只能是信号的参数数量多于槽函数的参数数量,且前面相同数量的参数类型应一致,信号中多余的参数会被忽略。

信号:

[html] view
plain

void iSignal(int a, float b);

槽:

[html] view
plain

void MainWindow::iSlot(int b)

{

QString qString;

qDebug()<<qString.number(b);

}

信号槽:

[html] view
plain

connect(this, SIGNAL(iSignal(int, float)), this, SLOT(iSlot(int)));

发送信号:

[html] view
plain

emit iSignal(5, 0.3);

结果:



此外,在不进行参数传递时,信号槽绑定时也是要求信号的参数数量大于等于槽函数的参数数量。这种情况一般是一个带参数的信号去绑定一个无参数的槽函数。如下例所示。

信号:

[cpp] view
plain

void iSignal(int a, float b);

槽函数:

[cpp] view
plain

void MainWindow::iSlot() //int b

{

QString qString = "I am lyc_daniel.";

qDebug()<<qString;

}

信号槽:

[html] view
plain

connect(this, SIGNAL(iSignal(int, float)), this, SLOT(iSlot()));

发送信号:

[html] view
plain

emit iSignal(5, 0.3);

结果:



愿以上内容能给你带去帮助!


文档信息

版权声明:自由转载-非商用-非衍生-保持署名 | Creative
Commons BY-NC-ND 3.0

博客网址:/article/2006261.html

博 主: lyc_daniel

方法一:
connect(button1, SIGNAL(clicked()), this, SLOT(buttonClick()));

connect(button2, SIGNAL(clicked()), this, SLOT(buttonClick()));

button1.setObjectName("1");

button2.setObjectName("2");

void YourWidget::buttonClick()

{

QPushButton *clickedButton = qobject_cast<QPushButton *>(sender());

if(clickedButton != NULL)

{

if(clickedButton->objectName() == "1")

{

//button1

}

if(clickedButton->objectName() == "2")

{

//button2

}

}

}
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: