From 8e682c41e831c174e3a513ff6704d9ff3734f7a4 Mon Sep 17 00:00:00 2001 From: Tomaz Canabrava Date: Sun, 8 Jun 2014 13:11:00 -0300 Subject: Add a nice white rectangle around the picture This makes the picture looks a bit more like a real paper picture shadow's missing, though. Signed-off-by: Tomaz Canabrava Signed-off-by: Dirk Hohndel --- qt-ui/profile/divepixmapitem.cpp | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'qt-ui/profile') diff --git a/qt-ui/profile/divepixmapitem.cpp b/qt-ui/profile/divepixmapitem.cpp index b1942344e..215ce99c2 100644 --- a/qt-ui/profile/divepixmapitem.cpp +++ b/qt-ui/profile/divepixmapitem.cpp @@ -1,5 +1,9 @@ #include "divepixmapitem.h" #include "animationfunctions.h" + +#include +#include + DivePixmapItem::DivePixmapItem(QObject *parent) : QObject(parent), QGraphicsPixmapItem() { } @@ -13,6 +17,11 @@ DivePictureItem::DivePictureItem(QObject *parent): DivePixmapItem(parent) void DivePictureItem::setPixmap(const QPixmap &pix) { DivePixmapItem::setPixmap(pix); + QRectF r = boundingRect(); + QGraphicsRectItem *rect = new QGraphicsRectItem(0 - 10, 0 -10, r.width() + 20, r.height() + 20, this); + rect->setPen(Qt::NoPen); + rect->setBrush(QColor(Qt::white)); + rect->setFlag(ItemStacksBehindParent); setTransformOriginPoint(boundingRect().width()/2, boundingRect().height()/2); } -- cgit v1.2.3-70-g09d2