这篇文章主要介绍“Qt开发如何实现跨窗口信号槽通信”,在日常操作中,相信很多人在Qt开发如何实现跨窗口信号槽通信问题上存在疑惑,小编查阅了各式资料,整理出简单好用的操作方法,希望对大家解答”Qt开发如何实现跨窗口信号槽通信”的疑惑有所帮助!
这篇文章主要介绍“Qt开发如何实现跨窗口信号槽通信”,在日常操作中,相信很多人在Qt开发如何实现跨窗口信号槽通信问题上存在疑惑,小编查阅了各式资料,整理出简单好用的操作方法,希望对大家解答”Qt开发如何实现跨窗口信号槽通信”的疑惑有所帮助!接下来,请跟着小编一起来学习吧!
多窗口通信,如果是窗口类对象之间互相包含,则可以直接开放public接口调用,不过,很多情况下主窗口和子窗口之间要做到异步消息通信,就必须依赖到跨窗口的信号槽,以下是一个简单的示例。
mainwindow.h
#ifndef MAINWINDOW_H#define MAINWINDOW_H#include <QMainWindow>#include <QLabel>#include <QString>class MainWindow : public QMainWindow{ Q_OBJECTpublic: MainWindow(QWidget *parent = 0); ~MainWindow();private slots: void receiveMsg(QString str);private: QLabel *label;};#endif // MAINWINDOW_H
mainwindow.cpp
#include "mainwindow.h"#include "subwindow.h"MainWindow::MainWindow(QWidget *parent) : QMainWindow(parent){ setWindowTitle("MainWindow"); setFixedSize(400, 300); // add text label label = new QLabel(this); label->setText("to be changed"); // open sub window and connect SubWindow *subwindow = new SubWindow(this); connect(subwindow, SIGNAL(sendText(QString)), this, SLOT(receiveMsg(QString))); subwindow->show(); // use open or exec both ok}void MainWindow::receiveMsg(QString str){ // receive msg in the slot label->setText(str);}MainWindow::~MainWindow(){}
subwindow.h
#ifndef SUBWINDOW_H#define SUBWINDOW_H#include <QDialog>class SubWindow : public QDialog{ Q_OBJECTpublic: explicit SubWindow(QWidget *parent = 0);signals: void sendText(QString str);public slots: void onBtnClick();};#endif // SUBWINDOW_H
subwindow.cpp
#include "QPushButton"#include "subwindow.h"SubWindow::SubWindow(QWidget *parent) : QDialog(parent){ setWindowTitle("SubWindow"); setFixedSize(200, 100); QPushButton *button = new QPushButton("click", this); connect(button, SIGNAL(clicked()), this, SLOT(onBtnClick()));}void SubWindow::onBtnClick(){ // send signal emit sendText("hello qt");}
到此,关于“Qt开发如何实现跨窗口信号槽通信”的学习就结束了,希望能够解决大家的疑惑。理论与实践的搭配能更好的帮助大家学习,快去试试吧!若想继续学习更多相关知识,请继续关注编程网网站,小编会继续努力为大家带来更多实用的文章!
--结束END--
本文标题: Qt开发如何实现跨窗口信号槽通信
本文链接: https://lsjlt.com/news/303574.html(转载时请注明来源链接)
有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341
2024-05-24
2024-05-24
2024-05-24
2024-05-24
2024-05-24
2024-05-24
2024-05-24
2024-05-24
2024-05-24
2024-05-24
回答
回答
回答
回答
回答
回答
回答
回答
回答
回答
0