29 lines
529 B
C++
29 lines
529 B
C++
#include "pathitem.hpp"
|
|
|
|
PathItem::PathItem()
|
|
{
|
|
}
|
|
|
|
PathItem::~PathItem()
|
|
{
|
|
delete path;
|
|
}
|
|
|
|
void PathItem::mouseDragEvent(QGraphicsSceneMouseEvent *e, CropScene *scene)
|
|
{
|
|
if (path == nullptr)
|
|
{
|
|
path = new QPainterPath(e->scenePos());
|
|
pathItem = scene->addPath(*path, scene->pen(), scene->brush());
|
|
}
|
|
else
|
|
{
|
|
path->quadTo(path->currentPosition(), e->scenePos());
|
|
pathItem->setPath(*path);
|
|
}
|
|
}
|
|
|
|
void PathItem::mouseDragEndEvent(QGraphicsSceneMouseEvent *, CropScene *)
|
|
{
|
|
}
|