Add "QPainter" version of EllipseArc::paint

This commit is contained in:
Andrey Kalmykov 2024-05-07 19:22:27 +03:00
parent 1ee8364831
commit 0cbb3836d3
2 changed files with 21 additions and 0 deletions

View File

@ -60,6 +60,26 @@ void EllipseArc::paint(ViewPainter *p)
p->drawArc(cx, cy, x2, y2, Angle, ArcLen);
}
void EllipseArc::paint(QPainter *painter) {
painter->save();
painter->setPen(Pen);
painter->drawArc(cx, cy, x2, y2, Angle, ArcLen);
if (isSelected) {
painter->setPen(QPen(Qt::darkGray,Pen.width()+5));
painter->drawArc(cx, cy, x2, y2, Angle, ArcLen);
painter->setPen(QPen(Qt::white, Pen.width(), Pen.style()));
painter->drawArc(cx, cy, x2, y2, Angle, ArcLen);
misc::draw_resize_handle(painter, QPoint{cx, cy});
misc::draw_resize_handle(painter, QPoint{cx, y2});
misc::draw_resize_handle(painter, QPoint{x2, cy});
misc::draw_resize_handle(painter, QPoint{x2, y2});
}
painter->restore();
}
// --------------------------------------------------------------------------
void EllipseArc::paintScheme(Schematic *p)
{

View File

@ -39,6 +39,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);