当前位置:网站首页>QT signal and slot
QT signal and slot
2022-07-06 22:40:00 【There is a mess of code】
List of articles
Tips : Here you can add a list of all the articles in the series , The directory needs to be added manually
for example : Chapter one Python Introduction to machine learning pandas Use
Tips : After writing the article , Directories can be generated automatically , How to generate it, please refer to the help document on the right
List of articles
Preface
Tips : Here you can add the general content to be recorded in this article :
for example : With the development of artificial intelligence , Machine learning is becoming more and more important , A lot of people have turned on learning machine learning , This paper introduces the basic content of machine learning .
Tips : The following is the main body of this article , The following cases can be used for reference
One 、 Signals and slots
Signals and slots are used for communication between objects , It is similar to the interface address between the back end and the front end .
The signal is sent by the sender , The slot can be regarded as the receiver
The signal and slot are QT Unique signal transmission mechanism , He can make contact with objects that do not interfere with each other
utilize connect Function creation
The essence of a slot is a member function of a class , Its parameters can be of any type and C++ Member functions make no difference . It can be a virtual function , Can also be overloaded ,
The only difference is that the slot can be connected with the signal ,, Whenever the signal connected to the slot is sent, it will call the slot
You can also send signals , Then do the corresponding operation before sending to the slot
Characteristics of signal :
Ordinary function , There is no need to achieve , Use signal Keyword declaration , You can customize the signal , no return value , With parameters , Can be suitable for use emit Keywords send signals
Characteristics of grooves
Customizable slot function
Slot function has no return value
With parameters
Two 、 Connect
1、QT4
Through macro
SIGNAL SLOT
SLGNAL()/SLOT Two Hongjiang functions rotate -> character string
connect(sender,SLGNAL(sig1(int,double,QString)),receiver,SLOT(sil1(int,doublemQString)))
shortcoming Error checking will not be done during compilation
2、QT5
The function address used by the signal slot
connect(sender,&Sender::sig1,receiver,&Receiver::slot1)
advantage During compilation, the function type , Check the number
The code is as follows ( Example ):
import numpy as np
import pandas as pd
import matplotlib.pyplot as plt
import seaborn as sns
import warnings
warnings.filterwarnings('ignore')
import ssl
ssl._create_default_https_context = ssl._create_unverified_context
Four 、 matters needing attention
The signal / The number of slot function parameters can be different
The number of slot function parameters can be less than the number of signal parameters
Irreversible
5、 ... and 、 Expand
Signals can be connected to signals
One signal can connect multiple slot functions
A slot function can be connected by multiple signals at the same time
Slot functions can be used lambda expression
After the signal slot is connected , Can be disconnected disconnect
The following is written in the main function , Other creation items are automatically added , Just copy the following code to the main cpp Just fine
The sample code be based on QT4
#include "widget.h"
#include <QPushButton>
Widget::Widget(QWidget *parent)
: QWidget(parent)
{
QPushButton *btn = new QPushButton("adsdadww ",this);
btn->show();
btn->resize(50,50);
btn->move(60,60);
resize(600,400);
QPushButton *btn2 = new QPushButton("slfeofs",this);
btn2->show();
btn2->resize(80,30);
btn2->move(100,100);
this->zt = new Teacher(this);
this->st = new Student(this);
connect(btn2,SIGNAL(clicked()),zt,SIGNAL(hungry()));
connect(zt,SIGNAL(hungry()),st,SLOT(treat()));
connect(btn2,SIGNAL(clicked()),this,SLOT(close()));
st->treat();
setWindowTitle("sdawadwd");
setFixedSize(600,400);
//connect(st,SLOT(treat()));
}
void Widget::classIsOver(){
}
Widget::~Widget()
{
}
be based on QT5 Code for
#include "mainwindow.h"
#include <QPushButton>
MainWindow::MainWindow(QWidget *parent)
: QMainWindow(parent)
{
QPushButton *btn = new QPushButton("adsdadww ",this);
btn->show();
btn->resize(50,50);
btn->move(60,60);
resize(600,400);
QPushButton *btn2 = new QPushButton("slfeofs",this);
btn2->show();
btn2->resize(30,30);
btn2->move(100,100);
connect(btn2,&QPushButton::clicked,this,&MainWindow::close);
setWindowTitle("sdawadwd");
setFixedSize(600,400);
}
MainWindow::~MainWindow()
{
}
边栏推荐
猜你喜欢

Web APIs DOM time object

视图(view)

云原生技术--- 容器知识点

Build op-tee development environment based on qemuv8

机试刷题1
![pytorch_ Yolox pruning [with code]](/img/98/31d6258635ce48ac53819d0ca12d1d.jpg)
pytorch_ Yolox pruning [with code]

Mise en place d'un environnement de développement OP - tee basé sur qemuv8

Mysql 身份认证绕过漏洞(CVE-2012-2122)
![[leetcode] 19. Delete the penultimate node of the linked list](/img/ab/25cb6d6538ad02d78f7d64b2a2df3f.png)
[leetcode] 19. Delete the penultimate node of the linked list

剑指offer刷题记录1
随机推荐
雅思口语的具体步骤和时间安排是什么样的?
Sword finger offer question brushing record 1
The ceiling of MySQL tutorial. Collect it and take your time
BasicVSR_PlusPlus-master测试视频、图片
Aardio - 封装库时批量处理属性与回调函数的方法
case 关键字后面的值有什么要求吗?
void关键字
2022-07-05 stonedb的子查询处理解析耗时分析
自制J-Flash烧录工具——Qt调用jlinkARM.dll方式
sizeof关键字
Financial professionals must read book series 6: equity investment (based on the outline and framework of the CFA exam)
Aardio - does not declare the method of directly passing float values
变量与“零值”的比较
Aardio - 不声明直接传float数值的方法
Comparison between variable and "zero value"
Installation and use of labelimg
The SQL response is slow. What are your troubleshooting ideas?
Balanced Multimodal Learning via On-the-fly Gradient Modulation(CVPR2022 oral)
NPDP认证|产品经理如何跨职能/跨团队沟通?
cuda 探索