Simple curve which uses point as control handle.
--HG-- branch : feature
This commit is contained in:
parent
f37b3361b2
commit
53250a4dc4
|
@ -135,6 +135,9 @@ void VToolOptionsPropertyBrowser::ShowItemOptions(QGraphicsItem *item)
|
||||||
case VToolSpline::Type:
|
case VToolSpline::Type:
|
||||||
ShowOptionsToolSpline(item);
|
ShowOptionsToolSpline(item);
|
||||||
break;
|
break;
|
||||||
|
case VToolCubicBezier::Type:
|
||||||
|
ShowOptionsToolCubicBezier(item);
|
||||||
|
break;
|
||||||
case VToolSplinePath::Type:
|
case VToolSplinePath::Type:
|
||||||
ShowOptionsToolSplinePath(item);
|
ShowOptionsToolSplinePath(item);
|
||||||
break;
|
break;
|
||||||
|
@ -243,6 +246,9 @@ void VToolOptionsPropertyBrowser::UpdateOptions()
|
||||||
case VToolSpline::Type:
|
case VToolSpline::Type:
|
||||||
UpdateOptionsToolSpline();
|
UpdateOptionsToolSpline();
|
||||||
break;
|
break;
|
||||||
|
case VToolCubicBezier::Type:
|
||||||
|
UpdateOptionsToolCubicBezier();
|
||||||
|
break;
|
||||||
case VToolSplinePath::Type:
|
case VToolSplinePath::Type:
|
||||||
UpdateOptionsToolSplinePath();
|
UpdateOptionsToolSplinePath();
|
||||||
break;
|
break;
|
||||||
|
@ -366,6 +372,9 @@ void VToolOptionsPropertyBrowser::userChangedData(VProperty *property)
|
||||||
case VToolSpline::Type:
|
case VToolSpline::Type:
|
||||||
ChangeDataToolSpline(prop);
|
ChangeDataToolSpline(prop);
|
||||||
break;
|
break;
|
||||||
|
case VToolCubicBezier::Type:
|
||||||
|
ChangeDataToolCubicBezier(prop);
|
||||||
|
break;
|
||||||
case VToolSplinePath::Type:
|
case VToolSplinePath::Type:
|
||||||
ChangeDataToolSplinePath(prop);
|
ChangeDataToolSplinePath(prop);
|
||||||
break;
|
break;
|
||||||
|
@ -1346,6 +1355,31 @@ void VToolOptionsPropertyBrowser::ChangeDataToolSpline(VProperty *property)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
//---------------------------------------------------------------------------------------------------------------------
|
||||||
|
void VToolOptionsPropertyBrowser::ChangeDataToolCubicBezier(VProperty *property)
|
||||||
|
{
|
||||||
|
SCASSERT(property != nullptr)
|
||||||
|
|
||||||
|
const QVariant value = property->data(VProperty::DPC_Data, Qt::DisplayRole);
|
||||||
|
const QString id = propertyToId[property];
|
||||||
|
|
||||||
|
auto i = qgraphicsitem_cast<VToolCubicBezier *>(currentItem);
|
||||||
|
SCASSERT(i != nullptr);
|
||||||
|
|
||||||
|
switch (PropertiesList().indexOf(id))
|
||||||
|
{
|
||||||
|
case 0: // AttrName
|
||||||
|
Q_UNREACHABLE();//The attribute is read only
|
||||||
|
break;
|
||||||
|
case 27: // AttrTypeColor
|
||||||
|
i->SetLineColor(value.toString());
|
||||||
|
break;
|
||||||
|
default:
|
||||||
|
qWarning()<<"Unknown property type. id = "<<id;
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
//---------------------------------------------------------------------------------------------------------------------
|
//---------------------------------------------------------------------------------------------------------------------
|
||||||
void VToolOptionsPropertyBrowser::ChangeDataToolSplinePath(VProperty *property)
|
void VToolOptionsPropertyBrowser::ChangeDataToolSplinePath(VProperty *property)
|
||||||
{
|
{
|
||||||
|
@ -1762,6 +1796,17 @@ void VToolOptionsPropertyBrowser::ShowOptionsToolSpline(QGraphicsItem *item)
|
||||||
AddPropertyLineColor(i, tr("Color"), VAbstractTool::ColorsList(), AttrColor);
|
AddPropertyLineColor(i, tr("Color"), VAbstractTool::ColorsList(), AttrColor);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
//---------------------------------------------------------------------------------------------------------------------
|
||||||
|
void VToolOptionsPropertyBrowser::ShowOptionsToolCubicBezier(QGraphicsItem *item)
|
||||||
|
{
|
||||||
|
auto i = qgraphicsitem_cast<VToolCubicBezier *>(item);
|
||||||
|
i->ShowVisualization(true);
|
||||||
|
formView->setTitle(tr("Cubic bezier curve"));
|
||||||
|
|
||||||
|
AddPropertyObjectName(i, tr("Name"), true);
|
||||||
|
AddPropertyLineColor(i, tr("Color"), VAbstractTool::ColorsList(), AttrColor);
|
||||||
|
}
|
||||||
|
|
||||||
//---------------------------------------------------------------------------------------------------------------------
|
//---------------------------------------------------------------------------------------------------------------------
|
||||||
void VToolOptionsPropertyBrowser::ShowOptionsToolSplinePath(QGraphicsItem *item)
|
void VToolOptionsPropertyBrowser::ShowOptionsToolSplinePath(QGraphicsItem *item)
|
||||||
{
|
{
|
||||||
|
@ -2190,6 +2235,15 @@ void VToolOptionsPropertyBrowser::UpdateOptionsToolSpline()
|
||||||
idToProperty[AttrColor]->setValue(VLineColorProperty::IndexOfColor(VAbstractTool::ColorsList(), i->GetLineColor()));
|
idToProperty[AttrColor]->setValue(VLineColorProperty::IndexOfColor(VAbstractTool::ColorsList(), i->GetLineColor()));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
//---------------------------------------------------------------------------------------------------------------------
|
||||||
|
void VToolOptionsPropertyBrowser::UpdateOptionsToolCubicBezier()
|
||||||
|
{
|
||||||
|
auto i = qgraphicsitem_cast<VToolCubicBezier *>(currentItem);
|
||||||
|
|
||||||
|
idToProperty[AttrName]->setValue(i->name());
|
||||||
|
idToProperty[AttrColor]->setValue(VLineColorProperty::IndexOfColor(VAbstractTool::ColorsList(), i->GetLineColor()));
|
||||||
|
}
|
||||||
|
|
||||||
//---------------------------------------------------------------------------------------------------------------------
|
//---------------------------------------------------------------------------------------------------------------------
|
||||||
void VToolOptionsPropertyBrowser::UpdateOptionsToolSplinePath()
|
void VToolOptionsPropertyBrowser::UpdateOptionsToolSplinePath()
|
||||||
{
|
{
|
||||||
|
|
|
@ -138,6 +138,7 @@ private:
|
||||||
void ChangeDataToolPointFromArcAndTangent(VPE::VProperty *property);
|
void ChangeDataToolPointFromArcAndTangent(VPE::VProperty *property);
|
||||||
void ChangeDataToolShoulderPoint(VPE::VProperty *property);
|
void ChangeDataToolShoulderPoint(VPE::VProperty *property);
|
||||||
void ChangeDataToolSpline(VPE::VProperty *property);
|
void ChangeDataToolSpline(VPE::VProperty *property);
|
||||||
|
void ChangeDataToolCubicBezier(VPE::VProperty *property);
|
||||||
void ChangeDataToolSplinePath(VPE::VProperty *property);
|
void ChangeDataToolSplinePath(VPE::VProperty *property);
|
||||||
void ChangeDataToolTriangle(VPE::VProperty *property);
|
void ChangeDataToolTriangle(VPE::VProperty *property);
|
||||||
void ChangeDataToolLineIntersectAxis(VPE::VProperty *property);
|
void ChangeDataToolLineIntersectAxis(VPE::VProperty *property);
|
||||||
|
@ -166,6 +167,7 @@ private:
|
||||||
void ShowOptionsToolPointFromArcAndTangent(QGraphicsItem *item);
|
void ShowOptionsToolPointFromArcAndTangent(QGraphicsItem *item);
|
||||||
void ShowOptionsToolShoulderPoint(QGraphicsItem *item);
|
void ShowOptionsToolShoulderPoint(QGraphicsItem *item);
|
||||||
void ShowOptionsToolSpline(QGraphicsItem *item);
|
void ShowOptionsToolSpline(QGraphicsItem *item);
|
||||||
|
void ShowOptionsToolCubicBezier(QGraphicsItem *item);
|
||||||
void ShowOptionsToolSplinePath(QGraphicsItem *item);
|
void ShowOptionsToolSplinePath(QGraphicsItem *item);
|
||||||
void ShowOptionsToolTriangle(QGraphicsItem *item);
|
void ShowOptionsToolTriangle(QGraphicsItem *item);
|
||||||
void ShowOptionsToolLineIntersectAxis(QGraphicsItem *item);
|
void ShowOptionsToolLineIntersectAxis(QGraphicsItem *item);
|
||||||
|
@ -194,6 +196,7 @@ private:
|
||||||
void UpdateOptionsToolPointFromArcAndTangent();
|
void UpdateOptionsToolPointFromArcAndTangent();
|
||||||
void UpdateOptionsToolShoulderPoint();
|
void UpdateOptionsToolShoulderPoint();
|
||||||
void UpdateOptionsToolSpline();
|
void UpdateOptionsToolSpline();
|
||||||
|
void UpdateOptionsToolCubicBezier();
|
||||||
void UpdateOptionsToolSplinePath();
|
void UpdateOptionsToolSplinePath();
|
||||||
void UpdateOptionsToolTriangle();
|
void UpdateOptionsToolTriangle();
|
||||||
void UpdateOptionsToolLineIntersectAxis();
|
void UpdateOptionsToolLineIntersectAxis();
|
||||||
|
|
|
@ -29,6 +29,7 @@
|
||||||
#include "dialoghistory.h"
|
#include "dialoghistory.h"
|
||||||
#include "ui_dialoghistory.h"
|
#include "ui_dialoghistory.h"
|
||||||
#include "../vgeometry/varc.h"
|
#include "../vgeometry/varc.h"
|
||||||
|
#include "../vgeometry/vcubicbezier.h"
|
||||||
#include "../vgeometry/vsplinepath.h"
|
#include "../vgeometry/vsplinepath.h"
|
||||||
#include "../vgeometry/vpointf.h"
|
#include "../vgeometry/vpointf.h"
|
||||||
#include "../vtools/tools/vabstracttool.h"
|
#include "../vtools/tools/vabstracttool.h"
|
||||||
|
@ -282,6 +283,13 @@ QString DialogHistory::Record(const VToolRecord &tool)
|
||||||
SCASSERT(spl != nullptr);
|
SCASSERT(spl != nullptr);
|
||||||
return QString(tr("Curve %1_%2")).arg(PointName(spl->GetP1().id())).arg(PointName(spl->GetP4().id()));
|
return QString(tr("Curve %1_%2")).arg(PointName(spl->GetP1().id())).arg(PointName(spl->GetP4().id()));
|
||||||
}
|
}
|
||||||
|
case Tool::CubicBezier:
|
||||||
|
{
|
||||||
|
const QSharedPointer<VCubicBezier> spl = data->GeometricObject<VCubicBezier>(tool.getId());
|
||||||
|
SCASSERT(spl != nullptr);
|
||||||
|
return QString(tr("Cubic bezier curve %1_%2")).arg(PointName(spl->GetP1().id()))
|
||||||
|
.arg(PointName(spl->GetP4().id()));
|
||||||
|
}
|
||||||
case Tool::Arc:
|
case Tool::Arc:
|
||||||
{
|
{
|
||||||
const QSharedPointer<VArc> arc = data->GeometricObject<VArc>(tool.getId());
|
const QSharedPointer<VArc> arc = data->GeometricObject<VArc>(tool.getId());
|
||||||
|
|
|
@ -783,6 +783,15 @@ void MainWindow::ToolSpline(bool checked)
|
||||||
&MainWindow::ApplyDialog<VToolSpline>);
|
&MainWindow::ApplyDialog<VToolSpline>);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
//---------------------------------------------------------------------------------------------------------------------
|
||||||
|
void MainWindow::ToolCubicBezier(bool checked)
|
||||||
|
{
|
||||||
|
SetToolButtonWithApply<DialogCubicBezier>(checked, Tool::CubicBezier, ":/cursor/cubic_bezier_cursor.png",
|
||||||
|
tr("Select first curve point"),
|
||||||
|
&MainWindow::ClosedDialogWithApply<VToolCubicBezier>,
|
||||||
|
&MainWindow::ApplyDialog<VToolCubicBezier>);
|
||||||
|
}
|
||||||
|
|
||||||
//---------------------------------------------------------------------------------------------------------------------
|
//---------------------------------------------------------------------------------------------------------------------
|
||||||
/**
|
/**
|
||||||
* @brief ToolCutSpline handler tool CutSpline.
|
* @brief ToolCutSpline handler tool CutSpline.
|
||||||
|
@ -1603,6 +1612,7 @@ void MainWindow::InitToolButtons()
|
||||||
connect(ui->toolButtonBisector, &QToolButton::clicked, this, &MainWindow::ToolBisector);
|
connect(ui->toolButtonBisector, &QToolButton::clicked, this, &MainWindow::ToolBisector);
|
||||||
connect(ui->toolButtonLineIntersect, &QToolButton::clicked, this, &MainWindow::ToolLineIntersect);
|
connect(ui->toolButtonLineIntersect, &QToolButton::clicked, this, &MainWindow::ToolLineIntersect);
|
||||||
connect(ui->toolButtonSpline, &QToolButton::clicked, this, &MainWindow::ToolSpline);
|
connect(ui->toolButtonSpline, &QToolButton::clicked, this, &MainWindow::ToolSpline);
|
||||||
|
connect(ui->toolButtonCubicBezier, &QToolButton::clicked, this, &MainWindow::ToolCubicBezier);
|
||||||
connect(ui->toolButtonArc, &QToolButton::clicked, this, &MainWindow::ToolArc);
|
connect(ui->toolButtonArc, &QToolButton::clicked, this, &MainWindow::ToolArc);
|
||||||
connect(ui->toolButtonSplinePath, &QToolButton::clicked, this, &MainWindow::ToolSplinePath);
|
connect(ui->toolButtonSplinePath, &QToolButton::clicked, this, &MainWindow::ToolSplinePath);
|
||||||
connect(ui->toolButtonPointOfContact, &QToolButton::clicked, this, &MainWindow::ToolPointOfContact);
|
connect(ui->toolButtonPointOfContact, &QToolButton::clicked, this, &MainWindow::ToolPointOfContact);
|
||||||
|
@ -1709,6 +1719,9 @@ void MainWindow::CancelTool()
|
||||||
case Tool::Spline:
|
case Tool::Spline:
|
||||||
ui->toolButtonSpline->setChecked(false);
|
ui->toolButtonSpline->setChecked(false);
|
||||||
break;
|
break;
|
||||||
|
case Tool::CubicBezier:
|
||||||
|
ui->toolButtonCubicBezier->setChecked(false);
|
||||||
|
break;
|
||||||
case Tool::Arc:
|
case Tool::Arc:
|
||||||
ui->toolButtonArc->setChecked(false);
|
ui->toolButtonArc->setChecked(false);
|
||||||
break;
|
break;
|
||||||
|
@ -2933,6 +2946,7 @@ void MainWindow::SetEnableTool(bool enable)
|
||||||
ui->toolButtonBisector->setEnabled(drawTools);
|
ui->toolButtonBisector->setEnabled(drawTools);
|
||||||
ui->toolButtonLineIntersect->setEnabled(drawTools);
|
ui->toolButtonLineIntersect->setEnabled(drawTools);
|
||||||
ui->toolButtonSpline->setEnabled(drawTools);
|
ui->toolButtonSpline->setEnabled(drawTools);
|
||||||
|
ui->toolButtonCubicBezier->setEnabled(drawTools);
|
||||||
ui->toolButtonArc->setEnabled(drawTools);
|
ui->toolButtonArc->setEnabled(drawTools);
|
||||||
ui->toolButtonSplinePath->setEnabled(drawTools);
|
ui->toolButtonSplinePath->setEnabled(drawTools);
|
||||||
ui->toolButtonPointOfContact->setEnabled(drawTools);
|
ui->toolButtonPointOfContact->setEnabled(drawTools);
|
||||||
|
|
|
@ -108,6 +108,7 @@ public slots:
|
||||||
void ToolBisector(bool checked);
|
void ToolBisector(bool checked);
|
||||||
void ToolLineIntersect(bool checked);
|
void ToolLineIntersect(bool checked);
|
||||||
void ToolSpline(bool checked);
|
void ToolSpline(bool checked);
|
||||||
|
void ToolCubicBezier(bool checked);
|
||||||
void ToolCutSpline(bool checked);
|
void ToolCutSpline(bool checked);
|
||||||
void ToolArc(bool checked);
|
void ToolArc(bool checked);
|
||||||
void ToolSplinePath(bool checked);
|
void ToolSplinePath(bool checked);
|
||||||
|
|
|
@ -462,7 +462,7 @@
|
||||||
<x>0</x>
|
<x>0</x>
|
||||||
<y>0</y>
|
<y>0</y>
|
||||||
<width>130</width>
|
<width>130</width>
|
||||||
<height>156</height>
|
<height>196</height>
|
||||||
</rect>
|
</rect>
|
||||||
</property>
|
</property>
|
||||||
<property name="sizePolicy">
|
<property name="sizePolicy">
|
||||||
|
@ -540,7 +540,33 @@
|
||||||
</property>
|
</property>
|
||||||
</widget>
|
</widget>
|
||||||
</item>
|
</item>
|
||||||
<item row="2" column="0">
|
<item row="1" column="0">
|
||||||
|
<widget class="QToolButton" name="toolButtonCubicBezier">
|
||||||
|
<property name="enabled">
|
||||||
|
<bool>false</bool>
|
||||||
|
</property>
|
||||||
|
<property name="toolTip">
|
||||||
|
<string>Curve tool which uses point as control handle</string>
|
||||||
|
</property>
|
||||||
|
<property name="text">
|
||||||
|
<string notr="true">...</string>
|
||||||
|
</property>
|
||||||
|
<property name="icon">
|
||||||
|
<iconset resource="share/resources/toolicon.qrc">
|
||||||
|
<normaloff>:/toolicon/32x32/cubic_bezier.png</normaloff>:/toolicon/32x32/cubic_bezier.png</iconset>
|
||||||
|
</property>
|
||||||
|
<property name="iconSize">
|
||||||
|
<size>
|
||||||
|
<width>32</width>
|
||||||
|
<height>32</height>
|
||||||
|
</size>
|
||||||
|
</property>
|
||||||
|
<property name="checkable">
|
||||||
|
<bool>true</bool>
|
||||||
|
</property>
|
||||||
|
</widget>
|
||||||
|
</item>
|
||||||
|
<item row="1" column="1">
|
||||||
<widget class="QToolButton" name="toolButtonSplinePath">
|
<widget class="QToolButton" name="toolButtonSplinePath">
|
||||||
<property name="enabled">
|
<property name="enabled">
|
||||||
<bool>false</bool>
|
<bool>false</bool>
|
||||||
|
@ -566,7 +592,7 @@
|
||||||
</property>
|
</property>
|
||||||
</widget>
|
</widget>
|
||||||
</item>
|
</item>
|
||||||
<item row="2" column="1">
|
<item row="2" column="0">
|
||||||
<widget class="QToolButton" name="toolButtonSplinePathCutPoint">
|
<widget class="QToolButton" name="toolButtonSplinePathCutPoint">
|
||||||
<property name="enabled">
|
<property name="enabled">
|
||||||
<bool>false</bool>
|
<bool>false</bool>
|
||||||
|
@ -592,7 +618,7 @@
|
||||||
</property>
|
</property>
|
||||||
</widget>
|
</widget>
|
||||||
</item>
|
</item>
|
||||||
<item row="3" column="0">
|
<item row="2" column="1">
|
||||||
<widget class="QToolButton" name="toolButtonCurveIntersectAxis">
|
<widget class="QToolButton" name="toolButtonCurveIntersectAxis">
|
||||||
<property name="enabled">
|
<property name="enabled">
|
||||||
<bool>false</bool>
|
<bool>false</bool>
|
||||||
|
@ -618,7 +644,7 @@
|
||||||
</property>
|
</property>
|
||||||
</widget>
|
</widget>
|
||||||
</item>
|
</item>
|
||||||
<item row="3" column="1">
|
<item row="3" column="0">
|
||||||
<widget class="QToolButton" name="toolButtonIntersectionCurves">
|
<widget class="QToolButton" name="toolButtonIntersectionCurves">
|
||||||
<property name="enabled">
|
<property name="enabled">
|
||||||
<bool>false</bool>
|
<bool>false</bool>
|
||||||
|
@ -2140,9 +2166,6 @@
|
||||||
<header>vmaingraphicsview.h</header>
|
<header>vmaingraphicsview.h</header>
|
||||||
</customwidget>
|
</customwidget>
|
||||||
</customwidgets>
|
</customwidgets>
|
||||||
<tabstops>
|
|
||||||
<tabstop>toolButtonSplinePath</tabstop>
|
|
||||||
</tabstops>
|
|
||||||
<resources>
|
<resources>
|
||||||
<include location="share/resources/toolicon.qrc"/>
|
<include location="share/resources/toolicon.qrc"/>
|
||||||
<include location="../../libs/vmisc/share/resources/icon.qrc"/>
|
<include location="../../libs/vmisc/share/resources/icon.qrc"/>
|
||||||
|
|
|
@ -60,5 +60,7 @@
|
||||||
<file>cursor/true_darts_cursor@2x.png</file>
|
<file>cursor/true_darts_cursor@2x.png</file>
|
||||||
<file>cursor/intersection_curves_cursor.png</file>
|
<file>cursor/intersection_curves_cursor.png</file>
|
||||||
<file>cursor/intersection_curves_cursor@2x.png</file>
|
<file>cursor/intersection_curves_cursor@2x.png</file>
|
||||||
|
<file>cursor/cubic_bezier_cursor.png</file>
|
||||||
|
<file>cursor/cubic_bezier_cursor@2x.png</file>
|
||||||
</qresource>
|
</qresource>
|
||||||
</RCC>
|
</RCC>
|
||||||
|
|
BIN
src/app/valentina/share/resources/cursor/cubic_bezier_cursor.png
Normal file
BIN
src/app/valentina/share/resources/cursor/cubic_bezier_cursor.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 644 B |
Binary file not shown.
After Width: | Height: | Size: 1.4 KiB |
|
@ -58,5 +58,7 @@
|
||||||
<file>toolicon/32x32/true_darts@2x.png</file>
|
<file>toolicon/32x32/true_darts@2x.png</file>
|
||||||
<file>toolicon/32x32/intersection_curves.png</file>
|
<file>toolicon/32x32/intersection_curves.png</file>
|
||||||
<file>toolicon/32x32/intersection_curves@2x.png</file>
|
<file>toolicon/32x32/intersection_curves@2x.png</file>
|
||||||
|
<file>toolicon/32x32/cubic_bezier.png</file>
|
||||||
|
<file>toolicon/32x32/cubic_bezier@2x.png</file>
|
||||||
</qresource>
|
</qresource>
|
||||||
</RCC>
|
</RCC>
|
||||||
|
|
Binary file not shown.
After Width: | Height: | Size: 895 B |
Binary file not shown.
After Width: | Height: | Size: 1.9 KiB |
|
@ -0,0 +1,84 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
|
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||||
|
|
||||||
|
<svg
|
||||||
|
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||||
|
xmlns:cc="http://creativecommons.org/ns#"
|
||||||
|
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||||
|
xmlns:svg="http://www.w3.org/2000/svg"
|
||||||
|
xmlns="http://www.w3.org/2000/svg"
|
||||||
|
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||||
|
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||||
|
version="1.1"
|
||||||
|
width="32"
|
||||||
|
height="32"
|
||||||
|
id="svg3837"
|
||||||
|
inkscape:version="0.91 r"
|
||||||
|
sodipodi:docname="cubic_bezier.svg"
|
||||||
|
inkscape:export-filename="spline.png"
|
||||||
|
inkscape:export-xdpi="90"
|
||||||
|
inkscape:export-ydpi="90">
|
||||||
|
<sodipodi:namedview
|
||||||
|
pagecolor="#ffffff"
|
||||||
|
bordercolor="#666666"
|
||||||
|
borderopacity="1"
|
||||||
|
objecttolerance="10"
|
||||||
|
gridtolerance="10"
|
||||||
|
guidetolerance="10"
|
||||||
|
inkscape:pageopacity="0"
|
||||||
|
inkscape:pageshadow="2"
|
||||||
|
inkscape:window-width="1855"
|
||||||
|
inkscape:window-height="1056"
|
||||||
|
id="namedview12"
|
||||||
|
showgrid="false"
|
||||||
|
inkscape:zoom="14.75"
|
||||||
|
inkscape:cx="-5.7288133"
|
||||||
|
inkscape:cy="12.164845"
|
||||||
|
inkscape:window-x="65"
|
||||||
|
inkscape:window-y="24"
|
||||||
|
inkscape:window-maximized="1"
|
||||||
|
inkscape:current-layer="layer1" />
|
||||||
|
<defs
|
||||||
|
id="defs3839" />
|
||||||
|
<metadata
|
||||||
|
id="metadata3842">
|
||||||
|
<rdf:RDF>
|
||||||
|
<cc:Work
|
||||||
|
rdf:about="">
|
||||||
|
<dc:format>image/svg+xml</dc:format>
|
||||||
|
<dc:type
|
||||||
|
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||||
|
<dc:title />
|
||||||
|
</cc:Work>
|
||||||
|
</rdf:RDF>
|
||||||
|
</metadata>
|
||||||
|
<g
|
||||||
|
id="layer1">
|
||||||
|
<path
|
||||||
|
style="fill:none;fill-rule:evenodd;stroke:#f73208;stroke-width:2;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||||
|
d="M 2.6949152,23.79661 C 7.1696576,10.712822 28.507924,22.118228 29.237288,7.6610169"
|
||||||
|
id="path4205"
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
sodipodi:nodetypes="cc" />
|
||||||
|
<path
|
||||||
|
d="m 4.6965534,23.856149 a 1.8239208,1.9086996 0 0 1 -3.6478415,0 1.8239208,1.9086996 0 1 1 3.6478415,0 z"
|
||||||
|
id="path2985-2-9"
|
||||||
|
style="fill:#000000;fill-opacity:1;stroke:#370000;stroke-width:1.57200003;stroke-linejoin:round;stroke-miterlimit:4.9000001;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.93950177"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
<path
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
style="fill:#000000;fill-opacity:1;stroke:#370000;stroke-width:1.57200003;stroke-linejoin:round;stroke-miterlimit:4.9000001;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.93950177"
|
||||||
|
id="path9923"
|
||||||
|
d="m 30.866045,7.856149 a 1.8239208,1.9086996 0 0 1 -3.647842,0 1.8239208,1.9086996 0 1 1 3.647842,0 z" />
|
||||||
|
<path
|
||||||
|
d="m 9.8917173,10.441052 a 1.8239208,1.9086996 0 0 1 -3.6478415,0 1.8239208,1.9086996 0 1 1 3.6478415,0 z"
|
||||||
|
id="path2985-2-9-3"
|
||||||
|
style="fill:#000000;fill-opacity:1;stroke:#370000;stroke-width:1.57200003;stroke-linejoin:round;stroke-miterlimit:4.9000001;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.93950177"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
<path
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
style="fill:#000000;fill-opacity:1;stroke:#370000;stroke-width:1.57200003;stroke-linejoin:round;stroke-miterlimit:4.9000001;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.93950177"
|
||||||
|
id="path9923-8"
|
||||||
|
d="m 24.806972,22.034039 a 1.823921,1.9086998 0 0 1 -3.647842,0 1.823921,1.9086998 0 1 1 3.647842,0 z" />
|
||||||
|
</g>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 3.5 KiB |
|
@ -43,6 +43,7 @@
|
||||||
#include "../qmuparser/qmuparsererror.h"
|
#include "../qmuparser/qmuparsererror.h"
|
||||||
#include "../vgeometry/varc.h"
|
#include "../vgeometry/varc.h"
|
||||||
#include "../vgeometry/vsplinepath.h"
|
#include "../vgeometry/vsplinepath.h"
|
||||||
|
#include "../vgeometry/vcubicbezier.h"
|
||||||
#include "../core/vapplication.h"
|
#include "../core/vapplication.h"
|
||||||
#include "../vpatterndb/calculator.h"
|
#include "../vpatterndb/calculator.h"
|
||||||
|
|
||||||
|
@ -1938,6 +1939,46 @@ void VPattern::ParseToolSpline(VMainGraphicsScene *scene, QDomElement &domElemen
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
//---------------------------------------------------------------------------------------------------------------------
|
||||||
|
void VPattern::ParseToolCubicBezier(VMainGraphicsScene *scene, const QDomElement &domElement, const Document &parse)
|
||||||
|
{
|
||||||
|
SCASSERT(scene != nullptr);
|
||||||
|
Q_ASSERT_X(not domElement.isNull(), Q_FUNC_INFO, "domElement is null");
|
||||||
|
|
||||||
|
try
|
||||||
|
{
|
||||||
|
quint32 id = 0;
|
||||||
|
|
||||||
|
ToolsCommonAttributes(domElement, id);
|
||||||
|
const quint32 point1 = GetParametrUInt(domElement, AttrPoint1, NULL_ID_STR);
|
||||||
|
const quint32 point2 = GetParametrUInt(domElement, AttrPoint2, NULL_ID_STR);
|
||||||
|
const quint32 point3 = GetParametrUInt(domElement, AttrPoint3, NULL_ID_STR);
|
||||||
|
const quint32 point4 = GetParametrUInt(domElement, AttrPoint4, NULL_ID_STR);
|
||||||
|
|
||||||
|
const QString color = GetParametrString(domElement, AttrColor, ColorBlack);
|
||||||
|
const quint32 duplicate = GetParametrUInt(domElement, AttrDuplicate, "0");
|
||||||
|
|
||||||
|
auto p1 = data->GeometricObject<VPointF>(point1);
|
||||||
|
auto p2 = data->GeometricObject<VPointF>(point2);
|
||||||
|
auto p3 = data->GeometricObject<VPointF>(point3);
|
||||||
|
auto p4 = data->GeometricObject<VPointF>(point4);
|
||||||
|
|
||||||
|
VCubicBezier *spline = new VCubicBezier(*p1, *p2, *p3, *p4);
|
||||||
|
if (duplicate > 0)
|
||||||
|
{
|
||||||
|
spline->SetDuplicate(duplicate);
|
||||||
|
}
|
||||||
|
|
||||||
|
VToolCubicBezier::Create(id, spline, color, scene, this, data, parse, Source::FromFile);
|
||||||
|
}
|
||||||
|
catch (const VExceptionBadId &e)
|
||||||
|
{
|
||||||
|
VExceptionObjectError excep(tr("Error creating or updating cubic bezier curve"), domElement);
|
||||||
|
excep.AddMoreInformation(e.ErrorMessage());
|
||||||
|
throw excep;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
//---------------------------------------------------------------------------------------------------------------------
|
//---------------------------------------------------------------------------------------------------------------------
|
||||||
void VPattern::ParseOldToolSplinePath(VMainGraphicsScene *scene, const QDomElement &domElement, const Document &parse)
|
void VPattern::ParseOldToolSplinePath(VMainGraphicsScene *scene, const QDomElement &domElement, const Document &parse)
|
||||||
{
|
{
|
||||||
|
@ -2377,7 +2418,8 @@ void VPattern::ParseSplineElement(VMainGraphicsScene *scene, QDomElement &domEle
|
||||||
<< VToolSplinePath::OldToolType /*2*/
|
<< VToolSplinePath::OldToolType /*2*/
|
||||||
<< VToolSplinePath::ToolType /*3*/
|
<< VToolSplinePath::ToolType /*3*/
|
||||||
<< VNodeSpline::ToolType /*4*/
|
<< VNodeSpline::ToolType /*4*/
|
||||||
<< VNodeSplinePath::ToolType; /*5*/
|
<< VNodeSplinePath::ToolType /*5*/
|
||||||
|
<< VToolCubicBezier::ToolType; /*6*/
|
||||||
switch (splines.indexOf(type))
|
switch (splines.indexOf(type))
|
||||||
{
|
{
|
||||||
case 0: //VToolSpline::OldToolType
|
case 0: //VToolSpline::OldToolType
|
||||||
|
@ -2404,6 +2446,10 @@ void VPattern::ParseSplineElement(VMainGraphicsScene *scene, QDomElement &domEle
|
||||||
qCDebug(vXML, "VNodeSplinePath.");
|
qCDebug(vXML, "VNodeSplinePath.");
|
||||||
ParseNodeSplinePath(domElement, parse);
|
ParseNodeSplinePath(domElement, parse);
|
||||||
break;
|
break;
|
||||||
|
case 6: //VToolCubicBezier::ToolType
|
||||||
|
qCDebug(vXML, "VToolCubicBezier.");
|
||||||
|
ParseToolCubicBezier(scene, domElement, parse);
|
||||||
|
break;
|
||||||
default:
|
default:
|
||||||
VException e(tr("Unknown spline type '%1'.").arg(type));
|
VException e(tr("Unknown spline type '%1'.").arg(type));
|
||||||
throw e;
|
throw e;
|
||||||
|
|
|
@ -171,6 +171,7 @@ private:
|
||||||
void ParseOldToolSpline(VMainGraphicsScene *scene, const QDomElement &domElement, const Document &parse);
|
void ParseOldToolSpline(VMainGraphicsScene *scene, const QDomElement &domElement, const Document &parse);
|
||||||
|
|
||||||
void ParseToolSpline(VMainGraphicsScene *scene, QDomElement &domElement, const Document &parse);
|
void ParseToolSpline(VMainGraphicsScene *scene, QDomElement &domElement, const Document &parse);
|
||||||
|
void ParseToolCubicBezier(VMainGraphicsScene *scene, const QDomElement &domElement, const Document &parse);
|
||||||
|
|
||||||
// TODO. Delete if minimal supported version is 0.2.7
|
// TODO. Delete if minimal supported version is 0.2.7
|
||||||
void ParseOldToolSplinePath(VMainGraphicsScene *scene, const QDomElement &domElement, const Document &parse);
|
void ParseOldToolSplinePath(VMainGraphicsScene *scene, const QDomElement &domElement, const Document &parse);
|
||||||
|
|
|
@ -100,6 +100,7 @@ const QString AttrP2Line2 = QStringLiteral("p2Line2");
|
||||||
const QString AttrPShoulder = QStringLiteral("pShoulder");
|
const QString AttrPShoulder = QStringLiteral("pShoulder");
|
||||||
const QString AttrPoint1 = QStringLiteral("point1");
|
const QString AttrPoint1 = QStringLiteral("point1");
|
||||||
const QString AttrPoint2 = QStringLiteral("point2");
|
const QString AttrPoint2 = QStringLiteral("point2");
|
||||||
|
const QString AttrPoint3 = QStringLiteral("point3");
|
||||||
const QString AttrPoint4 = QStringLiteral("point4");
|
const QString AttrPoint4 = QStringLiteral("point4");
|
||||||
const QString AttrKAsm1 = QStringLiteral("kAsm1");
|
const QString AttrKAsm1 = QStringLiteral("kAsm1");
|
||||||
const QString AttrKAsm2 = QStringLiteral("kAsm2");
|
const QString AttrKAsm2 = QStringLiteral("kAsm2");
|
||||||
|
|
|
@ -102,6 +102,7 @@ extern const QString AttrP2Line2;
|
||||||
extern const QString AttrPShoulder;
|
extern const QString AttrPShoulder;
|
||||||
extern const QString AttrPoint1;
|
extern const QString AttrPoint1;
|
||||||
extern const QString AttrPoint2;
|
extern const QString AttrPoint2;
|
||||||
|
extern const QString AttrPoint3;
|
||||||
extern const QString AttrPoint4;
|
extern const QString AttrPoint4;
|
||||||
extern const QString AttrKAsm1;// TODO. Delete if minimal supported version is 0.2.7
|
extern const QString AttrKAsm1;// TODO. Delete if minimal supported version is 0.2.7
|
||||||
extern const QString AttrKAsm2;// TODO. Delete if minimal supported version is 0.2.7
|
extern const QString AttrKAsm2;// TODO. Delete if minimal supported version is 0.2.7
|
||||||
|
|
|
@ -198,6 +198,8 @@
|
||||||
<xs:attribute name="length1" type="xs:string"></xs:attribute>
|
<xs:attribute name="length1" type="xs:string"></xs:attribute>
|
||||||
<xs:attribute name="length2" type="xs:string"></xs:attribute>
|
<xs:attribute name="length2" type="xs:string"></xs:attribute>
|
||||||
<xs:attribute name="point1" type="xs:unsignedInt"></xs:attribute>
|
<xs:attribute name="point1" type="xs:unsignedInt"></xs:attribute>
|
||||||
|
<xs:attribute name="point2" type="xs:unsignedInt"></xs:attribute>
|
||||||
|
<xs:attribute name="point3" type="xs:unsignedInt"></xs:attribute>
|
||||||
<xs:attribute name="point4" type="xs:unsignedInt"></xs:attribute>
|
<xs:attribute name="point4" type="xs:unsignedInt"></xs:attribute>
|
||||||
<xs:attribute name="color" type="colors"></xs:attribute>
|
<xs:attribute name="color" type="colors"></xs:attribute>
|
||||||
<xs:attribute name="duplicate" type="xs:unsignedInt"></xs:attribute>
|
<xs:attribute name="duplicate" type="xs:unsignedInt"></xs:attribute>
|
||||||
|
|
|
@ -61,6 +61,11 @@ VCubicBezier &VCubicBezier::operator=(const VCubicBezier &curve)
|
||||||
return *this;
|
return *this;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
//---------------------------------------------------------------------------------------------------------------------
|
||||||
|
VCubicBezier::~VCubicBezier()
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
//---------------------------------------------------------------------------------------------------------------------
|
//---------------------------------------------------------------------------------------------------------------------
|
||||||
VPointF VCubicBezier::GetP1() const
|
VPointF VCubicBezier::GetP1() const
|
||||||
{
|
{
|
||||||
|
|
|
@ -42,6 +42,7 @@ public:
|
||||||
VCubicBezier(const VPointF &p1, const VPointF &p2, const VPointF &p3, const VPointF &p4, quint32 idObject = 0,
|
VCubicBezier(const VPointF &p1, const VPointF &p2, const VPointF &p3, const VPointF &p4, quint32 idObject = 0,
|
||||||
Draw mode = Draw::Calculation);
|
Draw mode = Draw::Calculation);
|
||||||
VCubicBezier &operator=(const VCubicBezier &curve);
|
VCubicBezier &operator=(const VCubicBezier &curve);
|
||||||
|
virtual ~VCubicBezier();
|
||||||
|
|
||||||
virtual VPointF GetP1() const Q_DECL_OVERRIDE;
|
virtual VPointF GetP1() const Q_DECL_OVERRIDE;
|
||||||
void SetP1(const VPointF &p);
|
void SetP1(const VPointF &p);
|
||||||
|
|
|
@ -74,6 +74,7 @@ enum class Tool : ToolVisHolderType
|
||||||
Bisector,
|
Bisector,
|
||||||
LineIntersect,
|
LineIntersect,
|
||||||
Spline,
|
Spline,
|
||||||
|
CubicBezier,
|
||||||
CutSpline,
|
CutSpline,
|
||||||
CutArc,
|
CutArc,
|
||||||
Arc,
|
Arc,
|
||||||
|
@ -127,6 +128,7 @@ enum class Vis : ToolVisHolderType
|
||||||
ToolPointFromArcAndTangent,
|
ToolPointFromArcAndTangent,
|
||||||
ToolShoulderPoint,
|
ToolShoulderPoint,
|
||||||
ToolSpline,
|
ToolSpline,
|
||||||
|
ToolCubicBezier,
|
||||||
ToolTriangle,
|
ToolTriangle,
|
||||||
ToolCutSpline,
|
ToolCutSpline,
|
||||||
ToolSplinePath,
|
ToolSplinePath,
|
||||||
|
|
|
@ -34,7 +34,8 @@ HEADERS += \
|
||||||
$$PWD/support/dialogeditwrongformula.h \
|
$$PWD/support/dialogeditwrongformula.h \
|
||||||
$$PWD/support/dialogundo.h \
|
$$PWD/support/dialogundo.h \
|
||||||
$$PWD/tools/dialogtruedarts.h \
|
$$PWD/tools/dialogtruedarts.h \
|
||||||
$$PWD/tools/dialogpointofintersectioncurves.h
|
$$PWD/tools/dialogpointofintersectioncurves.h \
|
||||||
|
$$PWD/tools/dialogcubicbezier.h
|
||||||
|
|
||||||
SOURCES += \
|
SOURCES += \
|
||||||
$$PWD/tools/dialogalongline.cpp \
|
$$PWD/tools/dialogalongline.cpp \
|
||||||
|
@ -68,7 +69,8 @@ SOURCES += \
|
||||||
$$PWD/support/dialogeditwrongformula.cpp \
|
$$PWD/support/dialogeditwrongformula.cpp \
|
||||||
$$PWD/support/dialogundo.cpp \
|
$$PWD/support/dialogundo.cpp \
|
||||||
$$PWD/tools/dialogtruedarts.cpp \
|
$$PWD/tools/dialogtruedarts.cpp \
|
||||||
$$PWD/tools/dialogpointofintersectioncurves.cpp
|
$$PWD/tools/dialogpointofintersectioncurves.cpp \
|
||||||
|
$$PWD/tools/dialogcubicbezier.cpp
|
||||||
|
|
||||||
FORMS += \
|
FORMS += \
|
||||||
$$PWD/tools/dialogalongline.ui \
|
$$PWD/tools/dialogalongline.ui \
|
||||||
|
@ -101,4 +103,5 @@ FORMS += \
|
||||||
$$PWD/support/dialogeditwrongformula.ui \
|
$$PWD/support/dialogeditwrongformula.ui \
|
||||||
$$PWD/support/dialogundo.ui \
|
$$PWD/support/dialogundo.ui \
|
||||||
$$PWD/tools/dialogtruedarts.ui \
|
$$PWD/tools/dialogtruedarts.ui \
|
||||||
$$PWD/tools/dialogpointofintersectioncurves.ui
|
$$PWD/tools/dialogpointofintersectioncurves.ui \
|
||||||
|
$$PWD/tools/dialogcubicbezier.ui
|
||||||
|
|
|
@ -42,6 +42,7 @@
|
||||||
#include "dialogs/tools/dialogshoulderpoint.h"
|
#include "dialogs/tools/dialogshoulderpoint.h"
|
||||||
#include "dialogs/tools/dialogsinglepoint.h"
|
#include "dialogs/tools/dialogsinglepoint.h"
|
||||||
#include "dialogs/tools/dialogspline.h"
|
#include "dialogs/tools/dialogspline.h"
|
||||||
|
#include "dialogs/tools/dialogcubicbezier.h"
|
||||||
#include "dialogs/tools/dialogsplinepath.h"
|
#include "dialogs/tools/dialogsplinepath.h"
|
||||||
#include "dialogs/tools/dialogheight.h"
|
#include "dialogs/tools/dialogheight.h"
|
||||||
#include "dialogs/tools/dialogcutarc.h"
|
#include "dialogs/tools/dialogcutarc.h"
|
||||||
|
|
261
src/libs/vtools/dialogs/tools/dialogcubicbezier.cpp
Normal file
261
src/libs/vtools/dialogs/tools/dialogcubicbezier.cpp
Normal file
|
@ -0,0 +1,261 @@
|
||||||
|
/************************************************************************
|
||||||
|
**
|
||||||
|
** @file dialogcubicbezier.cpp
|
||||||
|
** @author Roman Telezhynskyi <dismine(at)gmail.com>
|
||||||
|
** @date 10 3, 2016
|
||||||
|
**
|
||||||
|
** @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) 2016 Valentina project
|
||||||
|
** <https://bitbucket.org/dismine/valentina> All Rights Reserved.
|
||||||
|
**
|
||||||
|
** Valentina is free software: you can redistribute it and/or modify
|
||||||
|
** 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.
|
||||||
|
**
|
||||||
|
** Valentina is distributed in the hope that it will be useful,
|
||||||
|
** 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/>.
|
||||||
|
**
|
||||||
|
*************************************************************************/
|
||||||
|
|
||||||
|
#include "dialogcubicbezier.h"
|
||||||
|
#include "ui_dialogcubicbezier.h"
|
||||||
|
#include "../../visualization/vistoolcubicbezier.h"
|
||||||
|
|
||||||
|
//---------------------------------------------------------------------------------------------------------------------
|
||||||
|
DialogCubicBezier::DialogCubicBezier(const VContainer *data, const quint32 &toolId, QWidget *parent)
|
||||||
|
: DialogTool(data, toolId, parent),
|
||||||
|
ui(new Ui::DialogCubicBezier),
|
||||||
|
spl(),
|
||||||
|
newDuplicate(-1)
|
||||||
|
{
|
||||||
|
ui->setupUi(this);
|
||||||
|
InitOkCancelApply(ui);
|
||||||
|
|
||||||
|
FillComboBoxPoints(ui->comboBoxP1);
|
||||||
|
FillComboBoxPoints(ui->comboBoxP2);
|
||||||
|
FillComboBoxPoints(ui->comboBoxP3);
|
||||||
|
FillComboBoxPoints(ui->comboBoxP4);
|
||||||
|
FillComboBoxLineColors(ui->comboBoxColor);
|
||||||
|
|
||||||
|
CheckState();
|
||||||
|
|
||||||
|
connect(ui->comboBoxP1, static_cast<void (QComboBox::*)(const QString &)>(&QComboBox::currentIndexChanged),
|
||||||
|
this, &DialogCubicBezier::PointNameChanged);
|
||||||
|
connect(ui->comboBoxP2, static_cast<void (QComboBox::*)(const QString &)>(&QComboBox::currentIndexChanged),
|
||||||
|
this, &DialogCubicBezier::PointNameChanged);
|
||||||
|
connect(ui->comboBoxP3, static_cast<void (QComboBox::*)(const QString &)>(&QComboBox::currentIndexChanged),
|
||||||
|
this, &DialogCubicBezier::PointNameChanged);
|
||||||
|
connect(ui->comboBoxP4, static_cast<void (QComboBox::*)(const QString &)>(&QComboBox::currentIndexChanged),
|
||||||
|
this, &DialogCubicBezier::PointNameChanged);
|
||||||
|
|
||||||
|
vis = new VisToolCubicBezier(data);
|
||||||
|
}
|
||||||
|
|
||||||
|
//---------------------------------------------------------------------------------------------------------------------
|
||||||
|
DialogCubicBezier::~DialogCubicBezier()
|
||||||
|
{
|
||||||
|
DeleteVisualization<VisToolCubicBezier>();
|
||||||
|
delete ui;
|
||||||
|
}
|
||||||
|
|
||||||
|
//---------------------------------------------------------------------------------------------------------------------
|
||||||
|
VCubicBezier DialogCubicBezier::GetSpline() const
|
||||||
|
{
|
||||||
|
return spl;
|
||||||
|
}
|
||||||
|
|
||||||
|
//---------------------------------------------------------------------------------------------------------------------
|
||||||
|
void DialogCubicBezier::SetSpline(const VCubicBezier &spline)
|
||||||
|
{
|
||||||
|
spl = spline;
|
||||||
|
|
||||||
|
setCurrentPointId(ui->comboBoxP1, spl.GetP1().id());
|
||||||
|
setCurrentPointId(ui->comboBoxP2, spl.GetP2().id());
|
||||||
|
setCurrentPointId(ui->comboBoxP3, spl.GetP3().id());
|
||||||
|
setCurrentPointId(ui->comboBoxP4, spl.GetP4().id());
|
||||||
|
|
||||||
|
ui->lineEditSplineName->setText(spl.name());
|
||||||
|
|
||||||
|
auto path = qobject_cast<VisToolCubicBezier *>(vis);
|
||||||
|
SCASSERT(path != nullptr);
|
||||||
|
|
||||||
|
path->setObject1Id(spl.GetP1().id());
|
||||||
|
path->setObject2Id(spl.GetP2().id());
|
||||||
|
path->setObject3Id(spl.GetP3().id());
|
||||||
|
path->setObject4Id(spl.GetP4().id());
|
||||||
|
}
|
||||||
|
|
||||||
|
//---------------------------------------------------------------------------------------------------------------------
|
||||||
|
QString DialogCubicBezier::GetColor() const
|
||||||
|
{
|
||||||
|
return GetComboBoxCurrentData(ui->comboBoxColor);
|
||||||
|
}
|
||||||
|
|
||||||
|
//---------------------------------------------------------------------------------------------------------------------
|
||||||
|
void DialogCubicBezier::SetColor(const QString &value)
|
||||||
|
{
|
||||||
|
ChangeCurrentData(ui->comboBoxColor, value);
|
||||||
|
}
|
||||||
|
|
||||||
|
//---------------------------------------------------------------------------------------------------------------------
|
||||||
|
void DialogCubicBezier::ChosenObject(quint32 id, const SceneObject &type)
|
||||||
|
{
|
||||||
|
if (prepare == false)// After first choose we ignore all objects
|
||||||
|
{
|
||||||
|
if (type == SceneObject::Point)
|
||||||
|
{
|
||||||
|
auto *path = qobject_cast<VisToolCubicBezier *>(vis);
|
||||||
|
SCASSERT(path != nullptr);
|
||||||
|
|
||||||
|
switch (number)
|
||||||
|
{
|
||||||
|
case 0:
|
||||||
|
if (SetObject(id, ui->comboBoxP1, tr("Select the second point of curve")))
|
||||||
|
{
|
||||||
|
++number;
|
||||||
|
path->VisualMode(id);
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
case 1:
|
||||||
|
if (SetObject(id, ui->comboBoxP2, tr("Select the third point of curve")))
|
||||||
|
{
|
||||||
|
++number;
|
||||||
|
|
||||||
|
path->setObject2Id(id);
|
||||||
|
path->RefreshGeometry();
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
case 2:
|
||||||
|
if (SetObject(id, ui->comboBoxP3, tr("Select the fourth point of curve")))
|
||||||
|
{
|
||||||
|
++number;
|
||||||
|
|
||||||
|
path->setObject3Id(id);
|
||||||
|
path->RefreshGeometry();
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
case 3:
|
||||||
|
if (getCurrentObjectId(ui->comboBoxP1) != id)
|
||||||
|
{
|
||||||
|
if (SetObject(id, ui->comboBoxP4, ""))
|
||||||
|
{
|
||||||
|
++number;
|
||||||
|
|
||||||
|
path->setObject4Id(id);
|
||||||
|
path->RefreshGeometry();
|
||||||
|
prepare = true;
|
||||||
|
DialogAccepted();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
default:
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
//---------------------------------------------------------------------------------------------------------------------
|
||||||
|
void DialogCubicBezier::PointNameChanged()
|
||||||
|
{
|
||||||
|
QColor color = okColor;
|
||||||
|
if (getCurrentObjectId(ui->comboBoxP1) == getCurrentObjectId(ui->comboBoxP4))
|
||||||
|
{
|
||||||
|
flagError = false;
|
||||||
|
color = errorColor;
|
||||||
|
|
||||||
|
ui->lineEditSplineName->setText(tr("Invalid spline"));
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
flagError = true;
|
||||||
|
color = okColor;
|
||||||
|
|
||||||
|
if (getCurrentObjectId(ui->comboBoxP1) == spl.GetP1().id() &&
|
||||||
|
getCurrentObjectId(ui->comboBoxP4) == spl.GetP4().id())
|
||||||
|
{
|
||||||
|
newDuplicate = -1;
|
||||||
|
ui->lineEditSplineName->setText(spl.name());
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
VCubicBezier spline(*GetP1(), *GetP2(), *GetP3(), *GetP4());
|
||||||
|
|
||||||
|
if (not data->IsUnique(spline.name()))
|
||||||
|
{
|
||||||
|
newDuplicate = DNumber(spline.name());
|
||||||
|
spline.SetDuplicate(newDuplicate);
|
||||||
|
}
|
||||||
|
ui->lineEditSplineName->setText(spline.name());
|
||||||
|
}
|
||||||
|
}
|
||||||
|
ChangeColor(ui->labelName, color);
|
||||||
|
ChangeColor(ui->labelFirstPoint, color);
|
||||||
|
ChangeColor(ui->labelSecondPoint, color);
|
||||||
|
ChangeColor(ui->labelThirdPoint, color);
|
||||||
|
ChangeColor(ui->labelForthPoint, color);
|
||||||
|
CheckState();
|
||||||
|
}
|
||||||
|
|
||||||
|
//---------------------------------------------------------------------------------------------------------------------
|
||||||
|
void DialogCubicBezier::ShowVisualization()
|
||||||
|
{
|
||||||
|
AddVisualization<VisToolCubicBezier>();
|
||||||
|
}
|
||||||
|
|
||||||
|
//---------------------------------------------------------------------------------------------------------------------
|
||||||
|
void DialogCubicBezier::SaveData()
|
||||||
|
{
|
||||||
|
const auto p1 = GetP1();
|
||||||
|
const auto p2 = GetP2();
|
||||||
|
const auto p3 = GetP3();
|
||||||
|
const auto p4 = GetP4();
|
||||||
|
|
||||||
|
spl = VCubicBezier(*p1, *p2, *p3, *p4);
|
||||||
|
|
||||||
|
const quint32 d = spl.GetDuplicate();//Save previous value
|
||||||
|
newDuplicate <= -1 ? spl.SetDuplicate(d) : spl.SetDuplicate(static_cast<quint32>(newDuplicate));
|
||||||
|
|
||||||
|
auto path = qobject_cast<VisToolCubicBezier *>(vis);
|
||||||
|
SCASSERT(path != nullptr);
|
||||||
|
|
||||||
|
path->setObject1Id(p1->id());
|
||||||
|
path->setObject2Id(p2->id());
|
||||||
|
path->setObject3Id(p3->id());
|
||||||
|
path->setObject4Id(p4->id());
|
||||||
|
path->SetMode(Mode::Show);
|
||||||
|
path->RefreshGeometry();
|
||||||
|
}
|
||||||
|
|
||||||
|
//---------------------------------------------------------------------------------------------------------------------
|
||||||
|
const QSharedPointer<VPointF> DialogCubicBezier::GetP1() const
|
||||||
|
{
|
||||||
|
return data->GeometricObject<VPointF>(getCurrentObjectId(ui->comboBoxP1));
|
||||||
|
}
|
||||||
|
|
||||||
|
//---------------------------------------------------------------------------------------------------------------------
|
||||||
|
const QSharedPointer<VPointF> DialogCubicBezier::GetP2() const
|
||||||
|
{
|
||||||
|
return data->GeometricObject<VPointF>(getCurrentObjectId(ui->comboBoxP2));
|
||||||
|
}
|
||||||
|
|
||||||
|
//---------------------------------------------------------------------------------------------------------------------
|
||||||
|
const QSharedPointer<VPointF> DialogCubicBezier::GetP3() const
|
||||||
|
{
|
||||||
|
return data->GeometricObject<VPointF>(getCurrentObjectId(ui->comboBoxP3));
|
||||||
|
}
|
||||||
|
|
||||||
|
//---------------------------------------------------------------------------------------------------------------------
|
||||||
|
const QSharedPointer<VPointF> DialogCubicBezier::GetP4() const
|
||||||
|
{
|
||||||
|
return data->GeometricObject<VPointF>(getCurrentObjectId(ui->comboBoxP4));
|
||||||
|
}
|
77
src/libs/vtools/dialogs/tools/dialogcubicbezier.h
Normal file
77
src/libs/vtools/dialogs/tools/dialogcubicbezier.h
Normal file
|
@ -0,0 +1,77 @@
|
||||||
|
/************************************************************************
|
||||||
|
**
|
||||||
|
** @file dialogcubicbezier.h
|
||||||
|
** @author Roman Telezhynskyi <dismine(at)gmail.com>
|
||||||
|
** @date 10 3, 2016
|
||||||
|
**
|
||||||
|
** @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) 2016 Valentina project
|
||||||
|
** <https://bitbucket.org/dismine/valentina> All Rights Reserved.
|
||||||
|
**
|
||||||
|
** Valentina is free software: you can redistribute it and/or modify
|
||||||
|
** 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.
|
||||||
|
**
|
||||||
|
** Valentina is distributed in the hope that it will be useful,
|
||||||
|
** 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/>.
|
||||||
|
**
|
||||||
|
*************************************************************************/
|
||||||
|
|
||||||
|
#ifndef DIALOGCUBICBEZIER_H
|
||||||
|
#define DIALOGCUBICBEZIER_H
|
||||||
|
|
||||||
|
#include "dialogtool.h"
|
||||||
|
#include "../vgeometry/vcubicbezier.h"
|
||||||
|
|
||||||
|
namespace Ui
|
||||||
|
{
|
||||||
|
class DialogCubicBezier;
|
||||||
|
}
|
||||||
|
|
||||||
|
class DialogCubicBezier : public DialogTool
|
||||||
|
{
|
||||||
|
Q_OBJECT
|
||||||
|
|
||||||
|
public:
|
||||||
|
explicit DialogCubicBezier(const VContainer *data, const quint32 &toolId, QWidget *parent = nullptr);
|
||||||
|
virtual ~DialogCubicBezier();
|
||||||
|
|
||||||
|
VCubicBezier GetSpline() const;
|
||||||
|
void SetSpline(const VCubicBezier &spline);
|
||||||
|
|
||||||
|
QString GetColor() const;
|
||||||
|
void SetColor(const QString &value);
|
||||||
|
public slots:
|
||||||
|
virtual void ChosenObject(quint32 id, const SceneObject &type) Q_DECL_OVERRIDE;
|
||||||
|
virtual void PointNameChanged() Q_DECL_OVERRIDE;
|
||||||
|
protected:
|
||||||
|
virtual void ShowVisualization() Q_DECL_OVERRIDE;
|
||||||
|
/**
|
||||||
|
* @brief SaveData Put dialog data in local variables
|
||||||
|
*/
|
||||||
|
virtual void SaveData() Q_DECL_OVERRIDE;
|
||||||
|
private:
|
||||||
|
Q_DISABLE_COPY(DialogCubicBezier)
|
||||||
|
Ui::DialogCubicBezier *ui;
|
||||||
|
|
||||||
|
/** @brief spl spline */
|
||||||
|
VCubicBezier spl;
|
||||||
|
|
||||||
|
qint32 newDuplicate;
|
||||||
|
|
||||||
|
const QSharedPointer<VPointF> GetP1() const;
|
||||||
|
const QSharedPointer<VPointF> GetP2() const;
|
||||||
|
const QSharedPointer<VPointF> GetP3() const;
|
||||||
|
const QSharedPointer<VPointF> GetP4() const;
|
||||||
|
};
|
||||||
|
|
||||||
|
#endif // DIALOGCUBICBEZIER_H
|
148
src/libs/vtools/dialogs/tools/dialogcubicbezier.ui
Normal file
148
src/libs/vtools/dialogs/tools/dialogcubicbezier.ui
Normal file
|
@ -0,0 +1,148 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<ui version="4.0">
|
||||||
|
<class>DialogCubicBezier</class>
|
||||||
|
<widget class="QDialog" name="DialogCubicBezier">
|
||||||
|
<property name="geometry">
|
||||||
|
<rect>
|
||||||
|
<x>0</x>
|
||||||
|
<y>0</y>
|
||||||
|
<width>285</width>
|
||||||
|
<height>245</height>
|
||||||
|
</rect>
|
||||||
|
</property>
|
||||||
|
<property name="windowTitle">
|
||||||
|
<string>Cubic bezier</string>
|
||||||
|
</property>
|
||||||
|
<property name="windowIcon">
|
||||||
|
<iconset resource="../../../vmisc/share/resources/icon.qrc">
|
||||||
|
<normaloff>:/icon/64x64/icon64x64.png</normaloff>:/icon/64x64/icon64x64.png</iconset>
|
||||||
|
</property>
|
||||||
|
<layout class="QVBoxLayout" name="verticalLayout">
|
||||||
|
<item>
|
||||||
|
<layout class="QFormLayout" name="formLayout">
|
||||||
|
<property name="fieldGrowthPolicy">
|
||||||
|
<enum>QFormLayout::ExpandingFieldsGrow</enum>
|
||||||
|
</property>
|
||||||
|
<item row="4" column="0">
|
||||||
|
<widget class="QLabel" name="label">
|
||||||
|
<property name="text">
|
||||||
|
<string>Color:</string>
|
||||||
|
</property>
|
||||||
|
</widget>
|
||||||
|
</item>
|
||||||
|
<item row="4" column="1">
|
||||||
|
<widget class="QComboBox" name="comboBoxColor">
|
||||||
|
<property name="sizePolicy">
|
||||||
|
<sizepolicy hsizetype="Preferred" vsizetype="Preferred">
|
||||||
|
<horstretch>0</horstretch>
|
||||||
|
<verstretch>0</verstretch>
|
||||||
|
</sizepolicy>
|
||||||
|
</property>
|
||||||
|
</widget>
|
||||||
|
</item>
|
||||||
|
<item row="5" column="0">
|
||||||
|
<widget class="QLabel" name="labelName">
|
||||||
|
<property name="text">
|
||||||
|
<string>Name:</string>
|
||||||
|
</property>
|
||||||
|
</widget>
|
||||||
|
</item>
|
||||||
|
<item row="5" column="1">
|
||||||
|
<widget class="QLineEdit" name="lineEditSplineName">
|
||||||
|
<property name="readOnly">
|
||||||
|
<bool>true</bool>
|
||||||
|
</property>
|
||||||
|
</widget>
|
||||||
|
</item>
|
||||||
|
<item row="0" column="0">
|
||||||
|
<widget class="QLabel" name="labelFirstPoint">
|
||||||
|
<property name="text">
|
||||||
|
<string>First point:</string>
|
||||||
|
</property>
|
||||||
|
</widget>
|
||||||
|
</item>
|
||||||
|
<item row="0" column="1">
|
||||||
|
<widget class="QComboBox" name="comboBoxP1"/>
|
||||||
|
</item>
|
||||||
|
<item row="1" column="0">
|
||||||
|
<widget class="QLabel" name="labelSecondPoint">
|
||||||
|
<property name="text">
|
||||||
|
<string>Second point:</string>
|
||||||
|
</property>
|
||||||
|
</widget>
|
||||||
|
</item>
|
||||||
|
<item row="1" column="1">
|
||||||
|
<widget class="QComboBox" name="comboBoxP2"/>
|
||||||
|
</item>
|
||||||
|
<item row="2" column="0">
|
||||||
|
<widget class="QLabel" name="labelThirdPoint">
|
||||||
|
<property name="text">
|
||||||
|
<string>Third point:</string>
|
||||||
|
</property>
|
||||||
|
</widget>
|
||||||
|
</item>
|
||||||
|
<item row="2" column="1">
|
||||||
|
<widget class="QComboBox" name="comboBoxP3"/>
|
||||||
|
</item>
|
||||||
|
<item row="3" column="0">
|
||||||
|
<widget class="QLabel" name="labelForthPoint">
|
||||||
|
<property name="text">
|
||||||
|
<string>Fourth point:</string>
|
||||||
|
</property>
|
||||||
|
</widget>
|
||||||
|
</item>
|
||||||
|
<item row="3" column="1">
|
||||||
|
<widget class="QComboBox" name="comboBoxP4"/>
|
||||||
|
</item>
|
||||||
|
</layout>
|
||||||
|
</item>
|
||||||
|
<item>
|
||||||
|
<widget class="QDialogButtonBox" name="buttonBox">
|
||||||
|
<property name="orientation">
|
||||||
|
<enum>Qt::Horizontal</enum>
|
||||||
|
</property>
|
||||||
|
<property name="standardButtons">
|
||||||
|
<set>QDialogButtonBox::Apply|QDialogButtonBox::Cancel|QDialogButtonBox::Ok</set>
|
||||||
|
</property>
|
||||||
|
</widget>
|
||||||
|
</item>
|
||||||
|
</layout>
|
||||||
|
</widget>
|
||||||
|
<resources>
|
||||||
|
<include location="../../../vmisc/share/resources/icon.qrc"/>
|
||||||
|
</resources>
|
||||||
|
<connections>
|
||||||
|
<connection>
|
||||||
|
<sender>buttonBox</sender>
|
||||||
|
<signal>accepted()</signal>
|
||||||
|
<receiver>DialogCubicBezier</receiver>
|
||||||
|
<slot>accept()</slot>
|
||||||
|
<hints>
|
||||||
|
<hint type="sourcelabel">
|
||||||
|
<x>248</x>
|
||||||
|
<y>254</y>
|
||||||
|
</hint>
|
||||||
|
<hint type="destinationlabel">
|
||||||
|
<x>157</x>
|
||||||
|
<y>274</y>
|
||||||
|
</hint>
|
||||||
|
</hints>
|
||||||
|
</connection>
|
||||||
|
<connection>
|
||||||
|
<sender>buttonBox</sender>
|
||||||
|
<signal>rejected()</signal>
|
||||||
|
<receiver>DialogCubicBezier</receiver>
|
||||||
|
<slot>reject()</slot>
|
||||||
|
<hints>
|
||||||
|
<hint type="sourcelabel">
|
||||||
|
<x>316</x>
|
||||||
|
<y>260</y>
|
||||||
|
</hint>
|
||||||
|
<hint type="destinationlabel">
|
||||||
|
<x>286</x>
|
||||||
|
<y>274</y>
|
||||||
|
</hint>
|
||||||
|
</hints>
|
||||||
|
</connection>
|
||||||
|
</connections>
|
||||||
|
</ui>
|
|
@ -40,6 +40,7 @@
|
||||||
#include "toolcurve/vtoolarc.h"
|
#include "toolcurve/vtoolarc.h"
|
||||||
#include "toolcurve/vtoolarcwithlength.h"
|
#include "toolcurve/vtoolarcwithlength.h"
|
||||||
#include "toolcurve/vtoolspline.h"
|
#include "toolcurve/vtoolspline.h"
|
||||||
|
#include "toolcurve/vtoolcubicbezier.h"
|
||||||
#include "toolcurve/vtoolsplinepath.h"
|
#include "toolcurve/vtoolsplinepath.h"
|
||||||
#include "vtoolline.h"
|
#include "vtoolline.h"
|
||||||
#include "toolpoint/toolsinglepoint/toolcut/vtoolcutspline.h"
|
#include "toolpoint/toolsinglepoint/toolcut/vtoolcutspline.h"
|
||||||
|
|
252
src/libs/vtools/tools/drawTools/toolcurve/vtoolcubicbezier.cpp
Normal file
252
src/libs/vtools/tools/drawTools/toolcurve/vtoolcubicbezier.cpp
Normal file
|
@ -0,0 +1,252 @@
|
||||||
|
/************************************************************************
|
||||||
|
**
|
||||||
|
** @file vtoolcubicbezier.cpp
|
||||||
|
** @author Roman Telezhynskyi <dismine(at)gmail.com>
|
||||||
|
** @date 10 3, 2016
|
||||||
|
**
|
||||||
|
** @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) 2016 Valentina project
|
||||||
|
** <https://bitbucket.org/dismine/valentina> All Rights Reserved.
|
||||||
|
**
|
||||||
|
** Valentina is free software: you can redistribute it and/or modify
|
||||||
|
** 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.
|
||||||
|
**
|
||||||
|
** Valentina is distributed in the hope that it will be useful,
|
||||||
|
** 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/>.
|
||||||
|
**
|
||||||
|
*************************************************************************/
|
||||||
|
|
||||||
|
#include "vtoolcubicbezier.h"
|
||||||
|
#include "../vgeometry/vcubicbezier.h"
|
||||||
|
#include "../../../dialogs/tools/dialogcubicbezier.h"
|
||||||
|
#include "../../../undocommands/movespline.h"
|
||||||
|
#include "../../../visualization/vistoolcubicbezier.h"
|
||||||
|
|
||||||
|
const QString VToolCubicBezier::ToolType = QStringLiteral("cubicBezier");
|
||||||
|
|
||||||
|
//---------------------------------------------------------------------------------------------------------------------
|
||||||
|
VToolCubicBezier::VToolCubicBezier(VAbstractPattern *doc, VContainer *data, quint32 id, const QString &color,
|
||||||
|
const Source &typeCreation, QGraphicsItem *parent)
|
||||||
|
:VAbstractSpline(doc, data, id, parent)
|
||||||
|
{
|
||||||
|
sceneType = SceneObject::Spline;
|
||||||
|
lineColor = color;
|
||||||
|
|
||||||
|
this->setPen(QPen(Qt::black, qApp->toPixel(WidthHairLine(*VAbstractTool::data.GetPatternUnit()))/factor));
|
||||||
|
this->setFlag(QGraphicsItem::ItemIsSelectable, true);
|
||||||
|
this->setFlag(QGraphicsItem::ItemIsFocusable, true);
|
||||||
|
this->setAcceptHoverEvents(true);
|
||||||
|
this->setPath(ToolPath());
|
||||||
|
|
||||||
|
ToolCreation(typeCreation);
|
||||||
|
}
|
||||||
|
|
||||||
|
//---------------------------------------------------------------------------------------------------------------------
|
||||||
|
VToolCubicBezier::~VToolCubicBezier()
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
//---------------------------------------------------------------------------------------------------------------------
|
||||||
|
void VToolCubicBezier::setDialog()
|
||||||
|
{
|
||||||
|
SCASSERT(dialog != nullptr);
|
||||||
|
auto dialogTool = qobject_cast<DialogCubicBezier*>(dialog);
|
||||||
|
SCASSERT(dialogTool != nullptr);
|
||||||
|
const auto spl = VAbstractTool::data.GeometricObject<VCubicBezier>(id);
|
||||||
|
dialogTool->SetSpline(*spl);
|
||||||
|
dialogTool->SetColor(lineColor);
|
||||||
|
}
|
||||||
|
|
||||||
|
//---------------------------------------------------------------------------------------------------------------------
|
||||||
|
VToolCubicBezier *VToolCubicBezier::Create(DialogTool *dialog, VMainGraphicsScene *scene, VAbstractPattern *doc,
|
||||||
|
VContainer *data)
|
||||||
|
{
|
||||||
|
SCASSERT(dialog != nullptr);
|
||||||
|
auto dialogTool = qobject_cast<DialogCubicBezier*>(dialog);
|
||||||
|
SCASSERT(dialogTool != nullptr);
|
||||||
|
|
||||||
|
auto spl = Create(0, new VCubicBezier(dialogTool->GetSpline()), dialogTool->GetColor(), scene, doc, data,
|
||||||
|
Document::FullParse, Source::FromGui);
|
||||||
|
|
||||||
|
if (spl != nullptr)
|
||||||
|
{
|
||||||
|
spl->dialog=dialogTool;
|
||||||
|
}
|
||||||
|
return spl;
|
||||||
|
}
|
||||||
|
|
||||||
|
//---------------------------------------------------------------------------------------------------------------------
|
||||||
|
VToolCubicBezier *VToolCubicBezier::Create(const quint32 _id, VCubicBezier *spline, const QString &color,
|
||||||
|
VMainGraphicsScene *scene, VAbstractPattern *doc, VContainer *data,
|
||||||
|
const Document &parse, const Source &typeCreation)
|
||||||
|
{
|
||||||
|
quint32 id = _id;
|
||||||
|
if (typeCreation == Source::FromGui)
|
||||||
|
{
|
||||||
|
id = data->AddGObject(spline);
|
||||||
|
data->AddCurve<VCubicBezier>(id);
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
data->UpdateGObject(id, spline);
|
||||||
|
data->AddCurve<VCubicBezier>(id);
|
||||||
|
if (parse != Document::FullParse)
|
||||||
|
{
|
||||||
|
doc->UpdateToolData(id, data);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
VDrawTool::AddRecord(id, Tool::CubicBezier, doc);
|
||||||
|
if (parse == Document::FullParse)
|
||||||
|
{
|
||||||
|
auto _spl = new VToolCubicBezier(doc, data, id, color, typeCreation);
|
||||||
|
scene->addItem(_spl);
|
||||||
|
connect(_spl, &VToolCubicBezier::ChoosedTool, scene, &VMainGraphicsScene::ChoosedItem);
|
||||||
|
connect(scene, &VMainGraphicsScene::NewFactor, _spl, &VToolCubicBezier::SetFactor);
|
||||||
|
connect(scene, &VMainGraphicsScene::DisableItem, _spl, &VToolCubicBezier::Disable);
|
||||||
|
doc->AddTool(id, _spl);
|
||||||
|
doc->IncrementReferens(spline->GetP1().getIdTool());
|
||||||
|
doc->IncrementReferens(spline->GetP1().getIdTool());
|
||||||
|
doc->IncrementReferens(spline->GetP1().getIdTool());
|
||||||
|
doc->IncrementReferens(spline->GetP4().getIdTool());
|
||||||
|
return _spl;
|
||||||
|
}
|
||||||
|
return nullptr;
|
||||||
|
}
|
||||||
|
|
||||||
|
//---------------------------------------------------------------------------------------------------------------------
|
||||||
|
VCubicBezier VToolCubicBezier::getSpline() const
|
||||||
|
{
|
||||||
|
auto spline = VAbstractTool::data.GeometricObject<VCubicBezier>(id);
|
||||||
|
return *spline.data();
|
||||||
|
}
|
||||||
|
|
||||||
|
//---------------------------------------------------------------------------------------------------------------------
|
||||||
|
void VToolCubicBezier::setSpline(const VCubicBezier &spl)
|
||||||
|
{
|
||||||
|
QSharedPointer<VGObject> obj = VAbstractTool::data.GetGObject(id);
|
||||||
|
QSharedPointer<VCubicBezier> spline = qSharedPointerDynamicCast<VCubicBezier>(obj);
|
||||||
|
*spline.data() = spl;
|
||||||
|
SaveOption(obj);
|
||||||
|
}
|
||||||
|
|
||||||
|
//---------------------------------------------------------------------------------------------------------------------
|
||||||
|
void VToolCubicBezier::ShowVisualization(bool show)
|
||||||
|
{
|
||||||
|
ShowToolVisualization<VisToolCubicBezier>(show);
|
||||||
|
}
|
||||||
|
|
||||||
|
//---------------------------------------------------------------------------------------------------------------------
|
||||||
|
void VToolCubicBezier::contextMenuEvent(QGraphicsSceneContextMenuEvent *event)
|
||||||
|
{
|
||||||
|
try
|
||||||
|
{
|
||||||
|
ContextMenu<DialogCubicBezier>(this, event);
|
||||||
|
}
|
||||||
|
catch(const VExceptionToolWasDeleted &e)
|
||||||
|
{
|
||||||
|
Q_UNUSED(e);
|
||||||
|
return;//Leave this method immediately!!!
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
//---------------------------------------------------------------------------------------------------------------------
|
||||||
|
void VToolCubicBezier::RemoveReferens()
|
||||||
|
{
|
||||||
|
const auto spl = VAbstractTool::data.GeometricObject<VCubicBezier>(id);
|
||||||
|
doc->DecrementReferens(spl->GetP1().getIdTool());
|
||||||
|
doc->DecrementReferens(spl->GetP2().getIdTool());
|
||||||
|
doc->DecrementReferens(spl->GetP3().getIdTool());
|
||||||
|
doc->DecrementReferens(spl->GetP4().getIdTool());
|
||||||
|
}
|
||||||
|
|
||||||
|
//---------------------------------------------------------------------------------------------------------------------
|
||||||
|
void VToolCubicBezier::SaveDialog(QDomElement &domElement)
|
||||||
|
{
|
||||||
|
SCASSERT(dialog != nullptr);
|
||||||
|
auto dialogTool = qobject_cast<DialogCubicBezier*>(dialog);
|
||||||
|
SCASSERT(dialogTool != nullptr);
|
||||||
|
|
||||||
|
const VCubicBezier spl = dialogTool->GetSpline();
|
||||||
|
|
||||||
|
SetSplineAttributes(domElement, spl);
|
||||||
|
doc->SetAttribute(domElement, AttrColor, dialogTool->GetColor());
|
||||||
|
}
|
||||||
|
|
||||||
|
//---------------------------------------------------------------------------------------------------------------------
|
||||||
|
void VToolCubicBezier::SaveOptions(QDomElement &tag, QSharedPointer<VGObject> &obj)
|
||||||
|
{
|
||||||
|
VAbstractSpline::SaveOptions(tag, obj);
|
||||||
|
|
||||||
|
auto spl = qSharedPointerDynamicCast<VCubicBezier>(obj);
|
||||||
|
SCASSERT(spl.isNull() == false);
|
||||||
|
SetSplineAttributes(tag, *spl);
|
||||||
|
}
|
||||||
|
|
||||||
|
//---------------------------------------------------------------------------------------------------------------------
|
||||||
|
void VToolCubicBezier::SetVisualization()
|
||||||
|
{
|
||||||
|
if (vis != nullptr)
|
||||||
|
{
|
||||||
|
auto visual = qobject_cast<VisToolCubicBezier *>(vis);
|
||||||
|
SCASSERT(visual != nullptr);
|
||||||
|
|
||||||
|
const QSharedPointer<VCubicBezier> spl = VAbstractTool::data.GeometricObject<VCubicBezier>(id);
|
||||||
|
visual->setObject1Id(spl->GetP1().id());
|
||||||
|
visual->setObject2Id(spl->GetP2().id());
|
||||||
|
visual->setObject3Id(spl->GetP3().id());
|
||||||
|
visual->setObject4Id(spl->GetP4().id());
|
||||||
|
visual->SetMode(Mode::Show);
|
||||||
|
visual->RefreshGeometry();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
//---------------------------------------------------------------------------------------------------------------------
|
||||||
|
void VToolCubicBezier::RefreshGeometry()
|
||||||
|
{
|
||||||
|
this->setPen(QPen(CorrectColor(lineColor),
|
||||||
|
qApp->toPixel(WidthHairLine(*VAbstractTool::data.GetPatternUnit()))/factor));
|
||||||
|
if (isHovered || detailsMode)
|
||||||
|
{
|
||||||
|
this->setPath(ToolPath(PathDirection::Show));
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
this->setPath(ToolPath());
|
||||||
|
}
|
||||||
|
|
||||||
|
SetVisualization();
|
||||||
|
}
|
||||||
|
|
||||||
|
//---------------------------------------------------------------------------------------------------------------------
|
||||||
|
void VToolCubicBezier::SetSplineAttributes(QDomElement &domElement, const VCubicBezier &spl)
|
||||||
|
{
|
||||||
|
SCASSERT(doc != nullptr);
|
||||||
|
|
||||||
|
doc->SetAttribute(domElement, AttrType, ToolType);
|
||||||
|
doc->SetAttribute(domElement, AttrPoint1, spl.GetP1().id());
|
||||||
|
doc->SetAttribute(domElement, AttrPoint2, spl.GetP2().id());
|
||||||
|
doc->SetAttribute(domElement, AttrPoint3, spl.GetP3().id());
|
||||||
|
doc->SetAttribute(domElement, AttrPoint4, spl.GetP4().id());
|
||||||
|
|
||||||
|
if (spl.GetDuplicate() > 0)
|
||||||
|
{
|
||||||
|
doc->SetAttribute(domElement, AttrDuplicate, spl.GetDuplicate());
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
if (domElement.hasAttribute(AttrDuplicate))
|
||||||
|
{
|
||||||
|
domElement.removeAttribute(AttrDuplicate);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
70
src/libs/vtools/tools/drawTools/toolcurve/vtoolcubicbezier.h
Normal file
70
src/libs/vtools/tools/drawTools/toolcurve/vtoolcubicbezier.h
Normal file
|
@ -0,0 +1,70 @@
|
||||||
|
/************************************************************************
|
||||||
|
**
|
||||||
|
** @file vtoolcubicbezier.h
|
||||||
|
** @author Roman Telezhynskyi <dismine(at)gmail.com>
|
||||||
|
** @date 10 3, 2016
|
||||||
|
**
|
||||||
|
** @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) 2016 Valentina project
|
||||||
|
** <https://bitbucket.org/dismine/valentina> All Rights Reserved.
|
||||||
|
**
|
||||||
|
** Valentina is free software: you can redistribute it and/or modify
|
||||||
|
** 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.
|
||||||
|
**
|
||||||
|
** Valentina is distributed in the hope that it will be useful,
|
||||||
|
** 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/>.
|
||||||
|
**
|
||||||
|
*************************************************************************/
|
||||||
|
|
||||||
|
#ifndef VTOOLCUBICBEZIER_H
|
||||||
|
#define VTOOLCUBICBEZIER_H
|
||||||
|
|
||||||
|
#include "vabstractspline.h"
|
||||||
|
|
||||||
|
class VCubicBezier;
|
||||||
|
|
||||||
|
class VToolCubicBezier : public VAbstractSpline
|
||||||
|
{
|
||||||
|
Q_OBJECT
|
||||||
|
public:
|
||||||
|
VToolCubicBezier(VAbstractPattern *doc, VContainer *data, quint32 id, const QString &color,
|
||||||
|
const Source &typeCreation, QGraphicsItem * parent = nullptr);
|
||||||
|
virtual ~VToolCubicBezier();
|
||||||
|
virtual void setDialog() Q_DECL_OVERRIDE;
|
||||||
|
static VToolCubicBezier *Create(DialogTool *dialog, VMainGraphicsScene *scene, VAbstractPattern *doc,
|
||||||
|
VContainer *data);
|
||||||
|
static VToolCubicBezier *Create(const quint32 _id, VCubicBezier *spline, const QString &color,
|
||||||
|
VMainGraphicsScene *scene, VAbstractPattern *doc, VContainer *data,
|
||||||
|
const Document &parse, const Source &typeCreation);
|
||||||
|
static const QString ToolType;
|
||||||
|
virtual int type() const Q_DECL_OVERRIDE {return Type;}
|
||||||
|
enum { Type = UserType + static_cast<int>(Tool::CubicBezier)};
|
||||||
|
|
||||||
|
VCubicBezier getSpline()const;
|
||||||
|
void setSpline(const VCubicBezier &spl);
|
||||||
|
|
||||||
|
virtual void ShowVisualization(bool show) Q_DECL_OVERRIDE;
|
||||||
|
protected:
|
||||||
|
virtual void contextMenuEvent ( QGraphicsSceneContextMenuEvent * event ) Q_DECL_OVERRIDE;
|
||||||
|
virtual void RemoveReferens() Q_DECL_OVERRIDE;
|
||||||
|
virtual void SaveDialog(QDomElement &domElement) Q_DECL_OVERRIDE;
|
||||||
|
virtual void SaveOptions(QDomElement &tag, QSharedPointer<VGObject> &obj) Q_DECL_OVERRIDE;
|
||||||
|
virtual void SetVisualization() Q_DECL_OVERRIDE;
|
||||||
|
private:
|
||||||
|
Q_DISABLE_COPY(VToolCubicBezier)
|
||||||
|
|
||||||
|
void RefreshGeometry ();
|
||||||
|
void SetSplineAttributes(QDomElement &domElement, const VCubicBezier &spl);
|
||||||
|
};
|
||||||
|
|
||||||
|
#endif // VTOOLCUBICBEZIER_H
|
|
@ -187,8 +187,8 @@ VToolSpline* VToolSpline::Create(const quint32 _id, VSpline *spline, const QStri
|
||||||
connect(scene, &VMainGraphicsScene::EnableToolMove, _spl, &VToolSpline::EnableToolMove);
|
connect(scene, &VMainGraphicsScene::EnableToolMove, _spl, &VToolSpline::EnableToolMove);
|
||||||
connect(scene, &VMainGraphicsScene::CurveDetailsMode, _spl, &VToolSpline::DetailsMode);
|
connect(scene, &VMainGraphicsScene::CurveDetailsMode, _spl, &VToolSpline::DetailsMode);
|
||||||
doc->AddTool(id, _spl);
|
doc->AddTool(id, _spl);
|
||||||
doc->IncrementReferens(spline->GetP1().id());
|
doc->IncrementReferens(spline->GetP1().getIdTool());
|
||||||
doc->IncrementReferens(spline->GetP4().id());
|
doc->IncrementReferens(spline->GetP4().getIdTool());
|
||||||
return _spl;
|
return _spl;
|
||||||
}
|
}
|
||||||
return nullptr;
|
return nullptr;
|
||||||
|
|
|
@ -47,7 +47,8 @@ HEADERS += \
|
||||||
$$PWD/drawTools/toolpoint/vabstractpoint.h \
|
$$PWD/drawTools/toolpoint/vabstractpoint.h \
|
||||||
$$PWD/drawTools/toolpoint/tooldoublepoint/vtooldoublepoint.h \
|
$$PWD/drawTools/toolpoint/tooldoublepoint/vtooldoublepoint.h \
|
||||||
$$PWD/drawTools/toolpoint/tooldoublepoint/vtooltruedarts.h \
|
$$PWD/drawTools/toolpoint/tooldoublepoint/vtooltruedarts.h \
|
||||||
$$PWD/drawTools/toolpoint/toolsinglepoint/vtoolpointofintersectioncurves.h
|
$$PWD/drawTools/toolpoint/toolsinglepoint/vtoolpointofintersectioncurves.h \
|
||||||
|
$$PWD/drawTools/toolcurve/vtoolcubicbezier.h
|
||||||
|
|
||||||
SOURCES += \
|
SOURCES += \
|
||||||
$$PWD/vtooldetail.cpp \
|
$$PWD/vtooldetail.cpp \
|
||||||
|
@ -92,4 +93,5 @@ SOURCES += \
|
||||||
$$PWD/drawTools/toolpoint/vabstractpoint.cpp \
|
$$PWD/drawTools/toolpoint/vabstractpoint.cpp \
|
||||||
$$PWD/drawTools/toolpoint/tooldoublepoint/vtooldoublepoint.cpp \
|
$$PWD/drawTools/toolpoint/tooldoublepoint/vtooldoublepoint.cpp \
|
||||||
$$PWD/drawTools/toolpoint/tooldoublepoint/vtooltruedarts.cpp \
|
$$PWD/drawTools/toolpoint/tooldoublepoint/vtooltruedarts.cpp \
|
||||||
$$PWD/drawTools/toolpoint/toolsinglepoint/vtoolpointofintersectioncurves.cpp
|
$$PWD/drawTools/toolpoint/toolsinglepoint/vtoolpointofintersectioncurves.cpp \
|
||||||
|
$$PWD/drawTools/toolcurve/vtoolcubicbezier.cpp
|
||||||
|
|
122
src/libs/vtools/visualization/vistoolcubicbezier.cpp
Normal file
122
src/libs/vtools/visualization/vistoolcubicbezier.cpp
Normal file
|
@ -0,0 +1,122 @@
|
||||||
|
/************************************************************************
|
||||||
|
**
|
||||||
|
** @file vistoolcubicbezier.cpp
|
||||||
|
** @author Roman Telezhynskyi <dismine(at)gmail.com>
|
||||||
|
** @date 10 3, 2016
|
||||||
|
**
|
||||||
|
** @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) 2016 Valentina project
|
||||||
|
** <https://bitbucket.org/dismine/valentina> All Rights Reserved.
|
||||||
|
**
|
||||||
|
** Valentina is free software: you can redistribute it and/or modify
|
||||||
|
** 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.
|
||||||
|
**
|
||||||
|
** Valentina is distributed in the hope that it will be useful,
|
||||||
|
** 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/>.
|
||||||
|
**
|
||||||
|
*************************************************************************/
|
||||||
|
|
||||||
|
#include "vistoolcubicbezier.h"
|
||||||
|
#include "../vgeometry/vcubicbezier.h"
|
||||||
|
|
||||||
|
//---------------------------------------------------------------------------------------------------------------------
|
||||||
|
VisToolCubicBezier::VisToolCubicBezier(const VContainer *data, QGraphicsItem *parent)
|
||||||
|
: VisPath(data, parent),
|
||||||
|
object2Id(NULL_ID),
|
||||||
|
object3Id(NULL_ID),
|
||||||
|
object4Id(NULL_ID),
|
||||||
|
point1(nullptr),
|
||||||
|
point2(nullptr),
|
||||||
|
point3(nullptr),
|
||||||
|
point4(nullptr),
|
||||||
|
helpLine(nullptr)
|
||||||
|
{
|
||||||
|
point1 = InitPoint(supportColor, this);
|
||||||
|
point2 = InitPoint(supportColor, this); //-V656
|
||||||
|
point3 = InitPoint(supportColor, this); //-V656
|
||||||
|
point4 = InitPoint(supportColor, this); //-V656
|
||||||
|
|
||||||
|
helpLine = InitItem<QGraphicsLineItem>(mainColor, this);
|
||||||
|
}
|
||||||
|
|
||||||
|
//---------------------------------------------------------------------------------------------------------------------
|
||||||
|
VisToolCubicBezier::~VisToolCubicBezier()
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
//---------------------------------------------------------------------------------------------------------------------
|
||||||
|
void VisToolCubicBezier::RefreshGeometry()
|
||||||
|
{
|
||||||
|
if (object1Id > NULL_ID)
|
||||||
|
{
|
||||||
|
const auto first = Visualization::data->GeometricObject<VPointF>(object1Id);
|
||||||
|
DrawPoint(point1, first->toQPointF(), supportColor);
|
||||||
|
|
||||||
|
if (object2Id <= NULL_ID)
|
||||||
|
{
|
||||||
|
const QLineF line = QLineF(first->toQPointF(), Visualization::scenePos);
|
||||||
|
DrawLine(helpLine, line, mainColor, lineStyle);
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
helpLine->setVisible(false);
|
||||||
|
|
||||||
|
const auto second = Visualization::data->GeometricObject<VPointF>(object2Id);
|
||||||
|
DrawPoint(point2, second->toQPointF(), supportColor);
|
||||||
|
|
||||||
|
if (object3Id <= NULL_ID)
|
||||||
|
{
|
||||||
|
VCubicBezier spline(*first, *second, VPointF(Visualization::scenePos),
|
||||||
|
VPointF(Visualization::scenePos));
|
||||||
|
DrawPath(this, spline.GetPath(PathDirection::Hide), mainColor, Qt::SolidLine, Qt::RoundCap);
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
const auto third = Visualization::data->GeometricObject<VPointF>(object3Id);
|
||||||
|
DrawPoint(point3, third->toQPointF(), supportColor);
|
||||||
|
|
||||||
|
if (object4Id <= NULL_ID)
|
||||||
|
{
|
||||||
|
VCubicBezier spline(*first, *second, *third, VPointF(Visualization::scenePos));
|
||||||
|
DrawPath(this, spline.GetPath(PathDirection::Hide), mainColor, Qt::SolidLine, Qt::RoundCap);
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
const auto fourth = Visualization::data->GeometricObject<VPointF>(object4Id);
|
||||||
|
DrawPoint(point4, fourth->toQPointF(), supportColor);
|
||||||
|
|
||||||
|
VCubicBezier spline(*first, *second, *third, *fourth);
|
||||||
|
DrawPath(this, spline.GetPath(PathDirection::Show), mainColor, Qt::SolidLine, Qt::RoundCap);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
//---------------------------------------------------------------------------------------------------------------------
|
||||||
|
void VisToolCubicBezier::setObject2Id(const quint32 &value)
|
||||||
|
{
|
||||||
|
object2Id = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
//---------------------------------------------------------------------------------------------------------------------
|
||||||
|
void VisToolCubicBezier::setObject3Id(const quint32 &value)
|
||||||
|
{
|
||||||
|
object3Id = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
//---------------------------------------------------------------------------------------------------------------------
|
||||||
|
void VisToolCubicBezier::setObject4Id(const quint32 &value)
|
||||||
|
{
|
||||||
|
object4Id = value;
|
||||||
|
}
|
62
src/libs/vtools/visualization/vistoolcubicbezier.h
Normal file
62
src/libs/vtools/visualization/vistoolcubicbezier.h
Normal file
|
@ -0,0 +1,62 @@
|
||||||
|
/************************************************************************
|
||||||
|
**
|
||||||
|
** @file vistoolcubicbezier.h
|
||||||
|
** @author Roman Telezhynskyi <dismine(at)gmail.com>
|
||||||
|
** @date 10 3, 2016
|
||||||
|
**
|
||||||
|
** @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) 2016 Valentina project
|
||||||
|
** <https://bitbucket.org/dismine/valentina> All Rights Reserved.
|
||||||
|
**
|
||||||
|
** Valentina is free software: you can redistribute it and/or modify
|
||||||
|
** 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.
|
||||||
|
**
|
||||||
|
** Valentina is distributed in the hope that it will be useful,
|
||||||
|
** 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/>.
|
||||||
|
**
|
||||||
|
*************************************************************************/
|
||||||
|
|
||||||
|
#ifndef VISTOOLCUBICBEZIER_H
|
||||||
|
#define VISTOOLCUBICBEZIER_H
|
||||||
|
|
||||||
|
#include "vispath.h"
|
||||||
|
|
||||||
|
class VisToolCubicBezier : public VisPath
|
||||||
|
{
|
||||||
|
Q_OBJECT
|
||||||
|
public:
|
||||||
|
explicit VisToolCubicBezier(const VContainer *data, QGraphicsItem *parent = nullptr);
|
||||||
|
virtual ~VisToolCubicBezier();
|
||||||
|
|
||||||
|
virtual void RefreshGeometry() Q_DECL_OVERRIDE;
|
||||||
|
|
||||||
|
void setObject2Id(const quint32 &value);
|
||||||
|
void setObject3Id(const quint32 &value);
|
||||||
|
void setObject4Id(const quint32 &value);
|
||||||
|
|
||||||
|
virtual int type() const Q_DECL_OVERRIDE {return Type;}
|
||||||
|
enum { Type = UserType + static_cast<int>(Vis::ToolCubicBezier)};
|
||||||
|
|
||||||
|
protected:
|
||||||
|
Q_DISABLE_COPY(VisToolCubicBezier)
|
||||||
|
quint32 object2Id;
|
||||||
|
quint32 object3Id;
|
||||||
|
quint32 object4Id;
|
||||||
|
QGraphicsEllipseItem *point1;
|
||||||
|
QGraphicsEllipseItem *point2;
|
||||||
|
QGraphicsEllipseItem *point3;
|
||||||
|
QGraphicsEllipseItem *point4;
|
||||||
|
QGraphicsLineItem *helpLine;
|
||||||
|
};
|
||||||
|
|
||||||
|
#endif // VISTOOLCUBICBEZIER_H
|
|
@ -30,7 +30,8 @@ HEADERS += \
|
||||||
$$PWD/vistoolpointfromarcandtangent.h \
|
$$PWD/vistoolpointfromarcandtangent.h \
|
||||||
$$PWD/vistoolarcwithlength.h \
|
$$PWD/vistoolarcwithlength.h \
|
||||||
$$PWD/vistooltruedarts.h \
|
$$PWD/vistooltruedarts.h \
|
||||||
$$PWD/vistoolpointofintersectioncurves.h
|
$$PWD/vistoolpointofintersectioncurves.h \
|
||||||
|
$$PWD/vistoolcubicbezier.h
|
||||||
|
|
||||||
SOURCES += \
|
SOURCES += \
|
||||||
$$PWD/visline.cpp \
|
$$PWD/visline.cpp \
|
||||||
|
@ -61,4 +62,5 @@ SOURCES += \
|
||||||
$$PWD/vistoolpointfromarcandtangent.cpp \
|
$$PWD/vistoolpointfromarcandtangent.cpp \
|
||||||
$$PWD/vistoolarcwithlength.cpp \
|
$$PWD/vistoolarcwithlength.cpp \
|
||||||
$$PWD/vistooltruedarts.cpp \
|
$$PWD/vistooltruedarts.cpp \
|
||||||
$$PWD/vistoolpointofintersectioncurves.cpp
|
$$PWD/vistoolpointofintersectioncurves.cpp \
|
||||||
|
$$PWD/vistoolcubicbezier.cpp
|
||||||
|
|
Loading…
Reference in New Issue
Block a user