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