当前位置:   article > 正文

QT绘图及动画系统_qgraphicsview绘制动态图

qgraphicsview绘制动态图

Qt 提供了内置的绘图系统以及独立的QtOpenGL模块提供对OpenGL的支持。Qt提供了基于状态机的QPainter系统和面向对象的Graphics View系统。

QPainter

基于状态机的绘图系统主要包含QPainter、QPaintEngine、QPaintDevice 三个类。

QPainter有三个主要参数分别用于设置画笔(QPen)、画刷(QBrush)、字体(font),分别由setPen、setBrush、setFont系列方法设定。

widget.h:

  1. #ifndef WIDGET_H
  2. #define WIDGET_H
  3. #include <QWidget>
  4. #include <QPainter>
  5. namespace Ui {
  6. class Widget;
  7. }
  8. class Widget : public QWidget
  9. {
  10. Q_OBJECT
  11. public:
  12. explicit Widget(QWidget *parent = 0);
  13. void paintEvent(QPaintEvent *event = 0);
  14. ~Widget();
  15. private:
  16. Ui::Widget *ui;
  17. };
  18. #endif // WIDGET_H

widget.cpp:

  1. #include "widget.h"
  2. #include "ui_widget.h"
  3. Widget::Widget(QWidget *parent) :
  4. QWidget(parent),
  5. ui(new Ui::Widget)
  6. {
  7. ui->setupUi(this);
  8. }
  9. Widget::~Widget()
  10. {
  11. delete ui;
  12. }
  13. void Widget::paintEvent(QPaintEvent *parent) {
  14. // QPainter *painter = new QPainter(this);
  15. QPainter painter(this);
  16. painter.setPen(Qt::blue);
  17. painter. setFont(QFont("Arial", 30));
  18. painter. drawLine(0,0,100,100);
  19. }

main.cpp:

  1. #include "widget.h"
  2. #include <QApplication>
  3. int main(int argc, char *argv[])
  4. {
  5. QApplication a(argc, argv);
  6. Widget w;
  7. w.show();
  8. w.paintEvent();
  9. return a.exec();
  10. }

使用QPainter进行绘画必须重写QWidget::paintEvent(QPaintEvent *)事件,并在事件中进行绘图。如Widget.cpp中的void Widget::paintEvent(QPaintEvent *parent)

调用可视化组件的update(),repaint()实例方法或者直接调用paintEvent()方法可以对可视化组件进行重绘。

update()允许Qt进行优化从而得到比调用repaint()更快的速度和更少的闪烁。

几次调用update()的结果通常仅仅是一次paintEvent()调用,repaint()则是立即调用paintEvent()

Qt通常在paintEvent()调用之前擦除这个窗口部件的区域,除非设置了WRepaintNoErase窗口部件标记。

画笔QPen主要用于线条的绘制,画笔的样式可以在创建QPen对象时指定也可由setStyle()指定。

画笔主要支持cap、join (结合点)和line三种风格,可以通过setStyle()、setCapStyle()、setJoinStyle()、setlineStyle()等方法进行设置。

画刷QBrush用于二维封闭图形的填充,与QPen类似同样通过style设定填充风格,还可以使用渐变填充。

反走样

反走样技术通过对像素的细微调整避免锯齿状边缘出现,但是反走样算法需要较高计算量且会修改原有图形,所以与大多数2D绘图工具一样QPainter默认不打开反走样算法。

painter.setRenderHint(QPainter::Antialiasing,true);

使用上述语句将QPainter::Antialiasing设置为true之后painter就会打开反走样算法,直到将QPainter::Antialiasing显式地设为false反走样算法才会关闭。

渐变填充

Qt 的渐变是一个独立的类,包含QLinearGradient(线性渐变),QRadialGrafient(辐射渐变),QConcialGradient(角度渐变)。

示例:

  1. void Widget::paintEvent(QPaintEvent *parent) {
  2. QPainter painter(this);
  3. QLinearGradient gradient(0,0,100,100);
  4. //初始化渐变对象,左上坐标和宽高设定位置
  5. gradient.setColorAt(0.2,Qt::blue);
  6. //设定渐变色彩,第一个参数为参照点的位置比例,第二个参数为参照点的颜色
  7. gradient.setColorAt(0.5,Qt::red);
  8. gradient.setColorAt(0.8,Qt::yellow);
  9. painter. setBrush(QBrush(gradient));
  10. //QBrush接受渐变对象做参数,并将其作为QPainter的绘制工具
  11. painter. drawEllipse(0,0,100,100);
  12. //画图
  13. }

坐标变换

QPainter的坐标位于左上角,x轴正方向向右,y轴正方向向下;每个像素占据
1×1的坐标空间,但像素中心为与方格中心(x+0.5,y+0.5),实际上是一个半像素坐标系。

QPainter使用了viewport和window机制,viewport使用物理坐标而window使用逻辑坐标、QPainter传递逻辑坐标。两者的坐标系通常是相同的,但是QPainter还提供了setViewport()和setWindow()函数用于重置两个坐标系的位置大小,使得可以在不改变物理实现的情况下移动画布的范围。

QPainter还提供了世界坐标用于坐标的变换:

  1. void Widget::paintEvent(QPaintEvent *event) {
  2. QPainter painter(this);
  3. QFont font("Courier",12);//初始化字体对象
  4. painter.setFont(font);//为QPainter设置字体
  5. QTransform transform;//定义坐标变换
  6. transform.rotate(+45);//设置旋转
  7. painter.setWorldTransform(transform);//为QPainter设置坐标变换
  8. painter.drawText(150,0,"Hello World!");//绘制
  9. }

QTransform

QTransform是对坐标变换矩阵的封装,通常使用:旋转rotate,放缩scale,裁剪shear,平移translate等方法设定相关变换。一个QTransform对象可以依次设置多个坐标变换操作。

Qtransform也可以使用setmatrix()等方法直接操作变换矩阵。

绘图设备

绘图设备是指QPaintDevice的派生类,包括QPixmap、QBitmap、QImage和QPicture。QPainter提供了drawPixmap()方法可以将图像画到不同设备上。

QPixmap为图片在屏幕显示做了优化,QPixmap与绘图设备底层相关,不提供像素级支持,不同设备上图像有所不同。

可以直接使用QPainter在QPixmap上绘制也可以接受一个图片文件在屏幕上显示。

QBitmap是QPixmap的派生类,只能绘制黑白图像(色深为1)。

QImage是与硬件无关的绘图设备,提供了像素级操作支持。

QPicture用于记录QPainter的操作,并保存到一个序列化的平台独立的二进制文件中。

示例:

  1. void Widget::paintEvent(QPaintEvent *event) {
  2. QPainter painter(this);
  3. QPicture picture;
  4. painter.begin(&picture); //开始记录
  5. painter.drawText(100,100,"Hello World!");//绘制
  6. painter.end();//终止记录
  7. picture.save("Hello.pic");//保存到文件
  8. picture.load("Hello.pic");//加载文件
  9. painter.drawPicture(0,0,picture);//重画
  10. }

Qt Graphics View

Graphics View是一种采用MV架构,面向对象的绘图系统。与QPainter状态机使用绘图语句绘制的模式不同,Gaphics View中每个图形元素都是一个对象。

Graphics View的架构中Model负责存储对象结构View则提供观察窗口,MV架构可以很容易的实现转换视角,摄像机,碰撞检测等功能。

Grphics View框架采用BSP树管理item,可以对大量items做出快速响应。

示例:

  1. QGraphicsScene scene;
  2. scene.addText("Hello, world!");
  3. QGraphicsView view(&scene);
  4. view.show();

QGraphicsScene

QGraphicsScene类作为容器(MV中的模型Model),用于存储所有的图形元素;QGraphicsView则是观察窗口,可以显示场景的一部分或者全局;所有的图形元素均继承自QGraphicsItem。

QGraphicsScene的addItem(QGraphicsItem * item);方法可以向容器中添加图形元素。

addEllipse(), addLine(), addPath(), addPixmap(), addPolygon(), addRect(), or addText()可以方便地添加图形元素并返回指向图形元素的指针。QGraphicsScene::removeItem(QGraphicsItem * item)用于移除相应的Item。

QGraphicsScene使用下标来高效的管理item的位置,默认的使用BSP树,适用于一个大型的场景,其中的item都是静止不变的,可以选择调用setItemIndexMethod().来禁用下标,可以查看itemIndexMethod来获取更多的信息。

items()函数可以在数微秒内找到item的位置,item()有一些重载函数。itemAt()函数可以根据提供的位置返回所在位置处的最上层的item指针。

场景的边界可以使用setSceneRect()来设置,item可以放置在场景中任何位置,场景默认的大小是不受限制的。如果场景边界矩形没有设置,QgrapbhicsScene将会使用所有item图元的边界,使用函数itemsBoundingRect()返回。

通过继承QGraphicsScene并重写事件响应函数可以对Scene中的Item的点击、拖动等事件进行响应。在场景变换时,QGraphicsScene将会发射changed()信号,通知相应槽函数进行处理。

QGraphicsView提供了用于显示的widget,用于显示Scene,可以使用构造函数或void setScene(QGraphicsScene * scene)将多个View联系到同一个scene,给相同的数据提供多个View,视口支持openGL,甚至可以将QGLWidget作为视口,只要调用一下QGraphicsView::setViewport()

QGraphicsView::mapToScene()QGraphicsView::mapFromScene()等多个函数可以在view和scene之间转换坐标系。

QGraphicsView

QGraphicsView是一个观察窗口,它将QGraphicsScene中item显示出来,并将用户的鼠标和键盘事件映射到QGraphicsScene事件,且将坐标转换为QGraphicsScene的坐标。

  • setScence

QGraphicsView的构造函数可以接受一个QGraphicsScene的指针作为参数或者使用void QGraphicsView::setScene ( QGraphicsScene * scene )

  • transform()

QGraphicsView::setTransform()使用转换矩阵来改变视图坐标系,达到旋转或缩放的目的。并通过QGraphicsView::transform()访问QTransform。

示例:

  1. QTransform transform;//定义坐标变换
  2. transform.rotate(+45);//设置旋转
  3. view.setTransform(transform);
  4. view.show()

当然可以用void QGraphicsView::rotate(qreal angle)或者void QGraphicsView::scale(qreal sx, qreal sy)

示例:

  1. QGraphicsScene scene;
  2. scene.addText("GraphicsView rotated clockwise");
  3. QGraphicsView view(&scene);
  4. view.rotate(90); // the text is rendered with a 90 degree clockwise rotation
  5. view.show();

QGraphicsView使用ViewportAnchor属性来决定当转换矩阵修改和坐标系统修改时候如何摆放场景的在viewport中的位置。

默认的是 AnchorViewCenter,这样使场景点在变换时候保持在view中心点不变。例如当旋转时候,场景将会围绕着view中心点来旋转。

只有场景中的一部分可见时候这个属性才显而易见的。例如:当view中有滚动条时候,否则整个场景都在view中,场景将会使用QGraphicsView::aligenment来摆放它的位置。

void QGraphicsView::render ( QPainter * painter)将QGraphicsView通过QPainter映射到QPaintDevice上显示。

来自官方文档的示例:

  1. QGraphicsScene scene;
  2. scene.addItem(...
  3. ...
  4. QGraphicsView view(&scene);
  5. view.show();
  6. ...
  7. QPrinter printer(QPrinter::HighResolution);
  8. printer.setPageSize(QPrinter::A4);
  9. QPainter painter(&printer);
  10. // print, fitting the viewport contents into a full page
  11. view.render(&painter);
  12. // print the upper half of the viewport into the lower.
  13. // half of the page.
  14. QRect viewport = view.viewport()->rect();
  15. view.render(&painter,
  16. QRectF(0, printer.height() / 2,
  17. printer.width(), printer.height() / 2),
  18. viewport.adjusted(0, 0, 0, -viewport.height() / 2));

QGraphicsItem

QGraphicsItem是所有item的基类,要自定义item需要继承QGraphicsItem并实现两个纯虚函数:

  • QRectF boundingRect() const

返回一个代表形状QRectF对象。

  • void paint(QPainter painter, const QStyleOptionGraphicsItem option,
    QWidget *widget)

控制绘图过程。

QGraphicsScene认为所有item的boundingRect函数与shape函数都是不发生改变的,除非用户进行通知。如果想改变一个item,必需先调用prepareGeometryChange以允许QGraphicsScene进行更新。

Graphics View框架使用shape()collidesWithPath()实现碰撞检测。

  • QPainterPath QGraphicsItem::shape() const

函数返回碰撞箱形状,默认实现为调用boundingRect()并返回简单的矩形。

重写该函数,定义更复杂的碰撞箱形状,但复杂的形状会使计算量增大。

默认实现:

  1. QPainterPath RoundItem::shape() const
  2. {
  3. QPainterPath path;
  4. path.addEllipse(boundingRect());
  5. return path;
  6. }
  • bool QGraphicsItem::collidesWithPath(const QPainterPath & path)

当item与参数指定的PainterPath发生碰撞时返回true,否则为false。

碰撞箱形状决定于shape(),可以使用shape()函数进行两个item的碰撞检测:

item1.collidesWithPath(item2.shape());

Qt提供了默认实现,可以重写该方法实现更复杂的碰撞检测。

Qt Animation

QPropertyAnimation

示例:

  1. QPushButton button("Animated Button");
  2. button.show();
  3. QPropertyAnimation animation(&button, "geometry");
  4. //初始化Animation对象,指定要动画的属性
  5. animation.setDuration(10000);
  6. //设定持续时间,单位为毫秒
  7. animation.setStartValue(QRect(0, 0, 0, 0));
  8. //设定初始值
  9. animation1->setKeyValueAt(0.4, QRect(20, 250, 20, 30));
  10. //设定中间关键值,第一个参数为时间百分比,第二个参数为关键值
  11. animation.setEndValue(QRect(250, 250, 100, 30));
  12. //设定结束值
  13. animation.start();
  14. //启动动画

QPropertyAnimation是Qt动画框架提供的一个实现类,它按照设置对某个Qt属性进行线性插值,并在时间轴的控制下动态调节该属性达到动画的效果。

QPropertyAnimation动画的属性必须是Qt属性,Qt属性由Q_PROPERTY宏来声明,并且类必须继承QObject。标准的Qt Widgets组件均使用Q_PROPERTY属性,可以直接进行动画,若自定义组件使用动画效果则需要使用Q_PROPERTY进行声明。

Q_PROPERTY宏的原型为:

  1. Q_PROPERTY(type name
  2. (READ getFunction [WRITE setFunction] |
  3. MEMBER memberName [(READ getFunction | WRITE setFunction)])
  4. [RESET resetFunction]
  5. [NOTIFY notifySignal]
  6. [REVISION int]
  7. [DESIGNABLE bool]
  8. [SCRIPTABLE bool]
  9. [STORED bool]
  10. [USER bool]
  11. [CONSTANT]
  12. [FINAL])
  • 属性类型必须有一个read函数。它用来读取属性值。因此用Const限定。它的返回值类型必须为属性类型或者属性类型的引用或者指针。不能是其他类型例如:QWidget::hasFocus()。

  • 有一个可选的write函数。它用来设置属性值,它的返回值必须为void型,而起必须要含有一个参数。例如:QWidget::setEnabled()。

  • 一个reset函数能够把property设置成其默认状态,它也是可选的。复位功能必须返回void,并且不带参数。

  • 一个可选的NOTIFY信号, 它提供了一个在值发生改变时会自动被触发信号。

  • 如果定义了"STODE"属性表明这是一直存在的。

  • 一个"DESIGNABLE"属性表明该property能在GUI builder(一般为Qt Designer)可见。

  • USER 属性 表面是否可以被用户所编辑

  • CONST设定属性是不可修改的 所以不能跟WRITE或者NOTIFY同时出现

  • FINAL表明该属性不会被派生类中重写

示例:

  1. class Test : public QObject {
  2. Q_OBJECT
  3. Q_PROPERTY(bool enabled READ isEnabled WRITE setEnabled)
  4. public:
  5. Test(QObject *parent = 0) : QObject(parent) {}
  6. virtual ~Test(){}
  7. void setEnabled(bool e) { enabled = e; }
  8. bool isEnabled() const { return enabled; }
  9. private:
  10. bool enabled;
  11. };

EasyCurving

QPropertyAnimation默认进行线性插值,也可以使用宽松曲线(EasyCurvig)设置属性变化规律,如产生组件弹跳进入的效果等。

  1. QPushButton button("Animated Button");
  2. button.show();
  3. QPropertyAnimation animation(&button, "geometry");
  4. //初始化Animation对象,指定要动画的属性
  5. animation.setDuration(10000);
  6. //设定持续时间,单位为毫秒
  7. animation.setStartValue(QRect(0, 0, 0, 0));
  8. //设定初始值
  9. animation1->setKeyValueAt(0.4, QRect(20, 250, 20, 30));
  10. //设定中间关键值,第一个参数为时间百分比,第二个参数为关键值
  11. animation.setEndValue(QRect(250, 250, 100, 30));
  12. //设定结束值
  13. animation1->setEasingCurve(QEasingCurve::OutBounce);
  14. //使用弹跳曲线
  15. animation.start();
  16. //启动动画

QEasyCurving::Type枚举类型中定义了各种曲线,可以从中选择或者自行实现然后注册到EasyCurving。

QTimeLine

Qt的 动画效果离不开时间轴的控制,Animation框架依赖QTimeLine提供时间轴。我们可以使用QTimeLine制作自己的动画。

QTimeLine接受一个以毫秒为单位的参数,代表动画运行的总时间。
例:timeline = new QTimeLine(1000);

在计时结束后将会发出finished()信号,或者调用stop()方法手动使QTimeLine进入NotRunning状态。

调用start方法,QTimeLine开始计时:timeLine->start();

QTimeLine进入Running状态后,默认每隔40ms发送一个frameChanged()信号,间隔规律可以手动设置:setUpdateInterval(int interval);

默认情况下QTimeLine均匀的发送信号,也可以手动设置间隔规律:timeline->setCurveShape(QTimeLine::LinearCurve);

目前,Qt支持的模式有:

  • QTimeLine::EaseInCurve = 0

The value starts growing slowly, then increases in speed.先慢后快

  • QTimeLine::EaseOutCurve = 1

The value starts growing steadily, then ends slowly.先匀加速,后减速

  • QTimeLine::EaseInOutCurve = 2

The value starts growing slowly, then runs steadily, then grows slowly again.
先慢,中间稳定,最后慢

  • QTimeLine::LinearCurve = 3

The value grows linearly (e.g., if the duration is 1000 ms, the value at time 500 ms is 0.5).匀速的

  • QTimeLine::SineCurve = 4

The value grows sinusoidally.正选曲线式

  • QTimeLine::CosineCurve = 5

The value grows cosinusoidally.余弦曲线式

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/IT小白/article/detail/299602
推荐阅读
相关标签
  

闽ICP备14008679号