qucs_s/qucs/diagrams/marker.cpp

605 lines
15 KiB
C++
Raw Normal View History

2004-04-17 15:41:20 +00:00
/***************************************************************************
marker.cpp - description
-------------------
begin : Sat Apr 10 2004
copyright : (C) 2003 by Michael Margraf
email : michael.margraf@alumni.tu-berlin.de
***************************************************************************/
/***************************************************************************
* *
* 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. *
* *
***************************************************************************/
/*!
\class Marker
\brief The Marker class implements the marker object used for all the
diagram
*/
2004-04-17 15:41:20 +00:00
#include "marker.h"
2004-04-24 11:52:43 +00:00
#include "diagram.h"
2004-05-07 17:31:21 +00:00
#include "graph.h"
#include "main.h"
#include "../dialogs/matchdialog.h" // For r2z function
2004-04-17 15:41:20 +00:00
#include <QString>
#include <QPainter>
2004-04-17 15:41:20 +00:00
2004-06-21 08:22:13 +00:00
#include <limits.h>
#include <cmath>
#include <stdlib.h>
2004-04-17 15:41:20 +00:00
2014-11-12 03:42:14 +08:00
#include "misc.h"
2004-06-21 08:22:13 +00:00
Marker::Marker(Diagram *Diag_, Graph *pg_, int _nn, int cx_, int cy_)
2004-04-17 15:41:20 +00:00
{
Type = isMarker;
2004-10-10 16:06:55 +00:00
isSelected = transparent = false;
2004-04-17 15:41:20 +00:00
2004-05-16 15:02:50 +00:00
Diag = Diag_;
2004-05-07 17:31:21 +00:00
pGraph = pg_;
2004-12-30 12:03:08 +00:00
Precision = 3; // before createText()
2007-02-27 07:04:18 +00:00
VarPos = 0;
2004-06-21 08:22:13 +00:00
numMode = nVarPos = 0;
2007-02-27 07:04:18 +00:00
cx = cx_;
cy = -cy_;
fCX = float(cx);
fCY = float(cy);
Z0 = 50; //Used for Smith chart marker, to calculate impedance
2004-05-16 15:02:50 +00:00
if(!pGraph) makeInvalid();
else initText(_nn); // finally create marker
2004-10-10 16:06:55 +00:00
x1 = cx + 60;
y1 = -cy - 60;
2004-04-24 11:52:43 +00:00
}
Marker::~Marker()
{
2007-02-27 07:04:18 +00:00
if(VarPos) free(VarPos);
2004-04-24 11:52:43 +00:00
}
2004-05-16 15:02:50 +00:00
// ---------------------------------------------------------------------
void Marker::initText(int n)
{
if(pGraph->cPointsX.isEmpty()) {
makeInvalid();
return;
}
2004-11-06 16:29:51 +00:00
Axis *pa;
2004-11-21 17:47:19 +00:00
if(pGraph->yAxisNo == 0) pa = &(Diag->yAxis);
else pa = &(Diag->zAxis);
2007-02-27 07:04:18 +00:00
double Dummy = 0.0; // needed for 2D graph in 3D diagram
double *px, *py=&Dummy, *pz;
2004-05-16 15:02:50 +00:00
Text = "";
2004-06-21 08:22:13 +00:00
2005-05-09 06:32:17 +00:00
bool isCross = false;
int nn, nnn, m, x, y, d, dmin = INT_MAX;
2005-05-02 06:28:45 +00:00
DataX *pD = pGraph->cPointsX.first();
2005-05-09 06:32:17 +00:00
px = pD->Points;
nnn = pD->count;
DataX *pDy = pGraph->cPointsX.next();
if(pDy) { // only for 3D diagram
2005-05-02 06:28:45 +00:00
nn = pGraph->countY * pD->count;
2005-05-09 06:32:17 +00:00
py = pDy->Points;
2005-05-02 06:28:45 +00:00
if(n >= nn) { // is on cross grid ?
2005-05-09 06:32:17 +00:00
isCross = true;
2005-05-02 06:28:45 +00:00
n -= nn;
2005-05-09 06:32:17 +00:00
n /= nnn;
px += (n % nnn);
if(pGraph->cPointsX.next()) // more than 2 indep variables ?
n = (n % nnn) + (n / nnn) * nnn * pDy->count;
nnn = pDy->count;
2005-05-02 06:28:45 +00:00
}
2005-05-09 06:32:17 +00:00
else py += (n/pD->count) % pDy->count;
2005-05-02 06:28:45 +00:00
}
// find exact marker position
2005-05-09 06:32:17 +00:00
m = nnn - 1;
pz = pGraph->cPointsY + 2*n;
for(nn=0; nn<nnn; nn++) {
2007-02-27 07:04:18 +00:00
Diag->calcCoordinate(px, pz, py, &fCX, &fCY, pa);
2005-05-09 06:32:17 +00:00
if(isCross) {
px--;
py++;
pz += 2*(pD->count-1);
}
2007-02-27 07:04:18 +00:00
x = int(fCX+0.5) - cx;
y = int(fCY+0.5) - cy;
2005-05-02 06:28:45 +00:00
d = x*x + y*y;
if(d < dmin) {
dmin = d;
m = nn;
}
}
2005-05-09 06:32:17 +00:00
if(isCross) m *= pD->count;
2005-05-02 06:28:45 +00:00
n += m;
2004-06-21 08:22:13 +00:00
2007-02-27 07:04:18 +00:00
nVarPos = 0;
nn = (pGraph->cPointsX.count() + 2) * sizeof(double);
if(VarPos)
VarPos = (double*)realloc(VarPos, nn);
else
VarPos = (double*)malloc(nn);
2004-11-28 18:29:33 +00:00
// gather text of all independent variables
2004-06-21 08:22:13 +00:00
nn = n;
2005-05-02 06:28:45 +00:00
for(pD = pGraph->cPointsX.first(); pD!=0; pD = pGraph->cPointsX.next()) {
px = pD->Points + (nn % pD->count);
VarPos[nVarPos++] = *px;
Text += pD->Var + ": " + QString::number(*px,'g',Precision) + "\n";
2004-05-16 15:02:50 +00:00
nn /= pD->count;
}
2004-11-28 18:29:33 +00:00
// gather text of dependent variable
2007-02-27 07:04:18 +00:00
pz = pGraph->cPointsY + 2*n;
2004-06-16 17:41:33 +00:00
Text += pGraph->Var + ": ";
switch(numMode) {
2005-03-22 18:39:40 +00:00
case 0: Text += complexRect(*pz, *(pz+1), Precision);
2007-02-08 07:04:54 +00:00
break;
2005-03-22 18:39:40 +00:00
case 1: Text += complexDeg(*pz, *(pz+1), Precision);
2007-02-08 07:04:54 +00:00
break;
2005-03-22 18:39:40 +00:00
case 2: Text += complexRad(*pz, *(pz+1), Precision);
2007-02-08 07:04:54 +00:00
break;
2004-05-16 15:02:50 +00:00
}
2005-08-01 06:08:52 +00:00
VarPos[nVarPos] = *pz;
VarPos[nVarPos+1] = *(pz+1);
if(Diag->Name=="Smith") //impedance is useful as well here
{
double Zr, Zi;
Zr = *pz;
Zi = *(pz+1);
MatchDialog::r2z(Zr, Zi, Z0);
QString Var = pGraph->Var;
if(Var.startsWith("S"))
Text += "\n"+ Var.replace('S', 'Z')+": " +complexRect(Zr, Zi, Precision);
else
Text += "\nZ("+ Var+"): " +complexRect(Zr, Zi, Precision);
}
2005-05-02 06:28:45 +00:00
px = VarPos;
2007-02-27 07:04:18 +00:00
if(py != &Dummy) // 2D in 3D diagram ?
py = VarPos + 1;
Diag->calcCoordinate(px, pz, py, &fCX, &fCY, pa);
2004-12-19 16:06:24 +00:00
if(!Diag->insideDiagram(fCX, fCY)) {
2005-04-12 13:22:48 +00:00
// if marker out of valid bounds, point to origin
2005-05-02 06:28:45 +00:00
if((Diag->Name.left(4) != "Rect") && (Diag->Name != "Curve")) {
2007-02-27 07:04:18 +00:00
fCX = float(Diag->x2 >> 1);
fCY = float(Diag->y2 >> 1);
2004-11-21 17:47:19 +00:00
}
2007-02-27 07:04:18 +00:00
else
fCX = fCY = 0.0;
}
2004-06-21 08:22:13 +00:00
2007-02-27 07:04:18 +00:00
cx = int(fCX+0.5);
cy = int(fCY+0.5);
2014-10-28 14:14:04 +08:00
getTextSize();
2004-05-16 15:02:50 +00:00
}
2004-04-24 11:52:43 +00:00
// ---------------------------------------------------------------------
void Marker::createText()
{
2004-05-16 15:02:50 +00:00
if(!(pGraph->cPointsY)) {
makeInvalid();
return;
}
2007-02-27 07:04:18 +00:00
VarPos = (double*)realloc(VarPos,
(pGraph->cPointsX.count() + 2) * sizeof(double));
2004-05-16 15:02:50 +00:00
while((unsigned int)nVarPos < pGraph->cPointsX.count())
VarPos[nVarPos++] = 0.0; // fill up VarPos
2004-08-20 20:13:01 +00:00
2004-05-16 15:02:50 +00:00
// independent variables
2007-02-27 07:04:18 +00:00
Text = "";
double *pp, v;
2004-07-25 16:58:44 +00:00
int n = 0, m = 1, i;
2004-05-16 15:02:50 +00:00
DataX *pD;
nVarPos = 0;
for(pD = pGraph->cPointsX.first(); pD!=0; pD = pGraph->cPointsX.next()) {
pp = pD->Points;
v = VarPos[nVarPos];
2004-08-14 06:40:55 +00:00
for(i=pD->count; i>1; i--) { // find appropiate marker position
if(fabs(v-(*pp)) < fabs(v-(*(pp+1)))) break;
2004-05-16 15:02:50 +00:00
pp++;
n += m;
}
m *= pD->count;
VarPos[nVarPos++] = *pp;
Text += pD->Var + ": " + QString::number(*pp,'g',Precision) + "\n";
}
2004-08-20 20:13:01 +00:00
2007-02-27 07:04:18 +00:00
v = 0.0; // needed for 2D graph in 3D diagram
double *py=&v, *pz = pGraph->cPointsY + 2*n;
2005-05-02 06:28:45 +00:00
pD = pGraph->cPointsX.first();
if(pGraph->cPointsX.next()) {
py = pGraph->cPointsX.current()->Points; // only for 3D diagram
2005-05-09 06:32:17 +00:00
py += (n / pD->count) % pGraph->cPointsX.current()->count;
2005-05-02 06:28:45 +00:00
}
2004-06-16 17:41:33 +00:00
Text += pGraph->Var + ": ";
switch(numMode) {
2005-03-22 18:39:40 +00:00
case 0: Text += complexRect(*pz, *(pz+1), Precision);
break;
2005-03-22 18:39:40 +00:00
case 1: Text += complexDeg(*pz, *(pz+1), Precision);
break;
2005-03-22 18:39:40 +00:00
case 2: Text += complexRad(*pz, *(pz+1), Precision);
break;
}
if(Diag->Name=="Smith") //impedance is useful as well here
{
double Zr, Zi;
Zr = *pz;
Zi = *(pz+1);
MatchDialog::r2z(Zr, Zi, Z0);
QString Var = pGraph->Var;
if(Var.startsWith("S"))
Text += "\n"+ Var.replace('S', 'Z')+": " +complexRect(Zr, Zi, Precision);
else
Text += "\nZ("+ Var+"): " +complexRect(Zr, Zi, Precision);
2004-04-17 15:41:20 +00:00
}
2005-08-01 06:08:52 +00:00
VarPos[nVarPos] = *pz;
VarPos[nVarPos+1] = *(pz+1);
2004-04-17 15:41:20 +00:00
2004-11-06 16:29:51 +00:00
Axis *pa;
2004-11-21 17:47:19 +00:00
if(pGraph->yAxisNo == 0) pa = &(Diag->yAxis);
else pa = &(Diag->zAxis);
pp = &(VarPos[0]);
2004-12-19 16:06:24 +00:00
2007-02-27 07:04:18 +00:00
Diag->calcCoordinate(pp, pz, py, &fCX, &fCY, pa);
2005-05-02 06:28:45 +00:00
if(!Diag->insideDiagram(fCX, fCY)) {
2005-04-12 13:22:48 +00:00
// if marker out of valid bounds, point to origin
2005-05-02 06:28:45 +00:00
if((Diag->Name.left(4) != "Rect") && (Diag->Name != "Curve")) {
2007-02-27 07:04:18 +00:00
fCX = float(Diag->x2 >> 1);
fCY = float(Diag->y2 >> 1);
2004-11-21 17:47:19 +00:00
}
2007-02-27 07:04:18 +00:00
else
fCX = fCY = 0.0;
}
2004-06-21 08:22:13 +00:00
2007-02-27 07:04:18 +00:00
cx = int(fCX+0.5);
cy = int(fCY+0.5);
2014-10-28 14:14:04 +08:00
getTextSize();
2004-04-17 15:41:20 +00:00
}
2004-05-07 17:31:21 +00:00
// ---------------------------------------------------------------------
void Marker::makeInvalid()
{
cx = 0;
cy = 0;
2005-05-02 06:28:45 +00:00
if(Diag) if(Diag->Name.left(4) != "Rect") if(Diag->Name != "Curve") {
2004-08-22 14:41:35 +00:00
cx = Diag->x2 >> 1;
cy = Diag->y2 >> 1;
}
2004-05-07 17:31:21 +00:00
Text = QObject::tr("invalid");
2007-02-27 07:04:18 +00:00
fCX = float(cx);
fCY = float(cy);
2014-10-28 14:14:04 +08:00
getTextSize();
2004-10-10 16:06:55 +00:00
}
// ---------------------------------------------------------------------
2014-10-28 14:14:04 +08:00
void Marker::getTextSize()
2004-10-10 16:06:55 +00:00
{
// get size of text using the screen-compatible metric
QFontMetrics metrics(QucsSettings.font, 0);
2004-06-16 17:41:33 +00:00
QSize r = metrics.size(0, Text);
2004-05-07 17:31:21 +00:00
x2 = r.width()+5;
y2 = r.height()+5;
}
2004-05-16 15:02:50 +00:00
// ---------------------------------------------------------------------
bool Marker::moveLeftRight(bool left)
{
int n;
double *px;
DataX *pD = pGraph->cPointsX.getFirst();
px = pD->Points;
if(!px) return false;
for(n=0; n<pD->count; n++) {
if(VarPos[0] <= *px) break;
px++;
}
if(n == pD->count) px--;
if(left) {
if(px <= pD->Points) return false;
px--; // one position to the left
}
else {
if(px >= (pD->Points + pD->count - 1)) return false;
px++; // one position to the right
}
VarPos[0] = *px;
createText();
return true;
}
// ---------------------------------------------------------------------
bool Marker::moveUpDown(bool up)
{
int n, i=0;
double *px;
DataX *pD = pGraph->cPointsX.first();
if(!pD) return false;
if(up) { // move upwards ? **********************
do {
i++;
pD = pGraph->cPointsX.next();
if(!pD) return false;
px = pD->Points;
if(!px) return false;
2004-08-14 06:40:55 +00:00
for(n=1; n<pD->count; n++) { // go through all data points
if(fabs(VarPos[i]-(*px)) < fabs(VarPos[i]-(*(px+1)))) break;
2004-05-16 15:02:50 +00:00
px++;
}
2004-08-14 06:40:55 +00:00
} while(px >= (pD->Points + pD->count - 1)); // go to next dimension ?
2004-05-16 15:02:50 +00:00
px++; // one position up
VarPos[i] = *px;
while(i > 1) {
pD = pGraph->cPointsX.prev();
i--;
VarPos[i] = *(pD->Points);
}
}
else { // move downwards **********************
do {
i++;
pD = pGraph->cPointsX.next();
if(!pD) return false;
px = pD->Points;
if(!px) return false;
for(n=0; n<pD->count; n++) {
2004-08-14 06:40:55 +00:00
if(fabs(VarPos[i]-(*px)) < fabs(VarPos[i]-(*(px+1)))) break;
2004-05-16 15:02:50 +00:00
px++;
}
2004-08-14 06:40:55 +00:00
} while(px <= pD->Points); // go to next dimension ?
2004-05-16 15:02:50 +00:00
2005-05-09 06:32:17 +00:00
px--; // one position down
2004-05-16 15:02:50 +00:00
VarPos[i] = *px;
while(i > 1) {
pD = pGraph->cPointsX.prev();
i--;
VarPos[i] = *(pD->Points + pD->count - 1);
}
}
createText();
return true;
}
2004-04-17 15:41:20 +00:00
// ---------------------------------------------------------------------
2004-10-10 16:06:55 +00:00
void Marker::paint(ViewPainter *p, int x0, int y0)
2004-04-17 15:41:20 +00:00
{
// keep track of painter state
p->Painter->save();
2004-10-10 16:06:55 +00:00
// Workaround for bug in Qt: If WorldMatrix is turned off, \n in the
// text creates a terrible mess.
p->Painter->setWorldMatrixEnabled(true);
QMatrix wm = p->Painter->worldMatrix();
p->Painter->setWorldMatrix(QMatrix());
2004-10-10 16:06:55 +00:00
2007-03-05 06:59:54 +00:00
int x2_, y2_;
p->Painter->setPen(QPen(Qt::black,1));
2007-03-05 06:59:54 +00:00
x2_ = p->drawText(Text, x0+x1+3, y0+y1+3, &y2_);
x2_ += int(6.0*p->Scale);
y2_ += int(6.0*p->Scale);
2004-10-10 16:06:55 +00:00
if(!transparent) {
2007-03-05 06:59:54 +00:00
p->eraseRect(x0+x1, y0+y1, x2_, y2_);
2004-10-10 16:06:55 +00:00
p->drawText(Text, x0+x1+3, y0+y1+3);
}
p->Painter->setWorldMatrix(wm);
p->Painter->setWorldMatrixEnabled(false);
2004-10-10 16:06:55 +00:00
// restore painter state
p->Painter->restore();
p->Painter->setPen(QPen(Qt::darkMagenta,0));
2007-03-05 06:59:54 +00:00
p->drawRectD(x0+x1, y0+y1, x2_, y2_);
2004-10-10 16:06:55 +00:00
2007-03-05 06:59:54 +00:00
x2 = int(float(x2_) / p->Scale);
y2 = int(float(y2_) / p->Scale);
2004-04-24 11:52:43 +00:00
2007-03-05 06:59:54 +00:00
int x1_, y1_;
p->map(x0+x1, y0+y1, x1_, y1_);
2004-04-24 11:52:43 +00:00
// which corner of rectangle should be connected to line ?
if(cx < x1+(x2>>1)) {
2007-02-27 07:04:18 +00:00
if(-cy >= y1+(y2>>1))
2007-03-05 06:59:54 +00:00
y1_ += y2_ - 1;
2004-04-24 11:52:43 +00:00
}
else {
2007-03-05 06:59:54 +00:00
x1_ += x2_ - 1;
2007-02-27 07:04:18 +00:00
if(-cy >= y1+(y2>>1))
2007-03-05 06:59:54 +00:00
y1_ += y2_ - 1;
2004-04-24 11:52:43 +00:00
}
2007-03-05 06:59:54 +00:00
float fx2, fy2;
fx2 = (float(x0)+fCX)*p->Scale + p->DX;
fy2 = (float(y0)-fCY)*p->Scale + p->DY;
p->Painter->drawLine(x1_, y1_, TO_INT(fx2), TO_INT(fy2));
2004-04-17 15:41:20 +00:00
if(isSelected) {
p->Painter->setPen(QPen(Qt::darkGray,3));
2004-10-10 16:06:55 +00:00
p->drawRoundRect(x0+x1-3, y0+y1-3, x2+6, y2+6);
2004-04-17 15:41:20 +00:00
}
}
2004-04-24 11:52:43 +00:00
// ---------------------------------------------------------------------
void Marker::paintScheme(QPainter *p)
{
int x0 = Diag->cx;
int y0 = Diag->cy;
2004-10-10 16:06:55 +00:00
p->drawRect(x0+x1, y0+y1, x2, y2);
2004-04-24 11:52:43 +00:00
// which corner of rectangle should be connected to line ?
if(cx < x1+(x2>>1)) {
2004-10-10 16:06:55 +00:00
if(-cy < y1+(y2>>1))
p->drawLine(x0+cx, y0-cy, x0+x1, y0+y1);
2004-04-24 11:52:43 +00:00
else
2007-03-05 06:59:54 +00:00
p->drawLine(x0+cx, y0-cy, x0+x1, y0+y1+y2-1);
2004-04-24 11:52:43 +00:00
}
else {
2004-10-10 16:06:55 +00:00
if(-cy < y1+(y2>>1))
2007-03-05 06:59:54 +00:00
p->drawLine(x0+cx, y0-cy, x0+x1+x2-1, y0+y1);
2004-04-24 11:52:43 +00:00
else
2007-03-05 06:59:54 +00:00
p->drawLine(x0+cx, y0-cy, x0+x1+x2-1, y0+y1+y2-1);
2004-04-24 11:52:43 +00:00
}
}
// ------------------------------------------------------------
void Marker::setCenter(int x, int y, bool relative)
{
if(relative) {
2004-10-10 16:06:55 +00:00
x1 += x; y1 += y;
2004-04-24 11:52:43 +00:00
}
else {
x1 = x; y1 = y;
}
}
// -------------------------------------------------------
void Marker::Bounding(int& _x1, int& _y1, int& _x2, int& _y2)
{
2004-05-20 17:27:41 +00:00
if(Diag) {
_x1 = Diag->cx + x1;
2004-10-10 16:06:55 +00:00
_y1 = Diag->cy + y1;
2004-05-20 17:27:41 +00:00
_x2 = Diag->cx + x1+x2;
2004-10-10 16:06:55 +00:00
_y2 = Diag->cy + y1+y2;
2004-05-20 17:27:41 +00:00
}
else {
_x1 = x1;
_y1 = y1+y2;
_x2 = x1+x2;
_y2 = y1;
}
2004-04-24 11:52:43 +00:00
}
2004-04-17 15:41:20 +00:00
// ---------------------------------------------------------------------
QString Marker::save()
{
2004-08-20 20:13:01 +00:00
QString s = "<Mkr ";
2004-05-16 15:02:50 +00:00
for(int i=0; i<nVarPos; i++)
s += QString::number(VarPos[i])+"/";
s.replace(s.length()-1,1,' ');
//s.at(s.length()-1) = (const QChar&)' ';
2004-05-16 15:02:50 +00:00
2004-06-16 17:41:33 +00:00
s += QString::number(x1) +" "+ QString::number(y1) +" "
2004-10-10 16:06:55 +00:00
+QString::number(Precision) +" "+ QString::number(numMode);
if(transparent) s += " 1>";
else s += " 0>";
2004-04-17 15:41:20 +00:00
return s;
}
// ---------------------------------------------------------------------
2004-05-16 15:02:50 +00:00
// All graphs must have been loaded before this function !
2004-04-17 15:41:20 +00:00
bool Marker::load(const QString& _s)
{
2004-04-24 11:52:43 +00:00
bool ok;
2004-04-17 15:41:20 +00:00
QString s = _s;
if(s.at(0) != '<') return false;
2004-04-24 11:52:43 +00:00
if(s.at(s.length()-1) != '>') return false;
2004-04-17 15:41:20 +00:00
s = s.mid(1, s.length()-2); // cut off start and end character
2004-04-24 11:52:43 +00:00
if(s.section(' ',0,0) != "Mkr") return false;
2004-04-17 15:41:20 +00:00
2004-05-16 15:02:50 +00:00
int i=0, j;
2007-02-27 07:04:18 +00:00
QString n = s.section(' ',1,1); // VarPos
nVarPos = 0;
j = (n.count('/') + 3) * sizeof(double);
2007-02-27 07:04:18 +00:00
if(VarPos)
VarPos = (double*)realloc(VarPos, j);
else
VarPos = (double*)malloc(j);
2004-05-16 15:02:50 +00:00
do {
j = n.indexOf('/', i);
2004-05-16 15:02:50 +00:00
VarPos[nVarPos++] = n.mid(i,j-i).toDouble(&ok);
if(!ok) return false;
i = j+1;
} while(j >= 0);
2004-04-24 11:52:43 +00:00
2004-08-20 20:13:01 +00:00
n = s.section(' ',2,2); // x1
2004-04-24 11:52:43 +00:00
x1 = n.toInt(&ok);
if(!ok) return false;
2004-08-20 20:13:01 +00:00
n = s.section(' ',3,3); // y1
2004-04-24 11:52:43 +00:00
y1 = n.toInt(&ok);
if(!ok) return false;
2004-08-20 20:13:01 +00:00
n = s.section(' ',4,4); // Precision
2004-04-24 11:52:43 +00:00
Precision = n.toInt(&ok);
2004-06-16 17:41:33 +00:00
if(!ok) return false;
2004-08-20 20:13:01 +00:00
n = s.section(' ',5,5); // numMode
2004-06-16 17:41:33 +00:00
numMode = n.toInt(&ok);
if(!ok) return false;
2004-04-24 11:52:43 +00:00
2004-10-10 16:06:55 +00:00
n = s.section(' ',6,6); // transparent
if(n.isEmpty()) return true; // is optional
if(n == "0") transparent = false;
else transparent = true;
2004-04-17 15:41:20 +00:00
return true;
}
2004-08-20 20:13:01 +00:00
// ------------------------------------------------------------------------
// Checks if the coordinates x/y point to the marker text. x/y are relative
// to diagram cx/cy.
2004-09-25 12:10:08 +00:00
bool Marker::getSelected(int x_, int y_)
2004-04-17 15:41:20 +00:00
{
if(x_ >= x1) if(x_ <= x1+x2) if(y_ >= y1) if(y_ <= y1+y2)
2004-09-25 12:10:08 +00:00
return true;
2004-04-17 15:41:20 +00:00
2004-09-25 12:10:08 +00:00
return false;
2004-04-17 15:41:20 +00:00
}
2004-08-20 20:13:01 +00:00
// ------------------------------------------------------------------------
Marker* Marker::sameNewOne(Graph *pGraph_)
{
Marker *pm = new Marker(Diag, pGraph_, 0, cx ,cy);
pm->x1 = x1; pm->y1 = y1;
pm->x2 = x2; pm->y2 = y2;
2007-03-14 07:10:39 +00:00
int z = (nVarPos+2) * sizeof(double);
if(pm->VarPos)
pm->VarPos = (double*)realloc(pm->VarPos, z);
else
pm->VarPos = (double*)malloc(z);
2004-08-20 20:13:01 +00:00
pm->nVarPos = nVarPos;
2007-03-14 07:10:39 +00:00
for(z=0; z<nVarPos; z++)
2004-08-20 20:13:01 +00:00
pm->VarPos[z] = VarPos[z];
2004-10-10 16:06:55 +00:00
pm->Text = Text;
pm->transparent = transparent;
pm->Precision = Precision;
pm->numMode = numMode;
2004-08-20 20:13:01 +00:00
return pm;
}