2013-08-13 18:48:36 +02:00
|
|
|
#pragma GCC diagnostic ignored "-Weffc++"
|
2013-07-30 20:46:40 +02:00
|
|
|
#include "vtoolbisector.h"
|
|
|
|
#include <QMenu>
|
2013-08-13 18:48:36 +02:00
|
|
|
#pragma GCC diagnostic warning "-Weffc++"
|
2013-07-30 20:46:40 +02:00
|
|
|
|
|
|
|
VToolBisector::VToolBisector(VDomDocument *doc, VContainer *data, const qint64 &id, const QString &typeLine,
|
|
|
|
const QString &formula, const qint64 &firstPointId, const qint64 &secondPointId,
|
|
|
|
const qint64 &thirdPointId, Tool::Enum typeCreation, QGraphicsItem *parent):
|
2013-08-20 12:26:02 +02:00
|
|
|
VToolLinePoint(doc, data, id, typeLine, formula, secondPointId, 0, parent), firstPointId(0),
|
|
|
|
thirdPointId(0), dialogBisector(QSharedPointer<DialogBisector>()){
|
2013-07-30 20:46:40 +02:00
|
|
|
this->firstPointId = firstPointId;
|
|
|
|
this->thirdPointId = thirdPointId;
|
|
|
|
|
|
|
|
if(typeCreation == Tool::FromGui){
|
|
|
|
AddToFile();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
QPointF VToolBisector::FindPoint(const QPointF &firstPoint, const QPointF &secondPoint,
|
|
|
|
const QPointF &thirdPoint, const qreal &length){
|
|
|
|
QLineF line1(secondPoint, firstPoint);
|
|
|
|
QLineF line2(secondPoint, thirdPoint);
|
|
|
|
qreal angle = line1.angleTo(line2);
|
|
|
|
if(angle>180){
|
|
|
|
angle = 360 - angle;
|
|
|
|
}
|
|
|
|
line1.setAngle(line1.angle()-angle/2);
|
|
|
|
line1.setLength(length);
|
|
|
|
return line1.p2();
|
|
|
|
}
|
|
|
|
|
2013-08-13 18:48:36 +02:00
|
|
|
void VToolBisector::setDialog(){
|
|
|
|
Q_ASSERT(!dialogBisector.isNull());
|
|
|
|
if(!dialogBisector.isNull()){
|
|
|
|
VPointF p = VAbstractTool::data.GetPoint(id);
|
|
|
|
dialogBisector->setTypeLine(typeLine);
|
|
|
|
dialogBisector->setFormula(formula);
|
|
|
|
dialogBisector->setFirstPointId(firstPointId, id);
|
|
|
|
dialogBisector->setSecondPointId(basePointId, id);
|
|
|
|
dialogBisector->setThirdPointId(thirdPointId, id);
|
|
|
|
dialogBisector->setPointName(p.name());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void VToolBisector::Create(QSharedPointer<DialogBisector> &dialog, VMainGraphicsScene *scene,
|
|
|
|
VDomDocument *doc, VContainer *data){
|
|
|
|
QString formula = dialog->getFormula();
|
|
|
|
qint64 firstPointId = dialog->getFirstPointId();
|
|
|
|
qint64 secondPointId = dialog->getSecondPointId();
|
|
|
|
qint64 thirdPointId = dialog->getThirdPointId();
|
|
|
|
QString typeLine = dialog->getTypeLine();
|
|
|
|
QString pointName = dialog->getPointName();
|
|
|
|
Create(0, formula, firstPointId, secondPointId, thirdPointId, typeLine, pointName, 5, 10, scene, doc, data,
|
|
|
|
Document::FullParse, Tool::FromGui);
|
|
|
|
}
|
|
|
|
|
|
|
|
void VToolBisector::Create(const qint64 _id, const QString &formula, const qint64 &firstPointId,
|
|
|
|
const qint64 &secondPointId, const qint64 &thirdPointId, const QString &typeLine,
|
|
|
|
const QString &pointName, 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);
|
|
|
|
VPointF thirdPoint = data->GetPoint(thirdPointId);
|
|
|
|
|
|
|
|
Calculator cal(data);
|
|
|
|
QString errorMsg;
|
|
|
|
qreal result = cal.eval(formula, &errorMsg);
|
|
|
|
if(errorMsg.isEmpty()){
|
|
|
|
QPointF fPoint = VToolBisector::FindPoint(firstPoint.toQPointF(), secondPoint.toQPointF(),
|
|
|
|
thirdPoint.toQPointF(), result*PrintDPI/25.4);
|
|
|
|
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<qint64, VDataTool*>* tools = doc->getTools();
|
|
|
|
VDataTool *tool = tools->value(id);
|
|
|
|
tool->VDataTool::setData(data);
|
|
|
|
tools->insert(id, tool);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
data->AddLine(firstPointId, id);
|
2013-08-15 22:39:00 +02:00
|
|
|
VAbstractTool::AddRecord(id, Tools::BisectorTool, doc);
|
2013-08-13 18:48:36 +02:00
|
|
|
if(parse == Document::FullParse){
|
|
|
|
VToolBisector *point = new VToolBisector(doc, data, id, typeLine, formula,
|
|
|
|
firstPointId, secondPointId, thirdPointId,
|
|
|
|
typeCreation);
|
|
|
|
scene->addItem(point);
|
|
|
|
connect(point, &VToolBisector::ChoosedTool, scene, &VMainGraphicsScene::ChoosedItem);
|
2013-08-20 12:26:02 +02:00
|
|
|
connect(point, &VToolBisector::RemoveTool, scene, &VMainGraphicsScene::RemoveTool);
|
2013-08-13 18:48:36 +02:00
|
|
|
QMap<qint64, VDataTool*>* tools = doc->getTools();
|
2013-08-15 22:39:00 +02:00
|
|
|
tools->insert(id,point);
|
2013-08-13 18:48:36 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-07-30 20:46:40 +02:00
|
|
|
void VToolBisector::FullUpdateFromFile(){
|
|
|
|
QDomElement domElement = doc->elementById(QString().setNum(id));
|
|
|
|
if(domElement.isElement()){
|
|
|
|
typeLine = domElement.attribute("typeLine", "");
|
|
|
|
formula = domElement.attribute("length", "");
|
|
|
|
firstPointId = domElement.attribute("firstPoint", "").toLongLong();
|
2013-07-31 13:34:39 +02:00
|
|
|
basePointId = domElement.attribute("secondPoint", "").toLongLong();
|
2013-07-30 20:46:40 +02:00
|
|
|
thirdPointId = domElement.attribute("thirdPoint", "").toLongLong();
|
|
|
|
}
|
2013-07-31 13:34:39 +02:00
|
|
|
RefreshGeometry();
|
2013-07-30 20:46:40 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void VToolBisector::FullUpdateFromGui(int result){
|
|
|
|
if(result == QDialog::Accepted){
|
|
|
|
QDomElement domElement = doc->elementById(QString().setNum(id));
|
|
|
|
if(domElement.isElement()){
|
|
|
|
domElement.setAttribute("name", dialogBisector->getPointName());
|
|
|
|
domElement.setAttribute("typeLine", dialogBisector->getTypeLine());
|
|
|
|
domElement.setAttribute("length", dialogBisector->getFormula());
|
|
|
|
domElement.setAttribute("firstPoint", QString().setNum(dialogBisector->getFirstPointId()));
|
|
|
|
domElement.setAttribute("secondPoint", QString().setNum(dialogBisector->getSecondPointId()));
|
|
|
|
domElement.setAttribute("thirdPoint", QString().setNum(dialogBisector->getThirdPointId()));
|
|
|
|
emit FullUpdateTree();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
dialogBisector.clear();
|
|
|
|
}
|
|
|
|
|
|
|
|
void VToolBisector::contextMenuEvent(QGraphicsSceneContextMenuEvent *event){
|
2013-08-13 18:48:36 +02:00
|
|
|
ContextMenu(dialogBisector, this, event);
|
2013-07-30 20:46:40 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void VToolBisector::AddToFile(){
|
2013-08-13 18:48:36 +02:00
|
|
|
VPointF point = VAbstractTool::data.GetPoint(id);
|
2013-07-30 20:46:40 +02:00
|
|
|
QDomElement domElement = doc->createElement("point");
|
|
|
|
|
|
|
|
AddAttribute(domElement, "id", id);
|
|
|
|
AddAttribute(domElement, "type", "bisector");
|
|
|
|
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, "firstPoint", firstPointId);
|
2013-07-31 13:34:39 +02:00
|
|
|
AddAttribute(domElement, "secondPoint", basePointId);
|
2013-07-30 20:46:40 +02:00
|
|
|
AddAttribute(domElement, "thirdPoint", thirdPointId);
|
|
|
|
|
|
|
|
AddToCalculation(domElement);
|
|
|
|
}
|