mirror of
https://github.com/subsurface/subsurface.git
synced 2024-11-28 13:10:19 +00:00
76e1436f68
Signed-off-by: Tomaz Canabrava <tcanabrava@kde.org>
107 lines
2.7 KiB
C++
107 lines
2.7 KiB
C++
#ifndef PROFILEGRAPHICS_H
|
|
#define PROFILEGRAPHICS_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);
|
|
void addToolTip(const QString& text,const QIcon& icon = QIcon());
|
|
void setToolTipController(ToolTipItem *controller);
|
|
|
|
protected:
|
|
void hoverEnterEvent(QGraphicsSceneHoverEvent* event);
|
|
void hoverLeaveEvent(QGraphicsSceneHoverEvent* event);
|
|
|
|
private:
|
|
ToolTipItem *controller;
|
|
QString text;
|
|
QIcon icon;
|
|
};
|
|
|
|
class ProfileGraphicsView : public QGraphicsView
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
ProfileGraphicsView(QWidget* parent = 0);
|
|
void plot(struct dive *d);
|
|
|
|
protected:
|
|
void resizeEvent(QResizeEvent *event);
|
|
|
|
private:
|
|
void plot_depth_profile(struct graphics_context *gc, struct plot_info *pi);
|
|
void plot_text(struct graphics_context *gc, text_render_options_t *tro, double x, double y, const QString &text);
|
|
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);
|
|
|
|
QPen defaultPen;
|
|
QBrush defaultBrush;
|
|
ToolTipItem *toolTip;
|
|
};
|
|
|
|
#endif
|