You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
130 lines
3.1 KiB
130 lines
3.1 KiB
14 years ago
|
|
||
|
#include "UBGraphicsPDFItem.h"
|
||
|
|
||
|
#include <QtGui>
|
||
|
|
||
|
#include "UBGraphicsScene.h"
|
||
|
#include "UBGraphicsPixmapItem.h"
|
||
|
#include "UBGraphicsItemDelegate.h"
|
||
|
|
||
|
|
||
|
UBGraphicsPDFItem::UBGraphicsPDFItem(PDFRenderer *renderer, int pageNumber, QGraphicsItem* parent)
|
||
|
: GraphicsPDFItem(renderer, pageNumber, parent)
|
||
|
{
|
||
|
setData(UBGraphicsItemData::ItemLayerType, UBItemLayerType::Object);
|
||
|
mDelegate = new UBGraphicsItemDelegate(this,0);
|
||
|
mDelegate->init();
|
||
|
}
|
||
|
|
||
|
|
||
|
UBGraphicsPDFItem::~UBGraphicsPDFItem()
|
||
|
{
|
||
|
if (mDelegate)
|
||
|
delete mDelegate;
|
||
|
}
|
||
|
|
||
|
|
||
|
QVariant UBGraphicsPDFItem::itemChange(GraphicsItemChange change, const QVariant &value)
|
||
|
{
|
||
|
QVariant newValue = mDelegate->itemChange(change, value);
|
||
|
return GraphicsPDFItem::itemChange(change, newValue);
|
||
|
}
|
||
|
|
||
|
|
||
|
void UBGraphicsPDFItem::mousePressEvent(QGraphicsSceneMouseEvent *event)
|
||
|
{
|
||
|
if (mDelegate->mousePressEvent(event))
|
||
|
{
|
||
|
// NOOP
|
||
|
}
|
||
|
else
|
||
|
{
|
||
|
GraphicsPDFItem::mousePressEvent(event);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
|
||
|
void UBGraphicsPDFItem::mouseMoveEvent(QGraphicsSceneMouseEvent *event)
|
||
|
{
|
||
|
if (mDelegate->mouseMoveEvent(event))
|
||
|
{
|
||
|
// NOOP
|
||
|
}
|
||
|
else
|
||
|
{
|
||
|
GraphicsPDFItem::mouseMoveEvent(event);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
|
||
|
void UBGraphicsPDFItem::mouseReleaseEvent(QGraphicsSceneMouseEvent *event)
|
||
|
{
|
||
|
mDelegate->mouseReleaseEvent(event);
|
||
|
GraphicsPDFItem::mouseReleaseEvent(event);
|
||
|
}
|
||
|
|
||
|
|
||
|
UBItem* UBGraphicsPDFItem::deepCopy() const
|
||
|
{
|
||
|
UBGraphicsPDFItem *copy = new UBGraphicsPDFItem(mRenderer, mPageNumber, parentItem());
|
||
|
|
||
|
copy->setPos(this->pos());
|
||
|
copy->setZValue(this->zValue());
|
||
|
copy->setTransform(this->transform());
|
||
|
copy->setFlag(QGraphicsItem::ItemIsMovable, true);
|
||
|
copy->setFlag(QGraphicsItem::ItemIsSelectable, true);
|
||
|
copy->setData(UBGraphicsItemData::ItemLayerType, this->data(UBGraphicsItemData::ItemLayerType));
|
||
|
copy->setUuid(this->uuid()); // this is OK for now as long as PDF are imutable
|
||
|
copy->setSourceUrl(this->sourceUrl());
|
||
|
|
||
|
return copy;
|
||
|
}
|
||
|
|
||
|
|
||
|
void UBGraphicsPDFItem::setRenderingQuality(RenderingQuality pRenderingQuality)
|
||
|
{
|
||
|
UBItem::setRenderingQuality(pRenderingQuality);
|
||
|
|
||
|
if (pRenderingQuality == RenderingQualityHigh)
|
||
|
{
|
||
|
setCacheMode(QGraphicsItem::NoCache);
|
||
|
}
|
||
|
else
|
||
|
{
|
||
|
setCacheMode(QGraphicsItem::DeviceCoordinateCache);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
|
||
|
UBGraphicsScene* UBGraphicsPDFItem::scene()
|
||
|
{
|
||
|
return qobject_cast<UBGraphicsScene*>(QGraphicsItem::scene());
|
||
|
}
|
||
|
|
||
|
|
||
|
void UBGraphicsPDFItem::remove()
|
||
|
{
|
||
|
if (mDelegate)
|
||
|
mDelegate->remove(true);
|
||
|
}
|
||
|
|
||
|
|
||
|
UBGraphicsPixmapItem* UBGraphicsPDFItem::toPixmapItem() const
|
||
|
{
|
||
|
QPixmap pixmap(mRenderer->pageSizeF(mPageNumber).toSize());
|
||
|
QPainter painter(&pixmap);
|
||
|
mRenderer->render(&painter, mPageNumber);
|
||
|
|
||
|
UBGraphicsPixmapItem *pixmapItem = new UBGraphicsPixmapItem();
|
||
|
pixmapItem->setPixmap(pixmap);
|
||
|
|
||
|
pixmapItem->setPos(this->pos());
|
||
|
pixmapItem->setZValue(this->zValue());
|
||
|
pixmapItem->setTransform(this->transform());
|
||
|
pixmapItem->setFlag(QGraphicsItem::ItemIsMovable, true);
|
||
|
pixmapItem->setFlag(QGraphicsItem::ItemIsSelectable, true);
|
||
|
pixmapItem->setData(UBGraphicsItemData::ItemLayerType, this->data(UBGraphicsItemData::ItemLayerType));
|
||
|
|
||
|
return pixmapItem;
|
||
|
}
|