#include "vtoolnormal.h" #include VToolNormal::VToolNormal(VDomDocument *doc, VContainer *data, const qint64 &id, const QString &typeLine, const QString &formula, const qint32 &angle, const qint64 &firstPointId, const qint64 &secondPointId, Tool::Enum typeCreation, QGraphicsItem *parent): VToolLinePoint(doc, data, id, typeLine, formula, firstPointId, angle, parent){ this->secondPointId = secondPointId; if(typeCreation == Tool::FromGui){ AddToFile(); } } void VToolNormal::setDialog(){ Q_ASSERT(!dialogNormal.isNull()); if(!dialogNormal.isNull()){ VPointF p = VAbstractTool::data.GetPoint(id); dialogNormal->setTypeLine(typeLine); dialogNormal->setFormula(formula); dialogNormal->setAngle(angle); dialogNormal->setFirstPointId(basePointId, id); dialogNormal->setSecondPointId(secondPointId, id); dialogNormal->setPointName(p.name()); } } void VToolNormal::Create(QSharedPointer &dialog, VMainGraphicsScene *scene, VDomDocument *doc, VContainer *data){ QString formula = dialog->getFormula(); qint64 firstPointId = dialog->getFirstPointId(); qint64 secondPointId = dialog->getSecondPointId(); QString typeLine = dialog->getTypeLine(); QString pointName = dialog->getPointName(); qint32 angle = dialog->getAngle(); Create(0, formula, firstPointId, secondPointId, typeLine, pointName, angle, 5, 10, scene, doc, data, Document::FullParse, Tool::FromGui); } void VToolNormal::Create(const qint64 _id, const QString &formula, const qint64 &firstPointId, const qint64 &secondPointId, const QString typeLine, const QString pointName, const qint32 angle, const qreal &mx, const qreal &my, VMainGraphicsScene *scene, VDomDocument *doc, VContainer *data, Document::Enum parse, Tool::Enum typeCreation){ VPointF firstPoint = data->GetPoint(firstPointId); VPointF secondPoint = data->GetPoint(secondPointId); Calculator cal(data); QString errorMsg; qreal result = cal.eval(formula, &errorMsg); if(errorMsg.isEmpty()){ QPointF fPoint = VToolNormal::FindPoint(firstPoint.toQPointF(), secondPoint.toQPointF(), result*PrintDPI/25.4, angle); qint64 id = _id; if(typeCreation == Tool::FromGui){ id = data->AddPoint(VPointF(fPoint.x(), fPoint.y(), pointName, mx, my)); } else { data->UpdatePoint(id, VPointF(fPoint.x(), fPoint.y(), pointName, mx, my)); if(parse != Document::FullParse){ QMap* tools = doc->getTools(); VDataTool *tool = tools->value(id); tool->VDataTool::setData(data); tools->insert(id, tool); } } data->AddLine(firstPointId, id); VAbstractTool::AddRecord(id, Tools::NormalTool, doc); if(parse == Document::FullParse){ VToolNormal *point = new VToolNormal(doc, data, id, typeLine, formula, angle, firstPointId, secondPointId, typeCreation); scene->addItem(point); connect(point, &VToolNormal::ChoosedTool, scene, &VMainGraphicsScene::ChoosedItem); QMap* tools = doc->getTools(); tools->insert(id,point); } } } QPointF VToolNormal::FindPoint(const QPointF &firstPoint, const QPointF &secondPoint, const qreal &length, const qint32 &angle){ QLineF line(firstPoint, secondPoint); QLineF normal = line.normalVector(); normal.setAngle(normal.angle()+angle); normal.setLength(length); return normal.p2(); } void VToolNormal::FullUpdateFromFile(){ QDomElement domElement = doc->elementById(QString().setNum(id)); if(domElement.isElement()){ typeLine = domElement.attribute("typeLine", ""); formula = domElement.attribute("length", ""); basePointId = domElement.attribute("firstPoint", "").toLongLong(); secondPointId = domElement.attribute("secondPoint", "").toLongLong(); angle = domElement.attribute("angle", "").toInt(); } RefreshGeometry(); } void VToolNormal::FullUpdateFromGui(int result){ if(result == QDialog::Accepted){ QDomElement domElement = doc->elementById(QString().setNum(id)); if(domElement.isElement()){ domElement.setAttribute("name", dialogNormal->getPointName()); domElement.setAttribute("typeLine", dialogNormal->getTypeLine()); domElement.setAttribute("length", dialogNormal->getFormula()); domElement.setAttribute("angle", QString().setNum(dialogNormal->getAngle())); domElement.setAttribute("firstPoint", QString().setNum(dialogNormal->getFirstPointId())); domElement.setAttribute("secondPoint", QString().setNum(dialogNormal->getSecondPointId())); emit FullUpdateTree(); } } dialogNormal.clear(); } void VToolNormal::contextMenuEvent(QGraphicsSceneContextMenuEvent *event){ ContextMenu(dialogNormal, this, event); } void VToolNormal::AddToFile(){ VPointF point = VAbstractTool::data.GetPoint(id); QDomElement domElement = doc->createElement("point"); AddAttribute(domElement, "id", id); AddAttribute(domElement, "type", "normal"); AddAttribute(domElement, "name", point.name()); AddAttribute(domElement, "mx", point.mx()/PrintDPI*25.4); AddAttribute(domElement, "my", point.my()/PrintDPI*25.4); AddAttribute(domElement, "typeLine", typeLine); AddAttribute(domElement, "length", formula); AddAttribute(domElement, "angle", angle); AddAttribute(domElement, "firstPoint", basePointId); AddAttribute(domElement, "secondPoint", secondPointId); AddToCalculation(domElement); }