0
0
mirror of https://github.com/fralx/LimeReport.git synced 2024-12-25 00:54:39 +03:00
LimeReport/limereport/items/lrimageitem.cpp

429 lines
13 KiB
C++
Raw Normal View History

2016-02-17 10:11:00 +03:00
/***************************************************************************
* This file is part of the Lime Report project *
2021-08-18 20:21:36 +03:00
* Copyright (C) 2021 by Alexander Arin *
2016-02-17 10:11:00 +03:00
* arin_a@bk.ru *
* *
** GNU General Public License Usage **
* *
* This library 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. *
* You should have received a copy of the GNU General Public License *
* along with this program. If not, see <http://www.gnu.org/licenses/>. *
* *
** GNU Lesser General Public License **
* *
* This library is free software: you can redistribute it and/or modify *
* it under the terms of the GNU Lesser General Public License as *
* published by the Free Software Foundation, either version 3 of the *
* License, or (at your option) any later version. *
* You should have received a copy of the GNU Lesser General Public *
* License along with this library. *
* If not, see <http://www.gnu.org/licenses/>. *
* *
* This library 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. *
****************************************************************************/
#include "lrimageitem.h"
#include "lrdatasourcemanager.h"
2016-02-17 10:11:00 +03:00
#include "lrdesignelementsfactory.h"
#include "lrglobal.h"
2019-08-07 21:06:47 +03:00
#include "lrimageitemeditor.h"
#include "lrpagedesignintf.h"
2016-02-17 10:11:00 +03:00
namespace {
2016-02-17 10:11:00 +03:00
const QString xmlTag = "ImageItem";
LimeReport::BaseDesignIntf* createImageItem(QObject* owner, LimeReport::BaseDesignIntf* parent)
{
return new LimeReport::ImageItem(owner, parent);
2016-02-17 10:11:00 +03:00
}
2016-10-18 15:00:26 +03:00
bool VARIABLE_IS_NOT_USED registred = LimeReport::DesignElementsFactory::instance().registerCreator(
xmlTag, LimeReport::ItemAttribs(QObject::tr("Image Item"), "Item"), createImageItem);
} // namespace
namespace LimeReport {
ImageItem::ImageItem(QObject* owner, QGraphicsItem* parent):
ItemDesignIntf(xmlTag, owner, parent),
m_useExternalPainter(false),
m_externalPainter(0),
m_autoSize(false),
m_scale(true),
m_keepAspectRatio(true),
m_center(true),
m_format(Binary)
{
2016-02-17 10:11:00 +03:00
}
BaseDesignIntf* ImageItem::createSameTypeItem(QObject* owner, QGraphicsItem* parent)
2016-02-17 10:11:00 +03:00
{
ImageItem* result = new ImageItem(owner, parent);
result->setExternalPainter(m_externalPainter);
return result;
2016-02-17 10:11:00 +03:00
}
void ImageItem::loadPictureFromVariant(QVariant& data)
{
// TODO: Migrate to QMetaType
if (data.isValid()) {
2022-08-23 01:31:12 +03:00
#if QT_VERSION >= QT_VERSION_CHECK(6, 0, 0)
if (data.typeId() == QMetaType::QImage) {
2022-07-19 00:43:54 +03:00
#else
if (data.type() == QVariant::Image) {
2022-07-19 00:43:54 +03:00
#endif
m_picture = data.value<QImage>();
} else {
switch (m_format) {
default:
case Binary:
m_picture.loadFromData(data.toByteArray());
break;
case Hex:
m_picture.loadFromData(QByteArray::fromHex(data.toByteArray()));
break;
case Base64:
m_picture.loadFromData(QByteArray::fromBase64(data.toByteArray()));
break;
}
}
}
}
void ImageItem::preparePopUpMenu(QMenu& menu)
{
QAction* editAction = menu.addAction(QIcon(":/report/images/edit_pecil2.png"), tr("Edit"));
menu.insertAction(menu.actions().at(0), editAction);
2019-08-07 21:06:47 +03:00
menu.insertSeparator(menu.actions().at(1));
menu.addSeparator();
QAction* action = menu.addAction(tr("Watermark"));
action->setCheckable(true);
action->setChecked(isWatermark());
}
void ImageItem::processPopUpAction(QAction* action)
{
if (action->text().compare(tr("Watermark")) == 0) {
page()->setPropertyToSelectedItems("watermark", action->isChecked());
}
if (action->text().compare(tr("Edit")) == 0) {
2019-08-07 21:06:47 +03:00
this->showEditorDialog();
}
ItemDesignIntf::processPopUpAction(action);
}
QImage getFileByResourcePath(QString resourcePath)
{
2019-08-07 21:06:47 +03:00
QFileInfo resourceFile(resourcePath);
if (resourceFile.exists())
return QImage(resourcePath);
return QImage();
}
2022-10-20 14:25:53 +03:00
QImage ImageItem::drawImage() const
2019-08-07 21:06:47 +03:00
{
if (image().isNull())
return getFileByResourcePath(m_resourcePath);
return image();
}
bool ImageItem::useExternalPainter() const { return m_useExternalPainter; }
void ImageItem::setUseExternalPainter(bool value)
{
if (m_useExternalPainter != value) {
m_useExternalPainter = value;
notify("useExternalPainter", !value, value);
update();
}
}
QWidget* ImageItem::defaultEditor()
2019-08-07 21:06:47 +03:00
{
ImageItemEditor* editor = new ImageItemEditor(this);
editor->setAttribute(Qt::WA_DeleteOnClose);
return editor;
}
2020-03-19 20:09:35 +03:00
QByteArray ImageItem::imageAsByteArray() const
{
QByteArray result;
QBuffer buffer(&result);
buffer.open(QIODevice::WriteOnly);
m_picture.save(&buffer, "PNG");
2020-03-19 20:09:35 +03:00
return result;
}
void ImageItem::setImageAsByteArray(QByteArray image)
{
QImage value;
value.loadFromData(image);
2020-03-19 20:59:24 +03:00
setImage(value);
2020-03-19 20:09:35 +03:00
}
QString ImageItem::fileFilter() const
{
return tr("Images (*.gif *.icns *.ico *.jpeg *.tga *.tiff *.wbmp *.webp *.png *.jpg "
"*.bmp);;All(*.*)");
2020-03-19 20:09:35 +03:00
}
2016-02-17 10:28:27 +03:00
void ImageItem::updateItemSize(DataSourceManager* dataManager, RenderPass pass, int maxHeight)
2016-02-17 10:11:00 +03:00
{
if (m_picture.isNull()) {
if (!m_datasource.isEmpty() && !m_field.isEmpty()) {
IDataSource* ds = dataManager->dataSource(m_datasource);
if (ds) {
QVariant data = ds->data(m_field);
loadPictureFromVariant(data);
}
} else if (!m_resourcePath.isEmpty()) {
m_resourcePath
= expandUserVariables(m_resourcePath, pass, NoEscapeSymbols, dataManager);
m_resourcePath = expandDataFields(m_resourcePath, NoEscapeSymbols, dataManager);
m_picture = QImage(m_resourcePath);
} else if (!m_variable.isEmpty()) {
// TODO: Migrate to QMetaType
QVariant data = dataManager->variable(m_variable);
2022-08-23 01:31:12 +03:00
#if QT_VERSION >= QT_VERSION_CHECK(6, 0, 0)
if (data.typeId() == QMetaType::QString) {
2022-07-19 00:43:54 +03:00
#else
if (data.type() == QVariant::String) {
2022-07-19 00:43:54 +03:00
#endif
m_picture = QImage(data.toString());
} else {
2022-08-23 01:31:12 +03:00
#if QT_VERSION >= QT_VERSION_CHECK(6, 0, 0)
if (data.typeId() == QMetaType::QImage) {
2022-07-19 00:43:54 +03:00
#else
if (data.type() == QVariant::Image) {
2022-07-19 00:43:54 +03:00
#endif
loadPictureFromVariant(data);
}
}
}
}
if (m_autoSize) {
setWidth(m_picture.width());
setHeight(m_picture.height());
}
BaseDesignIntf::updateItemSize(dataManager, pass, maxHeight);
2016-02-17 10:11:00 +03:00
}
bool ImageItem::isNeedUpdateSize(RenderPass) const { return m_picture.isNull() || m_autoSize; }
2016-02-17 10:11:00 +03:00
QString ImageItem::resourcePath() const { return m_resourcePath; }
qreal ImageItem::minHeight() const
{
if (!m_picture.isNull() && autoSize()) {
2016-02-17 10:11:00 +03:00
return m_picture.height();
} else {
return 0;
}
}
void ImageItem::setVariable(const QString& content)
{
if (m_variable != content) {
QString oldValue = m_variable;
m_variable = content;
update();
notify("variable", oldValue, m_variable);
}
}
bool ImageItem::center() const { return m_center; }
2016-02-17 10:11:00 +03:00
void ImageItem::setCenter(bool center)
{
if (m_center != center) {
2016-02-17 10:11:00 +03:00
m_center = center;
update();
notify("center", !center, center);
2016-02-17 10:11:00 +03:00
}
}
bool ImageItem::keepAspectRatio() const { return m_keepAspectRatio; }
2016-02-17 10:11:00 +03:00
void ImageItem::setKeepAspectRatio(bool keepAspectRatio)
{
if (m_keepAspectRatio != keepAspectRatio) {
2016-02-17 10:11:00 +03:00
m_keepAspectRatio = keepAspectRatio;
update();
notify("keepAspectRatio", !keepAspectRatio, keepAspectRatio);
2016-02-17 10:11:00 +03:00
}
}
bool ImageItem::scale() const { return m_scale; }
2016-02-17 10:11:00 +03:00
void ImageItem::setScale(bool scale)
{
if (m_scale != scale) {
2016-02-17 10:11:00 +03:00
m_scale = scale;
update();
notify("scale", !scale, scale);
2016-02-17 10:11:00 +03:00
}
}
bool ImageItem::autoSize() const { return m_autoSize; }
2016-02-17 10:11:00 +03:00
void ImageItem::setAutoSize(bool autoSize)
{
if (m_autoSize != autoSize) {
2016-02-17 10:11:00 +03:00
m_autoSize = autoSize;
if (m_autoSize && !m_picture.isNull()) {
2019-08-07 21:06:47 +03:00
setWidth(drawImage().width());
setHeight(drawImage().height());
2016-09-16 02:02:32 +03:00
setPossibleResizeDirectionFlags(Fixed);
2016-02-17 10:11:00 +03:00
} else {
2016-09-16 02:02:32 +03:00
setPossibleResizeDirectionFlags(AllDirections);
2016-02-17 10:11:00 +03:00
}
update();
notify("autoSize", !autoSize, autoSize);
2016-02-17 10:11:00 +03:00
}
}
QString ImageItem::field() const { return m_field; }
2016-02-17 10:11:00 +03:00
void ImageItem::setField(const QString& field)
2016-02-17 10:11:00 +03:00
{
if (m_field != field) {
2016-02-17 10:11:00 +03:00
QString oldValue = m_field;
m_field = field;
update();
notify("field", oldValue, field);
2016-02-17 10:11:00 +03:00
}
}
QString ImageItem::datasource() const { return m_datasource; }
2016-02-17 10:11:00 +03:00
void ImageItem::setDatasource(const QString& datasource)
2016-02-17 10:11:00 +03:00
{
if (m_datasource != datasource) {
2016-02-17 10:11:00 +03:00
QString oldValue = m_datasource;
m_datasource = datasource;
update();
notify("datasource", oldValue, datasource);
2016-02-17 10:11:00 +03:00
}
}
void ImageItem::paint(QPainter* painter, const QStyleOptionGraphicsItem* option, QWidget* widget)
2016-02-17 10:11:00 +03:00
{
2020-03-18 13:34:11 +03:00
painter->save();
if (isSelected())
painter->setOpacity(Const::SELECTION_OPACITY);
else
painter->setOpacity(qreal(opacity()) / 100);
2016-02-17 10:11:00 +03:00
QPointF point = rect().topLeft();
QImage img;
if (m_scale && !drawImage().isNull()) {
img = drawImage().scaled(rect().width(), rect().height(),
keepAspectRatio() ? Qt::KeepAspectRatio : Qt::IgnoreAspectRatio,
Qt::SmoothTransformation);
2016-02-17 10:11:00 +03:00
} else {
2019-08-07 21:06:47 +03:00
img = drawImage();
2016-02-17 10:11:00 +03:00
}
qreal shiftHeight = rect().height() - img.height();
qreal shiftWidth = rect().width() - img.width();
if (m_center) {
if (shiftHeight < 0 || shiftWidth < 0) {
2016-02-17 10:11:00 +03:00
qreal cutX = 0;
qreal cutY = 0;
qreal cutWidth = img.width();
qreal cutHeigth = img.height();
if (shiftWidth > 0) {
point.setX(point.x() + shiftWidth / 2);
2016-02-17 10:11:00 +03:00
} else {
cutX = fabs(shiftWidth / 2);
2016-02-17 10:11:00 +03:00
cutWidth += shiftWidth;
}
if (shiftHeight > 0) {
point.setY(point.y() + shiftHeight / 2);
2016-02-17 10:11:00 +03:00
} else {
cutY = fabs(shiftHeight / 2);
2016-02-17 10:11:00 +03:00
cutHeigth += shiftHeight;
}
img = img.copy(cutX, cutY, cutWidth, cutHeigth);
2016-02-17 10:11:00 +03:00
} else {
point.setX(point.x() + shiftWidth / 2);
point.setY(point.y() + shiftHeight / 2);
2016-02-17 10:11:00 +03:00
}
}
if (img.isNull() && itemMode() == DesignMode) {
2016-02-17 10:11:00 +03:00
QString text;
painter->setFont(transformToSceneFont(QFont("Arial", 10)));
2020-03-18 13:34:11 +03:00
painter->setPen(Qt::black);
2016-02-17 10:11:00 +03:00
if (!datasource().isEmpty() && !field().isEmpty())
text = datasource() + "." + field();
else if (m_useExternalPainter)
text = tr("Ext.");
else
text = tr("Image");
painter->drawText(rect().adjusted(4, 4, -4, -4), Qt::AlignCenter, text);
2016-02-17 10:11:00 +03:00
} else {
if (m_externalPainter && m_useExternalPainter)
2020-03-18 13:34:11 +03:00
m_externalPainter->paintByExternalPainter(this->patternName(), painter, option);
else
painter->drawImage(point, img);
2016-02-17 10:11:00 +03:00
}
2020-03-18 13:34:11 +03:00
ItemDesignIntf::paint(painter, option, widget);
2020-03-18 13:34:11 +03:00
painter->restore();
2016-02-17 10:11:00 +03:00
}
void ImageItem::setImage(QImage value)
{
if (m_picture != value) {
2016-02-17 10:11:00 +03:00
QImage oldValue = m_picture;
2019-08-07 21:06:47 +03:00
m_picture = value;
if (m_autoSize) {
2016-02-17 10:11:00 +03:00
setWidth(m_picture.width());
setHeight(m_picture.height());
}
update();
notify("image", oldValue, value);
2016-02-17 10:11:00 +03:00
}
}
QImage ImageItem::image() const { return m_picture; }
void ImageItem::setResourcePath(const QString& value)
{
if (m_resourcePath != value) {
2019-08-07 21:06:47 +03:00
QString oldValue = m_resourcePath;
m_resourcePath = value;
update();
notify("resourcePath", oldValue, value);
}
}
ImageItem::Format ImageItem::format() const { return m_format; }
2016-02-17 10:11:00 +03:00
void ImageItem::setFormat(Format format)
{
if (m_format != format) {
Format oldValue = m_format;
m_format = format;
update();
notify("format", oldValue, format);
}
}
2016-02-17 10:11:00 +03:00
} // namespace LimeReport
2022-10-20 14:25:53 +03:00
bool LimeReport::ImageItem::isEmpty() const { return drawImage().isNull(); }