aboutsummaryrefslogtreecommitdiffstats
path: root/stats/informationbox.cpp
blob: 29731acc60552274b758c6a17b3d921950ed550b (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
#include "informationbox.h"
#include "statscolors.h"
#include "statsview.h"
#include "zvalues.h"

#include <QFontMetrics>

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(StatsView &v) :
	ChartRectItem(v, ChartZValue::InformationBox,
		      QPen(informationBorderColor, informationBorder),
		      QBrush(informationColor), informationBorderRadius)
{
}

void InformationBox::setText(const std::vector<QString> &text, QPointF pos)
{
	QFontMetrics fm(font);
	double fontHeight = fm.height();

	std::vector<double> widths;
	widths.reserve(text.size());
	width = 0.0;
	for (const QString &s: text) {
		widths.push_back(static_cast<double>(fm.size(Qt::TextSingleLine, s).width()));
		width = std::max(width, widths.back());
	}

	width += 4.0 * informationBorder;
	height = widths.size() * fontHeight + 4.0 * informationBorder;

	ChartRectItem::resize(QSizeF(width, height));

	painter->setPen(QPen(darkLabelColor)); // QPainter uses QPen to set text color!
	double y = 2.0 * informationBorder;
	for (size_t i = 0; i < widths.size(); ++i) {
		QRectF rect(2.0 * informationBorder, y, widths[i], fontHeight);
		painter->drawText(rect, text[i]);
		y += fontHeight;
	}
}

void InformationBox::setPos(QPointF pos)
{
	QSizeF size = sceneSize();

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

	ChartRectItem::setPos(QPointF(x, y));
}

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