当前位置:网站首页>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()
{
}
边栏推荐
- TypeScript获取函数参数类型
- 雅思口语的具体步骤和时间安排是什么样的?
- Pit encountered by handwritten ABA
- Leetcode: interview question 17.24 Maximum cumulative sum of submatrix (to be studied)
- Traversal of a tree in first order, middle order, and then order
- 变量与“零值”的比较
- 手写ABA遇到的坑
- 视图(view)
- Dealing with the crash of QT quick project in offscreen mode
- Export MySQL table data in pure mode
猜你喜欢
Config:invalid signature solution and troubleshooting details
CSDN 上传图片取消自动加水印的方法
Web APIs DOM 时间对象
Export MySQL table data in pure mode
树的先序中序后序遍历
Aardio - construct a multi button component with customplus library +plus
在IPv6中 链路本地地址的优势
视图(view)
Improving Multimodal Accuracy Through Modality Pre-training and Attention
signed、unsigned关键字
随机推荐
SQL Server生成自增序号
pytorch_ Yolox pruning [with code]
HDU 5077 NAND (violent tabulation)
将MySQL的表数据纯净方式导出
How do I write Flask's excellent debug log message to a file in production?
Improving Multimodal Accuracy Through Modality Pre-training and Attention
Classification, function and usage of MySQL constraints
Windows Auzre 微软的云计算产品的后台操作界面
动作捕捉用于蛇运动分析及蛇形机器人开发
Void keyword
自定义 swap 函数
Adavit -- dynamic network with adaptive selection of computing structure
二分图判定
Project duplicate template
雅思口语的具体步骤和时间安排是什么样的?
qt quick项目offscreen模式下崩溃的问题处理
cuda 探索
ThreadLocal详解
Pit encountered by handwritten ABA
const关键字