Cleaning.

Remove unused slots.
This commit is contained in:
Roman Telezhynskyi 2021-08-26 08:53:53 +03:00
parent 6c1c2fea36
commit acfbc5478e
2 changed files with 0 additions and 53 deletions

View File

@ -2296,35 +2296,6 @@ void VPMainWindow::on_pushButtonSheetExport_clicked()
// exporter.Export(m_layout.get(), format, m_graphicsView);
}
//---------------------------------------------------------------------------------------------------------------------
void VPMainWindow::on_checkBoxCurrentPieceShowSeamline_toggled(bool checked)
{
// if(m_selectedPieces.count() == 1)
// {
// m_selectedPieces.first()->SetShowSeamLine(checked);
// }
}
//---------------------------------------------------------------------------------------------------------------------
void VPMainWindow::on_checkBoxCurrentPieceMirrorPiece_toggled(bool checked)
{
// if(m_selectedPieces.count() == 1)
// {
// m_selectedPieces.first()->SetMirror(checked);
// }
}
//---------------------------------------------------------------------------------------------------------------------
void VPMainWindow::on_doubleSpinBoxCurrentPieceAngle_valueChanged(double value)
{
// if(m_selectedPieces.count() == 1)
// {
// VPPiece *piece = m_selectedPieces.first();
// piece->SetRotation(value);
// }
}
//---------------------------------------------------------------------------------------------------------------------
void VPMainWindow::on_CarrouselLocationChanged(Qt::DockWidgetArea area)
{

View File

@ -240,30 +240,6 @@ private slots:
*/
void on_pushButtonSheetExport_clicked();
/**
* @brief on_checkBoxCurrentPieceShowSeamline_toggled When the
* "Show seamline" checkbox value in the current piece tab is toggled.
* The slot is automatically connected through name convention.
* @param checked the new checked value
*/
void on_checkBoxCurrentPieceShowSeamline_toggled(bool checked);
/**
* @brief on_checkBoxCurrentPieceMirrorPiece_toggled When the
* "Mirror piece" checkbox in the current piece tab is toggled.
* The slot is automatically connected through name convention.
* @param checked the new checked value
*/
void on_checkBoxCurrentPieceMirrorPiece_toggled(bool checked);
/**
* @brief on_doubleSpinBoxCurrentPieceAngle_valueChanged When the
* "Current Piece Angle" value in the current piece property is changed
* The slot is automatically connected through name convention.
* @param value the new angle value
*/
void on_doubleSpinBoxCurrentPieceAngle_valueChanged(double value);
/**
* @brief CarrouselLocationChanged When the piece carrousel's location
* has been changed