Skip to content

Instantly share code, notes, and snippets.

@alexesDev
Created August 14, 2012 16:46
Show Gist options
  • Save alexesDev/3350768 to your computer and use it in GitHub Desktop.
Save alexesDev/3350768 to your computer and use it in GitHub Desktop.
#include "MainWindow.h"
MainWindow::MainWindow(QWidget *parent) : QMainWindow(parent)
{
}
MainWindow::~MainWindow()
{
}
void MainWindow::paintEvent(QPaintEvent *event)
{
QPainter painter(this);
painter.drawLine(20, 20, 60, 70);
QMainWindow::paintEvent(event);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment