2013-09-10 14:29:06 +02:00
|
|
|
#include "vmodelinglineintersect.h"
|
2013-07-31 13:34:39 +02:00
|
|
|
#include <QMenu>
|
|
|
|
|
2013-09-10 14:29:06 +02:00
|
|
|
VModelingLineIntersect::VModelingLineIntersect(VDomDocument *doc, VContainer *data, const qint64 &id,
|
2013-07-31 13:34:39 +02:00
|
|
|
const qint64 &p1Line1, const qint64 &p2Line1, const qint64 &p1Line2,
|
|
|
|
const qint64 &p2Line2, Tool::Enum typeCreation, QGraphicsItem *parent):
|
2013-09-10 14:29:06 +02:00
|
|
|
VModelingPoint(doc, data, id, parent), p1Line1(p1Line1), p2Line1(p2Line1), p1Line2(p1Line2),
|
2013-08-28 10:55:11 +02:00
|
|
|
p2Line2(p2Line2), dialogLineIntersect(QSharedPointer<DialogLineIntersect>()){
|
2013-07-31 13:34:39 +02:00
|
|
|
if(typeCreation == Tool::FromGui){
|
|
|
|
AddToFile();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-09-10 14:29:06 +02:00
|
|
|
void VModelingLineIntersect::setDialog(){
|
2013-08-13 18:48:36 +02:00
|
|
|
Q_ASSERT(!dialogLineIntersect.isNull());
|
|
|
|
if(!dialogLineIntersect.isNull()){
|
2013-09-10 14:29:06 +02:00
|
|
|
VPointF p = VAbstractTool::data.GetModelingPoint(id);
|
2013-08-13 18:48:36 +02:00
|
|
|
dialogLineIntersect->setP1Line1(p1Line1);
|
|
|
|
dialogLineIntersect->setP2Line1(p2Line1);
|
|
|
|
dialogLineIntersect->setP1Line2(p1Line2);
|
|
|
|
dialogLineIntersect->setP2Line2(p2Line2);
|
|
|
|
dialogLineIntersect->setPointName(p.name());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-09-10 14:29:06 +02:00
|
|
|
VModelingLineIntersect *VModelingLineIntersect::Create(QSharedPointer<DialogLineIntersect> &dialog,
|
|
|
|
VDomDocument *doc, VContainer *data){
|
2013-08-13 18:48:36 +02:00
|
|
|
qint64 p1Line1Id = dialog->getP1Line1();
|
|
|
|
qint64 p2Line1Id = dialog->getP2Line1();
|
|
|
|
qint64 p1Line2Id = dialog->getP1Line2();
|
|
|
|
qint64 p2Line2Id = dialog->getP2Line2();
|
|
|
|
QString pointName = dialog->getPointName();
|
2013-09-10 14:29:06 +02:00
|
|
|
return Create(0, p1Line1Id, p2Line1Id, p1Line2Id, p2Line2Id, pointName, 5, 10, doc, data,
|
|
|
|
Document::FullParse, Tool::FromGui);
|
2013-08-13 18:48:36 +02:00
|
|
|
}
|
|
|
|
|
2013-09-10 14:29:06 +02:00
|
|
|
VModelingLineIntersect *VModelingLineIntersect::Create(const qint64 _id, const qint64 &p1Line1Id,
|
|
|
|
const qint64 &p2Line1Id, const qint64 &p1Line2Id,
|
|
|
|
const qint64 &p2Line2Id, const QString &pointName,
|
|
|
|
const qreal &mx, const qreal &my, VDomDocument *doc,
|
|
|
|
VContainer *data, Document::Enum parse,
|
|
|
|
Tool::Enum typeCreation){
|
|
|
|
VModelingLineIntersect *point = 0;
|
|
|
|
VPointF p1Line1 = data->GetModelingPoint(p1Line1Id);
|
|
|
|
VPointF p2Line1 = data->GetModelingPoint(p2Line1Id);
|
|
|
|
VPointF p1Line2 = data->GetModelingPoint(p1Line2Id);
|
|
|
|
VPointF p2Line2 = data->GetModelingPoint(p2Line2Id);
|
2013-08-13 18:48:36 +02:00
|
|
|
|
|
|
|
QLineF line1(p1Line1.toQPointF(), p2Line1.toQPointF());
|
|
|
|
QLineF line2(p1Line2.toQPointF(), p2Line2.toQPointF());
|
|
|
|
QPointF fPoint;
|
|
|
|
QLineF::IntersectType intersect = line1.intersect(line2, &fPoint);
|
|
|
|
if(intersect == QLineF::UnboundedIntersection || intersect == QLineF::BoundedIntersection){
|
|
|
|
qint64 id = _id;
|
|
|
|
if(typeCreation == Tool::FromGui){
|
2013-09-10 14:29:06 +02:00
|
|
|
id = data->AddModelingPoint(VPointF(fPoint.x(), fPoint.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(fPoint.x(), fPoint.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(p1Line1Id, id, Draw::Modeling);
|
|
|
|
data->AddLine(id, p2Line1Id, Draw::Modeling);
|
|
|
|
data->AddLine(p1Line2Id, id, Draw::Modeling);
|
|
|
|
data->AddLine(id, p2Line2Id, Draw::Modeling);
|
2013-08-13 18:48:36 +02:00
|
|
|
if(parse == Document::FullParse){
|
2013-09-10 14:29:06 +02:00
|
|
|
point = new VModelingLineIntersect(doc, data, id, p1Line1Id, p2Line1Id, p1Line2Id, p2Line2Id,
|
|
|
|
typeCreation);
|
2013-08-13 18:48:36 +02:00
|
|
|
QMap<qint64, VDataTool*>* tools = doc->getTools();
|
|
|
|
tools->insert(id,point);
|
|
|
|
}
|
|
|
|
}
|
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 VModelingLineIntersect::FullUpdateFromFile(){
|
2013-07-31 13:34:39 +02:00
|
|
|
QDomElement domElement = doc->elementById(QString().setNum(id));
|
|
|
|
if(domElement.isElement()){
|
|
|
|
p1Line1 = domElement.attribute("p1Line1", "").toLongLong();
|
|
|
|
p2Line1 = domElement.attribute("p2Line1", "").toLongLong();
|
|
|
|
p1Line2 = domElement.attribute("p1Line2", "").toLongLong();
|
|
|
|
p2Line2 = domElement.attribute("p2Line2", "").toLongLong();
|
|
|
|
}
|
2013-09-10 14:29:06 +02:00
|
|
|
RefreshPointGeometry(VAbstractTool::data.GetModelingPoint(id));
|
2013-07-31 13:34:39 +02:00
|
|
|
}
|
|
|
|
|
2013-09-10 14:29:06 +02:00
|
|
|
void VModelingLineIntersect::FullUpdateFromGui(int result){
|
2013-07-31 13:34:39 +02:00
|
|
|
if(result == QDialog::Accepted){
|
|
|
|
QDomElement domElement = doc->elementById(QString().setNum(id));
|
|
|
|
if(domElement.isElement()){
|
|
|
|
domElement.setAttribute("name", dialogLineIntersect->getPointName());
|
|
|
|
domElement.setAttribute("p1Line1", QString().setNum(dialogLineIntersect->getP1Line1()));
|
|
|
|
domElement.setAttribute("p2Line1", QString().setNum(dialogLineIntersect->getP2Line1()));
|
|
|
|
domElement.setAttribute("p1Line2", QString().setNum(dialogLineIntersect->getP1Line2()));
|
|
|
|
domElement.setAttribute("p2Line2", QString().setNum(dialogLineIntersect->getP2Line2()));
|
|
|
|
emit FullUpdateTree();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
dialogLineIntersect.clear();
|
|
|
|
}
|
|
|
|
|
2013-09-10 14:29:06 +02:00
|
|
|
void VModelingLineIntersect::contextMenuEvent(QGraphicsSceneContextMenuEvent *event){
|
2013-08-13 18:48:36 +02:00
|
|
|
ContextMenu(dialogLineIntersect, this, event);
|
2013-07-31 13:34:39 +02:00
|
|
|
}
|
|
|
|
|
2013-09-10 14:29:06 +02:00
|
|
|
void VModelingLineIntersect::AddToFile(){
|
|
|
|
VPointF point = VAbstractTool::data.GetModelingPoint(id);
|
2013-07-31 13:34:39 +02:00
|
|
|
QDomElement domElement = doc->createElement("point");
|
|
|
|
|
|
|
|
AddAttribute(domElement, "id", id);
|
|
|
|
AddAttribute(domElement, "type", "lineIntersect");
|
|
|
|
AddAttribute(domElement, "name", point.name());
|
|
|
|
AddAttribute(domElement, "mx", point.mx()/PrintDPI*25.4);
|
|
|
|
AddAttribute(domElement, "my", point.my()/PrintDPI*25.4);
|
|
|
|
|
|
|
|
AddAttribute(domElement, "p1Line1", p1Line1);
|
|
|
|
AddAttribute(domElement, "p2Line1", p2Line1);
|
|
|
|
AddAttribute(domElement, "p1Line2", p1Line2);
|
|
|
|
AddAttribute(domElement, "p2Line2", p2Line2);
|
|
|
|
|
2013-09-10 14:29:06 +02:00
|
|
|
AddToModeling(domElement);
|
2013-07-31 13:34:39 +02:00
|
|
|
}
|