#include "draw.hpp" #include #include #include #include #include #include #include DrawWidget::DrawWidget(const Config &conf) : QWidget(), m_conf(conf) { m_drawbuffer = new QRgb[conf.m_width * conf.m_height]; m_img = QImage((uchar*)m_drawbuffer, conf.m_width, conf.m_height, QImage::Format_ARGB32); } void DrawWidget::paintEvent(QPaintEvent*) { QPainter painter(this); painter.drawImage(0, 0, m_img); } void DrawWidget::redraw() { repaint(); } DrawWidget::~DrawWidget() { delete[] m_drawbuffer; }