Add "QPainter" version of Rectangle::paint

This commit is contained in:
Andrey Kalmykov 2024-05-07 19:20:21 +03:00
parent 1cf43cd272
commit 44dfae9a8b
2 changed files with 24 additions and 0 deletions

View File

@ -66,6 +66,29 @@ void qucs::Rectangle::paint(ViewPainter *p)
p->Painter->setBrush(Qt::NoBrush); // no filling for the next paintings
}
void qucs::Rectangle::paint(QPainter *painter) {
painter->save();
painter->setPen(Pen);
if (filled) {
painter->setBrush(Brush);
}
painter->drawRect(cx, cy, x2, y2);
if (isSelected) {
painter->setPen(QPen(Qt::darkGray,Pen.width()+5));
painter->drawRect(cx, cy, x2, y2);
painter->setPen(QPen(Qt::white, Pen.width(), Pen.style()));
painter->drawRect(cx, cy, x2, y2);
misc::draw_resize_handle(painter, QPoint{cx, cy});
misc::draw_resize_handle(painter, QPoint{cx, cy + y2});
misc::draw_resize_handle(painter, QPoint{cx + x2, cy});
misc::draw_resize_handle(painter, QPoint{cx + x2, cy + y2});
}
painter->restore();
}
// --------------------------------------------------------------------------
void qucs::Rectangle::paintScheme(Schematic *p)
{

View File

@ -41,6 +41,7 @@ public:
QString saveCpp();
QString saveJSON();
void paint(ViewPainter*);
void paint(QPainter* painter);
void MouseMoving(Schematic*, int, int, int, int, Schematic*, int, int, bool);
bool MousePressing(Schematic *sch = 0);
bool getSelected(float, float, float);