标准信号槽

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#include "mainwindow.h"
#include "ui_mainwindow.h"

MainWindow::MainWindow(QWidget *parent)
: QMainWindow(parent)
, ui(new Ui::MainWindow)
{
ui->setupUi(this);

connect(ui->closeBtn, &QPushButton::clicked, this, &MainWindow::close);

}

MainWindow::~MainWindow()
{
delete ui;
}

自定义信号槽

参考自这篇博文

自定义信号

要求:

  • 信号是类的成员函数;
  • 返回值必须是void类型;
  • 信号的名字可以根据实际情况进行指定;
  • 参数可以随意指定,信号也支持重载;
  • 信号需要使用signals关键字进行声明, 使用方法类似于public等关键字;
  • 信号函数只需要声明,不需要定义 (没有函数体实现);
  • 在程序中发射自定义信号:发送信号的本质就是调用信号函数。
    • 习惯性在信号函数前加关键字:emit,但是可以省略不写;
    • emit只是显示的声明一下信号要被发射了, 没有特殊含义;
    • 底层emit == #define emit

自定义槽函数

要求:

  • 返回值必须是void类型;
  • 槽也是函数,因此也支持重载;
  • 槽函数需要指定多少个参数,需要看连接的信号的参数个数;
  • 槽函数的参数是用来接收信号传递的数据的,信号传递的数据就是信号的参数;
    • 举例:
      • 信号函数:void testsig(int a, double b);
      • 槽函数:void testslot(int a, double b);
    • 总结:
      • 槽函数的参数应该和对应的信号的参数个数,从左到右类型依次对应;
      • 信号的参数可以大于等于槽函数的参数个数,相当于信号传递的数据被忽略了;
      • 信号函数:void testsig(int a, double b);
      • 槽函数:void testslot(int a);
  • Qt中槽函数的类型是多样的:
    • Qt中的槽函数可以是类的成员函数、全局函数、静态函数、Lambda表达式 (匿名函数);
  • 槽函数可以使用关键字进行声明:slots (Qt5中slots可以省略不写)。
    • public slots
    • private slots:这样的槽函数不能在类外部被调用;
    • protected slots:这样的槽函数不能在类外部被调用。

测试程序

myfriend.h

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#ifndef MYFRIEND_H
#define MYFRIEND_H

#include <QObject>

class MyFriend : public QObject
{
Q_OBJECT
public:
explicit MyFriend(QObject *parent = nullptr);

signals:
void wantToTalk();

void wantToTalk(QString msg);
};

#endif // MYFRIEND_H

myfriend.cpp

1
2
3
4
5
#include "myfriend.h"

MyFriend::MyFriend(QObject *parent)
: QObject{parent}
{}

myself.h

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#ifndef MYSELF_H
#define MYSELF_H

#include <QObject>

class MySelf : public QObject
{
Q_OBJECT
public:
explicit MySelf(QObject *parent = nullptr);

// public slots:
// 槽函数(直接写到public下面也可以)
void doTalking();

void doTalking(QString msg);
};

#endif // MYSELF_H

myself.cpp

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#include "myself.h"
#include <QDebug>

MySelf::MySelf(QObject *parent)
: QObject{parent}
{}

void MySelf::doTalking()
{
qDebug() << "say something...";
}

void MySelf::doTalking(QString msg)
{
qDebug() << "say something like: " << msg;
}

mainwindow.h

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
#ifndef MAINWINDOW_H
#define MAINWINDOW_H

#include <QMainWindow>
#include "myfriend.h"
#include "myself.h"

QT_BEGIN_NAMESPACE
namespace Ui {
class MainWindow;
}
QT_END_NAMESPACE

class MainWindow : public QMainWindow
{
Q_OBJECT

public:
MainWindow(QWidget *parent = nullptr);
~MainWindow();

void talkingSlot();

void talkingByMainWindow();

private:
Ui::MainWindow *ui;

MySelf *m_myself;
MyFriend *m_myfriend;
};
#endif // MAINWINDOW_H

mainwindow.cpp

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
#include "mainwindow.h"
#include "ui_mainwindow.h"
#include <QDebug>

MainWindow::MainWindow(QWidget *parent)
: QMainWindow(parent)
, ui(new Ui::MainWindow)
{
ui->setupUi(this);

connect(ui->closeBtn, &QPushButton::clicked, this, &MainWindow::close);

m_myself = new MySelf(this);
m_myfriend = new MyFriend(this);

void (MyFriend::*friend1)() = &MyFriend::wantToTalk;
void (MyFriend::*friend2)(QString) = &MyFriend::wantToTalk;

void (MySelf::*myself1)(QString) = &MySelf::doTalking;
void (MySelf::*myself2)() = &MySelf::doTalking;

connect(m_myfriend, friend2, this, &MainWindow::talkingByMainWindow);

connect(m_myfriend, friend2, m_myself, myself1);
connect(m_myfriend, friend1, m_myself, myself2);

connect(ui->talkingBtn, &QPushButton::clicked, this, &MainWindow::talkingSlot);
// connect(ui->talkingBtn, &QPushButton::clicked, m_myfriend, &MyFriend::wantToTalk);
}

MainWindow::~MainWindow()
{
delete ui;
}

void MainWindow::talkingSlot()
{
// 发射自定义信号
emit m_myfriend->wantToTalk();
emit m_myfriend->wantToTalk("hello");
}

void MainWindow::talkingByMainWindow()
{
qDebug() << "eat something......";
}

附:Lambda表达式测试:

1
2
3
4
5
6
7
8
9
10
11
12
13
int a = 100, b = 200, c = 300;
[=](int m, int n) mutable {
qDebug() << "hello, I am a lambda expression";
qDebug() << "a+1: " << ++a << ", b+c" << b + c;
qDebug() << "m+1: " << ++m << " n: " << n;
}(1, 2);
qDebug() << "a+1: " << ++a << ", b+c" << b + c;

connect(ui->talkingBtn, &QPushButton::clicked, this, [=]() {
// 发射自定义信号
emit m_myfriend->wantToTalk();
emit m_myfriend->wantToTalk("hello2");
});