summaryrefslogtreecommitdiffstats
path: root/shared/pixmapwidget.cpp
blob: 65192d29a07bafbbf72729cf452374bd0e48ac92 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
/****************************************************************************
**
** Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies).
** All rights reserved.
** Contact: qt-info@nokia.com
**
** This software, including documentation, is protected by copyright
** controlled by Nokia Corporation.  You may use this software in
** accordance with the terms and conditions contained in the Qt Phone
** Demo License Agreement.
**
****************************************************************************/

#include <QPixmap>
#include <QPainter>
#include <QGraphicsSceneMouseEvent>
#include <QStyleOptionGraphicsItem>

#include "pixmapwidget.h"
#include "utils.h"


class PixmapWidgetPrivate
{
public:
    PixmapWidgetPrivate();

    int topBorder;
    int leftBorder;
    int rightBorder;
    int bottomBorder;

    QPixmap pixmap;
};

PixmapWidgetPrivate::PixmapWidgetPrivate()
    : topBorder(0), leftBorder(0), rightBorder(0), bottomBorder(0)
{

}


PixmapWidget::PixmapWidget(const QPixmap &pixmap, QGraphicsItem *parent)
    : QGraphicsWidget(parent),
      d(new PixmapWidgetPrivate)
{
    setPixmap(pixmap);
    setSizePolicy(QSizePolicy::Fixed, QSizePolicy::Fixed);
}

PixmapWidget::~PixmapWidget()
{
    delete d;
}

QPixmap PixmapWidget::pixmap() const
{
    return d->pixmap;
}

void PixmapWidget::setPixmap(const QPixmap &pixmap)
{
    d->pixmap = pixmap;

    if (pixmap.isNull())
        setPreferredSize(QSize());
    else
        setPreferredSize(pixmap.size());

    update();
    updateGeometry();
}

void PixmapWidget::getBorders(int *left, int *top, int *right, int *bottom) const
{
    if (left)
        *left = d->leftBorder;
    if (top)
        *top = d->topBorder;
    if (right)
        *right = d->rightBorder;
    if (bottom)
        *bottom = d->bottomBorder;
}

void PixmapWidget::setBorders(int left, int top, int right, int bottom)
{
    d->leftBorder = left;
    d->topBorder = top;
    d->rightBorder = right;
    d->bottomBorder = bottom;
    update();
}

void PixmapWidget::paint(QPainter *painter, const QStyleOptionGraphicsItem *option,
                         QWidget *widget)
{
    Q_UNUSED(option);
    Q_UNUSED(widget);

    bDrawPixmap(painter, d->pixmap, boundingRect(), d->leftBorder,
                d->topBorder, d->rightBorder, d->bottomBorder);
}