summaryrefslogtreecommitdiffstats
path: root/desktop-widgets/divepicturewidget.cpp
blob: 53158e12bccc85c4aff357ea1e403aa697307e33 (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
52
53
54
55
56
57
58
59
60
61
62
63
// SPDX-License-Identifier: GPL-2.0
#include "desktop-widgets/divepicturewidget.h"
#include "core/metrics.h"
#include "core/qthelper.h"
#include <QDrag>
#include <QMimeData>
#include <QMouseEvent>
#include <QPixmap>

DivePictureWidget::DivePictureWidget(QWidget *parent) : QListView(parent)
{
}

void DivePictureWidget::mouseDoubleClickEvent(QMouseEvent *event)
{
	if (event->button() == Qt::LeftButton) {
		QString filePath = model()->data(indexAt(event->pos()), Qt::DisplayPropertyRole).toString();
		emit photoDoubleClicked(localFilePath(filePath));
	}
}

void DivePictureWidget::mousePressEvent(QMouseEvent *event)
{
	if (event->button() == Qt::LeftButton && event->modifiers() == Qt::NoModifier) {
		QModelIndex index = indexAt(event->pos());
		QString filename = model()->data(index, Qt::DisplayPropertyRole).toString();

		if (!filename.isEmpty()) {
			int dim = lrint(defaultIconMetrics().sz_pic * 0.2);
			
			QPixmap pixmap = model()->data(indexAt(event->pos()), Qt::DecorationRole).value<QPixmap>();
			pixmap = pixmap.scaled(dim, dim, Qt::KeepAspectRatio);
			
			QByteArray itemData;
			QDataStream dataStream(&itemData, QIODevice::WriteOnly);
			dataStream << filename;

			QMimeData *mimeData = new QMimeData;
			mimeData->setData("application/x-subsurfaceimagedrop", itemData);

			QDrag *drag = new QDrag(this);
			drag->setMimeData(mimeData);
			drag->setPixmap(pixmap);

			drag->exec(Qt::CopyAction | Qt::MoveAction, Qt::CopyAction);
		}
	}
	QListView::mousePressEvent(event);
}

void DivePictureWidget::wheelEvent(QWheelEvent *event)
{
	if (event->modifiers() == Qt::ControlModifier) {
		// Angle delta is given in eighth parts of a degree. A classical mouse
		// wheel click is 15 degrees. Each click should correspond to one zoom step.
		// Therefore, divide by 15*8=120. To also support touch pads and finer-grained
		// mouse wheels, take care to always round away from zero.
		int delta = event->angleDelta().y();
		int carry = delta > 0 ? 119 : -119;
		emit zoomLevelChanged((delta + carry) / 120);
	} else
		QListView::wheelEvent(event);
}