QT中通过函数 connect(objs, SIGNAL(sigFun()), objr, SLOT(slotFun())); 或者 connect( obj1 , &Object1::sigFun , obj2 , &Object2::slotFun ) 来连接信号与槽,传递数据
有时我们希望在槽函数中获取发送信号的对象。可以通过函数“QObject::sender()”获取发出信号的对象。
例如: 在菜单栏中动态创建一系列的QAction,对应最近打开文件 创建对应的QAction
QList<QString> fileList;for (int i=0; i<fileList.size(); i++) { QAction *act = new QAction(fileList[i]); act->setData(fileList[i]); connect(act, SIGNAL(triggled()), this, SLOT(slotFun()));}这种情况,我们只知道出发了槽函数,但是不知道具体是哪一个QAction发出的信号,此时可以通过上面所提到的函数来获取发送对象
void slotFun(){ QAction act = qobject_cast<QAction*>(sender()); qDebug() << act->Data();}函数sender()的返回对象为QObject*,通过qobject_cast将其转换为所需的对象。
新闻热点
疑难解答