2020-02-16 17:17:50 +01:00
|
|
|
/************************************************************************
|
|
|
|
**
|
|
|
|
** @file puzzlemainwindow.h
|
|
|
|
** @author Roman Telezhynskyi <dismine(at)gmail.com>
|
|
|
|
** @date 16 2, 2020
|
|
|
|
**
|
|
|
|
** @brief
|
|
|
|
** @copyright
|
|
|
|
** This source code is part of the Valentina project, a pattern making
|
|
|
|
** program, whose allow create and modeling patterns of clothing.
|
|
|
|
** Copyright (C) 2020 Valentina project
|
|
|
|
** <https://gitlab.com/smart-pattern/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 PUZZLEMAINWINDOW_H
|
|
|
|
#define PUZZLEMAINWINDOW_H
|
|
|
|
|
|
|
|
#include <QMainWindow>
|
2020-04-10 21:08:29 +02:00
|
|
|
#include <QMessageBox>
|
2020-04-19 11:58:43 +02:00
|
|
|
#include <QDoubleSpinBox>
|
2020-04-14 10:36:21 +02:00
|
|
|
|
|
|
|
#include "../vmisc/def.h"
|
2020-04-13 12:24:26 +02:00
|
|
|
#include "vpiececarrousel.h"
|
2020-05-05 07:44:20 +02:00
|
|
|
#include "vpuzzlemaingraphicsview.h"
|
2020-04-18 16:32:54 +02:00
|
|
|
#include "vpuzzlelayout.h"
|
2020-04-19 11:58:43 +02:00
|
|
|
#include "vpuzzlepiece.h"
|
2020-04-26 12:09:28 +02:00
|
|
|
#include "../vlayout/vlayoutpiece.h"
|
2020-04-21 18:03:36 +02:00
|
|
|
#include "vpuzzlecommandline.h"
|
2020-02-16 17:17:50 +01:00
|
|
|
|
2020-04-14 10:36:21 +02:00
|
|
|
namespace Ui
|
|
|
|
{
|
|
|
|
class PuzzleMainWindow;
|
2020-02-16 17:17:50 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
class PuzzleMainWindow : public QMainWindow
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
2020-04-23 14:42:52 +02:00
|
|
|
explicit PuzzleMainWindow(const VPuzzleCommandLinePtr &cmd, QWidget *parent = nullptr);
|
2020-02-16 17:17:50 +01:00
|
|
|
virtual ~PuzzleMainWindow();
|
|
|
|
|
2020-04-19 16:01:46 +02:00
|
|
|
/**
|
|
|
|
* @brief LoadFile Loads the layout file of given path in m_layout.
|
|
|
|
* This function doesn't update the gui.
|
2020-04-23 17:41:34 +02:00
|
|
|
* @param path path to layout
|
|
|
|
* @return true if success
|
2020-04-19 16:01:46 +02:00
|
|
|
*/
|
2020-04-23 17:05:00 +02:00
|
|
|
bool LoadFile(QString path);
|
2020-02-16 18:18:39 +01:00
|
|
|
|
2020-04-19 16:01:46 +02:00
|
|
|
/**
|
|
|
|
* @brief SaveFile Saves the current layout to the layout file of given path
|
2020-04-23 17:41:34 +02:00
|
|
|
* @param path path to layout file
|
|
|
|
* @return true if success
|
2020-04-19 16:01:46 +02:00
|
|
|
*/
|
|
|
|
bool SaveFile(const QString &path);
|
|
|
|
|
2020-04-24 16:10:42 +02:00
|
|
|
/**
|
|
|
|
* @brief ImportRawLayouts The function imports the raw layouts of given paths
|
2020-04-26 12:09:28 +02:00
|
|
|
* @param rawLayouts paths of the layouts to import
|
2020-04-24 16:10:42 +02:00
|
|
|
*/
|
2020-04-26 12:09:28 +02:00
|
|
|
void ImportRawLayouts(const QStringList &rawLayouts);
|
2020-04-14 10:36:21 +02:00
|
|
|
|
|
|
|
public slots:
|
2020-04-24 16:10:42 +02:00
|
|
|
/**
|
|
|
|
* @brief on_actionNew_triggered When the menu action File > New
|
|
|
|
* is triggered
|
|
|
|
*/
|
|
|
|
void on_actionNew_triggered();
|
2020-04-14 10:36:21 +02:00
|
|
|
|
2020-04-19 16:01:46 +02:00
|
|
|
protected:
|
|
|
|
enum { MaxRecentFiles = 5 };
|
|
|
|
|
2020-02-16 17:17:50 +01:00
|
|
|
private:
|
|
|
|
Q_DISABLE_COPY(PuzzleMainWindow)
|
|
|
|
Ui::PuzzleMainWindow *ui;
|
2020-05-05 07:44:20 +02:00
|
|
|
|
2020-04-26 12:09:28 +02:00
|
|
|
VPieceCarrousel *m_pieceCarrousel{nullptr};
|
2020-05-05 07:44:20 +02:00
|
|
|
VPuzzleMainGraphicsView *m_graphicsView{nullptr};
|
|
|
|
|
2020-04-21 18:03:36 +02:00
|
|
|
VPuzzleCommandLinePtr m_cmd;
|
2020-04-10 21:08:29 +02:00
|
|
|
|
2020-04-23 14:14:56 +02:00
|
|
|
VPuzzleLayout *m_layout{nullptr};
|
2020-05-05 17:40:36 +02:00
|
|
|
QList<VPuzzlePiece *>m_selectedPieces{QList<VPuzzlePiece *>()};
|
2020-04-19 11:58:43 +02:00
|
|
|
|
2020-04-26 12:09:28 +02:00
|
|
|
/**
|
|
|
|
* @brief CreatePiece creates a piece from the given VLayoutPiece data
|
|
|
|
* @param rawPiece the raw piece data
|
|
|
|
*/
|
|
|
|
VPuzzlePiece* CreatePiece(const VLayoutPiece &rawPiece);
|
2020-04-18 16:32:54 +02:00
|
|
|
|
2020-04-24 16:10:42 +02:00
|
|
|
/**
|
|
|
|
* @brief InitMenuBar Inits the menu bar (File, Edit, Help ...)
|
|
|
|
*/
|
2020-04-10 21:08:29 +02:00
|
|
|
void InitMenuBar();
|
2020-04-24 16:10:42 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief InitProperties Init the properties
|
|
|
|
*/
|
2020-04-13 12:24:26 +02:00
|
|
|
void InitProperties();
|
2020-04-24 16:10:42 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief InitPropertyTabCurrentPiece Inits the current piece tab in the properties
|
|
|
|
*/
|
2020-04-11 16:25:23 +02:00
|
|
|
void InitPropertyTabCurrentPiece();
|
2020-04-24 16:10:42 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief InitPropertyTabLayout Inits the layout tab in the properties
|
|
|
|
*/
|
2020-04-11 16:25:23 +02:00
|
|
|
void InitPropertyTabLayout();
|
2020-04-24 16:10:42 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief InitPropertyTabTiles Inits the tiles tab in the properties
|
|
|
|
*/
|
2020-04-11 16:25:23 +02:00
|
|
|
void InitPropertyTabTiles();
|
2020-04-24 16:10:42 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief InitPropertyTabLayers Inits the layers tab in the properties
|
|
|
|
*/
|
2020-04-11 16:25:23 +02:00
|
|
|
void InitPropertyTabLayers();
|
2020-04-24 16:10:42 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief InitPieceCarrousel Inits the piece carrousel
|
|
|
|
*/
|
2020-04-13 12:24:26 +02:00
|
|
|
void InitPieceCarrousel();
|
2020-04-10 21:08:29 +02:00
|
|
|
|
2020-05-05 07:44:20 +02:00
|
|
|
/**
|
|
|
|
* @brief InitMainGraphics Initialises the puzzle main graphics
|
|
|
|
*/
|
|
|
|
void InitMainGraphics();
|
2020-04-19 11:58:43 +02:00
|
|
|
|
2020-04-19 12:47:38 +02:00
|
|
|
/**
|
|
|
|
* @brief SetPropertiesData Sets the values of UI elements
|
|
|
|
* in all the property tabs to the values saved in m_layout
|
|
|
|
*/
|
2020-04-19 11:58:43 +02:00
|
|
|
void SetPropertiesData();
|
2020-04-19 12:47:38 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief SetPropertyTabCurrentPieceData Sets the values of UI elements
|
|
|
|
* in the Current Piece Tab to the values saved in m_layout
|
|
|
|
*/
|
2020-04-19 11:58:43 +02:00
|
|
|
void SetPropertyTabCurrentPieceData();
|
2020-04-19 12:47:38 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief SetPropertyTabLayoutData Sets the values of UI elements
|
|
|
|
* in the Layout Tab to the values saved in m_layout
|
|
|
|
*/
|
2020-04-19 11:58:43 +02:00
|
|
|
void SetPropertyTabLayoutData();
|
2020-04-19 12:47:38 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief SetPropertyTabTilesData Sets the values of UI elements
|
|
|
|
* in the Tiles Tab to the values saved in m_layout
|
|
|
|
*/
|
2020-04-19 11:58:43 +02:00
|
|
|
void SetPropertyTabTilesData();
|
2020-04-19 12:47:38 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief SetPropertyTabLayersData Sets the values of UI elements
|
|
|
|
* in the Layers Tab to the values saved in m_layout
|
|
|
|
*/
|
2020-04-19 11:58:43 +02:00
|
|
|
void SetPropertyTabLayersData();
|
|
|
|
|
|
|
|
/**
|
2020-04-19 12:47:38 +02:00
|
|
|
* @brief SetDoubleSpinBoxValue sets the given spinbox to the given value.
|
2020-04-19 11:58:43 +02:00
|
|
|
* the signals are blocked before changing the value and unblocked after
|
2020-04-23 18:16:17 +02:00
|
|
|
* @param spinBox pointer to spinbox
|
|
|
|
* @param value spinbox value
|
2020-04-19 11:58:43 +02:00
|
|
|
*/
|
|
|
|
void SetDoubleSpinBoxValue(QDoubleSpinBox *spinBox, qreal value);
|
|
|
|
|
2020-04-19 12:47:38 +02:00
|
|
|
/**
|
|
|
|
* @brief SetCheckBoxValue sets the given checkbox to the given value.
|
|
|
|
* the signals are blocked before changing the value and unblocked after
|
2020-04-23 18:16:17 +02:00
|
|
|
* @param checkbox pointer to checkbox
|
|
|
|
* @param value checkbox value
|
2020-04-19 12:47:38 +02:00
|
|
|
*/
|
|
|
|
void SetCheckBoxValue(QCheckBox *checkbox, bool value);
|
|
|
|
|
2020-04-11 10:43:47 +02:00
|
|
|
private slots:
|
2020-04-24 16:10:42 +02:00
|
|
|
/**
|
|
|
|
* @brief on_actionOpen_triggered When the menu action File > Open is
|
|
|
|
* triggered.
|
|
|
|
* The slot is automatically connected through name convention.
|
|
|
|
*/
|
|
|
|
void on_actionOpen_triggered();
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief on_actionSave_triggered When the menu action File > Save is
|
|
|
|
* triggered.
|
|
|
|
* The slot is automatically connected through name convention.
|
|
|
|
*/
|
|
|
|
void on_actionSave_triggered();
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief on_actionSaveAs_triggered When the menu action File > Save As
|
|
|
|
* is triggered.
|
|
|
|
* The slot is automatically connected through name convention.
|
|
|
|
*/
|
|
|
|
void on_actionSaveAs_triggered();
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief on_actionImportRawLayout_triggered When the menu action
|
|
|
|
* File > Import Raw Layout is triggered.
|
|
|
|
* The slot is automatically connected through name convention.
|
|
|
|
*/
|
|
|
|
void on_actionImportRawLayout_triggered();
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief on_actionCloseLayout_triggered When the menu action
|
|
|
|
* File > Close Layout is triggered.
|
|
|
|
* The slot is automatically connected through name convention.
|
|
|
|
*/
|
|
|
|
void on_actionCloseLayout_triggered();
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief on_actionAboutQt_triggered When the menu action Help > About Qt
|
|
|
|
* is triggered.
|
|
|
|
* The slot is automatically connected through name convention.
|
|
|
|
*/
|
|
|
|
void on_actionAboutQt_triggered();
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief on_actionAboutPuzzle_triggered When the menu action Help > About Puzzle
|
|
|
|
* is triggered.
|
|
|
|
* The slot is automatically connected through name convention.
|
|
|
|
*/
|
|
|
|
void on_actionAboutPuzzle_triggered();
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief on_comboBoxLayoutUnit_currentIndexChanged When the unit is changed in
|
|
|
|
* the layout property tab.
|
|
|
|
* The slot is automatically connected through name convention.
|
|
|
|
* @param index the index of the selected unit
|
|
|
|
*/
|
|
|
|
void on_comboBoxLayoutUnit_currentIndexChanged(int index);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief on_comboBoxLayoutTemplate_currentIndexChanged When the template is
|
|
|
|
* changed in the layout property tab.
|
|
|
|
* The slot is automatically connected through name convention.
|
|
|
|
* @param index the index of the selected templated
|
|
|
|
*/
|
|
|
|
void on_comboBoxLayoutTemplate_currentIndexChanged(int index);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief LayoutSizeChanged When the width or the length has been changed in
|
|
|
|
* the layout property tab
|
|
|
|
*/
|
|
|
|
void on_LayoutSizeChanged();
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief LayoutOrientationChanged When one of the radio boxes for the layout
|
|
|
|
* orientation has been clicked
|
|
|
|
*/
|
|
|
|
void on_LayoutOrientationChanged();
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief on_pushButtonLayoutRemoveUnusedLength_clicked When the button
|
|
|
|
* "Remove unused length" in the layout property tab is clicked.
|
|
|
|
* The slot is automatically connected through name convention.
|
|
|
|
*/
|
|
|
|
void on_pushButtonLayoutRemoveUnusedLength_clicked();
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief on_LayoutMarginChanged When one of the margin values has been changed
|
|
|
|
* in the layout property tab.
|
|
|
|
*/
|
|
|
|
void on_LayoutMarginChanged();
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief LayoutFollowGrainlineChanged When one of the radio boxes for the
|
|
|
|
* "Follow grainline" has been clicked in the layout property tab.
|
|
|
|
*/
|
|
|
|
void on_LayoutFollowGrainlineChanged();
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief on_doubleSpinBoxLayoutPiecesGap_valueChanged When the "pieces gap"
|
|
|
|
* value is changed in the layout property tab.
|
|
|
|
* The slot is automatically connected through name convention.
|
|
|
|
* @param value the new value of the pieces gap
|
|
|
|
*/
|
|
|
|
void on_doubleSpinBoxLayoutPiecesGap_valueChanged(double value);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief on_checkBoxLayoutWarningPiecesSuperposition_toggled When the
|
|
|
|
* "Warning when pieces superposition" checkbox value in the layout
|
|
|
|
* property tab is toggled.
|
|
|
|
* The slot is automatically connected through name convention.
|
|
|
|
* @param checked the new checked value
|
|
|
|
*/
|
|
|
|
void on_checkBoxLayoutWarningPiecesSuperposition_toggled(bool checked);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief on_checkBoxLayoutWarningPiecesOutOfBound_toggled When the
|
|
|
|
* "Warning when pieces out of bound" checkbox value in the layout property
|
|
|
|
* tab is toggled.
|
|
|
|
* The slot is automatically connected through name convention.
|
|
|
|
* @param checked the new checked value
|
|
|
|
*/
|
|
|
|
void on_checkBoxLayoutWarningPiecesOutOfBound_toggled(bool checked);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief on_checkBoxLayoutStickyEdges_toggled When the "Sticky edges"
|
|
|
|
* checkbox value in the layout property tab is toggled.
|
|
|
|
* The slot is automatically connected through name convention.
|
|
|
|
* @param checked the new checked value
|
|
|
|
*/
|
|
|
|
void on_checkBoxLayoutStickyEdges_toggled(bool checked);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief on_pushButtonLayoutExport_clicked When the button
|
|
|
|
* "Export layout" in the layout property is clicked.
|
|
|
|
* The slot is automatically connected through name convention.
|
|
|
|
*/
|
|
|
|
void on_pushButtonLayoutExport_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 on_CurrentPiecePositionChanged When the positionX or the positionY
|
|
|
|
* is changed in the current piece tab
|
|
|
|
*/
|
2020-05-05 17:40:36 +02:00
|
|
|
void on_CurrentPiecePositionEdited();
|
2020-04-24 16:10:42 +02:00
|
|
|
|
|
|
|
/**
|
2020-05-02 09:44:45 +02:00
|
|
|
* @brief PieceCarrouselLocationChanged When the piece carrousel's location
|
2020-04-24 16:10:42 +02:00
|
|
|
* has been changed
|
2020-05-02 09:44:45 +02:00
|
|
|
* @param area The new area where the piece carrousel has been placed
|
2020-04-24 16:10:42 +02:00
|
|
|
*/
|
|
|
|
void on_PieceCarrouselLocationChanged(Qt::DockWidgetArea area);
|
2020-04-13 12:24:26 +02:00
|
|
|
|
2020-05-01 18:26:02 +02:00
|
|
|
/**
|
2020-05-05 17:40:36 +02:00
|
|
|
* @brief on_PieceSelectionChanged When the piece selection has changed
|
2020-05-01 18:26:02 +02:00
|
|
|
*/
|
2020-05-05 17:40:36 +02:00
|
|
|
void on_PieceSelectionChanged();
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief on_PiecePositionChanged When the current piece position has changed
|
|
|
|
*/
|
|
|
|
void on_PiecePositionChanged();
|
2020-05-01 18:26:02 +02:00
|
|
|
|
2020-02-16 17:17:50 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // PUZZLEMAINWINDOW_H
|