valentina/tools/drawTools/vtoollinepoint.h

57 lines
2.1 KiB
C
Raw Normal View History

/************************************************************************
**
** @file vtoollinepoint.h
** @author Roman Telezhinsky <dismine@gmail.com>
** @date Friday November 15, 2013
**
** @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.
**
** 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/>.
**
*************************************************************************/
2013-07-30 20:46:40 +02:00
#ifndef VTOOLLINEPOINT_H
#define VTOOLLINEPOINT_H
#include "vtoolpoint.h"
class VToolLinePoint : public VToolPoint
{
Q_OBJECT
2013-07-30 20:46:40 +02:00
public:
2013-10-27 12:56:05 +01:00
VToolLinePoint(VDomDocument *doc, VContainer *data, const qint64 &id, const QString &typeLine,
const QString &formula, const qint64 &basePointId, const qreal &angle,
QGraphicsItem * parent = 0);
2013-07-30 20:46:40 +02:00
public slots:
virtual void ChangedActivDraw(const QString &newName);
virtual void SetFactor(qreal factor);
2013-07-30 20:46:40 +02:00
protected:
QString typeLine;
QString formula;
2013-09-12 16:18:31 +02:00
qreal angle;
2013-07-31 13:34:39 +02:00
qint64 basePointId;
2013-07-30 20:46:40 +02:00
QGraphicsLineItem *mainLine;
virtual void RefreshGeometry();
2013-10-27 12:56:05 +01:00
virtual void RemoveReferens() {doc->DecrementReferens(basePointId);}
2013-08-20 12:26:02 +02:00
private:
Q_DISABLE_COPY(VToolLinePoint)
2013-07-30 20:46:40 +02:00
};
#endif // VTOOLLINEPOINT_H