paranid5

CPP

Mar 4th, 2021
303
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.34 KB | None | 0 0
  1. #include "degree.h"
  2. #include <QGridLayout>
  3. #include <QPainter>
  4. #include <QPaintEvent>
  5.  
  6. void Drawer::draw()
  7. {
  8.     this->painter->setPen(QPen(Qt::red,4,Qt::SolidLine)); // this можно не писать, пишу, чтоб было понятно
  9.     this->painter->drawLine(10,10,500,500);
  10.     this->painter->drawRect(20,20, 400, 400);
  11. }
Advertisement
Add Comment
Please, Sign In to add comment