Refactoring. Remove unused private functions.
--HG-- branch : develop
This commit is contained in:
parent
016e2db2e6
commit
9433a6b358
|
@ -98,8 +98,6 @@ private:
|
||||||
std::shared_ptr<VLockGuard<QFile>> lockLog;
|
std::shared_ptr<VLockGuard<QFile>> lockLog;
|
||||||
std::shared_ptr<QTextStream> out;
|
std::shared_ptr<QTextStream> out;
|
||||||
|
|
||||||
void InitLineWidth();
|
|
||||||
|
|
||||||
#if defined(Q_OS_WIN) && defined(Q_CC_GNU)
|
#if defined(Q_OS_WIN) && defined(Q_CC_GNU)
|
||||||
static const QString GistFileName;
|
static const QString GistFileName;
|
||||||
|
|
||||||
|
|
|
@ -416,25 +416,12 @@ void DialogPatternProperties::DescEdited()
|
||||||
descriptionChanged = true;
|
descriptionChanged = true;
|
||||||
}
|
}
|
||||||
|
|
||||||
//---------------------------------------------------------------------------------------------------------------------
|
|
||||||
void DialogPatternProperties::ToggleComboBox()
|
|
||||||
{
|
|
||||||
ui->comboBoxHeight->setEnabled(ui->radioButtonDefFromP->isChecked());
|
|
||||||
ui->comboBoxSize->setEnabled(ui->radioButtonDefFromP->isChecked());
|
|
||||||
}
|
|
||||||
|
|
||||||
//---------------------------------------------------------------------------------------------------------------------
|
//---------------------------------------------------------------------------------------------------------------------
|
||||||
void DialogPatternProperties::DefValueChanged()
|
void DialogPatternProperties::DefValueChanged()
|
||||||
{
|
{
|
||||||
defaultChanged = true;
|
defaultChanged = true;
|
||||||
}
|
}
|
||||||
|
|
||||||
//---------------------------------------------------------------------------------------------------------------------
|
|
||||||
void DialogPatternProperties::SecurityValueChanged()
|
|
||||||
{
|
|
||||||
securityChanged = true;
|
|
||||||
}
|
|
||||||
|
|
||||||
//---------------------------------------------------------------------------------------------------------------------
|
//---------------------------------------------------------------------------------------------------------------------
|
||||||
void DialogPatternProperties::GeneralInfoChanged()
|
void DialogPatternProperties::GeneralInfoChanged()
|
||||||
{
|
{
|
||||||
|
|
|
@ -52,9 +52,7 @@ public:
|
||||||
signals:
|
signals:
|
||||||
void UpdateGradation();
|
void UpdateGradation();
|
||||||
private slots:
|
private slots:
|
||||||
void ToggleComboBox();
|
|
||||||
void DefValueChanged();
|
void DefValueChanged();
|
||||||
void SecurityValueChanged();
|
|
||||||
void GeneralInfoChanged();
|
void GeneralInfoChanged();
|
||||||
void Apply();
|
void Apply();
|
||||||
void Ok();
|
void Ok();
|
||||||
|
|
|
@ -4260,21 +4260,6 @@ void MainWindow::Preferences()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
//---------------------------------------------------------------------------------------------------------------------
|
|
||||||
void MainWindow::CreateMeasurements()
|
|
||||||
{
|
|
||||||
const QString tape = qApp->TapeFilePath();
|
|
||||||
const QString workingDirectory = QFileInfo(tape).absoluteDir().absolutePath();
|
|
||||||
|
|
||||||
QStringList arguments;
|
|
||||||
if (isNoScaling)
|
|
||||||
{
|
|
||||||
arguments.append(QLatin1String("--") + LONG_OPTION_NO_HDPI_SCALING);
|
|
||||||
}
|
|
||||||
|
|
||||||
QProcess::startDetached(tape, arguments, workingDirectory);
|
|
||||||
}
|
|
||||||
|
|
||||||
//---------------------------------------------------------------------------------------------------------------------
|
//---------------------------------------------------------------------------------------------------------------------
|
||||||
void MainWindow::ExportLayoutAs()
|
void MainWindow::ExportLayoutAs()
|
||||||
{
|
{
|
||||||
|
@ -5055,32 +5040,6 @@ void MainWindow::ToolSelectArc() const
|
||||||
ui->view->AllowRubberBand(false);
|
ui->view->AllowRubberBand(false);
|
||||||
}
|
}
|
||||||
|
|
||||||
//---------------------------------------------------------------------------------------------------------------------
|
|
||||||
void MainWindow::ToolSelectElArc() const
|
|
||||||
{
|
|
||||||
// Only true for rubber band selection
|
|
||||||
emit EnableLabelSelection(false);
|
|
||||||
emit EnablePointSelection(false);
|
|
||||||
emit EnableLineSelection(false);
|
|
||||||
emit EnableArcSelection(false);
|
|
||||||
emit EnableElArcSelection(false);
|
|
||||||
emit EnableSplineSelection(false);
|
|
||||||
emit EnableSplinePathSelection(false);
|
|
||||||
|
|
||||||
// Hovering
|
|
||||||
emit EnableLabelHover(false);
|
|
||||||
emit EnablePointHover(false);
|
|
||||||
emit EnableLineHover(false);
|
|
||||||
emit EnableArcHover(false);
|
|
||||||
emit EnableElArcHover(true);
|
|
||||||
emit EnableSplineHover(false);
|
|
||||||
emit EnableSplinePathHover(false);
|
|
||||||
|
|
||||||
emit ItemsSelection(SelectionType::ByMouseRelease);
|
|
||||||
|
|
||||||
ui->view->AllowRubberBand(false);
|
|
||||||
}
|
|
||||||
|
|
||||||
//---------------------------------------------------------------------------------------------------------------------
|
//---------------------------------------------------------------------------------------------------------------------
|
||||||
void MainWindow::ToolSelectPointArc() const
|
void MainWindow::ToolSelectPointArc() const
|
||||||
{
|
{
|
||||||
|
|
|
@ -114,7 +114,6 @@ private slots:
|
||||||
void ToolBarStyles();
|
void ToolBarStyles();
|
||||||
void ShowPaper(int index);
|
void ShowPaper(int index);
|
||||||
void Preferences();
|
void Preferences();
|
||||||
void CreateMeasurements();
|
|
||||||
void ExportLayoutAs();
|
void ExportLayoutAs();
|
||||||
|
|
||||||
void ArrowTool();
|
void ArrowTool();
|
||||||
|
@ -363,7 +362,6 @@ private:
|
||||||
void ToolSelectSpline() const;
|
void ToolSelectSpline() const;
|
||||||
void ToolSelectSplinePath() const;
|
void ToolSelectSplinePath() const;
|
||||||
void ToolSelectArc() const;
|
void ToolSelectArc() const;
|
||||||
void ToolSelectElArc() const;
|
|
||||||
void ToolSelectPointArc() const;
|
void ToolSelectPointArc() const;
|
||||||
void ToolSelectCurve() const;
|
void ToolSelectCurve() const;
|
||||||
void ToolSelectAllDrawObjects() const;
|
void ToolSelectAllDrawObjects() const;
|
||||||
|
|
|
@ -1301,50 +1301,6 @@ QDomElement VPatternConverter::TagIncrementsV0_1_4() const
|
||||||
return element;
|
return element;
|
||||||
}
|
}
|
||||||
|
|
||||||
//---------------------------------------------------------------------------------------------------------------------
|
|
||||||
QStringList VPatternConverter::ListPathPointExpressionsV0_1_4() const
|
|
||||||
{
|
|
||||||
// TODO. Delete if minimal supported version is 0.1.4
|
|
||||||
Q_STATIC_ASSERT_X(VPatternConverter::PatternMinVer < CONVERTER_VERSION_CHECK(0, 1, 4),
|
|
||||||
"Time to refactor the code.");
|
|
||||||
|
|
||||||
QStringList expressions;
|
|
||||||
const QDomNodeList list = elementsByTagName(strPathPoint);
|
|
||||||
for (int i=0; i < list.size(); ++i)
|
|
||||||
{
|
|
||||||
const QDomElement dom = list.at(i).toElement();
|
|
||||||
|
|
||||||
try
|
|
||||||
{
|
|
||||||
expressions.append(GetParametrString(dom, strKAsm1));
|
|
||||||
}
|
|
||||||
catch (VExceptionEmptyParameter &e)
|
|
||||||
{
|
|
||||||
Q_UNUSED(e)
|
|
||||||
}
|
|
||||||
|
|
||||||
try
|
|
||||||
{
|
|
||||||
expressions.append(GetParametrString(dom, strKAsm2));
|
|
||||||
}
|
|
||||||
catch (VExceptionEmptyParameter &e)
|
|
||||||
{
|
|
||||||
Q_UNUSED(e)
|
|
||||||
}
|
|
||||||
|
|
||||||
try
|
|
||||||
{
|
|
||||||
expressions.append(GetParametrString(dom, strAngle));
|
|
||||||
}
|
|
||||||
catch (VExceptionEmptyParameter &e)
|
|
||||||
{
|
|
||||||
Q_UNUSED(e)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
return expressions;
|
|
||||||
}
|
|
||||||
|
|
||||||
//---------------------------------------------------------------------------------------------------------------------
|
//---------------------------------------------------------------------------------------------------------------------
|
||||||
void VPatternConverter::FixToolUnionToV0_2_4()
|
void VPatternConverter::FixToolUnionToV0_2_4()
|
||||||
{
|
{
|
||||||
|
|
|
@ -131,7 +131,6 @@ private:
|
||||||
QString MUnitV0_1_4() const;
|
QString MUnitV0_1_4() const;
|
||||||
QDomElement TagMeasurementsV0_1_4() const;
|
QDomElement TagMeasurementsV0_1_4() const;
|
||||||
QDomElement TagIncrementsV0_1_4() const;
|
QDomElement TagIncrementsV0_1_4() const;
|
||||||
QStringList ListPathPointExpressionsV0_1_4() const;
|
|
||||||
|
|
||||||
void FixToolUnionToV0_2_4();
|
void FixToolUnionToV0_2_4();
|
||||||
void ParseModelingToV0_2_4(const QDomElement &modeling);
|
void ParseModelingToV0_2_4(const QDomElement &modeling);
|
||||||
|
|
|
@ -110,7 +110,6 @@ private:
|
||||||
void InitSeamAllowanceTab();
|
void InitSeamAllowanceTab();
|
||||||
void InitPassmarksTab();
|
void InitPassmarksTab();
|
||||||
void InitPathTypes();
|
void InitPathTypes();
|
||||||
void InitListPieces();
|
|
||||||
void InitNodesList();
|
void InitNodesList();
|
||||||
void InitPassmarksList();
|
void InitPassmarksList();
|
||||||
void NodeAngleChanged(int index);
|
void NodeAngleChanged(int index);
|
||||||
|
|
Loading…
Reference in New Issue
Block a user