码迷,mamicode.com
首页 > 编程语言 > 详细

Qt:实现子线程发送信号父线程切换图片

时间:2018-08-29 19:58:15      阅读:186      评论:0      收藏:0      [点我收藏+]

标签:private   创建对象   xpl   prefix   name   object   this   ret   创建   

mainwindow.h中代码

#ifndef MAINWINDOW_H
#define MAINWINDOW_H

#include <QMainWindow>
#include "mythread.h"
namespace Ui {
class MainWindow;
}

class MainWindow : public QMainWindow
{
  Q_OBJECT
  MyThread* thread;
  int count;
public:
  explicit MainWindow(QWidget *parent = 0);
  ~MainWindow();

private slots:
  void on_pushButton_clicked();

private:
  Ui::MainWindow *ui;
};

#endif // MAINWINDOW_H

mythread.h中代码

#ifndef MYTHREAD_H
#define MYTHREAD_H
#include <QThread>
#include <QLabel>

class MyThread : public QThread
{
  Q_OBJECT
public:
  QLabel* label;
  //覆盖QThread中的run()函数
  void run()
  {
  sleep(5);
  emit done();//发送自定义信号done
  }


signals:
  void done();//自己定义的信号
};

#endif // MYTHREAD_H

main.cpp(创建时自动生成)

#include <QtGui/QApplication>
#include "mainwindow.h"

int main(int argc, char *argv[])
{
  QApplication a(argc, argv);
  MainWindow w;
  w.show();

  return a.exec();
}

mainwindow.cpp中代码

#include "mainwindow.h"
#include "ui_mainwindow.h"

MainWindow::MainWindow(QWidget *parent) :
QMainWindow(parent),
ui(new Ui::MainWindow)
{
  ui->setupUi(this);
  thread = new MyThread;//创建对象
  thread->label = ui->label;
  count = 0;
  connect(thread,SIGNAL(done()),this,SLOT(on_pushButton_clicked()));//信号捕获
  thread->start();//子线程
}

MainWindow::~MainWindow()
{
  delete ui;
  delete thread;
}


void MainWindow::on_pushButton_clicked()
{
  count++;//图片在label中显示
  if(1 == count)
    ui->label->setStyleSheet("image: url(:/new/prefix1/image/1.jpeg);");
  if(2 == count)
    ui->label->setStyleSheet("image: url(:/new/prefix1/image/2.jpeg);");
}

Qt:实现子线程发送信号父线程切换图片

标签:private   创建对象   xpl   prefix   name   object   this   ret   创建   

原文地址:https://www.cnblogs.com/gzk1171848896/p/9556240.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!