QT update和repaint的区别

简介: void QWidget::repaint ( int x, int y, int w, int h, bool erase = TRUE ) [槽] 通过立即调用paintEvent()来直接重新绘制窗口部件,如果erase为真,Qt在paintEvent()调用之前擦除区域(x,y,w,h)。

void QWidget::repaint ( int x, int y, int w, int h, bool erase = TRUE ) [槽]

通过立即调用paintEvent()来直接重新绘制窗口部件,如果erase为真,Qt在paintEvent()调用之前擦除区域(x,y,w,h)。 

如果w是负数,它被width()-x替换,并且如果h是负数,它被height()-y替换。 如果你需要立即重新绘制,建议使用repaint(),

比如在动画期间。在绝大多数情况下,update()更好,因为它允许Qt来优化速度并且防止闪烁。 

警告:如果你在一个函数中调用repaint(),而它自己又被paintEvent()调用,你也许会看到无线循环。

update()函数从来不会产生循环。

void QWidget::update () [槽]

更新窗口部件,当Qt回到主事件中时,它规划了所要处理的绘制事件。这样允许Qt进行优化从而得到比调用repaint()更快的速度和

更少的闪烁。 几次调用update()的结果通常仅仅是一次paintEvent()调用。 Qt通常在paintEvent()调用之前擦除这个窗口部件的

区域,仅仅只有在WRepaintNoErase窗口部件标记被设置的时候才不会。

在这区别中关键点是:repaint()是立即调用paintEvent(),而update()是几次执行才调用一次paintEvent()。

这样update()会造成这样的结果:paintEvent()中的任务没有执行完,就又被update().paintEvent()中被积压的任务越来越多。

程序例子:

(1)问题出现时候的情况(10毫秒每次,用update()。paintEvent()积累了很多处理任务):

#include<QPainter>

#include<QDebug>

#include<QMessageBox>

#include "mainwindow.h"

#include "ui_mainwindow.h"

MainWindow::MainWindow(QWidget *parent) :

    QMainWindow(parent),

    ui(new Ui::MainWindow)

{

    ui->setupUi(this);

    this->showMaximized();

    i = 0;

    realWidth = this->width();

    realHeight = this->height();

    pixmap = QPixmap(realWidth,realHeight);

    connect(this,SIGNAL(haveData(QPoint)),this,SLOT(getPointAndDraw(QPoint)));

    connect(&timer,SIGNAL(timeout()),this,SLOT(getPoint()));

    timer.start(10);

}

MainWindow::~MainWindow()

{

    delete ui;

}

void MainWindow::getPoint()

{

    if(i < realWidth)

    {

        point = QPoint(i,(uint(qrand())) % realHeight);

        i++;

    }

    else

    {

        i = i % realWidth;

        point = QPoint(i,(uint(qrand())) % realHeight);

        i++;

    }

    emit haveData(point);

}

void MainWindow::getPointAndDraw(QPoint point)

{

    index = point.x();

    QPainter painter(&pixmap);

    painter.setPen(Qt::green);

    painter.drawLine(lastPoint,point);

    painter.setPen(Qt::black);

    painter.setBrush(Qt::red);

    painter.drawRect(index+1,0,5,realHeight);

    if(point.x() < realWidth-1)

        lastPoint = point;

    else

        lastPoint = QPoint(0,0);

  update();

  // this->repaint(index-1,0,5,realHeight);

}

void MainWindow::paintEvent(QPaintEvent *e)

{

    //return ;

    QPainter painter(this);

    QRect target1(0, 0, realWidth, realHeight/5);

    QRect target2(0, realHeight/5, realWidth, realHeight/5);

    QRect target3(0, 2*realHeight/5, realWidth, realHeight/5);

    QRect target4(0, 3*realHeight/5, realWidth, realHeight/5);

    QRect target5(0, 4*realHeight/5, realWidth, realHeight/5);

    QRect source(0, 0, realWidth, realHeight);

    painter.drawPixmap(target1,pixmap,source);

    painter.drawPixmap(target2,pixmap,source);

    painter.drawPixmap(target3,pixmap,source);

    painter.drawPixmap(target4,pixmap,source);

    painter.drawPixmap(target5,pixmap,source);

}

void MainWindow::resizeEvent(QResizeEvent *e)

{

    realWidth = this->width();

    realHeight = this->height();

}

void MainWindow::changeEvent(QEvent *e)

{

    QMainWindow::changeEvent(e);

    switch (e->type()) {

    case QEvent::LanguageChange:

        ui->retranslateUi(this);

        break;

    default:

        break;

    }

}

(2)每隔1000毫秒刷新一次,用update().一秒种有足够的时间处理paintEvent(),无积累。

#include<QPainter>

#include<QDebug>

#include<QMessageBox>

#include "mainwindow.h"

#include "ui_mainwindow.h"

MainWindow::MainWindow(QWidget *parent) :

    QMainWindow(parent),

    ui(new Ui::MainWindow)

{

    ui->setupUi(this);

    this->showMaximized();

    i = 0;

    realWidth = this->width();

    realHeight = this->height();

    pixmap = QPixmap(realWidth,realHeight);

    connect(this,SIGNAL(haveData(QPoint)),this,SLOT(getPointAndDraw(QPoint)));

    connect(&timer,SIGNAL(timeout()),this,SLOT(getPoint()));

    timer.start(1000);

}

MainWindow::~MainWindow()

{

    delete ui;

}

void MainWindow::getPoint()

{

    if(i < realWidth)

    {

        point = QPoint(i,(uint(qrand())) % realHeight);

        i++;

    }

    else

    {

        i = i % realWidth;

        point = QPoint(i,(uint(qrand())) % realHeight);

        i++;

    }

    emit haveData(point);

}

void MainWindow::getPointAndDraw(QPoint point)

{

    index = point.x();

    QPainter painter(&pixmap);

    painter.setPen(Qt::green);

    painter.drawLine(lastPoint,point);

    painter.setPen(Qt::black);

    painter.setBrush(Qt::red);

    painter.drawRect(index+1,0,5,realHeight);

    if(point.x() < realWidth-1)

        lastPoint = point;

    else

        lastPoint = QPoint(0,0);

 update();

  // this->repaint(index-1,0,5,realHeight);

}

void MainWindow::paintEvent(QPaintEvent *e)

{

    //return ;

    QPainter painter(this);

    QRect target1(0, 0, realWidth, realHeight/5);

    QRect target2(0, realHeight/5, realWidth, realHeight/5);

    QRect target3(0, 2*realHeight/5, realWidth, realHeight/5);

    QRect target4(0, 3*realHeight/5, realWidth, realHeight/5);

    QRect target5(0, 4*realHeight/5, realWidth, realHeight/5);

    QRect source(0, 0, realWidth, realHeight);

    painter.drawPixmap(target1,pixmap,source);

    painter.drawPixmap(target2,pixmap,source);

    painter.drawPixmap(target3,pixmap,source);

    painter.drawPixmap(target4,pixmap,source);

    painter.drawPixmap(target5,pixmap,source);

}

void MainWindow::resizeEvent(QResizeEvent *e)

{

    realWidth = this->width();

    realHeight = this->height();

}

void MainWindow::changeEvent(QEvent *e)

{

    QMainWindow::changeEvent(e);

    switch (e->type()) {

    case QEvent::LanguageChange:

        ui->retranslateUi(this);

        break;

    default:

        break;

    }

}

(3)继续改进(10毫秒每次,用repaint()。一次repaint(),一次paintEvent(),无积累).

#include<QPainter>

#include<QDebug>

#include<QMessageBox>

#include "mainwindow.h"

#include "ui_mainwindow.h"

MainWindow::MainWindow(QWidget *parent) :

    QMainWindow(parent),

    ui(new Ui::MainWindow)

{

    ui->setupUi(this);

    this->showMaximized();

    i = 0;

    realWidth = this->width();

    realHeight = this->height();

    pixmap = QPixmap(realWidth,realHeight);

    connect(this,SIGNAL(haveData(QPoint)),this,SLOT(getPointAndDraw(QPoint)));

    connect(&timer,SIGNAL(timeout()),this,SLOT(getPoint()));

    timer.start(10);

}

MainWindow::~MainWindow()

{

    delete ui;

}

void MainWindow::getPoint()

{

    if(i < realWidth)

    {

        point = QPoint(i,(uint(qrand())) % realHeight);

        i++;

    }

    else

    {

        i = i % realWidth;

        point = QPoint(i,(uint(qrand())) % realHeight);

        i++;

    }

    emit haveData(point);

}

void MainWindow::getPointAndDraw(QPoint point)

{

    index = point.x();

    QPainter painter(&pixmap);

    painter.setPen(Qt::green);

    painter.drawLine(lastPoint,point);

    painter.setPen(Qt::black);

    painter.setBrush(Qt::red);

    painter.drawRect(index+1,0,5,realHeight);

    if(point.x() < realWidth-1)

        lastPoint = point;

    else

        lastPoint = QPoint(0,0);

   this->repaint(index-1,0,5,realHeight);

}

void MainWindow::paintEvent(QPaintEvent *e)

{

    //return ;

    QPainter painter(this);

    QRect target1(0, 0, realWidth, realHeight/5);

    QRect target2(0, realHeight/5, realWidth, realHeight/5);

    QRect target3(0, 2*realHeight/5, realWidth, realHeight/5);

    QRect target4(0, 3*realHeight/5, realWidth, realHeight/5);

    QRect target5(0, 4*realHeight/5, realWidth, realHeight/5);

    QRect source(0, 0, realWidth, realHeight);

    painter.drawPixmap(target1,pixmap,source);

    painter.drawPixmap(target2,pixmap,source);

    painter.drawPixmap(target3,pixmap,source);

    painter.drawPixmap(target4,pixmap,source);

    painter.drawPixmap(target5,pixmap,source);

}

void MainWindow::resizeEvent(QResizeEvent *e)

{

    realWidth = this->width();

    realHeight = this->height();

}

void MainWindow::changeEvent(QEvent *e)

{

    QMainWindow::changeEvent(e);

    switch (e->type()) {

    case QEvent::LanguageChange:

        ui->retranslateUi(this);

        break;

    default:

        break;

    }

}

目录
相关文章
|
8月前
Qt3个窗口类的区别
一个普通的窗口,不包含菜单栏、状态栏,除了登录界面,新建项目时建议使用QWidget,因为大部分的窗口可能都要做成无边框窗口,需要自定义标题栏,实现拉伸等;QMainWindow使用的场景不多。:对话框,常用来做登录窗口、弹出窗口(例如设置界面):包含菜单栏、工具栏、状态栏。
65 0
|
4月前
|
设计模式 前端开发 安全
Qt注册类对象单例与单类型区别
在进行开发时,应当根据具体的应用场景和需求来选择使用单例模式或是单类型。如果是全局服务或状态管理,可能需要单例模式;如果是为了使QML环境下的不同组件能够访问到同一个后端服务对象,则可能需要使用单类型。
53 2
|
7月前
|
IDE Linux 开发工具
在Qt开发环境中qmake和cmake的区别优势
选择qmake还是CMake,主要取决于项目的需求和开发者的熟悉程度。如果你正在开发一个纯Qt项目,或者是一个不需要复杂构建脚本的小型项目,qmake可能是一个更好的选择。反之,如果你的项目需要处理复杂的依赖关系,或者你想要一个在多种编程环境中都能工作的构建系统,那么CMake可能是更好的选择。
994 2
|
8月前
|
编解码 算法 Unix
【Qt 应用开发 】QT 三种定时器的介绍 以及 QTimer startTimer/Timerevent QBasicTimer 之间的区别
【Qt 应用开发 】QT 三种定时器的介绍 以及 QTimer startTimer/Timerevent QBasicTimer 之间的区别
1385 0
|
安全 API 调度
Qt开发笔记:QGLWidget、QOpenGLWidget详解及区别
Qt开发笔记:QGLWidget、QOpenGLWidget详解及区别
Qt开发笔记:QGLWidget、QOpenGLWidget详解及区别
|
缓存 算法 计算机视觉
项目实战:Qt+OpenCV大家来找茬(Qt抓图,穿透应用,识别左右图区别,框选区别,微调位置)
项目实战:Qt+OpenCV大家来找茬(Qt抓图,穿透应用,识别左右图区别,框选区别,微调位置)
|
人工智能 数据可视化 程序员
Python GUI图形界面中Qt和wxWidgets区别是什么?
Python中有很多GUI可视化界面的操作,通过打包成方便我们操作的exe界面
QT creator中Debug、Profile、Release的区别
QT creator中Debug、Profile、Release的区别
408 0
QT对话框中show和exec的区别
出处:http://www.cnblogs.com/hujianhua/archive/2012/06/24/2559761.html   QDialog的显示有两个函数show()和exec()。
1505 0
4.关于QT中的QFile文件操作,QBuffer,Label上添加QPixmap,QByteArray和QString之间的区别,QTextStream和QDataStream的区别,QT内存映射(
 新建项目13IO 13IO.pro HEADERS += \     MyWidget.h   SOURCES += \     MyWidget.cpp   QT += gui widgets network CONFIG += C++11
2702 0