aboutsummaryrefslogtreecommitdiffstats
path: root/qt-ui/profilegraphics.h
blob: c1c3c2837a2b46c72699f43b3bd8e1d4367343ff (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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
#ifndef PROFILEGRAPHICS_H
#define PROFILEGRAPHICS_H

#include "../display.h"
#include <QGraphicsView>
#include <QGraphicsItem>
#include <QIcon>

struct text_render_options;
struct graphics_context;
struct plot_info;
typedef struct text_render_options text_render_options_t;

/**!
 *
 * Hookay, so, if you wanna extend the ToolTips that are displayed
 * in the Profile Graph, there's one 'toolTip' widget already on it,
 * you can just pass it to your Reimplementation of QGraphiscItem
 * and do the following:
 *
 * EventItem::setController(ToolTipItem *c)
 * {
 * 	controller = c;
 * }
 *
 * void EventItem::hoverEnterEvent(QGraphicsSceneHoverEvent* event)
 * {
 *	controller->addToolTip(text, icon);
 * }
 *
 * void EventItem::hoverLeaveEvent(QGraphicsSceneHoverEvent* event)
 * {
 *	controller->removeToolTip(text);
 * }
 *
 * Remember to removeToolTip when you don't want it to be displayed.
 *
 **/
class ToolTipItem :public QObject, public QGraphicsPathItem
{
	Q_OBJECT
	void updateTitlePosition();
	Q_PROPERTY(QRectF rect READ boundingRect WRITE setRect)

public:
	enum Status{COLLAPSED, EXPANDED};
	enum {ICON_SMALL = 16, ICON_MEDIUM = 24, ICON_BIG = 32, SPACING=4};

	explicit ToolTipItem(QGraphicsItem* parent = 0);

	void collapse();
	void expand();
	void clear();
	void addToolTip(const QString& toolTip, const QIcon& icon = QIcon());
	void removeToolTip(const QString& toolTip);

public Q_SLOTS:
	void setRect(const QRectF& rect);

private:
	typedef QPair<QGraphicsPixmapItem*, QGraphicsSimpleTextItem*> ToolTip;
	QMap<QString, ToolTip > toolTips;
	QGraphicsPathItem *background;
	QGraphicsLineItem *separator;
	QGraphicsSimpleTextItem *title;

	QRectF rectangle;
};

class EventItem : public QGraphicsPolygonItem
{
public:
	explicit EventItem(QGraphicsItem* parent = 0);

private:
	ToolTipItem *controller;
	QString text;
	QIcon icon;
};

class ProfileGraphicsView : public QGraphicsView
{
Q_OBJECT
public:
	ProfileGraphicsView(QWidget* parent = 0);
	void plot(struct dive *d);
	bool eventFilter(QObject* obj, QEvent* event);

protected:
	void resizeEvent(QResizeEvent *event);
    void mouseMoveEvent(QMouseEvent* event);

private:
	void plot_depth_profile();
	void plot_text(text_render_options_t *tro, double x, double y, const QString &text);
	void plot_events(struct divecomputer *dc);
	void plot_one_event(struct event *event);
	void plot_temperature_profile();
	void plot_cylinder_pressure(struct dive *dive, struct divecomputer *dc);
	void plot_temperature_text();
	void plot_single_temp_text(int sec, int mkelvin);
	void plot_depth_text();
	void plot_text_samples();
	void plot_depth_sample(struct plot_data *entry, text_render_options_t *tro);

	QColor get_sac_color(int sac, int avg_sac);

	QPen defaultPen;
	QBrush defaultBrush;
	ToolTipItem *toolTip;
	graphics_context gc;
};

#endif