本文介绍: 槽函数判断信号传过来数据类型int类型,还是str类型int数据打印,str类型数据设置abel文本内容。注:当参数的 Python 类型没有对应的 C++ 类型时,会出错,应谨慎使用重载信号代码意思是定义重载信号sendText,槽函数参数可以int数据类型,str类型的参数。,我们知道在自定义信号时,可以设定信号参数数据类型。str数据类型信号,获取数据lineEdit文本内容发送。信号进行了重载需要进行两次数据绑定int数据类型信号,写定值“19”发送

信号重载

        在上一篇python之pyqt专栏7-信号与槽3-CSDN博客我们知道在自定义信号时,可以设定信号参数数据类型。pyqt支持信号重载

        

信号定义  
sendText = pyqtSignal([int],[str])

        代码意思是定义重载信号sendText,槽函数参数可以是int数据类型,str类型的参数

        注:当参数的 Python 类型没有对应的 C++ 类型时,会出错,应谨慎使用重载信号。下面是重载信号为字典列表会出错。

    # This will cause problems because each has the same C++ signature.
    valueChanged = pyqtSignal([dict], [list])

 

 定义
    def deal_signal(self,arg):
        if isinstance(arg,str):
            # print(arg)
            self.label.setText(arg)
        if isinstance(arg, int):
            print(f"age = {arg}")

        槽函数判断信号传过来数据类型是int类型,还是str类型,int将数据打印,str类型将数据设置为abel文本内容 

 信号与槽绑定
    myw.sendText[str].connect(myw1.deal_signal)
    myw.sendText[int].connect(myw1.deal_signal)

        信号进行了重载,需要进行两次数据绑定。 

 发送信号
        self.sendText[str].emit(labelStr)
        self.sendText[int].emit(19)

        str数据类型信号,获取数据lineEdit的文本内容发送

        int数据类型信号,写定值“19”发送

 

  实现
# 导入sys模块
import sys
# PyQt6.QtWidgets模块导入QApplication, QWidget
from PyQt6.QtWidgets import QApplication, QWidget
from PyQt6.QtCore import  pyqtSignal,pyqtSlot

# untitled模块中导入Ui_Form类
# from untitled import Ui_Form
# from untitled1 import Ui_Form
import untitled
import untitled1

class MyMainForm(QWidget, untitled.Ui_Form):
    sendText = pyqtSignal([str],[int],)
    # sendText = pyqtSignal(int)
    def __init__(self, parent=None):
        # 调用父类构造函数
        super(MyMainForm, self).__init__(parent)
        # 调用继承Ui_Form过来的setupUi函数
        self.setupUi(self)
        self.pushButton.clicked.connect(self.btn_clicked)


    def btn_clicked(self):
            # 获取编辑文本
        labelStr = self.lineEdit.text()

        self.sendText[str].emit(labelStr)
        self.sendText[int].emit(19)



class MyMainForm1(QWidget, untitled1.Ui_Form):
    def __init__(self, parent=None):
        # 调用父类构造函数
        super(MyMainForm1, self).__init__(parent)
        # 调用继承Ui_Form过来的setupUi函数
        self.setupUi(self)
        self.move(1200,320)

    @pyqtSlot(int)
    @pyqtSlot(str)
    def deal_signal(self,arg):
        if isinstance(arg,str):
            print(arg)
            self.label.setText(arg)
        if isinstance(arg, int):
            print(f"age = {arg}")

# Press the green button in the gutter to run the script.
if __name__ == '__main__':
    # 实例应用
    app = QApplication(sys.argv)
    # 实例化MyMainForm
    myw = MyMainForm()
    myw.show()
    myw1 = MyMainForm1()
    myw1.show()
    myw.sendText[str].connect(myw1.deal_signal)
    myw.sendText[int].connect(myw1.deal_signal)


    # 启动应用程序事件循环等待用户交互,直到应用程序关闭。
    sys.exit(app.exec())

 

                

原文地址:https://blog.csdn.net/qq_34343637/article/details/134678580

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。

如若转载,请注明出处:http://www.7code.cn/show_11635.html

如若内容造成侵权/违法违规/事实不符,请联系代码007邮箱suwngjj01@126.com进行投诉反馈,一经查实,立即删除

发表回复

您的邮箱地址不会被公开。 必填项已用 * 标注