valentina/src/app/puzzle/vpmainwindow.h

424 lines
13 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"
2020-05-23 14:48:31 +02:00
#include "vpcommandline.h"
2020-11-14 12:37:43 +01:00
#include "../vlayout/vlayoutdef.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
}
2020-05-23 14:17:20 +02:00
class VPMainWindow : public QMainWindow
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
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
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);
/**
* @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();
public slots:
/**
* @brief on_actionNew_triggered When the menu action File > New
* is triggered
*/
void on_actionNew_triggered();
2020-04-19 16:01:46 +02:00
protected:
enum { MaxRecentFiles = 5 };
virtual void closeEvent(QCloseEvent *event) override;
2020-02-16 17:17:50 +01:00
private:
2020-05-23 14:17:20 +02:00
Q_DISABLE_COPY(VPMainWindow)
Ui::VPMainWindow *ui;
2020-05-05 07:44:20 +02:00
2020-05-23 14:29:18 +02:00
VPCarrousel *m_carrousel{nullptr};
2020-05-23 15:36:46 +02:00
VPMainGraphicsView *m_graphicsView{nullptr};
2020-05-05 07:44:20 +02:00
2020-05-23 14:48:31 +02:00
VPCommandLinePtr m_cmd;
2020-04-10 21:08:29 +02:00
2020-05-23 15:34:11 +02:00
VPLayout *m_layout{nullptr};
2020-05-23 15:42:51 +02:00
QList<VPPiece *>m_selectedPieces{QList<VPPiece *>()};
2020-04-19 11:58:43 +02:00
2020-11-14 10:55:57 +01:00
/**
* @brief spin box with the scale factor of the graphic view
*/
2020-11-14 10:20:02 +01:00
QPointer<QDoubleSpinBox> m_doubleSpinBoxScale{nullptr};
2020-11-14 10:55:57 +01:00
/**
* @brief mouseCoordinate pointer to label who show mouse coordinate.
*/
QLabel* m_mouseCoordinate{nullptr};
2020-04-26 12:09:28 +02:00
/**
* @brief CreatePiece creates a piece from the given VLayoutPiece data
* @param rawPiece the raw piece data
*/
2020-05-23 15:42:51 +02:00
VPPiece* CreatePiece(const VLayoutPiece &rawPiece);
2020-04-18 16:32:54 +02:00
/**
* @brief InitMenuBar Inits the menu bar (File, Edit, Help ...)
*/
2020-04-10 21:08:29 +02:00
void InitMenuBar();
/**
* @brief InitProperties Init the properties
*/
2020-04-13 12:24:26 +02:00
void InitProperties();
/**
* @brief InitPropertyTabCurrentPiece Inits the current piece tab in the properties
*/
2020-04-11 16:25:23 +02:00
void InitPropertyTabCurrentPiece();
2020-11-11 19:31:39 +01:00
/**
* @brief InitPropertyTabCurrentSheet Inits the current sheet tab in the properties;
*/
void InitPropertyTabCurrentSheet();
/**
* @brief InitPropertyTabLayout Inits the layout tab in the properties
*/
2020-04-11 16:25:23 +02:00
void InitPropertyTabLayout();
/**
* @brief InitPropertyTabTiles Inits the tiles tab in the properties
*/
2020-04-11 16:25:23 +02:00
void InitPropertyTabTiles();
/**
2020-05-23 14:29:18 +02:00
* @brief InitCarrousel Inits the carrousel
*/
2020-05-23 14:29:18 +02:00
void InitCarrousel();
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-11-13 23:31:22 +01:00
/**
* @brief InitToolBar Initialises the tool bar
*/
2020-11-14 10:20:02 +01:00
void InitZoomToolBar();
2020-11-13 23:31:22 +01: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 SetPropertyTabSheetData Sets the values of UI elements
* in the Sheet Tab to the values saved in focused sheet
2020-04-19 12:47:38 +02:00
*/
void SetPropertyTabSheetData();
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 SetPropertyTabLayoutData Sets the values of UI elements
* in the Layout Tab to the values saved in m_layout
*/
void SetPropertyTabLayoutData();
2020-04-19 11:58:43 +02:00
/**
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);
void ReadSettings();
void WriteSettings();
bool MaybeSave();
2020-11-14 12:37:43 +01:00
2020-04-11 10:43:47 +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.
*/
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_comboBoxSheetTemplate_currentIndexChanged(int index);
/**
* @brief LayoutSizeChanged When the width or the length has been changed in
* the layout property tab
*/
void on_SheetSizeChanged();
/**
* @brief LayoutOrientationChanged When one of the radio boxes for the layout
* orientation has been clicked
*/
void on_SheetOrientationChanged();
/**
* @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_pushButtonSheetRemoveUnusedLength_clicked();
/**
* @brief on_LayoutMarginChanged When one of the margin values has been changed
* in the layout property tab.
*/
void on_SheetMarginChanged();
/**
* @brief LayoutFollowGrainlineChanged When one of the radio boxes for the
* "Follow grainline" has been clicked in the layout 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);
/**
* @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_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);
2020-02-16 17:17:50 +01:00
};
2020-05-23 14:17:20 +02:00
#endif // VPMAINWINDOW_H