/* 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_line.h" #include namespace Editor { ItemLine::ItemLine(const QPixmap &&pixmap) : _pixmap(std::move(pixmap)) , _rect(QPointF(), _pixmap.size() / cRetinaFactor()) { } QRectF ItemLine::boundingRect() const { return _rect; } void ItemLine::paint( QPainter *p, const QStyleOptionGraphicsItem *, QWidget *) { p->drawPixmap(0, 0, _pixmap); } bool ItemLine::collidesWithItem( const QGraphicsItem *, Qt::ItemSelectionMode) const { return false; } bool ItemLine::collidesWithPath( const QPainterPath &, Qt::ItemSelectionMode) const { return false; } } // namespace Editor