valentina/tools/vtoolline.cpp

133 lines
4.8 KiB
C++
Raw Normal View History

2013-08-20 12:26:02 +02:00
#pragma GCC diagnostic push
#pragma GCC diagnostic ignored "-Weffc++"
#pragma GCC diagnostic ignored "-Wconversion"
#pragma GCC diagnostic ignored "-Wsign-conversion"
#pragma GCC diagnostic ignored "-Wctor-dtor-privacy"
2013-07-25 20:39:51 +02:00
#include "vtoolline.h"
#include <QMenu>
#include <QDebug>
2013-08-20 12:26:02 +02:00
#pragma GCC diagnostic pop
2013-07-25 20:39:51 +02:00
VToolLine::VToolLine(VDomDocument *doc, VContainer *data, qint64 id, qint64 firstPoint, qint64 secondPoint,
2013-07-28 00:18:06 +02:00
Tool::Enum typeCreation, QGraphicsItem *parent):VAbstractTool(doc, data, id),
2013-08-20 12:26:02 +02:00
QGraphicsLineItem(parent), firstPoint(firstPoint), secondPoint(secondPoint),
dialogLine(QSharedPointer<DialogLine>()){
2013-07-25 20:39:51 +02:00
//Лінія
VPointF first = data->GetPoint(firstPoint);
VPointF second = data->GetPoint(secondPoint);
this->setLine(QLineF(first.toQPointF(), second.toQPointF()));
this->setFlag(QGraphicsItem::ItemStacksBehindParent, true);
this->setFlag(QGraphicsItem::ItemIsSelectable, true);
2013-07-28 00:18:06 +02:00
this->setAcceptHoverEvents(true);
2013-07-25 20:39:51 +02:00
if(typeCreation == Tool::FromGui){
AddToFile();
}
}
void VToolLine::setDialog(){
dialogLine->setFirstPoint(firstPoint);
dialogLine->setSecondPoint(secondPoint);
}
void VToolLine::Create(QSharedPointer<DialogLine> &dialog, VMainGraphicsScene *scene, VDomDocument *doc,
VContainer *data){
qint64 firstPoint = dialog->getFirstPoint();
qint64 secondPoint = dialog->getSecondPoint();
Create(0, firstPoint, secondPoint, scene, doc, data, Document::FullParse, Tool::FromGui);
}
void VToolLine::Create(const qint64 &id, const qint64 &firstPoint, const qint64 &secondPoint,
VMainGraphicsScene *scene, VDomDocument *doc, VContainer *data, Document::Enum parse,
Tool::Enum typeCreation){
data->AddLine(firstPoint, secondPoint);
if(parse != Document::FullParse){
QMap<qint64, VDataTool*>* tools = doc->getTools();
VDataTool *tool = tools->value(id);
tool->VDataTool::setData(data);
tools->insert(id, tool);
}
2013-08-15 22:39:00 +02:00
VAbstractTool::AddRecord(id, Tools::LineTool, doc);
if(parse == Document::FullParse){
qint64 id = data->getNextId();
VToolLine *line = new VToolLine(doc, data, id, firstPoint, secondPoint, typeCreation);
scene->addItem(line);
connect(line, &VToolLine::ChoosedTool, scene, &VMainGraphicsScene::ChoosedItem);
2013-08-20 12:26:02 +02:00
connect(line, &VToolLine::RemoveTool, scene, &VMainGraphicsScene::RemoveTool);
QMap<qint64, VDataTool*>* tools = doc->getTools();
tools->insert(id,line);
}
}
2013-07-25 20:39:51 +02:00
void VToolLine::FullUpdateFromFile(){
QDomElement domElement = doc->elementById(QString().setNum(id));
if(domElement.isElement()){
firstPoint = domElement.attribute("firstPoint", "").toLongLong();
secondPoint = domElement.attribute("secondPoint", "").toLongLong();
}
VPointF first = VAbstractTool::data.GetPoint(firstPoint);
VPointF second = VAbstractTool::data.GetPoint(secondPoint);
2013-07-25 20:39:51 +02:00
this->setLine(QLineF(first.toQPointF(), second.toQPointF()));
}
2013-07-28 00:18:06 +02:00
void VToolLine::FullUpdateFromGui(int result){
2013-07-25 20:39: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("firstPoint", QString().setNum(dialogLine->getFirstPoint()));
domElement.setAttribute("secondPoint", QString().setNum(dialogLine->getSecondPoint()));
emit FullUpdateTree();
}
2013-07-25 20:39:51 +02:00
}
dialogLine.clear();
}
2013-08-15 22:39:00 +02:00
void VToolLine::ShowTool(qint64 id, Qt::GlobalColor color, bool enable){
if(id == this->id){
if(enable == false){
this->setPen(QPen(baseColor, widthHairLine));
currentColor = baseColor;
} else {
this->setPen(QPen(color, widthHairLine));
currentColor = color;
}
}
}
2013-07-25 20:39:51 +02:00
void VToolLine::ChangedActivDraw(const QString newName){
if(nameActivDraw == newName){
this->setPen(QPen(Qt::black, widthHairLine));
2013-07-28 00:18:06 +02:00
this->setAcceptHoverEvents (true);
2013-07-25 20:39:51 +02:00
VAbstractTool::ChangedActivDraw(newName);
} else {
this->setPen(QPen(Qt::gray, widthHairLine));
2013-07-28 00:18:06 +02:00
this->setAcceptHoverEvents (false);
2013-07-25 20:39:51 +02:00
VAbstractTool::ChangedActivDraw(newName);
}
}
void VToolLine::contextMenuEvent(QGraphicsSceneContextMenuEvent *event){
ContextMenu(dialogLine, this, event);
2013-07-25 20:39:51 +02:00
}
void VToolLine::AddToFile(){
QDomElement domElement = doc->createElement("line");
AddAttribute(domElement, "id", id);
AddAttribute(domElement, "firstPoint", firstPoint);
AddAttribute(domElement, "secondPoint", secondPoint);
2013-07-29 14:55:40 +02:00
AddToCalculation(domElement);
2013-07-25 20:39:51 +02:00
}
2013-07-28 00:18:06 +02:00
void VToolLine::hoverMoveEvent(QGraphicsSceneHoverEvent *event){
Q_UNUSED(event);
2013-08-15 22:39:00 +02:00
this->setPen(QPen(currentColor, widthMainLine));
2013-07-28 00:18:06 +02:00
}
2013-07-25 20:39:51 +02:00
2013-07-28 00:18:06 +02:00
void VToolLine::hoverLeaveEvent(QGraphicsSceneHoverEvent *event){
Q_UNUSED(event);
2013-08-15 22:39:00 +02:00
this->setPen(QPen(currentColor, widthHairLine));
2013-07-25 20:39:51 +02:00
}
2013-07-28 00:18:06 +02:00