2013-11-15 13:41:26 +01:00
|
|
|
/************************************************************************
|
2013-09-18 21:16:19 +02:00
|
|
|
**
|
2013-11-15 13:50:05 +01:00
|
|
|
** @file vitem.h
|
2013-11-15 13:41:26 +01:00
|
|
|
** @author Roman Telezhinsky <dismine@gmail.com>
|
2013-11-15 13:50:05 +01:00
|
|
|
** @date November 15, 2013
|
2013-09-18 21:16:19 +02:00
|
|
|
**
|
2013-11-15 13:41:26 +01:00
|
|
|
** @brief
|
|
|
|
** @copyright
|
|
|
|
** This source code is part of the Valentine project, a pattern making
|
|
|
|
** program, whose allow create and modeling patterns of clothing.
|
|
|
|
** Copyright (C) 2013 Valentina project
|
|
|
|
** <https://bitbucket.org/dismine/valentina> All Rights Reserved.
|
2013-09-18 21:16:19 +02:00
|
|
|
**
|
2013-11-15 13:41:26 +01:00
|
|
|
** Valentina is free software: you can redistribute it and/or modify
|
2013-09-18 21:16:19 +02:00
|
|
|
** 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.
|
|
|
|
**
|
2013-10-27 13:36:29 +01:00
|
|
|
** Valentina is distributed in the hope that it will be useful,
|
2013-09-18 21:16:19 +02:00
|
|
|
** 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/>.
|
|
|
|
**
|
2013-11-15 13:41:26 +01:00
|
|
|
*************************************************************************/
|
2013-09-18 21:16:19 +02:00
|
|
|
|
2013-08-29 12:31:50 +02:00
|
|
|
#ifndef VITEM_H
|
|
|
|
#define VITEM_H
|
|
|
|
|
|
|
|
#include <QGraphicsPathItem>
|
|
|
|
#include <QObject>
|
|
|
|
|
|
|
|
/**
|
2014-01-27 13:27:26 +01:00
|
|
|
* @brief VItem class detail on layout table.
|
2013-08-29 12:31:50 +02:00
|
|
|
*/
|
2013-11-04 21:35:15 +01:00
|
|
|
class VItem : public QObject, public QGraphicsPathItem
|
|
|
|
{
|
2013-08-29 12:31:50 +02:00
|
|
|
Q_OBJECT
|
|
|
|
public:
|
|
|
|
/**
|
2014-01-27 13:27:26 +01:00
|
|
|
* @brief VItem default constructor.
|
2013-08-29 12:31:50 +02:00
|
|
|
*/
|
2014-02-26 09:18:59 +01:00
|
|
|
VItem ();
|
2013-08-29 12:31:50 +02:00
|
|
|
/**
|
2014-01-27 13:27:26 +01:00
|
|
|
* @brief VItem constructor.
|
|
|
|
* @param numInList index in list of details.
|
|
|
|
* @param parent parent object.
|
|
|
|
*/
|
2014-02-26 10:22:05 +01:00
|
|
|
VItem (int numInList, QGraphicsItem * parent = nullptr);
|
2013-08-29 12:31:50 +02:00
|
|
|
/**
|
2014-01-27 13:27:26 +01:00
|
|
|
* @brief VItem constructor.
|
|
|
|
* @param path detail path.
|
|
|
|
* @param numInList index in list of details.
|
|
|
|
* @param parent parent object.
|
|
|
|
*/
|
2014-02-26 10:22:05 +01:00
|
|
|
VItem ( const QPainterPath & path, int numInList, QGraphicsItem * parent = nullptr );
|
2013-08-29 12:31:50 +02:00
|
|
|
/**
|
2014-01-27 13:27:26 +01:00
|
|
|
* @brief Rotate rotate detail on angle in degree.
|
|
|
|
* @param angle angle in degree.
|
|
|
|
*/
|
2013-10-27 09:10:39 +01:00
|
|
|
void Rotate ( qreal angle );
|
2013-11-19 21:56:49 +01:00
|
|
|
/**
|
2014-01-27 13:27:26 +01:00
|
|
|
* @brief getPaper return pointer to paper sheet.
|
|
|
|
* @return pointer to paper sheet.
|
2013-11-19 21:56:49 +01:00
|
|
|
*/
|
2013-11-13 15:07:40 +01:00
|
|
|
QGraphicsRectItem *getPaper() const {return paper;}
|
2013-11-19 21:56:49 +01:00
|
|
|
/**
|
2014-01-27 13:27:26 +01:00
|
|
|
* @brief setPaper set pointer to paper sheet.
|
|
|
|
* @param value pointer to paper sheet.
|
2013-11-19 21:56:49 +01:00
|
|
|
*/
|
2013-11-13 15:07:40 +01:00
|
|
|
void setPaper(QGraphicsRectItem *value) {paper = value;}
|
2013-08-29 12:31:50 +02:00
|
|
|
public slots:
|
|
|
|
/**
|
2014-01-27 13:27:26 +01:00
|
|
|
* @brief LengthChanged handle signal change paper length.
|
2013-08-29 12:31:50 +02:00
|
|
|
*/
|
2013-10-27 09:10:39 +01:00
|
|
|
void LengthChanged();
|
2013-08-29 12:31:50 +02:00
|
|
|
/**
|
2014-01-27 13:27:26 +01:00
|
|
|
* @brief SetIndexInList set detail index in list.
|
|
|
|
* @param index index in list.
|
2013-08-29 12:31:50 +02:00
|
|
|
*/
|
2014-02-26 09:18:59 +01:00
|
|
|
void SetIndexInList( qint32 index );
|
2013-08-29 12:31:50 +02:00
|
|
|
protected:
|
|
|
|
/**
|
2014-01-27 13:27:26 +01:00
|
|
|
* @brief itemChange handle item change.
|
|
|
|
* @param change change.
|
|
|
|
* @param value value.
|
|
|
|
* @return value.
|
2013-08-29 12:31:50 +02:00
|
|
|
*/
|
2013-10-27 09:10:39 +01:00
|
|
|
QVariant itemChange ( GraphicsItemChange change, const QVariant &value );
|
2013-08-29 12:31:50 +02:00
|
|
|
/**
|
2014-01-27 13:27:26 +01:00
|
|
|
* @brief checkItemChange change item change. If detail create colission or moved out paper emit signal.
|
2013-08-29 12:31:50 +02:00
|
|
|
*/
|
2013-10-27 09:10:39 +01:00
|
|
|
void checkItemChange ();
|
2013-08-29 12:31:50 +02:00
|
|
|
private:
|
2013-11-13 15:07:40 +01:00
|
|
|
Q_DISABLE_COPY(VItem)
|
2013-08-29 12:31:50 +02:00
|
|
|
/**
|
2014-01-27 13:27:26 +01:00
|
|
|
* @brief numInOutList index in list.
|
2013-08-29 12:31:50 +02:00
|
|
|
*/
|
|
|
|
qint32 numInOutList;
|
2013-11-19 21:56:49 +01:00
|
|
|
/**
|
2014-01-27 13:27:26 +01:00
|
|
|
* @brief paper pointer to paper item.
|
2013-11-19 21:56:49 +01:00
|
|
|
*/
|
2013-11-13 15:07:40 +01:00
|
|
|
QGraphicsRectItem* paper;
|
2013-08-29 12:31:50 +02:00
|
|
|
signals:
|
|
|
|
/**
|
2014-01-27 13:27:26 +01:00
|
|
|
* @brief itemOut emit if detail moved out paper. Detail send this signal each time when was moved.
|
|
|
|
* @param numInOutList index in list.
|
|
|
|
* @param flag true if moved out. false if not.
|
2013-08-29 12:31:50 +02:00
|
|
|
*/
|
2013-10-27 09:10:39 +01:00
|
|
|
void itemOut ( int numInOutList, bool flag );
|
2013-08-29 12:31:50 +02:00
|
|
|
/**
|
2014-01-27 13:27:26 +01:00
|
|
|
* @brief itemColliding emit if change create colission.
|
|
|
|
* @param list list with all colission detalis.
|
|
|
|
* @param number 1 - colission exist, 0 - colission doesn't exist.
|
2013-08-29 12:31:50 +02:00
|
|
|
*/
|
2013-10-27 09:10:39 +01:00
|
|
|
void itemColliding ( QList<QGraphicsItem *> list, int number );
|
2013-08-29 12:31:50 +02:00
|
|
|
};
|
2014-02-26 09:18:59 +01:00
|
|
|
|
|
|
|
inline void VItem::SetIndexInList(qint32 index)
|
|
|
|
{
|
|
|
|
numInOutList = index;
|
|
|
|
}
|
2013-08-29 12:31:50 +02:00
|
|
|
#endif // VITEM_H
|