forked from ra3xdh/qucs_s
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwirelabel.cpp
231 lines (208 loc) · 6.24 KB
/
wirelabel.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
/***************************************************************************
wirelabel.cpp - description
-------------------
begin : Sun February 29 2004
copyright : (C) 2004 by Michael Margraf
email : [email protected]
***************************************************************************/
/***************************************************************************
* *
* This program is free software; you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation; either version 2 of the License, or *
* (at your option) any later version. *
* *
***************************************************************************/
#include "wirelabel.h"
#include "viewpainter.h"
#include "wire.h"
#include "main.h"
#include <QString>
#include <QPainter>
WireLabel::WireLabel(const QString& _Name, int _cx, int _cy,
int _x1, int _y1, int _Type)
{
cx = _cx;
cy = _cy;
x1 = _x1;
y1 = _y1;
setName(_Name);
initValue = "";
Type = _Type;
isSelected = false;
isHighlighted = false;
}
WireLabel::~WireLabel()
{
}
// ----------------------------------------------------------------
void WireLabel::paintScheme(QPainter *p)
{
p->drawRect(x1, y1, x2, y2);
// which corner of rectangle should be connected to line ?
if(cx < x1+(x2>>1)) {
if(cy < y1+(y2>>1))
p->drawLine(cx, cy, x1, y1);
else
p->drawLine(cx, cy, x1, y1+y2);
}
else {
if(cy < y1+(y2>>1))
p->drawLine(cx, cy, x1+x2, y1);
else
p->drawLine(cx, cy, x1+x2, y1+y2);
}
}
// ----------------------------------------------------------------
void WireLabel::setCenter(int x_, int y_, bool relative)
{
switch(Type) {
case isMovingLabel:
if(relative) {
x1 += x_; cx += x_;
y1 += y_; cy += y_;
}
else {
x1 = x_; cx = x_;
y1 = y_; cy = y_;
}
break;
case isHMovingLabel:
if(relative) { x1 += x_; cx += x_; }
else { x1 = x_; cx = x_; }
break;
case isVMovingLabel:
if(relative) { y1 += y_; cy += y_; }
else { y1 = y_; cy = y_; }
break;
default:
if(relative) {
x1 += x_; y1 += y_; // moving cx/cy is done by owner (wire, node)
}
else { x1 = x_; y1 = y_; }
}
}
// ----------------------------------------------------------------
bool WireLabel::getSelected(int x, int y)
{
if(x1 <= x)
if(y1 <= y)
if((x1+x2) >= x)
if((y1+y2) >= y)
return true;
return false;
}
// ----------------------------------------------------------------
void WireLabel::paint(ViewPainter *p)
{
QFont f = p->Painter->font(); // save current font
QFont newFont = f;
if (isHighlighted)
{
// QColor highlightfill (Qt::blue);
// highlightfill.setAlpha(50);
// p->fillRect(x1-1, y1-1, x2, y2, highlightfill);
p->Painter->setPen(QPen(Qt::darkBlue,3));
newFont.setWeight (QFont::Bold);
}
else
{
newFont.setWeight (QFont::Normal);
p->Painter->setPen(QPen(Qt::black,1));
}
p->Painter->setFont (newFont);
x2 = p->drawText(Name, x1, y1, &y2);
p->Painter->setFont(f); // restore old font
int xpaint=0, ypaint=4, phi=0;
switch(Type) {
case isVWireLabel: ypaint=0; xpaint=4; phi=16*140; break;
case isHWireLabel: phi=16*50; break;
case isNodeLabel: ypaint = 0;
default: ;
}
int c, d;
int a = int(double(x2) / p->Scale) >> 1;
int b = int(double(y2) / p->Scale) >> 1;
if(cx < x1+a) { // where should frame be painted ?
if(cy < y1+b) {
if(phi == 16*50) phi += 16*180;
p->map(x1-3, y1-2, a, b); // low right
c = a + (x2>>1);
d = b + y2;
p->map(cx+xpaint, cy+ypaint, xpaint, ypaint);
}
else {
if(phi != 0) phi += 16*180;
p->map(x1-3, y1+1, a, b); // up right
b += y2;
c = a + (x2>>1);
d = b - y2;
p->map(cx+xpaint, cy-ypaint, xpaint, ypaint);
}
}
else {
if(cy < y1+b) {
p->map(x1+3, y1-2, a, b); // low left
a += x2;
c = a - (x2>>1);
d = b + y2;
p->map(cx-xpaint, cy+ypaint, xpaint, ypaint);
}
else {
if(phi > 16*90) phi += 16*180;
p->map(x1+3, y1+1, a, b); // up left
a += x2;
b += y2;
c = a - (x2>>1);
d = b - y2;
p->map(cx-xpaint, cy-ypaint, xpaint, ypaint);
}
}
if(initValue.isEmpty())
p->Painter->setPen(QPen(Qt::darkMagenta,0));
else
p->Painter->setPen(QPen(Qt::red,0));
if(phi) p->drawArc(cx-4, cy-4, 8, 8, phi, 16*255);
p->Painter->drawLine(a, b, c, b);
p->Painter->drawLine(a, b, a, d);
p->Painter->drawLine(xpaint, ypaint, a, b);
x2 = int(double(x2) / p->Scale);
y2 = int(double(y2) / p->Scale);
if(isSelected)
{
p->Painter->setPen(QPen(Qt::darkGray,3));
p->drawRoundRect(x1-2, y1-2, x2+6, y2+5);
}
}
// ----------------------------------------------------------------
void WireLabel::setName(const QString& Name_)
{
Name = Name_;
// get size of text using the screen-compatible metric
QFontMetrics metrics(QucsSettings.font, 0);
QSize r = metrics.size(0, Name);
x2 = r.width();
y2 = r.height()-2; // remember size of text
}
// ----------------------------------------------------------------
// Converts all necessary data of the wire into a string. This can be used to
// save it to an ASCII file or to transport it via the clipboard.
// Wire labels use the same format like wires, but with length zero.
QString WireLabel::save()
{
QString s("<");
s += QString::number(cx)+" "+QString::number(cy)+" "
+ QString::number(cx)+" "+QString::number(cy)
+ " \""+Name +"\" "
+ QString::number(x1)+" "+QString::number(y1)+" 0 \""
+ initValue+"\">";
return s;
}
void WireLabel::getLabelBounding(int& _xmin, int& _ymin, int& _xmax, int& _ymax)
{
_xmin = std::min(x1,x1+(x2+6));
_xmax = std::max(x1,x1+(x2+6));
_ymin = std::min(y1,y1+(y2+6));
_ymax = std::max(y1,y1+(y2+5));
_ymax = std::max(cy,_ymax);
}