From e35e80a242a9edf379dcef3aad00f1c902078893 Mon Sep 17 00:00:00 2001 From: Ronan Le Tiec Date: Sat, 11 Apr 2020 16:32:49 +0200 Subject: [PATCH] some comments --- src/app/puzzle/puzzlemainwindow.cpp | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) diff --git a/src/app/puzzle/puzzlemainwindow.cpp b/src/app/puzzle/puzzlemainwindow.cpp index b3d36e74d..e2ee73152 100644 --- a/src/app/puzzle/puzzlemainwindow.cpp +++ b/src/app/puzzle/puzzlemainwindow.cpp @@ -144,6 +144,9 @@ void PuzzleMainWindow::InitPropertyTabLayout() connect(ui->checkBoxLayoutStickyEdges, QOverload::of(&QCheckBox::toggled), this, &PuzzleMainWindow::LayoutStickyEdgesChanged); // -------------------- export --------------------------- + + // TODO init the file format export combobox + connect(ui->pushButtonLayoutExport, QOverload::of(&QPushButton::clicked), this, &PuzzleMainWindow::LayoutExport); } @@ -297,6 +300,8 @@ void PuzzleMainWindow::LayoutSizeChanged() int ret = msgBox.exec(); Q_UNUSED(ret); + + // TODO } //--------------------------------------------------------------------------------------------------------------------- @@ -308,6 +313,8 @@ void PuzzleMainWindow::LayoutOrientationChanged() int ret = msgBox.exec(); Q_UNUSED(ret); + + // TODO } //--------------------------------------------------------------------------------------------------------------------- @@ -319,6 +326,8 @@ void PuzzleMainWindow::LayoutRemoveUnusedLength() int ret = msgBox.exec(); Q_UNUSED(ret); + + // TODO } @@ -331,6 +340,8 @@ void PuzzleMainWindow::LayoutMarginChanged() int ret = msgBox.exec(); Q_UNUSED(ret); + + // TODO } @@ -343,6 +354,8 @@ void PuzzleMainWindow::LayoutFollowGrainlineChanged() int ret = msgBox.exec(); Q_UNUSED(ret); + + // TODO } @@ -356,6 +369,8 @@ void PuzzleMainWindow::LayoutPiecesGapChanged(double value) Q_UNUSED(value); Q_UNUSED(ret); + + // TODO } //--------------------------------------------------------------------------------------------------------------------- @@ -368,6 +383,8 @@ void PuzzleMainWindow::LayoutWarningPiecesSuperpositionChanged(bool checked) Q_UNUSED(checked); Q_UNUSED(ret); + + // TODO } //--------------------------------------------------------------------------------------------------------------------- @@ -381,6 +398,8 @@ void PuzzleMainWindow::LayoutWarningPiecesOutOfBoundChanged(bool checked) Q_UNUSED(checked); Q_UNUSED(ret); + // TODO + } //--------------------------------------------------------------------------------------------------------------------- @@ -393,6 +412,10 @@ void PuzzleMainWindow::LayoutStickyEdgesChanged(bool checked) Q_UNUSED(checked); Q_UNUSED(ret); + + + // TODO + } @@ -406,5 +429,8 @@ void PuzzleMainWindow::LayoutExport() int ret = msgBox.exec(); Q_UNUSED(ret); + + // TODO + }