Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include "degree.h"
- #include <QGridLayout>
- #include <QPainter>
- #include <QPaintEvent>
- void Drawer::draw()
- {
- this->painter->setPen(QPen(Qt::red,4,Qt::SolidLine)); // this можно не писать, пишу, чтоб было понятно
- this->painter->drawLine(10,10,500,500);
- this->painter->drawRect(20,20, 400, 400);
- }
Advertisement
Add Comment
Please, Sign In to add comment