Some checks failed
Docker. / Ubuntu (push) Has been cancelled
User-agent updater. / User-agent (push) Failing after 15s
Lock Threads / lock (push) Failing after 10s
Waiting for answer. / waiting-for-answer (push) Failing after 22s
Close stale issues and PRs / stale (push) Successful in 13s
Needs user action. / needs-user-action (push) Failing after 8s
Can't reproduce. / cant-reproduce (push) Failing after 8s
47 lines
1.3 KiB
C++
47 lines
1.3 KiB
C++
/*
|
|
This file is part of Telegram Desktop,
|
|
the official desktop application for the Telegram messaging service.
|
|
|
|
For license and copyright information please follow this link:
|
|
https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL
|
|
*/
|
|
#include "editor/scene/scene_item_image.h"
|
|
|
|
namespace Editor {
|
|
|
|
ItemImage::ItemImage(
|
|
QPixmap &&pixmap,
|
|
ItemBase::Data data)
|
|
: ItemBase(std::move(data))
|
|
, _pixmap(std::move(pixmap)) {
|
|
setAspectRatio(_pixmap.isNull()
|
|
? 1.0
|
|
: (_pixmap.height() / float64(_pixmap.width())));
|
|
}
|
|
|
|
void ItemImage::paint(
|
|
QPainter *p,
|
|
const QStyleOptionGraphicsItem *option,
|
|
QWidget *w) {
|
|
const auto rect = contentRect();
|
|
const auto pixmapSize = QSizeF(_pixmap.size() / style::DevicePixelRatio())
|
|
.scaled(rect.size(), Qt::KeepAspectRatio);
|
|
const auto resultRect = QRectF(rect.topLeft(), pixmapSize).translated(
|
|
(rect.width() - pixmapSize.width()) / 2.,
|
|
(rect.height() - pixmapSize.height()) / 2.);
|
|
p->drawPixmap(resultRect.toRect(), _pixmap);
|
|
ItemBase::paint(p, option, w);
|
|
}
|
|
|
|
void ItemImage::performFlip() {
|
|
_pixmap = _pixmap.transformed(QTransform().scale(-1, 1));
|
|
update();
|
|
}
|
|
|
|
std::shared_ptr<ItemBase> ItemImage::duplicate(ItemBase::Data data) const {
|
|
auto pixmap = _pixmap;
|
|
return std::make_shared<ItemImage>(std::move(pixmap), std::move(data));
|
|
}
|
|
|
|
} // namespace Editor
|