2020-04-13 18:58:16 +02:00
|
|
|
/************************************************************************
|
|
|
|
**
|
2020-05-23 15:34:11 +02:00
|
|
|
** @file vplayout.h
|
2020-04-13 18:58:16 +02:00
|
|
|
** @author Ronan Le Tiec
|
|
|
|
** @date 13 4, 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 15:34:11 +02:00
|
|
|
#ifndef VPLAYOUT_H
|
|
|
|
#define VPLAYOUT_H
|
2020-04-13 18:58:16 +02:00
|
|
|
|
|
|
|
#include <QList>
|
2020-04-23 14:07:11 +02:00
|
|
|
|
2020-04-13 18:58:16 +02:00
|
|
|
#include "def.h"
|
2021-07-29 16:11:18 +02:00
|
|
|
#include "vplayoutsettings.h"
|
2020-04-13 18:58:16 +02:00
|
|
|
|
2020-05-23 15:42:51 +02:00
|
|
|
class VPPiece;
|
2020-05-23 17:47:04 +02:00
|
|
|
class VPSheet;
|
2020-04-13 18:58:16 +02:00
|
|
|
|
2020-05-23 15:34:11 +02:00
|
|
|
class VPLayout : public QObject
|
2020-04-13 18:58:16 +02:00
|
|
|
{
|
2020-05-08 23:49:41 +02:00
|
|
|
Q_OBJECT
|
2020-04-13 18:58:16 +02:00
|
|
|
public:
|
2021-07-29 16:11:18 +02:00
|
|
|
explicit VPLayout(QObject *parent=nullptr);
|
2020-05-23 15:34:11 +02:00
|
|
|
virtual ~VPLayout();
|
2020-04-13 18:58:16 +02:00
|
|
|
|
2021-07-29 16:11:18 +02:00
|
|
|
void AddPiece(VPPiece *piece);
|
|
|
|
auto GetPieces() const -> QList<VPPiece *>;
|
|
|
|
auto GetUnplacedPieces() const -> QList<VPPiece *>;
|
|
|
|
auto GetTrashedPieces() const -> QList<VPPiece *>;
|
2020-05-24 19:53:51 +02:00
|
|
|
|
2021-07-29 16:11:18 +02:00
|
|
|
auto AddSheet() -> VPSheet*;
|
|
|
|
auto AddSheet(VPSheet *sheet) -> VPSheet*;
|
|
|
|
auto GetSheets() -> QList<VPSheet *>;
|
2020-05-08 23:49:41 +02:00
|
|
|
|
|
|
|
/**
|
2020-05-23 17:47:04 +02:00
|
|
|
* @brief SetFocusedSheet Sets the focused sheet, to which pieces are added from the carrousel via drag
|
2020-05-08 23:49:41 +02:00
|
|
|
* and drop
|
2020-05-23 17:47:04 +02:00
|
|
|
* @param focusedSheet the new active sheet. If nullptr, then it sets automaticaly the first sheet from m_sheets
|
2020-05-08 23:49:41 +02:00
|
|
|
*/
|
2020-05-23 17:47:04 +02:00
|
|
|
void SetFocusedSheet(VPSheet *focusedSheet = nullptr);
|
2020-05-08 23:49:41 +02:00
|
|
|
|
|
|
|
/**
|
2020-05-23 17:47:04 +02:00
|
|
|
* @brief GetFocusedSheet Returns the focused sheet, to which pieces are added from the carrousel via drag
|
|
|
|
* and drop
|
|
|
|
* @return the focused sheet
|
2020-05-08 23:49:41 +02:00
|
|
|
*/
|
2021-07-29 16:11:18 +02:00
|
|
|
auto GetFocusedSheet() -> VPSheet*;
|
2020-11-14 15:58:42 +01:00
|
|
|
|
2021-07-29 16:11:18 +02:00
|
|
|
auto GetTrashSheet() -> VPSheet*;
|
2020-11-14 15:58:42 +01:00
|
|
|
|
2021-07-29 16:11:18 +02:00
|
|
|
auto LayoutSettings() -> VPLayoutSettings &;
|
2020-11-14 15:58:42 +01:00
|
|
|
|
2021-07-29 16:11:18 +02:00
|
|
|
auto PiecesForSheet(const VPSheet* sheet) const -> QList<VPPiece *>;
|
2020-05-08 23:49:41 +02:00
|
|
|
|
2020-04-13 18:58:16 +02:00
|
|
|
private:
|
2020-05-23 15:34:11 +02:00
|
|
|
Q_DISABLE_COPY(VPLayout)
|
2020-05-08 23:49:41 +02:00
|
|
|
|
2021-07-29 16:11:18 +02:00
|
|
|
QList<VPPiece *> m_pieces{};
|
2020-05-23 17:47:04 +02:00
|
|
|
|
2021-07-29 16:11:18 +02:00
|
|
|
VPSheet* m_trashSheet;
|
2020-04-13 18:58:16 +02:00
|
|
|
|
2021-05-27 10:35:39 +02:00
|
|
|
QList<VPSheet*> m_sheets{};
|
2020-05-23 17:47:04 +02:00
|
|
|
VPSheet *m_focusedSheet{nullptr};
|
2020-04-13 18:58:16 +02:00
|
|
|
|
2021-07-29 16:11:18 +02:00
|
|
|
VPLayoutSettings m_layoutSettings{};
|
2020-04-13 18:58:16 +02:00
|
|
|
};
|
|
|
|
|
2020-05-23 15:34:11 +02:00
|
|
|
#endif // VPLAYOUT_H
|