Qt開發:跨視窗訊號槽通訊
阿新 • • 發佈:2019-02-03
多視窗通訊,如果是視窗類物件之間互相包含,則可以直接開放public介面呼叫,不過,很多情況下主視窗和子視窗之間要做到非同步訊息通訊,就必須依賴到跨視窗的訊號槽,以下是一個簡單的示例。
母視窗
mainwindow.h
#ifndef MAINWINDOW_H
#define MAINWINDOW_H
#include <QMainWindow>
#include <QLabel>
#include <QString>
class MainWindow : public QMainWindow
{
Q_OBJECT
public:
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_OBJECT
public:
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");
}
截圖
基本思路是
- 子視窗傳送訊號
- 主視窗開啟子視窗,並建立好訊號槽關聯
- 通過訊號槽函式傳遞訊息引數