valentina/src/app/puzzle/vpmainwindow.h

561 lines
17 KiB
C
Raw Normal View History

2020-02-16 17:17:50 +01:00
/************************************************************************
**
2020-05-23 14:17:20 +02:00
** @file vpmainwindow.h
2020-02-16 17:17:50 +01:00
** @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/>.
**
*************************************************************************/
2020-05-23 14:17:20 +02:00
#ifndef VPMAINWINDOW_H
#define VPMAINWINDOW_H
2020-02-16 17:17:50 +01:00
#include <QMainWindow>
2020-04-10 21:08:29 +02:00
#include <QMessageBox>
2020-04-19 11:58:43 +02:00
#include <QDoubleSpinBox>
2020-11-14 10:55:57 +01:00
#include <QPointer>
#include "../vmisc/def.h"
2020-05-23 14:29:18 +02:00
#include "vpcarrousel.h"
2020-05-23 15:36:46 +02:00
#include "vpmaingraphicsview.h"
2020-05-23 15:34:11 +02:00
#include "vplayout.h"
2020-05-23 15:42:51 +02:00
#include "vppiece.h"
2020-04-26 12:09:28 +02:00
#include "../vlayout/vlayoutpiece.h"
#include "vptilefactory.h"
2021-05-15 15:28:17 +02:00
#include "vpexporter.h"
2020-05-23 14:48:31 +02:00
#include "vpcommandline.h"
2020-11-14 12:37:43 +01:00
#include "../vlayout/vlayoutdef.h"
#include "../vwidgets/vabstractmainwindow.h"
2021-05-21 16:17:22 +02:00
#include "../vmisc/vlockguard.h"
2020-02-16 17:17:50 +01:00
namespace Ui
{
2020-05-23 14:17:20 +02:00
class VPMainWindow;
2020-02-16 17:17:50 +01:00
}
class VPMainWindow : public VAbstractMainWindow
2020-02-16 17:17:50 +01:00
{
Q_OBJECT
public:
2020-05-23 14:48:31 +02:00
explicit VPMainWindow(const VPCommandLinePtr &cmd, QWidget *parent = nullptr);
2020-05-23 14:17:20 +02:00
virtual ~VPMainWindow();
2020-02-16 17:17:50 +01:00
2021-05-21 17:08:37 +02:00
QString CurrentFile() const;
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
*/
bool LoadFile(QString path);
2020-02-16 18:18:39 +01:00
2021-05-21 16:17:22 +02:00
void LayoutWasSaved(bool saved);
void SetCurrentFile(const QString &fileName);
2020-04-19 16:01:46 +02:00
/**
2021-05-21 16:17:22 +02:00
* @brief SaveLayout 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
*/
2021-05-21 16:17:22 +02:00
bool SaveLayout(const QString &path, QString &error);
2020-04-19 16:01:46 +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-26 12:09:28 +02:00
void ImportRawLayouts(const QStringList &rawLayouts);
2020-11-13 23:31:22 +01:00
/**
* @brief InitZoom Initialises the zoom to fit best
*/
void InitZoom();
2021-05-21 19:51:46 +02:00
void UpdateWindowTitle();
public slots:
/**
* @brief on_actionNew_triggered When the menu action File > New
* is triggered
*/
void on_actionNew_triggered();
2021-05-21 11:03:26 +02:00
virtual void ShowToolTip(const QString &toolTip) override;
2020-04-19 16:01:46 +02:00
protected:
virtual void closeEvent(QCloseEvent *event) override;
virtual void changeEvent(QEvent* event) override;
virtual QStringList RecentFileList() const override;
2021-05-27 20:11:32 +02:00
private slots:
/**
* @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.
*/
2021-05-21 16:17:22 +02:00
bool on_actionSave_triggered();
/**
* @brief on_actionSaveAs_triggered When the menu action File > Save As
* is triggered.
* The slot is automatically connected through name convention.
*/
2021-05-21 16:17:22 +02:00
bool 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_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);
2020-11-21 13:45:26 +01:00
/**
* @brief on_lineEditSheetName_textChanged When the name of the sheet is changed
* in the sheet layout tab
* @param text name of the sheet
2020-11-21 13:45:26 +01:00
*/
void on_lineEditSheetName_textChanged(const QString &text);
/**
* @brief on_comboBoxLayoutTemplate_currentIndexChanged When the template is
2020-11-20 15:51:24 +01:00
* changed in the sheet property tab.
* The slot is automatically connected through name convention.
* @param index the index of the selected templated
*/
void on_comboBoxSheetTemplate_currentIndexChanged(int index);
/**
2020-11-14 15:58:42 +01:00
* @brief on_SheetSizeChanged When the width or the length has been changed in
* the sheet property tab
2020-11-20 15:51:24 +01:00
* @param changedViaSizeCombobox true if the change happened through the combobox
*/
2020-11-20 15:51:24 +01:00
void on_SheetSizeChanged(bool changedViaSizeCombobox = true);
/**
2020-11-14 15:58:42 +01:00
* @brief on_SheetOrientationChanged When one of the radio boxes for the sheet
* orientation has been clicked
*/
void on_SheetOrientationChanged();
/**
* @brief on_pushButtonLayoutRemoveUnusedLength_clicked When the button
2020-11-14 15:58:42 +01:00
* "Remove unused length" in the sheet property tab is clicked.
* The slot is automatically connected through name convention.
*/
void on_pushButtonSheetRemoveUnusedLength_clicked();
/**
2020-11-14 15:58:42 +01:00
* @brief on_SheetMarginChanged When one of the margin values has been changed
* in the sheet property tab.
*/
void on_SheetMarginChanged();
/**
* @brief on_checkBoxSheetShowGrid_toggled When the checkbox "show grid" is
* clicked
* @param checked show grid
*/
void on_checkBoxSheetShowGrid_toggled(bool checked);
/**
* @brief on_doubleSpinBoxSheetGridColWidth_valueChanged When the "grid placement
* column width" value is changed in the layout property tab.
* The slot is automatically connected through name convention.
* @param value the new value of the grid placement column width
*/
void on_doubleSpinBoxSheetGridColWidth_valueChanged(double value);
/**
* @brief on_doubleSpinBoxSheetGridRowHeight_valueChanged When the "grid placement
* row height" value is changed in the layout property tab.
* The slot is automatically connected through name convention.
* @param value the new value of the grid placement row height
*/
void on_doubleSpinBoxSheetGridRowHeight_valueChanged(double value);
/**
* @brief LayoutFollowGrainlineChanged When one of the radio boxes for the
2020-11-14 15:58:42 +01:00
* "Follow grainline" has been clicked in the sheet property tab.
*/
void on_SheetFollowGrainlineChanged();
/**
* @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_doubleSpinBoxSheetPiecesGap_valueChanged(double value);
2020-11-20 15:51:24 +01:00
/**
* @brief on_comboBoxTilesTemplate_currentIndexChanged When the template is
* changed in the tiles property tab.
* The slot is automatically connected through name convention.
* @param index the index of the selected templated
*/
void on_comboBoxTilesTemplate_currentIndexChanged(int index);
2020-11-14 15:58:42 +01:00
/**
* @brief on_TilesSizeChanged When the width or the length has been changed in
* the tiles property tab
2020-11-20 15:51:24 +01:00
* @param changedViaSizeCombobox true if the change happened through the combobox
2020-11-14 15:58:42 +01:00
*/
2020-11-20 15:51:24 +01:00
void on_TilesSizeChanged(bool changedViaSizeCombobox = true);
2020-11-14 15:58:42 +01:00
/**
* @brief on_TilesOrientationChanged When one of the radio boxes for the tiles
* orientation has been clicked
*/
void on_TilesOrientationChanged();
/**
* @brief on_TilesMarginChanged When one of the margin values has been changed
* in the tiles property tab.
*/
void on_TilesMarginChanged();
/**
* @brief on_checkBoxTilesShowTiles_toggled When the checkbox "show tiles" is
* clicked
* @param checked show tiles
2020-11-14 15:58:42 +01:00
*/
void on_checkBoxTilesShowTiles_toggled(bool checked);
2020-11-14 17:31:34 +01:00
/**
* @brief on_pushButtonTilesExport_clicked When the export tiles button is clicked
*/
void on_pushButtonTilesExport_clicked();
2020-11-14 15:58:42 +01:00
/**
* @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_checkBoxSheetStickyEdges_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_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_pushButtonCurrentPieceRotate90Antilockwise_clicked When the 90
* anticlockwise angle button is clicked
*/
void on_pushButtonCurrentPieceRotate90Anticlockwise_clicked();
/**
* @brief on_pushButtonCurrentPieceRotate90Clockwise_clicked When the 90
* clockwise angle button is clicked
*/
void on_pushButtonCurrentPieceRotate90Clockwise_clicked();
/**
* @brief on_pushButtonCurrentPieceRotateGrainlineVertical_clicked
* When the grainline vertical angle button is clicked
*/
void on_pushButtonCurrentPieceRotateGrainlineVertical_clicked();
/**
* @brief on_pushButtonCurrentPieceRotateGrainlineHorizontal_clicked
* When the grainline horizontal angle button is clicked
*/
void on_pushButtonCurrentPieceRotateGrainlineHorizontal_clicked();
/**
* @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-05-23 14:29:18 +02:00
* @brief CarrouselLocationChanged When the piece carrousel's location
* has been changed
2020-05-02 09:44:45 +02:00
* @param area The new area where the piece carrousel has been placed
*/
2020-05-23 14:29:18 +02:00
void on_CarrouselLocationChanged(Qt::DockWidgetArea area);
2020-04-13 12:24:26 +02:00
/**
2020-05-05 17:40:36 +02:00
* @brief on_PieceSelectionChanged When the piece selection has changed
*/
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-09 14:45:36 +02:00
/**
* @brief on_PieceRotationChanged When the current piece rotation has changed
*/
void on_PieceRotationChanged();
2020-11-14 10:20:02 +01:00
/**
2020-11-14 10:55:57 +01:00
* @brief on_ScaleChanged When the scale of the graphic view is changed
2020-11-14 10:20:02 +01:00
*/
void on_ScaleChanged(qreal scale);
2020-11-14 10:55:57 +01:00
/**
* @brief mouseMove save mouse position and show user.
* @param scenePos position mouse.
*/
void on_MouseMoved(const QPointF &scenePos);
2021-05-21 19:51:46 +02:00
void on_actionPreferences_triggered();
void ShowWindow() const;
2021-05-21 19:51:46 +02:00
void ToolBarStyles();
2021-05-27 20:11:32 +02:00
void on_actionAddSheet_triggered();
#if defined(Q_OS_MAC)
void AboutToShowDockMenu();
#endif //defined(Q_OS_MAC)
private:
Q_DISABLE_COPY(VPMainWindow)
Ui::VPMainWindow *ui;
VPCarrousel *m_carrousel{nullptr};
VPMainGraphicsView *m_graphicsView{nullptr};
VPCommandLinePtr m_cmd;
2021-07-29 16:11:18 +02:00
VPLayout *m_layout{new VPLayout(this)};
QList<VPPiece *>m_selectedPieces{QList<VPPiece *>()};
VPTileFactory *m_tileFactory{nullptr};
/**
* @brief spin box with the scale factor of the graphic view
*/
QPointer<QDoubleSpinBox> m_doubleSpinBoxScale{nullptr};
/**
* @brief mouseCoordinate pointer to label who show mouse coordinate.
*/
QLabel* m_mouseCoordinate{nullptr};
2021-05-21 11:03:26 +02:00
QLabel* m_statusLabel{nullptr};
QString curFile{};
bool isInitialized{false};
bool lIsReadOnly{false};
2021-05-21 16:17:22 +02:00
QSharedPointer<VLockGuard<char>> lock{nullptr};
/**
* @brief CreatePiece creates a piece from the given VLayoutPiece data
* @param rawPiece the raw piece data
*/
2021-05-27 10:35:39 +02:00
Q_REQUIRED_RESULT VPPiece* CreatePiece(const VLayoutPiece &rawPiece);
/**
* @brief InitMenuBar Inits the menu bar (File, Edit, Help ...)
*/
void SetupMenu();
/**
* @brief InitProperties Init the properties
*/
void InitProperties();
/**
* @brief InitPropertyTabCurrentPiece Inits the current piece tab in the properties
*/
void InitPropertyTabCurrentPiece();
/**
* @brief InitPropertyTabCurrentSheet Inits the current sheet tab in the properties;
*/
void InitPropertyTabCurrentSheet();
/**
* @brief InitPropertyTabLayout Inits the layout tab in the properties
*/
void InitPropertyTabLayout();
/**
* @brief InitPropertyTabTiles Inits the tiles tab in the properties
*/
void InitPropertyTabTiles();
/**
* @brief InitCarrousel Inits the carrousel
*/
void InitCarrousel();
/**
* @brief InitMainGraphics Initialises the puzzle main graphics
*/
void InitMainGraphics();
/**
* @brief InitToolBar Initialises the tool bar
*/
void InitZoomToolBar();
/**
* @brief InitScaleToolBar Initialises the scale tool bar
*/
void InitScaleToolBar();
/**
* @brief SetPropertiesData Sets the values of UI elements
* in all the property tabs to the values saved in m_layout
*/
void SetPropertiesData();
/**
* @brief SetPropertyTabCurrentPieceData Sets the values of UI elements
* in the Current Piece Tab to the values saved in m_layout
*/
void SetPropertyTabCurrentPieceData();
/**
* @brief SetPropertyTabSheetData Sets the values of UI elements
* in the Sheet Tab to the values saved in focused sheet
*/
void SetPropertyTabSheetData();
/**
* @brief SetPropertyTabTilesData Sets the values of UI elements
* in the Tiles Tab to the values saved in m_layout
*/
void SetPropertyTabTilesData();
/**
* @brief SetPropertyTabLayoutData Sets the values of UI elements
* in the Layout Tab to the values saved in m_layout
*/
void SetPropertyTabLayoutData();
/**
* @brief SetDoubleSpinBoxValue sets the given spinbox to the given value.
* the signals are blocked before changing the value and unblocked after
* @param spinBox pointer to spinbox
* @param value spinbox value
*/
void SetDoubleSpinBoxValue(QDoubleSpinBox *spinBox, qreal value);
/**
* @brief SetCheckBoxValue sets the given checkbox to the given value.
* the signals are blocked before changing the value and unblocked after
* @param checkbox pointer to checkbox
* @param value checkbox value
*/
void SetCheckBoxValue(QCheckBox *checkbox, bool value);
void ReadSettings();
void WriteSettings();
bool MaybeSave();
/**
* @brief generateTiledPdf Generates the tiled Pdf in the given filename
* @param fileName output file name
*/
void generateTiledPdf(QString fileName);
void CreateWindowMenu(QMenu *menu);
2021-05-27 20:11:32 +02:00
void AddSheet();
2020-02-16 17:17:50 +01:00
};
2020-05-23 14:17:20 +02:00
#endif // VPMAINWINDOW_H