使用emit发出信号

Posted mCat

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了使用emit发出信号相关的知识,希望对你有一定的参考价值。

1. 信号声明

在发送信号的模块类头文件中声明信号函数

signals:
void sendRate(QString rate);

 

2. 在发送模块的成员函数中发出信号

emit sendRate(ui.lineEdit_2->text());

 

3. 在接受信号的模块头文件找中声明槽函数

private slots:
void receiveRate(QString rate);

4. 在接受信号的.cpp文件中编写槽函数

void CCSDS122::receiveRate(QString rate)
{
ui.textBrowser_Pix->setText(rate);
}

5. 连接信号和槽

connect(dialog2, SIGNAL(sendRate(QString)), this, SLOT(receiveRate(QString)));

以上是关于使用emit发出信号的主要内容,如果未能解决你的问题,请参考以下文章

Qt带返回值的信号发射方式(使用QMetaObject::invokeMethod)

QThread 的started() 信号没有发出

PySide/PyQT5:如何从 QGraphicsItem 发出信号?

PyQt4 信号和 QObject.Emit()

如何监测 QT 信号?

Qt emit同时发送信号给多个槽函数?