122 lines
3.2 KiB
C++
122 lines
3.2 KiB
C++
/************************************************************************
|
|
**
|
|
** @file vptilefactory.h
|
|
** @author Ronan Le Tiec
|
|
** @date 19 11, 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/>.
|
|
**
|
|
*************************************************************************/
|
|
|
|
#ifndef VPTILEFACTORY_H
|
|
#define VPTILEFACTORY_H
|
|
|
|
#include <QtMath>
|
|
#include <QObject>
|
|
|
|
#include "vplayout.h"
|
|
#include "../vmisc/def.h"
|
|
#include "vcommonsettings.h"
|
|
|
|
class VPMainGraphicsView;
|
|
|
|
class VPTileFactory : QObject
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
VPTileFactory(VPLayout *layout, VCommonSettings *settings);
|
|
|
|
~VPTileFactory();
|
|
|
|
/**
|
|
* @brief drawTile draws the tile of given coordinate (row, col) from the
|
|
* current sheet of the layout with the given painter
|
|
* @param painter
|
|
* @param row
|
|
* @param col
|
|
*/
|
|
void drawTile(QPainter *painter, VPMainGraphicsView *graphicsView, int row, int col);
|
|
|
|
/**
|
|
* @brief refreshTileInfos Resfreshes the tile infos (m_nbCol, m_nbRow, m_drawingAreaHeight, m_drawingAreaWidth)
|
|
*/
|
|
void refreshTileInfos();
|
|
|
|
/**
|
|
* @brief getRowNb Returns the number of row pages
|
|
* @return
|
|
*/
|
|
int getRowNb();
|
|
|
|
/**
|
|
* @brief getColNb Returns the number of col pages
|
|
* @return
|
|
*/
|
|
int getColNb();
|
|
|
|
/**
|
|
* @brief getDrawingAreaHeight Returns the usable height of the tile in Px
|
|
* @return
|
|
*/
|
|
qreal getDrawingAreaHeight();
|
|
|
|
/**
|
|
* @brief getDrawingAreaWidth Returns the usable width of the tile in Px
|
|
* @return
|
|
*/
|
|
qreal getDrawingAreaWidth();
|
|
|
|
private:
|
|
Q_DISABLE_COPY(VPTileFactory)
|
|
|
|
VPLayout *m_layout{nullptr};
|
|
VCommonSettings *m_commonSettings{nullptr};
|
|
|
|
/**
|
|
* @brief m_nbCol the number of column-pages for the current sheet of the layout
|
|
*/
|
|
int m_nbCol{0};
|
|
|
|
/**
|
|
* @brief m_nbRow the number of row-pages for the current sheet of the layout
|
|
*/
|
|
int m_nbRow{0};
|
|
|
|
/**
|
|
* @brief m_drawingAreaHeight the height of the drawing area
|
|
*/
|
|
qreal m_drawingAreaHeight{0};
|
|
|
|
/**
|
|
* @brief m_drawingAreaWidth the width of the drawing area
|
|
*/
|
|
qreal m_drawingAreaWidth{0};
|
|
|
|
/**
|
|
* @brief m_infoStripeWidth the width of the info / glueing stripe in Px
|
|
*/
|
|
qreal m_infoStripeWidth{0};
|
|
|
|
};
|
|
|
|
#endif // VPTILEFACTORY_H
|