2013-09-10 14:29:06 +02:00
|
|
|
#include "vmodelingendline.h"
|
2013-07-25 14:00:51 +02:00
|
|
|
#include <QDebug>
|
|
|
|
#include <QMenu>
|
2013-09-10 14:29:06 +02:00
|
|
|
#include "widgets/vmaingraphicsscene.h"
|
2013-07-25 14:00:51 +02:00
|
|
|
|
2013-09-10 14:29:06 +02:00
|
|
|
VModelingEndLine::VModelingEndLine(VDomDocument *doc, VContainer *data, const qint64 &id, const QString &typeLine,
|
2013-09-12 16:18:31 +02:00
|
|
|
const QString &formula, const qreal &angle, const qint64 &basePointId,
|
2013-07-31 13:34:39 +02:00
|
|
|
Tool::Enum typeCreation, QGraphicsItem *parent):
|
2013-09-10 14:29:06 +02:00
|
|
|
VModelingLinePoint(doc, data, id, typeLine, formula, basePointId, angle, parent),
|
2013-08-20 12:26:02 +02:00
|
|
|
dialogEndLine(QSharedPointer<DialogEndLine>()){
|
2013-07-25 14:00:51 +02:00
|
|
|
|
|
|
|
if(typeCreation == Tool::FromGui){
|
|
|
|
AddToFile();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-09-10 14:29:06 +02:00
|
|
|
void VModelingEndLine::setDialog(){
|
2013-08-13 18:48:36 +02:00
|
|
|
Q_ASSERT(!dialogEndLine.isNull());
|
|
|
|
if(!dialogEndLine.isNull()){
|
2013-09-10 14:29:06 +02:00
|
|
|
VPointF p = VAbstractTool::data.GetModelingPoint(id);
|
2013-08-13 18:48:36 +02:00
|
|
|
dialogEndLine->setTypeLine(typeLine);
|
|
|
|
dialogEndLine->setFormula(formula);
|
|
|
|
dialogEndLine->setAngle(angle);
|
|
|
|
dialogEndLine->setBasePointId(basePointId, id);
|
|
|
|
dialogEndLine->setPointName(p.name());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-09-10 14:29:06 +02:00
|
|
|
VModelingEndLine *VModelingEndLine::Create(QSharedPointer<DialogEndLine> &dialog, VDomDocument *doc,
|
|
|
|
VContainer *data){
|
2013-08-13 18:48:36 +02:00
|
|
|
QString pointName = dialog->getPointName();
|
|
|
|
QString typeLine = dialog->getTypeLine();
|
|
|
|
QString formula = dialog->getFormula();
|
2013-09-12 16:18:31 +02:00
|
|
|
qreal angle = dialog->getAngle();
|
2013-08-13 18:48:36 +02:00
|
|
|
qint64 basePointId = dialog->getBasePointId();
|
2013-09-10 14:29:06 +02:00
|
|
|
return Create(0, pointName, typeLine, formula, angle, basePointId, 5, 10, doc, data, Document::FullParse,
|
|
|
|
Tool::FromGui);
|
2013-08-13 18:48:36 +02:00
|
|
|
}
|
|
|
|
|
2013-09-10 14:29:06 +02:00
|
|
|
VModelingEndLine *VModelingEndLine::Create(const qint64 _id, const QString &pointName,
|
|
|
|
const QString &typeLine, const QString &formula,
|
2013-09-12 16:18:31 +02:00
|
|
|
const qreal &angle, const qint64 &basePointId, const qreal &mx,
|
2013-09-10 14:29:06 +02:00
|
|
|
const qreal &my, VDomDocument *doc, VContainer *data,
|
|
|
|
Document::Enum parse, Tool::Enum typeCreation){
|
|
|
|
VModelingEndLine *point = 0;
|
|
|
|
VPointF basePoint = data->GetModelingPoint(basePointId);
|
2013-08-13 18:48:36 +02:00
|
|
|
QLineF line = QLineF(basePoint.toQPointF(), QPointF(basePoint.x()+100, basePoint.y()));
|
|
|
|
Calculator cal(data);
|
|
|
|
QString errorMsg;
|
|
|
|
qreal result = cal.eval(formula, &errorMsg);
|
|
|
|
if(errorMsg.isEmpty()){
|
|
|
|
line.setLength(result*PrintDPI/25.4);
|
|
|
|
line.setAngle(angle);
|
|
|
|
qint64 id = _id;
|
|
|
|
if(typeCreation == Tool::FromGui){
|
2013-09-10 14:29:06 +02:00
|
|
|
id = data->AddModelingPoint(VPointF(line.p2().x(), line.p2().y(), pointName, mx, my));
|
2013-08-13 18:48:36 +02:00
|
|
|
} else {
|
2013-09-10 14:29:06 +02:00
|
|
|
data->UpdateModelingPoint(id, VPointF(line.p2().x(), line.p2().y(), pointName, mx, my));
|
2013-08-13 18:48:36 +02:00
|
|
|
if(parse != Document::FullParse){
|
|
|
|
QMap<qint64, VDataTool*>* tools = doc->getTools();
|
|
|
|
VDataTool *tool = tools->value(id);
|
2013-08-28 10:55:11 +02:00
|
|
|
if(tool != 0){
|
|
|
|
tool->VDataTool::setData(data);
|
2013-09-10 14:29:06 +02:00
|
|
|
data->IncrementReferens(id, Scene::Point, Draw::Modeling);
|
2013-08-28 10:55:11 +02:00
|
|
|
}
|
2013-08-13 18:48:36 +02:00
|
|
|
}
|
|
|
|
}
|
2013-09-10 14:29:06 +02:00
|
|
|
data->AddLine(basePointId, id, Draw::Modeling);
|
|
|
|
data->IncrementReferens(basePointId, Scene::Point, Draw::Modeling);
|
2013-08-13 18:48:36 +02:00
|
|
|
if(parse == Document::FullParse){
|
2013-09-10 14:29:06 +02:00
|
|
|
point = new VModelingEndLine(doc, data, id, typeLine, formula, angle, basePointId, typeCreation);
|
2013-08-13 18:48:36 +02:00
|
|
|
QMap<qint64, VDataTool*>* tools = doc->getTools();
|
2013-09-10 14:29:06 +02:00
|
|
|
tools->insert(id,point);
|
2013-08-13 18:48:36 +02:00
|
|
|
}
|
|
|
|
}
|
2013-09-10 14:29:06 +02:00
|
|
|
return point;
|
2013-08-13 18:48:36 +02:00
|
|
|
}
|
|
|
|
|
2013-09-10 14:29:06 +02:00
|
|
|
void VModelingEndLine::FullUpdateFromFile(){
|
2013-07-25 14:00:51 +02:00
|
|
|
QDomElement domElement = doc->elementById(QString().setNum(id));
|
|
|
|
if(domElement.isElement()){
|
|
|
|
typeLine = domElement.attribute("typeLine", "");
|
|
|
|
formula = domElement.attribute("length", "");
|
|
|
|
basePointId = domElement.attribute("basePoint", "").toLongLong();
|
|
|
|
angle = domElement.attribute("angle", "").toInt();
|
|
|
|
}
|
2013-07-31 13:34:39 +02:00
|
|
|
RefreshGeometry();
|
2013-07-25 14:00:51 +02:00
|
|
|
}
|
|
|
|
|
2013-09-10 14:29:06 +02:00
|
|
|
void VModelingEndLine::contextMenuEvent(QGraphicsSceneContextMenuEvent *event){
|
2013-08-13 18:48:36 +02:00
|
|
|
ContextMenu(dialogEndLine, this, event);
|
2013-07-25 14:00:51 +02:00
|
|
|
}
|
|
|
|
|
2013-09-10 14:29:06 +02:00
|
|
|
void VModelingEndLine::FullUpdateFromGui(int result){
|
2013-07-25 14:00:51 +02:00
|
|
|
if(result == QDialog::Accepted){
|
2013-07-28 00:18:06 +02:00
|
|
|
QDomElement domElement = doc->elementById(QString().setNum(id));
|
|
|
|
if(domElement.isElement()){
|
|
|
|
domElement.setAttribute("name", dialogEndLine->getPointName());
|
|
|
|
domElement.setAttribute("typeLine", dialogEndLine->getTypeLine());
|
|
|
|
domElement.setAttribute("length", dialogEndLine->getFormula());
|
|
|
|
domElement.setAttribute("angle", QString().setNum(dialogEndLine->getAngle()));
|
|
|
|
domElement.setAttribute("basePoint", QString().setNum(dialogEndLine->getBasePointId()));
|
|
|
|
emit FullUpdateTree();
|
2013-07-25 14:00:51 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
dialogEndLine.clear();
|
|
|
|
}
|
|
|
|
|
2013-09-10 14:29:06 +02:00
|
|
|
void VModelingEndLine::AddToFile(){
|
|
|
|
VPointF point = VAbstractTool::data.GetModelingPoint(id);
|
2013-07-25 14:00:51 +02:00
|
|
|
QDomElement domElement = doc->createElement("point");
|
|
|
|
|
|
|
|
AddAttribute(domElement, "id", id);
|
|
|
|
AddAttribute(domElement, "type", "endLine");
|
|
|
|
AddAttribute(domElement, "name", point.name());
|
2013-09-10 14:29:06 +02:00
|
|
|
AddAttribute(domElement, "mx", toMM(point.mx()));
|
|
|
|
AddAttribute(domElement, "my", toMM(point.my()));
|
2013-07-25 14:00:51 +02:00
|
|
|
|
|
|
|
AddAttribute(domElement, "typeLine", typeLine);
|
|
|
|
AddAttribute(domElement, "length", formula);
|
|
|
|
AddAttribute(domElement, "angle", angle);
|
|
|
|
AddAttribute(domElement, "basePoint", basePointId);
|
|
|
|
|
2013-09-10 14:29:06 +02:00
|
|
|
AddToModeling(domElement);
|
2013-07-25 14:00:51 +02:00
|
|
|
}
|