2013-10-18 20:20:54 +02:00
|
|
|
#include "vmodelingtriangle.h"
|
|
|
|
#include "../drawTools/vtooltriangle.h"
|
|
|
|
|
2013-10-29 14:45:07 +01:00
|
|
|
const QString VModelingTriangle::ToolType = QStringLiteral("triangle");
|
|
|
|
|
|
|
|
VModelingTriangle::VModelingTriangle(VDomDocument *doc, VContainer *data, const qint64 &id, const qint64 &axisP1Id,
|
|
|
|
const qint64 &axisP2Id, const qint64 &firstPointId, const qint64 &secondPointId,
|
2013-10-18 20:20:54 +02:00
|
|
|
Tool::Sources typeCreation, QGraphicsItem *parent)
|
2013-10-29 14:45:07 +01:00
|
|
|
:VModelingPoint(doc, data, id, parent), axisP1Id(axisP1Id), axisP2Id(axisP2Id), firstPointId(firstPointId),
|
|
|
|
secondPointId(secondPointId), dialogTriangle(QSharedPointer<DialogTriangle>()) {
|
2013-10-18 20:20:54 +02:00
|
|
|
if(typeCreation == Tool::FromGui){
|
2013-10-29 14:45:07 +01:00
|
|
|
AddToFile();
|
2013-10-18 20:20:54 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void VModelingTriangle::setDialog(){
|
|
|
|
Q_ASSERT(!dialogTriangle.isNull());
|
|
|
|
VPointF p = VAbstractTool::data.GetPoint(id);
|
|
|
|
dialogTriangle->setAxisP1Id(axisP1Id, id);
|
|
|
|
dialogTriangle->setAxisP2Id(axisP2Id, id);
|
|
|
|
dialogTriangle->setFirstPointId(firstPointId, id);
|
|
|
|
dialogTriangle->setSecondPointId(secondPointId, id);
|
|
|
|
dialogTriangle->setPointName(p.name());
|
|
|
|
}
|
|
|
|
|
|
|
|
VModelingTriangle *VModelingTriangle::Create(QSharedPointer<DialogTriangle> &dialog, VDomDocument *doc,
|
|
|
|
VContainer *data){
|
|
|
|
qint64 axisP1Id = dialog->getAxisP1Id();
|
|
|
|
qint64 axisP2Id = dialog->getAxisP2Id();
|
|
|
|
qint64 firstPointId = dialog->getFirstPointId();
|
|
|
|
qint64 secondPointId = dialog->getSecondPointId();
|
|
|
|
QString pointName = dialog->getPointName();
|
2013-10-29 14:45:07 +01:00
|
|
|
return Create(0, pointName, axisP1Id, axisP2Id, firstPointId, secondPointId, 5, 10, doc, data, Document::FullParse,
|
|
|
|
Tool::FromGui);
|
2013-10-18 20:20:54 +02:00
|
|
|
}
|
|
|
|
|
2013-10-29 14:45:07 +01:00
|
|
|
VModelingTriangle *VModelingTriangle::Create(const qint64 _id, const QString &pointName, const qint64 &axisP1Id,
|
|
|
|
const qint64 &axisP2Id, const qint64 &firstPointId,
|
|
|
|
const qint64 &secondPointId, const qreal &mx, const qreal &my,
|
|
|
|
VDomDocument *doc, VContainer *data, const Document::Documents &parse,
|
2013-10-18 20:20:54 +02:00
|
|
|
Tool::Sources typeCreation){
|
|
|
|
VModelingTriangle *tool = 0;
|
|
|
|
VPointF axisP1 = data->GetPoint(axisP1Id);
|
|
|
|
VPointF axisP2 = data->GetPoint(axisP2Id);
|
|
|
|
VPointF firstPoint = data->GetPoint(firstPointId);
|
|
|
|
VPointF secondPoint = data->GetPoint(secondPointId);
|
|
|
|
|
|
|
|
QPointF point = VToolTriangle::FindPoint(axisP1.toQPointF(), axisP2.toQPointF(), firstPoint.toQPointF(),
|
|
|
|
secondPoint.toQPointF());
|
|
|
|
qint64 id = _id;
|
|
|
|
if(typeCreation == Tool::FromGui){
|
|
|
|
id = data->AddPoint(VPointF(point.x(), point.y(), pointName, mx, my));
|
|
|
|
} else {
|
|
|
|
data->UpdatePoint(id, VPointF(point.x(), point.y(), pointName, mx, my));
|
|
|
|
if(parse != Document::FullParse){
|
|
|
|
doc->UpdateToolData(id, data);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if(parse == Document::FullParse){
|
2013-10-29 14:45:07 +01:00
|
|
|
tool = new VModelingTriangle(doc, data, id, axisP1Id, axisP2Id, firstPointId, secondPointId, typeCreation);
|
2013-10-18 20:20:54 +02:00
|
|
|
doc->AddTool(id, tool);
|
|
|
|
doc->IncrementReferens(axisP1Id);
|
|
|
|
doc->IncrementReferens(axisP2Id);
|
|
|
|
doc->IncrementReferens(firstPointId);
|
|
|
|
doc->IncrementReferens(secondPointId);
|
|
|
|
}
|
|
|
|
return tool;
|
|
|
|
}
|
|
|
|
|
|
|
|
void VModelingTriangle::FullUpdateFromFile(){
|
|
|
|
QDomElement domElement = doc->elementById(QString().setNum(id));
|
|
|
|
if(domElement.isElement()){
|
2013-10-29 14:45:07 +01:00
|
|
|
axisP1Id = domElement.attribute(AttrAxisP1, "").toLongLong();
|
|
|
|
axisP2Id = domElement.attribute(AttrAxisP2, "").toLongLong();
|
|
|
|
firstPointId = domElement.attribute(AttrFirstPoint, "").toLongLong();
|
|
|
|
secondPointId = domElement.attribute(AttrSecondPoint, "").toLongLong();
|
2013-10-18 20:20:54 +02:00
|
|
|
}
|
|
|
|
VModelingPoint::RefreshPointGeometry(VModelingTool::data.GetPoint(id));
|
|
|
|
}
|
|
|
|
|
|
|
|
void VModelingTriangle::FullUpdateFromGui(int result){
|
|
|
|
if(result == QDialog::Accepted){
|
|
|
|
QDomElement domElement = doc->elementById(QString().setNum(id));
|
|
|
|
if(domElement.isElement()){
|
2013-10-29 14:45:07 +01:00
|
|
|
domElement.setAttribute(AttrName, dialogTriangle->getPointName());
|
|
|
|
domElement.setAttribute(AttrAxisP1, QString().setNum(dialogTriangle->getAxisP1Id()));
|
|
|
|
domElement.setAttribute(AttrAxisP2, QString().setNum(dialogTriangle->getAxisP2Id()));
|
|
|
|
domElement.setAttribute(AttrFirstPoint, QString().setNum(dialogTriangle->getFirstPointId()));
|
|
|
|
domElement.setAttribute(AttrSecondPoint, QString().setNum(dialogTriangle->getSecondPointId()));
|
2013-10-18 20:20:54 +02:00
|
|
|
emit FullUpdateTree();
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
dialogTriangle.clear();
|
|
|
|
}
|
|
|
|
|
|
|
|
void VModelingTriangle::RemoveReferens(){
|
|
|
|
doc->DecrementReferens(axisP1Id);
|
|
|
|
doc->DecrementReferens(axisP2Id);
|
|
|
|
doc->DecrementReferens(firstPointId);
|
|
|
|
doc->DecrementReferens(secondPointId);
|
|
|
|
}
|
|
|
|
|
|
|
|
void VModelingTriangle::contextMenuEvent(QGraphicsSceneContextMenuEvent *event){
|
|
|
|
ContextMenu(dialogTriangle, this, event);
|
|
|
|
}
|
|
|
|
|
|
|
|
void VModelingTriangle::AddToFile(){
|
|
|
|
VPointF point = VAbstractTool::data.GetPoint(id);
|
2013-10-29 14:45:07 +01:00
|
|
|
QDomElement domElement = doc->createElement(TagName);
|
2013-10-18 20:20:54 +02:00
|
|
|
|
2013-10-29 14:45:07 +01:00
|
|
|
AddAttribute(domElement, AttrId, id);
|
|
|
|
AddAttribute(domElement, AttrType, ToolType);
|
|
|
|
AddAttribute(domElement, AttrName, point.name());
|
|
|
|
AddAttribute(domElement, AttrMx, toMM(point.mx()));
|
|
|
|
AddAttribute(domElement, AttrMy, toMM(point.my()));
|
2013-10-18 20:20:54 +02:00
|
|
|
|
2013-10-29 14:45:07 +01:00
|
|
|
AddAttribute(domElement, AttrAxisP1, axisP1Id);
|
|
|
|
AddAttribute(domElement, AttrAxisP2, axisP2Id);
|
|
|
|
AddAttribute(domElement, AttrFirstPoint, firstPointId);
|
|
|
|
AddAttribute(domElement, AttrSecondPoint, secondPointId);
|
2013-10-18 20:20:54 +02:00
|
|
|
|
|
|
|
AddToModeling(domElement);
|
|
|
|
}
|