14 lines
224 B
C++
14 lines
224 B
C++
#include "graphview.h"
|
|
|
|
#include <QPainter>
|
|
|
|
GraphView::GraphView(QWidget* parent) {}
|
|
|
|
void GraphView::paintEvent(QPaintEvent *event) {
|
|
QPainter p(this);
|
|
|
|
p.setPen(Qt::white);
|
|
|
|
p.drawRect(rect());
|
|
}
|