2015-01-21 19:56:59 +01:00
|
|
|
/************************************************************************
|
|
|
|
**
|
|
|
|
** @file vbestsquare.h
|
|
|
|
** @author Roman Telezhynskyi <dismine(at)gmail.com>
|
|
|
|
** @date 21 1, 2015
|
|
|
|
**
|
|
|
|
** @brief
|
|
|
|
** @copyright
|
2017-10-05 11:20:01 +02:00
|
|
|
** This source code is part of the Valentina project, a pattern making
|
2015-01-21 19:56:59 +01:00
|
|
|
** program, whose allow create and modeling patterns of clothing.
|
2015-02-27 11:27:48 +01:00
|
|
|
** Copyright (C) 2013-2015 Valentina project
|
2020-01-31 07:00:05 +01:00
|
|
|
** <https://gitlab.com/smart-pattern/valentina> All Rights Reserved.
|
2015-01-21 19:56:59 +01:00
|
|
|
**
|
|
|
|
** 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 VBESTSQUARE_H
|
|
|
|
#define VBESTSQUARE_H
|
|
|
|
|
2016-08-08 13:44:49 +02:00
|
|
|
#include <QSizeF>
|
|
|
|
#include <QTransform>
|
|
|
|
#include <QtGlobal>
|
2019-03-26 18:02:12 +01:00
|
|
|
#include <QSharedDataPointer>
|
|
|
|
#include <QTypeInfo>
|
2016-08-08 13:44:49 +02:00
|
|
|
|
2015-01-21 19:56:59 +01:00
|
|
|
#include "vlayoutdef.h"
|
|
|
|
|
2019-03-26 18:02:12 +01:00
|
|
|
class VBestSquareData;
|
|
|
|
|
2021-09-25 16:18:33 +02:00
|
|
|
class VBestSquare final
|
2015-01-21 19:56:59 +01:00
|
|
|
{
|
|
|
|
public:
|
2019-08-22 09:57:38 +02:00
|
|
|
VBestSquare();
|
2019-06-18 13:36:20 +02:00
|
|
|
VBestSquare(QSizeF sheetSize, bool saveLength, bool isPortrait);
|
2019-03-26 18:02:12 +01:00
|
|
|
VBestSquare(const VBestSquare &res);
|
2021-09-25 16:18:33 +02:00
|
|
|
~VBestSquare();
|
2019-03-26 18:02:12 +01:00
|
|
|
|
2023-05-03 13:07:02 +02:00
|
|
|
auto operator=(const VBestSquare &res) -> VBestSquare &;
|
2019-03-26 18:02:12 +01:00
|
|
|
#ifdef Q_COMPILER_RVALUE_REFS
|
2022-08-12 17:50:13 +02:00
|
|
|
VBestSquare(VBestSquare &&res) Q_DECL_NOTHROW;
|
2023-05-03 13:07:02 +02:00
|
|
|
auto operator=(VBestSquare &&res) Q_DECL_NOTHROW->VBestSquare &;
|
2019-03-26 18:02:12 +01:00
|
|
|
#endif
|
|
|
|
|
2019-03-27 08:31:02 +01:00
|
|
|
void NewResult(const VBestSquareResData &data);
|
2015-01-21 19:56:59 +01:00
|
|
|
void NewResult(const VBestSquare &best);
|
|
|
|
|
2023-05-03 13:07:02 +02:00
|
|
|
auto BestSize() const -> QSizeF;
|
|
|
|
auto GContourEdge() const -> int;
|
|
|
|
auto DetailEdge() const -> int;
|
|
|
|
auto Matrix() const -> QTransform;
|
|
|
|
auto HasValidResult() const -> bool;
|
|
|
|
auto Mirror() const -> bool;
|
|
|
|
auto Type() const -> BestFrom;
|
|
|
|
auto IsTerminatedByException() const -> bool;
|
|
|
|
auto ReasonTerminatedByException() const -> QString;
|
2019-06-24 11:14:10 +02:00
|
|
|
void TerminatedByException(const QString &reason);
|
2015-01-21 19:56:59 +01:00
|
|
|
|
2023-05-03 13:07:02 +02:00
|
|
|
auto BestResultData() const -> VBestSquareResData;
|
2019-03-27 08:31:02 +01:00
|
|
|
|
2023-05-03 13:07:02 +02:00
|
|
|
auto IsSaveLength() const -> bool;
|
|
|
|
auto IsImprovedSidePosition(qreal sidePosition) const -> bool;
|
|
|
|
auto IsPortrait() const -> bool;
|
2015-05-08 12:10:56 +02:00
|
|
|
|
2015-01-21 19:56:59 +01:00
|
|
|
private:
|
2019-03-26 18:02:12 +01:00
|
|
|
QSharedDataPointer<VBestSquareData> d;
|
2019-06-18 13:28:16 +02:00
|
|
|
|
2015-01-21 19:56:59 +01:00
|
|
|
};
|
|
|
|
|
2022-08-12 17:50:13 +02:00
|
|
|
Q_DECLARE_TYPEINFO(VBestSquare, Q_MOVABLE_TYPE); // NOLINT
|
2018-12-31 12:35:42 +01:00
|
|
|
|
2015-01-21 19:56:59 +01:00
|
|
|
#endif // VBESTSQUARE_H
|