2013-05-04 19:12:43 +00:00
|
|
|
#ifndef PROFILEGRAPHICS_H
|
|
|
|
#define PROFILEGRAPHICS_H
|
|
|
|
|
|
|
|
#include <QGraphicsView>
|
2013-05-07 18:44:54 +00:00
|
|
|
#include <QGraphicsItem>
|
|
|
|
#include <QIcon>
|
2013-05-04 19:12:43 +00:00
|
|
|
|
2013-05-06 18:35:17 +00:00
|
|
|
struct text_render_options;
|
|
|
|
struct graphics_context;
|
|
|
|
struct plot_info;
|
|
|
|
typedef struct text_render_options text_render_options_t;
|
|
|
|
|
2013-05-07 18:44:54 +00:00
|
|
|
|
|
|
|
class ToolTipItem;
|
|
|
|
class ToolTipStatusHandler;
|
|
|
|
|
|
|
|
class ToolTipStatusHandler :public QObject, public QGraphicsEllipseItem {
|
|
|
|
public:
|
|
|
|
explicit ToolTipStatusHandler(QObject* parent = 0);
|
|
|
|
protected:
|
|
|
|
void mousePressEvent(QGraphicsSceneMouseEvent* event);
|
|
|
|
};
|
|
|
|
|
|
|
|
class ToolTipItem :public QObject, public QGraphicsPathItem {
|
|
|
|
Q_OBJECT
|
|
|
|
Q_PROPERTY(QRectF rect READ boundingRect WRITE setRect)
|
|
|
|
|
|
|
|
public:
|
|
|
|
enum Status {COLLAPSED, EXPANDED};
|
|
|
|
enum {ICON_SMALL = 16, ICON_MEDIUM = 24, ICON_BIG = 32};
|
|
|
|
|
|
|
|
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;
|
|
|
|
enum Status status;
|
|
|
|
QMap<QString, ToolTip > toolTips;
|
|
|
|
QGraphicsRectItem *background;
|
|
|
|
QRectF rectangle;
|
|
|
|
};
|
|
|
|
|
2013-05-04 19:12:43 +00:00
|
|
|
class ProfileGraphicsView : public QGraphicsView {
|
|
|
|
Q_OBJECT
|
|
|
|
public:
|
|
|
|
ProfileGraphicsView(QWidget* parent = 0);
|
|
|
|
void plot(struct dive *d);
|
2013-05-07 18:44:54 +00:00
|
|
|
void addToolTip(const QString& text, const QIcon& icon = QIcon());
|
|
|
|
void removeToolTip(const QString& text);
|
2013-05-04 19:12:43 +00:00
|
|
|
|
|
|
|
protected:
|
|
|
|
void resizeEvent(QResizeEvent *event);
|
|
|
|
|
2013-05-04 22:20:49 +00:00
|
|
|
private:
|
|
|
|
void plot_depth_profile(struct graphics_context *gc, struct plot_info *pi);
|
2013-05-06 18:35:17 +00:00
|
|
|
void plot_text(struct graphics_context *gc, text_render_options_t *tro, double x, double y, const QString &text);
|
2013-05-06 21:58:18 +00:00
|
|
|
void plot_events(struct graphics_context *gc, struct plot_info *pi, struct divecomputer *dc);
|
|
|
|
void plot_one_event(struct graphics_context *gc, struct plot_info *pi, struct event *event);
|
2013-05-04 23:18:16 +00:00
|
|
|
|
|
|
|
QPen defaultPen;
|
|
|
|
QBrush defaultBrush;
|
2013-05-07 18:44:54 +00:00
|
|
|
ToolTipItem *toolTip;
|
2013-05-04 19:12:43 +00:00
|
|
|
};
|
|
|
|
|
2013-05-07 18:44:54 +00:00
|
|
|
|
2013-05-04 19:12:43 +00:00
|
|
|
#endif
|