mirror of
https://github.com/ra3xdh/qucs_s
synced 2025-03-28 21:13:26 +00:00
paint moving wires
This commit is contained in:
parent
674ce853a0
commit
3f05798172
@ -15,6 +15,7 @@
|
||||
* *
|
||||
***************************************************************************/
|
||||
#include "wire.h"
|
||||
#include "schematic.h"
|
||||
|
||||
#include <QPainter>
|
||||
|
||||
@ -119,6 +120,11 @@ void Wire::paint(ViewPainter *p)
|
||||
}
|
||||
}
|
||||
|
||||
void Wire::paintScheme(Schematic *p)
|
||||
{
|
||||
p->PostPaintEvent(_Line, cx + x1, cy + y1, cx + x2, cy + y2);
|
||||
}
|
||||
|
||||
// ----------------------------------------------------------------
|
||||
bool Wire::isHorizontal()
|
||||
{
|
||||
@ -129,8 +135,8 @@ bool Wire::isHorizontal()
|
||||
void Wire::setName(const QString& Name_, const QString& Value_, int delta_, int x_, int y_)
|
||||
{
|
||||
if(Name_.isEmpty() && Value_.isEmpty()) {
|
||||
if(Label) delete Label;
|
||||
Label = 0;
|
||||
delete Label;
|
||||
Label = nullptr;
|
||||
return;
|
||||
}
|
||||
|
||||
@ -158,7 +164,7 @@ QString Wire::save()
|
||||
s += QString::number(Label->cx-x1 + Label->cy-y1);
|
||||
s += " \""+Label->initValue+"\">";
|
||||
}
|
||||
else { s += " \"\" 0 0 0 \"\">"; }
|
||||
else { s += R"( "" 0 0 0 "">)"; }
|
||||
return s;
|
||||
}
|
||||
|
||||
|
@ -23,6 +23,7 @@
|
||||
#include "components/component.h" // because of struct Port
|
||||
#include "wirelabel.h"
|
||||
|
||||
class Schematic;
|
||||
class QPainter;
|
||||
class QString;
|
||||
|
||||
@ -33,7 +34,8 @@ public:
|
||||
~Wire();
|
||||
|
||||
void paint(ViewPainter*);
|
||||
void paintScheme(QPainter*);
|
||||
void paintScheme(QPainter*) override;
|
||||
void paintScheme(Schematic*) override;
|
||||
void setCenter(int, int, bool relative=false);
|
||||
void getCenter(int&, int&);
|
||||
bool getSelected(int, int);
|
||||
|
Loading…
x
Reference in New Issue
Block a user