2013-11-15 13:41:26 +01:00
|
|
|
/************************************************************************
|
2013-09-18 21:16:19 +02:00
|
|
|
**
|
2013-11-15 13:50:05 +01:00
|
|
|
** @file vcontainer.cpp
|
2013-11-15 13:41:26 +01:00
|
|
|
** @author Roman Telezhinsky <dismine@gmail.com>
|
2013-11-15 13:50:05 +01:00
|
|
|
** @date November 15, 2013
|
2013-09-18 21:16:19 +02:00
|
|
|
**
|
2013-11-15 13:41:26 +01:00
|
|
|
** @brief
|
|
|
|
** @copyright
|
|
|
|
** This source code is part of the Valentine project, a pattern making
|
|
|
|
** program, whose allow create and modeling patterns of clothing.
|
|
|
|
** Copyright (C) 2013 Valentina project
|
|
|
|
** <https://bitbucket.org/dismine/valentina> All Rights Reserved.
|
2013-09-18 21:16:19 +02:00
|
|
|
**
|
2013-11-15 13:41:26 +01:00
|
|
|
** Valentina is free software: you can redistribute it and/or modify
|
2013-09-18 21:16:19 +02:00
|
|
|
** it under the terms of the GNU General Public License as published by
|
|
|
|
** the Free Software Foundation, either version 3 of the License, or
|
|
|
|
** (at your option) any later version.
|
|
|
|
**
|
2013-10-27 13:36:29 +01:00
|
|
|
** Valentina is distributed in the hope that it will be useful,
|
2013-09-18 21:16:19 +02:00
|
|
|
** but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
** GNU General Public License for more details.
|
|
|
|
**
|
|
|
|
** You should have received a copy of the GNU General Public License
|
|
|
|
** along with Valentina. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
**
|
2013-11-15 13:41:26 +01:00
|
|
|
*************************************************************************/
|
2013-09-18 21:16:19 +02:00
|
|
|
|
2013-07-13 12:51:31 +02:00
|
|
|
#include "vcontainer.h"
|
2013-07-17 13:38:11 +02:00
|
|
|
|
2013-11-21 13:05:26 +01:00
|
|
|
#include <QDebug>
|
2013-12-29 17:48:57 +01:00
|
|
|
#include <QtAlgorithms>
|
2013-11-21 13:05:26 +01:00
|
|
|
|
2013-08-15 22:39:00 +02:00
|
|
|
qint64 VContainer::_id = 0;
|
|
|
|
|
2013-11-04 21:35:15 +01:00
|
|
|
VContainer::VContainer()
|
2013-12-29 17:48:57 +01:00
|
|
|
:base(QHash<QString, qint32>()), gObjects(QHash<qint64, VGObject *>()),
|
2014-01-15 00:55:41 +01:00
|
|
|
standardTable(QHash<QString, VStandardTableRow>()), incrementTable(QHash<QString, VIncrementTableRow>()),
|
2013-12-31 09:44:54 +01:00
|
|
|
lengthLines(QHash<QString, qreal>()), lineAngles(QHash<QString, qreal>()), lengthSplines(QHash<QString, qreal>()),
|
2013-12-30 19:59:33 +01:00
|
|
|
lengthArcs(QHash<QString, qreal>()), details(QHash<qint64, VDetail>())
|
2013-11-04 21:35:15 +01:00
|
|
|
{
|
2013-07-17 13:38:11 +02:00
|
|
|
SetSize(500);
|
|
|
|
SetGrowth(1760);
|
2013-08-13 18:48:36 +02:00
|
|
|
CreateManTableIGroup ();
|
2013-07-13 12:51:31 +02:00
|
|
|
}
|
|
|
|
|
2013-11-04 21:35:15 +01:00
|
|
|
VContainer &VContainer::operator =(const VContainer &data)
|
|
|
|
{
|
2013-08-15 22:39:00 +02:00
|
|
|
setData(data);
|
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
|
2013-11-04 21:35:15 +01:00
|
|
|
VContainer::VContainer(const VContainer &data)
|
2013-12-29 17:48:57 +01:00
|
|
|
:base(QHash<QString, qint32>()), gObjects(QHash<qint64, VGObject *>()),
|
2014-01-15 00:55:41 +01:00
|
|
|
standardTable(QHash<QString, VStandardTableRow>()), incrementTable(QHash<QString, VIncrementTableRow>()),
|
2013-12-29 17:48:57 +01:00
|
|
|
lengthLines(QHash<QString, qreal>()), lineAngles(QHash<QString, qreal>()), lengthSplines(QHash<QString, qreal>()),
|
2013-12-30 19:59:33 +01:00
|
|
|
lengthArcs(QHash<QString, qreal>()), details(QHash<qint64, VDetail>())
|
2013-11-04 21:35:15 +01:00
|
|
|
{
|
2013-08-29 12:31:50 +02:00
|
|
|
setData(data);
|
|
|
|
}
|
|
|
|
|
2013-12-30 19:59:33 +01:00
|
|
|
VContainer::~VContainer()
|
|
|
|
{
|
|
|
|
qDeleteAll(gObjects);
|
|
|
|
gObjects.clear();
|
|
|
|
}
|
|
|
|
|
2013-11-04 21:35:15 +01:00
|
|
|
void VContainer::setData(const VContainer &data)
|
|
|
|
{
|
2013-08-15 22:39:00 +02:00
|
|
|
base = *data.DataBase();
|
2013-12-30 12:28:33 +01:00
|
|
|
|
|
|
|
qDeleteAll(gObjects);
|
|
|
|
gObjects.clear();
|
|
|
|
const QHash<qint64, VGObject*> *obj = data.DataGObjects();
|
2014-01-30 14:47:41 +01:00
|
|
|
Q_CHECK_PTR(obj);
|
2013-12-30 12:28:33 +01:00
|
|
|
QHashIterator<qint64, VGObject*> i(*obj);
|
|
|
|
while (i.hasNext())
|
|
|
|
{
|
|
|
|
i.next();
|
2013-12-31 09:44:54 +01:00
|
|
|
switch (i.value()->getType())
|
2013-12-30 12:28:33 +01:00
|
|
|
{
|
2013-12-31 09:44:54 +01:00
|
|
|
case (GObject::Arc):
|
2013-12-30 19:59:33 +01:00
|
|
|
{
|
2013-12-31 09:08:14 +01:00
|
|
|
CopyGObject<VArc>(data, i.key());
|
2013-12-30 12:28:33 +01:00
|
|
|
break;
|
2013-12-30 19:59:33 +01:00
|
|
|
}
|
2013-12-31 09:44:54 +01:00
|
|
|
case (GObject::Point):
|
2013-12-30 19:59:33 +01:00
|
|
|
{
|
2013-12-31 09:08:14 +01:00
|
|
|
CopyGObject<VPointF>(data, i.key());
|
2013-12-30 12:28:33 +01:00
|
|
|
break;
|
2013-12-30 19:59:33 +01:00
|
|
|
}
|
2013-12-31 09:44:54 +01:00
|
|
|
case (GObject::Spline):
|
2013-12-30 19:59:33 +01:00
|
|
|
{
|
2013-12-31 09:08:14 +01:00
|
|
|
CopyGObject<VSpline>(data, i.key());
|
2013-12-30 12:28:33 +01:00
|
|
|
break;
|
2013-12-30 19:59:33 +01:00
|
|
|
}
|
2013-12-31 09:44:54 +01:00
|
|
|
case (GObject::SplinePath):
|
2013-12-30 19:59:33 +01:00
|
|
|
{
|
2013-12-31 09:08:14 +01:00
|
|
|
CopyGObject<VSplinePath>(data, i.key());
|
2013-12-30 12:28:33 +01:00
|
|
|
break;
|
2013-12-30 19:59:33 +01:00
|
|
|
}
|
2013-12-31 09:08:14 +01:00
|
|
|
default:
|
|
|
|
qWarning()<<"Don't know how copy this type.";
|
2013-12-30 12:28:33 +01:00
|
|
|
}
|
|
|
|
}
|
2014-01-15 00:55:41 +01:00
|
|
|
standardTable = *data.DataStandardTable();
|
2013-08-15 22:39:00 +02:00
|
|
|
incrementTable = *data.DataIncrementTable();
|
|
|
|
lengthLines = *data.DataLengthLines();
|
2013-10-09 20:11:25 +02:00
|
|
|
lineAngles = *data.DataLineAngles();
|
2013-08-15 22:39:00 +02:00
|
|
|
lengthSplines = *data.DataLengthSplines();
|
|
|
|
lengthArcs = *data.DataLengthArcs();
|
2013-08-28 10:55:11 +02:00
|
|
|
details = *data.DataDetails();
|
2013-08-15 22:39:00 +02:00
|
|
|
}
|
|
|
|
|
2013-12-29 17:48:57 +01:00
|
|
|
const VGObject *VContainer::GetGObject(qint64 id)const
|
2013-11-15 18:38:29 +01:00
|
|
|
{
|
2013-12-29 17:48:57 +01:00
|
|
|
return GetObject(gObjects, id);
|
2013-11-15 18:38:29 +01:00
|
|
|
}
|
|
|
|
|
2013-08-13 18:48:36 +02:00
|
|
|
template <typename key, typename val>
|
2013-12-30 12:28:33 +01:00
|
|
|
const val VContainer::GetObject(const QHash<key, val> &obj, key id) const
|
2013-11-04 21:35:15 +01:00
|
|
|
{
|
|
|
|
if (obj.contains(id))
|
|
|
|
{
|
2013-08-13 18:48:36 +02:00
|
|
|
return obj.value(id);
|
2013-11-04 21:35:15 +01:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2013-09-23 14:08:06 +02:00
|
|
|
throw VExceptionBadId(tr("Can't find object"), id);
|
2013-07-13 12:51:31 +02:00
|
|
|
}
|
2013-08-13 18:48:36 +02:00
|
|
|
}
|
|
|
|
|
2013-12-29 17:48:57 +01:00
|
|
|
template <typename key, typename val>
|
|
|
|
val VContainer::GetVariable(const QHash<key, val> &obj, key id) const
|
|
|
|
{
|
|
|
|
if (obj.contains(id))
|
|
|
|
{
|
|
|
|
return obj.value(id);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
throw VExceptionBadId(tr("Can't find object"), id);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-01-15 00:55:41 +01:00
|
|
|
const VStandardTableRow VContainer::GetStandardTableCell(const QString &name) const
|
2013-11-04 21:35:15 +01:00
|
|
|
{
|
|
|
|
Q_ASSERT(name.isEmpty()==false);
|
2014-01-15 00:55:41 +01:00
|
|
|
return GetVariable(standardTable, name);
|
2013-07-17 13:38:11 +02:00
|
|
|
}
|
|
|
|
|
2013-12-30 19:59:33 +01:00
|
|
|
const VIncrementTableRow VContainer::GetIncrementTableRow(const QString& name) const
|
2013-11-04 21:35:15 +01:00
|
|
|
{
|
|
|
|
Q_ASSERT(name.isEmpty()==false);
|
2013-12-30 19:59:33 +01:00
|
|
|
return GetVariable(incrementTable, name);
|
2013-07-17 13:38:11 +02:00
|
|
|
}
|
|
|
|
|
2013-11-04 21:35:15 +01:00
|
|
|
qreal VContainer::GetLine(const QString &name) const
|
|
|
|
{
|
|
|
|
Q_ASSERT(name.isEmpty()==false);
|
2013-12-29 17:48:57 +01:00
|
|
|
return GetVariable(lengthLines, name);
|
2013-08-13 18:48:36 +02:00
|
|
|
}
|
|
|
|
|
2013-11-04 21:35:15 +01:00
|
|
|
qreal VContainer::GetLengthArc(const QString &name) const
|
|
|
|
{
|
|
|
|
Q_ASSERT(name.isEmpty()==false);
|
2013-12-29 17:48:57 +01:00
|
|
|
return GetVariable(lengthArcs, name);
|
2013-10-13 17:31:42 +02:00
|
|
|
}
|
|
|
|
|
2013-11-04 21:35:15 +01:00
|
|
|
qreal VContainer::GetLengthSpline(const QString &name) const
|
|
|
|
{
|
|
|
|
Q_ASSERT(name.isEmpty()==false);
|
2013-12-29 17:48:57 +01:00
|
|
|
return GetVariable(lengthSplines, name);
|
2013-10-13 17:31:42 +02:00
|
|
|
}
|
|
|
|
|
2013-11-04 21:35:15 +01:00
|
|
|
qreal VContainer::GetLineAngle(const QString &name) const
|
|
|
|
{
|
|
|
|
Q_ASSERT(name.isEmpty()==false);
|
2013-12-29 17:48:57 +01:00
|
|
|
return GetVariable(lineAngles, name);
|
2013-11-15 18:38:29 +01:00
|
|
|
}
|
|
|
|
|
2013-12-30 19:59:33 +01:00
|
|
|
const VDetail VContainer::GetDetail(qint64 id) const
|
2013-11-15 18:38:29 +01:00
|
|
|
{
|
2013-12-30 19:59:33 +01:00
|
|
|
return GetVariable(details, id);
|
2013-11-15 18:38:29 +01:00
|
|
|
}
|
|
|
|
|
2013-12-29 17:48:57 +01:00
|
|
|
qint64 VContainer::AddGObject(VGObject *obj)
|
2013-11-04 21:35:15 +01:00
|
|
|
{
|
2013-12-29 17:48:57 +01:00
|
|
|
return AddObject(gObjects, obj);
|
2013-07-17 13:38:11 +02:00
|
|
|
}
|
|
|
|
|
2013-12-30 19:59:33 +01:00
|
|
|
qint64 VContainer::AddDetail(VDetail detail)
|
|
|
|
{
|
|
|
|
qint64 id = getNextId();
|
|
|
|
details[id] = detail;
|
|
|
|
return id;
|
|
|
|
}
|
|
|
|
|
|
|
|
void VContainer::AddIncrementTableRow(const QString &name, VIncrementTableRow row)
|
2013-11-04 21:35:15 +01:00
|
|
|
{
|
2013-12-30 19:59:33 +01:00
|
|
|
incrementTable[name] = row;
|
2013-07-13 12:51:31 +02:00
|
|
|
}
|
|
|
|
|
2013-11-04 21:35:15 +01:00
|
|
|
qint64 VContainer::getNextId()
|
|
|
|
{
|
2013-09-12 16:18:31 +02:00
|
|
|
_id++;
|
2013-07-13 12:51:31 +02:00
|
|
|
return _id;
|
|
|
|
}
|
|
|
|
|
2013-11-04 21:35:15 +01:00
|
|
|
void VContainer::UpdateId(qint64 newId)
|
|
|
|
{
|
|
|
|
if (newId > _id)
|
|
|
|
{
|
2013-09-12 16:18:31 +02:00
|
|
|
_id = newId;
|
2013-08-13 18:48:36 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
template <typename val>
|
2013-12-30 12:28:33 +01:00
|
|
|
void VContainer::UpdateObject(QHash<qint64, val> &obj, const qint64 &id, val point)
|
2013-11-04 21:35:15 +01:00
|
|
|
{
|
2013-09-11 16:14:21 +02:00
|
|
|
Q_ASSERT_X(id > 0, Q_FUNC_INFO, "id <= 0");
|
2014-01-30 14:47:41 +01:00
|
|
|
Q_CHECK_PTR(point);
|
2013-12-31 09:44:54 +01:00
|
|
|
point->setId(id);
|
2014-01-02 16:50:01 +01:00
|
|
|
if (gObjects.contains(id))
|
|
|
|
{
|
|
|
|
delete gObjects.value(id);
|
|
|
|
gObjects.remove(id);
|
|
|
|
}
|
2013-08-13 18:48:36 +02:00
|
|
|
obj[id] = point;
|
|
|
|
UpdateId(id);
|
|
|
|
}
|
|
|
|
|
2013-11-04 21:35:15 +01:00
|
|
|
void VContainer::AddLengthSpline(const QString &name, const qreal &value)
|
|
|
|
{
|
|
|
|
Q_ASSERT(name.isEmpty() == false);
|
2013-08-13 18:48:36 +02:00
|
|
|
lengthSplines[name] = value;
|
|
|
|
}
|
|
|
|
|
2013-11-12 14:04:18 +01:00
|
|
|
void VContainer::AddLengthArc(const qint64 &id)
|
2013-11-04 21:35:15 +01:00
|
|
|
{
|
2013-12-29 17:48:57 +01:00
|
|
|
const VArc * arc = GeometricObject<const VArc *>(id);
|
2014-01-10 10:16:55 +01:00
|
|
|
lengthArcs[arc->name()] = toMM(arc->GetLength());
|
2013-08-13 18:48:36 +02:00
|
|
|
}
|
|
|
|
|
2013-11-04 21:35:15 +01:00
|
|
|
void VContainer::AddLineAngle(const QString &name, const qreal &value)
|
|
|
|
{
|
|
|
|
Q_ASSERT(name.isEmpty() == false);
|
2013-08-21 10:03:53 +02:00
|
|
|
lineAngles[name] = value;
|
2013-08-13 18:48:36 +02:00
|
|
|
}
|
|
|
|
|
2014-01-15 00:55:41 +01:00
|
|
|
qreal VContainer::GetValueStandardTableCell(const QString& name) const
|
2013-11-04 21:35:15 +01:00
|
|
|
{
|
2014-01-15 00:55:41 +01:00
|
|
|
VStandardTableRow cell = GetStandardTableCell(name);
|
2013-11-04 21:35:15 +01:00
|
|
|
qreal k_size = ( static_cast<qreal> (size()/10.0) - 50.0 ) / 2.0;
|
2013-08-20 12:26:02 +02:00
|
|
|
qreal k_growth = ( static_cast<qreal> (growth()/10.0) - 176.0 ) / 6.0;
|
2013-12-30 19:59:33 +01:00
|
|
|
qreal value = cell.GetBase() + k_size*cell.GetKsize() + k_growth*cell.GetKgrowth();
|
2013-07-17 13:38:11 +02:00
|
|
|
return value;
|
|
|
|
}
|
|
|
|
|
2013-11-04 21:35:15 +01:00
|
|
|
qreal VContainer::GetValueIncrementTableRow(const QString& name) const
|
|
|
|
{
|
2013-12-30 19:59:33 +01:00
|
|
|
VIncrementTableRow cell = GetIncrementTableRow(name);
|
2013-11-04 21:35:15 +01:00
|
|
|
qreal k_size = ( static_cast<qreal> (size()/10.0) - 50.0 ) / 2.0;
|
2013-08-20 12:26:02 +02:00
|
|
|
qreal k_growth = ( static_cast<qreal> (growth()/10.0) - 176.0 ) / 6.0;
|
2013-12-30 19:59:33 +01:00
|
|
|
qreal value = cell.getBase() + k_size*cell.getKsize() + k_growth*cell.getKgrowth();
|
2013-07-17 13:38:11 +02:00
|
|
|
return value;
|
|
|
|
}
|
|
|
|
|
2013-11-04 21:35:15 +01:00
|
|
|
void VContainer::Clear()
|
|
|
|
{
|
2013-07-13 12:51:31 +02:00
|
|
|
_id = 0;
|
2014-01-15 00:55:41 +01:00
|
|
|
standardTable.clear();
|
2013-07-17 13:38:11 +02:00
|
|
|
incrementTable.clear();
|
2013-07-25 14:00:51 +02:00
|
|
|
lengthLines.clear();
|
2013-08-05 10:37:56 +02:00
|
|
|
lengthArcs.clear();
|
2013-08-21 10:03:53 +02:00
|
|
|
lineAngles.clear();
|
2013-08-28 10:55:11 +02:00
|
|
|
details.clear();
|
2014-01-02 16:50:01 +01:00
|
|
|
ClearGObjects();
|
2013-07-17 13:38:11 +02:00
|
|
|
}
|
|
|
|
|
2014-01-02 16:50:01 +01:00
|
|
|
void VContainer::ClearGObjects()
|
2013-11-04 21:35:15 +01:00
|
|
|
{
|
2013-12-31 09:44:54 +01:00
|
|
|
if (gObjects.size()>0)
|
2013-12-30 12:28:33 +01:00
|
|
|
{
|
|
|
|
qDeleteAll(gObjects);
|
|
|
|
}
|
2013-12-29 17:48:57 +01:00
|
|
|
gObjects.clear();
|
2013-08-15 22:39:00 +02:00
|
|
|
}
|
|
|
|
|
2014-01-02 16:50:01 +01:00
|
|
|
void VContainer::ClearCalculationGObjects()
|
|
|
|
{
|
|
|
|
if (gObjects.size()>0)
|
|
|
|
{
|
|
|
|
QHashIterator<qint64, VGObject*> i(gObjects);
|
|
|
|
while (i.hasNext())
|
|
|
|
{
|
|
|
|
i.next();
|
|
|
|
if (i.value()->getMode() == Draw::Calculation)
|
|
|
|
{
|
|
|
|
delete i.value();
|
|
|
|
gObjects.remove(i.key());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-11-04 21:35:15 +01:00
|
|
|
qreal VContainer::FindVar(const QString &name, bool *ok)const
|
|
|
|
{
|
|
|
|
if (base.contains(name))
|
|
|
|
{
|
2013-07-17 13:38:11 +02:00
|
|
|
*ok = true;
|
2013-07-25 14:00:51 +02:00
|
|
|
return base.value(name);
|
2013-07-17 13:38:11 +02:00
|
|
|
}
|
|
|
|
|
2014-01-15 00:55:41 +01:00
|
|
|
if (standardTable.contains(name))
|
2013-11-04 21:35:15 +01:00
|
|
|
{
|
2013-07-17 13:38:11 +02:00
|
|
|
*ok = true;
|
2014-01-15 00:55:41 +01:00
|
|
|
return GetValueStandardTableCell(name);
|
2013-07-17 13:38:11 +02:00
|
|
|
}
|
2013-11-04 21:35:15 +01:00
|
|
|
if (incrementTable.contains(name))
|
|
|
|
{
|
2013-07-17 13:38:11 +02:00
|
|
|
*ok = true;
|
2013-07-25 14:00:51 +02:00
|
|
|
return GetValueIncrementTableRow(name);
|
|
|
|
}
|
2013-11-04 21:35:15 +01:00
|
|
|
if (lengthLines.contains(name))
|
|
|
|
{
|
2013-07-25 14:00:51 +02:00
|
|
|
*ok = true;
|
|
|
|
return lengthLines.value(name);
|
2013-07-17 13:38:11 +02:00
|
|
|
}
|
2013-11-04 21:35:15 +01:00
|
|
|
if (lengthArcs.contains(name))
|
|
|
|
{
|
2013-08-06 09:56:09 +02:00
|
|
|
*ok = true;
|
|
|
|
return lengthArcs.value(name);
|
|
|
|
}
|
2013-11-04 21:35:15 +01:00
|
|
|
if (lineAngles.contains(name))
|
|
|
|
{
|
2013-08-06 09:56:09 +02:00
|
|
|
*ok = true;
|
2013-08-21 10:03:53 +02:00
|
|
|
return lineAngles.value(name);
|
2013-08-06 09:56:09 +02:00
|
|
|
}
|
2013-11-04 21:35:15 +01:00
|
|
|
if (lengthSplines.contains(name))
|
|
|
|
{
|
2013-10-13 17:31:42 +02:00
|
|
|
*ok = true;
|
|
|
|
return lengthSplines.value(name);
|
|
|
|
}
|
2013-07-17 13:38:11 +02:00
|
|
|
*ok = false;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2013-12-21 12:36:51 +01:00
|
|
|
void VContainer::AddLine(const qint64 &firstPointId, const qint64 &secondPointId)
|
2013-11-04 21:35:15 +01:00
|
|
|
{
|
2013-12-21 12:36:51 +01:00
|
|
|
QString nameLine = GetNameLine(firstPointId, secondPointId);
|
2013-12-29 17:48:57 +01:00
|
|
|
const VPointF *first = GeometricObject<const VPointF *>(firstPointId);
|
|
|
|
const VPointF *second = GeometricObject<const VPointF *>(secondPointId);
|
|
|
|
AddLengthLine(nameLine, toMM(QLineF(first->toQPointF(), second->toQPointF()).length()));
|
2013-12-21 12:36:51 +01:00
|
|
|
nameLine = GetNameLineAngle(firstPointId, secondPointId);
|
2013-12-29 17:48:57 +01:00
|
|
|
AddLineAngle(nameLine, QLineF(first->toQPointF(), second->toQPointF()).angle());
|
2013-07-30 15:09:34 +02:00
|
|
|
}
|
|
|
|
|
2013-10-27 11:22:44 +01:00
|
|
|
template <typename key, typename val>
|
2013-12-30 12:28:33 +01:00
|
|
|
qint64 VContainer::AddObject(QHash<key, val> &obj, val value)
|
2013-11-04 21:35:15 +01:00
|
|
|
{
|
2014-01-30 14:47:41 +01:00
|
|
|
Q_CHECK_PTR(value);
|
2013-10-27 11:22:44 +01:00
|
|
|
qint64 id = getNextId();
|
2013-12-29 17:48:57 +01:00
|
|
|
value->setId(id);
|
2013-10-27 11:22:44 +01:00
|
|
|
obj[id] = value;
|
|
|
|
return id;
|
|
|
|
}
|
|
|
|
|
2013-12-21 12:36:51 +01:00
|
|
|
QString VContainer::GetNameLine(const qint64 &firstPoint, const qint64 &secondPoint) const
|
2013-11-04 21:35:15 +01:00
|
|
|
{
|
2013-12-29 17:48:57 +01:00
|
|
|
const VPointF *first = GeometricObject<const VPointF *>(firstPoint);
|
|
|
|
const VPointF *second = GeometricObject<const VPointF *>(secondPoint);
|
2013-12-21 12:36:51 +01:00
|
|
|
|
2013-12-29 17:48:57 +01:00
|
|
|
return QString("Line_%1_%2").arg(first->name(), second->name());
|
2013-07-30 15:09:34 +02:00
|
|
|
}
|
|
|
|
|
2013-12-21 12:36:51 +01:00
|
|
|
QString VContainer::GetNameLineAngle(const qint64 &firstPoint, const qint64 &secondPoint) const
|
2013-11-04 21:35:15 +01:00
|
|
|
{
|
2013-12-29 17:48:57 +01:00
|
|
|
const VPointF *first = GeometricObject<const VPointF *>(firstPoint);
|
|
|
|
const VPointF *second = GeometricObject<const VPointF *>(secondPoint);
|
2013-12-21 12:36:51 +01:00
|
|
|
|
2013-12-29 17:48:57 +01:00
|
|
|
return QString("AngleLine_%1_%2").arg(first->name(), second->name());
|
2013-08-05 10:37:56 +02:00
|
|
|
}
|
|
|
|
|
2013-12-29 17:48:57 +01:00
|
|
|
void VContainer::UpdateGObject(qint64 id, VGObject* obj)
|
2013-11-04 21:35:15 +01:00
|
|
|
{
|
2013-12-29 17:48:57 +01:00
|
|
|
UpdateObject(gObjects, id, obj);
|
2013-10-27 11:22:44 +01:00
|
|
|
}
|
|
|
|
|
2014-01-12 20:53:15 +01:00
|
|
|
void VContainer::UpdateDetail(qint64 id, const VDetail &detail)
|
2013-11-04 21:35:15 +01:00
|
|
|
{
|
2013-12-30 19:59:33 +01:00
|
|
|
Q_ASSERT_X(id > 0, Q_FUNC_INFO, "id <= 0");
|
|
|
|
details[id] = detail;
|
|
|
|
UpdateId(id);
|
2013-10-27 11:22:44 +01:00
|
|
|
}
|
|
|
|
|
2013-11-04 21:35:15 +01:00
|
|
|
void VContainer::AddLengthLine(const QString &name, const qreal &value)
|
|
|
|
{
|
|
|
|
Q_ASSERT(name.isEmpty() == false);
|
2013-08-06 09:56:09 +02:00
|
|
|
lengthLines[name] = value;
|
2013-07-17 13:38:11 +02:00
|
|
|
}
|
|
|
|
|
2013-11-04 21:35:15 +01:00
|
|
|
void VContainer::CreateManTableIGroup ()
|
|
|
|
{
|
2014-01-15 00:55:41 +01:00
|
|
|
AddStandardTableCell("Pkor", VStandardTableRow(84, 0, 3));
|
|
|
|
AddStandardTableCell("Vtos", VStandardTableRow(1450, 2, 51));
|
|
|
|
AddStandardTableCell("Vtosh", VStandardTableRow(1506, 2, 54));
|
|
|
|
AddStandardTableCell("Vpt", VStandardTableRow(1438, 3, 52));
|
|
|
|
AddStandardTableCell("Vst", VStandardTableRow(1257, -1, 49));
|
|
|
|
AddStandardTableCell("Vlt", VStandardTableRow(1102, 0, 43));
|
|
|
|
AddStandardTableCell("Vk", VStandardTableRow(503, 0, 22));
|
|
|
|
AddStandardTableCell("Vsht", VStandardTableRow(1522, 2, 54));
|
|
|
|
AddStandardTableCell("Vzy", VStandardTableRow(1328, 0, 49));
|
|
|
|
AddStandardTableCell("Vlop", VStandardTableRow(1320, 0, 49));
|
|
|
|
AddStandardTableCell("Vps", VStandardTableRow(811, -1, 36));
|
|
|
|
AddStandardTableCell("Ssh", VStandardTableRow(202, 4, 1));
|
|
|
|
AddStandardTableCell("SgI", VStandardTableRow(517, 18, 2));
|
|
|
|
AddStandardTableCell("SgII", VStandardTableRow(522, 19, 1));
|
|
|
|
AddStandardTableCell("SgIII", VStandardTableRow(500, 20, 0));
|
|
|
|
AddStandardTableCell("SbI", VStandardTableRow(482, 12, 6));
|
|
|
|
AddStandardTableCell("Obed", VStandardTableRow(566, 18, 6));
|
|
|
|
AddStandardTableCell("Ok", VStandardTableRow(386, 8, 8));
|
|
|
|
AddStandardTableCell("Oi", VStandardTableRow(380, 8, 6));
|
|
|
|
AddStandardTableCell("Osch", VStandardTableRow(234, 4, 4));
|
|
|
|
AddStandardTableCell("Dsb", VStandardTableRow(1120, 0, 44));
|
|
|
|
AddStandardTableCell("Dsp", VStandardTableRow(1110, 0, 43));
|
|
|
|
AddStandardTableCell("Dn", VStandardTableRow(826, -3, 37));
|
|
|
|
AddStandardTableCell("Dps", VStandardTableRow(316, 4, 7));
|
|
|
|
AddStandardTableCell("Dpob", VStandardTableRow(783, 14, 15));
|
|
|
|
AddStandardTableCell("Ds", VStandardTableRow(260, 1, 6));
|
|
|
|
AddStandardTableCell("Op", VStandardTableRow(316, 12, 0));
|
|
|
|
AddStandardTableCell("Ozap", VStandardTableRow(180, 4, 0));
|
|
|
|
AddStandardTableCell("Pkis", VStandardTableRow(250, 4, 0));
|
|
|
|
AddStandardTableCell("SHp", VStandardTableRow(160, 1, 4));
|
|
|
|
AddStandardTableCell("Dlych", VStandardTableRow(500, 2, 15));
|
|
|
|
AddStandardTableCell("Dzap", VStandardTableRow(768, 2, 24));
|
|
|
|
AddStandardTableCell("DIIIp", VStandardTableRow(970, 2, 29));
|
|
|
|
AddStandardTableCell("Vprp", VStandardTableRow(214, 3, 3));
|
|
|
|
AddStandardTableCell("Vg", VStandardTableRow(262, 8, 3));
|
|
|
|
AddStandardTableCell("Dtp", VStandardTableRow(460, 7, 9));
|
|
|
|
AddStandardTableCell("Dp", VStandardTableRow(355, 5, 5));
|
|
|
|
AddStandardTableCell("Vprz", VStandardTableRow(208, 3, 5));
|
|
|
|
AddStandardTableCell("Dts", VStandardTableRow(438, 2, 10));
|
|
|
|
AddStandardTableCell("DtsI", VStandardTableRow(469, 2, 10));
|
|
|
|
AddStandardTableCell("Dvcht", VStandardTableRow(929, 9, 19));
|
|
|
|
AddStandardTableCell("SHg", VStandardTableRow(370, 14, 4));
|
|
|
|
AddStandardTableCell("Cg", VStandardTableRow(224, 6, 0));
|
|
|
|
AddStandardTableCell("SHs", VStandardTableRow(416, 10, 2));
|
|
|
|
AddStandardTableCell("dpzr", VStandardTableRow(121, 6, 0));
|
|
|
|
AddStandardTableCell("Ogol", VStandardTableRow(576, 4, 4));
|
|
|
|
AddStandardTableCell("Ssh1", VStandardTableRow(205, 5, 0));
|
2013-12-30 19:59:33 +01:00
|
|
|
|
|
|
|
//TODO Posible duplicate. Need check.
|
2014-01-15 00:55:41 +01:00
|
|
|
//AddStandardTableCell("St", VStandardTableRow(410, 20, 0));
|
|
|
|
AddStandardTableCell("St", VStandardTableRow(390, 20, 0));
|
2013-12-30 19:59:33 +01:00
|
|
|
|
2014-01-15 00:55:41 +01:00
|
|
|
AddStandardTableCell("Drzap", VStandardTableRow(594, 3, 19));
|
|
|
|
AddStandardTableCell("DbII", VStandardTableRow(1020, 0, 44));
|
2013-12-30 19:59:33 +01:00
|
|
|
|
|
|
|
//TODO Posible duplicate. Need check.
|
2014-01-15 00:55:41 +01:00
|
|
|
//AddStandardTableCell("Sb", VStandardTableRow(504, 15, 4));
|
|
|
|
AddStandardTableCell("Sb", VStandardTableRow(492, 15, 5));
|
2013-08-09 08:49:34 +02:00
|
|
|
}
|