aboutsummaryrefslogtreecommitdiffstats
path: root/profile-widget/divepixmapitem.h
blob: 44c5dd88e29c4fa55b1c7658242427efa0ab3e4f (plain) (blame)
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
// SPDX-License-Identifier: GPL-2.0
#ifndef DIVEPIXMAPITEM_H
#define DIVEPIXMAPITEM_H

#include <QObject>
#include <QGraphicsPixmapItem>

class DivePixmapItem : public QObject, public QGraphicsPixmapItem {
	Q_OBJECT
	Q_PROPERTY(qreal opacity WRITE setOpacity READ opacity)
	Q_PROPERTY(QPointF pos WRITE setPos READ pos)
	Q_PROPERTY(qreal x WRITE setX READ x)
	Q_PROPERTY(qreal y WRITE setY READ y)
public:
	DivePixmapItem(QGraphicsItem *parent = 0);
};

class CloseButtonItem : public DivePixmapItem {
	Q_OBJECT
public:
	CloseButtonItem(QGraphicsItem *parent = 0);
signals:
	void clicked();
private:
	void mousePressEvent(QGraphicsSceneMouseEvent *event) override;
};

class DivePictureItem : public DivePixmapItem {
	Q_OBJECT
	Q_PROPERTY(qreal scale WRITE setScale READ scale)
public:
	DivePictureItem(QGraphicsItem *parent = 0);
	void setPixmap(const QPixmap& pix);
	void setBaseZValue(double z);
	void setFileUrl(const QString& s);
signals:
	void removePicture(const QString &fileUrl);
public slots:
	void settingsChanged();
private:
	void hoverEnterEvent(QGraphicsSceneHoverEvent *event);
	void hoverLeaveEvent(QGraphicsSceneHoverEvent *event);
	void mousePressEvent(QGraphicsSceneMouseEvent *event);
	QString fileUrl;
	QGraphicsRectItem *canvas;
	QGraphicsRectItem *shadow;
	CloseButtonItem *button;
	double baseZValue;
};

#endif // DIVEPIXMAPITEM_H