blob: 469b4693e6dbcdb7833cee24741861db3cab1ab6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
#include "draw.hpp"
#include <qpainter.h>
#include <qglobal.h>
#include <qimage.h>
#include <qrgb.h>
#include <qtimer.h>
#include <qwindowdefs.h>
#include <iostream>
DrawWidget::DrawWidget(unsigned width, unsigned height) : QWidget(), m_timer(this) {
m_width = width;
m_height = height;
m_drawbuffer = new QRgb[width * height];
m_img = QImage((uchar*)m_drawbuffer, width, height, QImage::Format_ARGB32);
QObject::connect(&m_timer, &QTimer::timeout, this, &DrawWidget::redraw);
m_timer.start(500);
}
void DrawWidget::paintEvent(QPaintEvent*) {
QPainter painter(this);
painter.drawImage(0, 0, m_img);
}
void DrawWidget::redraw() {
repaint();
}
DrawWidget::~DrawWidget() {
delete[] m_drawbuffer;
}
|