summaryrefslogtreecommitdiffstats
path: root/qt-ui/diveplanner.h
blob: 4a28f2ec1dc6b144efa950162d789ceb737a3a35 (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
#ifndef DIVEPLANNER_H
#define DIVEPLANNER_H

#include <QGraphicsView>
#include <QGraphicsPathItem>
#include <QDialog>

class DiveHandler : public QGraphicsEllipseItem{
public:
    DiveHandler();
	QGraphicsLineItem *from;
	QGraphicsLineItem *to;
	qreal time;
	qreal depth;
};

class Ruler : public QGraphicsLineItem{
public:
    Ruler();
	void setMinimum(double minimum);
	void setMaximum(double maximum);
	void setTickInterval(double interval);
	void setOrientation(Qt::Orientation orientation);
	void updateTicks();
	qreal valueAt(const QPointF& p);
	qreal posAtValue(qreal value);

private:
	Qt::Orientation orientation;
	QList<QGraphicsLineItem*> ticks;
	double min;
	double max;
	double interval;
	double posBegin;
	double posEnd;
};

class DivePlannerGraphics : public QGraphicsView {
	Q_OBJECT
public:
	DivePlannerGraphics(QWidget* parent = 0);
protected:
    virtual void mouseDoubleClickEvent(QMouseEvent* event);
    virtual void showEvent(QShowEvent* event);
    virtual void resizeEvent(QResizeEvent* event);
    virtual void mouseMoveEvent(QMouseEvent* event);
    virtual void mousePressEvent(QMouseEvent* event);
    virtual void mouseReleaseEvent(QMouseEvent* event);

    void clear_generated_deco();
	void create_deco_stop();
	bool isPointOutOfBoundaries(QPointF point);

private:

    void moveActiveHandler(QPointF pos);
	QList<QGraphicsLineItem*> lines;
	QList<DiveHandler *> handles;
	QGraphicsLineItem *verticalLine;
	QGraphicsLineItem *horizontalLine;
	DiveHandler *activeDraggedHandler;

	Ruler *timeLine;
	QGraphicsSimpleTextItem *timeString;

	Ruler *depthLine;
	QGraphicsSimpleTextItem *depthString;

};

namespace Ui{
	class DivePlanner;
}

class DivePlanner : public QDialog{
	Q_OBJECT
public:
	static DivePlanner *instance();
	struct dive* getDive();

private:
	DivePlanner();
	Ui::DivePlanner *ui;
};
#endif