valentina/src/libs/vlayout/dialogs/vabstractlayoutdialog.h

84 lines
2.4 KiB
C
Raw Normal View History

/************************************************************************
**
** @file dialogsavelayout.cpp
** @author Roman Telezhynskyi <dismine(at)gmail.com>
** @date 9 10, 2017
**
** @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) 2013-2017 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 VABSTRACTLAYOUTDIALOG_H
#define VABSTRACTLAYOUTDIALOG_H
#include <QComboBox>
#include <QDialog>
2023-07-15 12:47:14 +02:00
#if QT_VERSION < QT_VERSION_CHECK(5, 13, 0)
2022-08-12 17:50:13 +02:00
#include "../vmisc/defglobal.h"
2023-07-15 12:47:14 +02:00
#endif
2022-08-12 17:50:13 +02:00
enum class Unit : qint8;
class VAbstractLayoutDialog : public QDialog
{
public:
2023-07-15 12:47:14 +02:00
enum class PaperSizeTemplate : qint8
{
A0 = 0,
A1,
A2,
A3,
A4,
Letter,
Legal,
Tabloid,
Roll24in, // Be carefull when change order for roll types
Roll30in, // Used also for showing icon
Roll36in,
Roll42in,
Roll44in,
Roll48in,
Roll62in,
Roll72in,
Custom
};
explicit VAbstractLayoutDialog(QWidget *parent = nullptr);
static auto GetTemplateSize(PaperSizeTemplate tmpl, Unit unit) -> QSizeF;
2021-08-21 15:13:56 +02:00
static void InitTemplates(QComboBox *comboBoxTemplates);
2021-08-25 15:58:50 +02:00
static void InitTileTemplates(QComboBox *comboBoxTemplates, bool keepCustom = false);
2021-08-21 15:13:56 +02:00
protected:
typedef QStringList FormatsVector;
const static FormatsVector pageFormatNames;
typedef int VIndexType;
static auto RoundTemplateSize(qreal width, qreal height, Unit unit) -> QSizeF;
private:
2022-08-12 17:50:13 +02:00
Q_DISABLE_COPY_MOVE(VAbstractLayoutDialog) // NOLINT
};
#endif // VABSTRACTDIALOG_H