mirror of
https://github.com/ra3xdh/qucs_s
synced 2025-03-28 21:13:26 +00:00
Add "QPainter" version of EllipseArc::paint
This commit is contained in:
parent
1ee8364831
commit
0cbb3836d3
@ -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)
|
||||
{
|
||||
|
@ -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);
|
||||
|
Loading…
x
Reference in New Issue
Block a user