summaryrefslogtreecommitdiffstats
path: root/stats/informationbox.cpp
blob: 189fd1ab1a8d3e0e8ec4c64e7241433333a9054a (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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
#include "informationbox.h"
#include "statscolors.h"
#include "zvalues.h"

#include <QFontMetrics>
#include <QGraphicsScene>

static const QColor informationBorderColor(Qt::black);
static const QColor informationColor(0xff, 0xff, 0x00, 192); // Note: fourth argument is opacity
static const int informationBorder = 2;
static const double informationBorderRadius = 4.0; // Radius of rounded corners
static const int distanceFromPointer = 10; // Distance to place box from mouse pointer or scatter item

InformationBox::InformationBox() : RoundRectItem(informationBorderRadius, nullptr)
{
	setPen(QPen(informationBorderColor, informationBorder));
	setBrush(informationColor);
	setZValue(ZValues::informationBox);
}

void InformationBox::setText(const std::vector<QString> &text, QPointF pos)
{
	width = height = 0.0;
	textItems.clear();

	for (const QString &s: text) {
		if (!s.isEmpty())
			addLine(s);
	}

	width += 4.0 * informationBorder;
	height += 4.0 * informationBorder;

	// Setting the position will also set the proper size
	setPos(pos);
}

void InformationBox::setPos(QPointF pos)
{
	QRectF plotArea = scene()->sceneRect();

	double x = pos.x() + distanceFromPointer;
	if (x + width >= plotArea.right()) {
		if (pos.x() - width >= plotArea.x())
			x = pos.x() - width;
		else
			x = pos.x() - width / 2.0;
	}
	double y = pos.y() + distanceFromPointer;
	if (y + height >= plotArea.bottom()) {
		if (pos.y() - height >= plotArea.y())
			y = pos.y() - height;
		else
			y = pos.y() - height / 2.0;
	}

	setRect(x, y, width, height);
	double actY = y + 2.0 * informationBorder;
	for (auto &item: textItems) {
		item->setPos(QPointF(x + 2.0 * informationBorder, actY));
		actY += item->boundingRect().height();
	}
}

void InformationBox::addLine(const QString &s)
{
	textItems.emplace_back(new QGraphicsSimpleTextItem(s, this));
	QGraphicsSimpleTextItem &item = *textItems.back();
	item.setBrush(QBrush(darkLabelColor));
	item.setPos(QPointF(0.0, height));
	item.setFont(font);
	item.setZValue(ZValues::informationBox);
	QRectF rect = item.boundingRect();
	width = std::max(width, rect.width());
	height += rect.height();
}

// Try to stay within three-thirds of the chart height
int InformationBox::recommendedMaxLines() const
{
	QFontMetrics fm(font);
	int maxHeight = static_cast<int>(scene()->sceneRect().height());
	return maxHeight * 2 / fm.height() / 3;
}