From ecc33e6375461087975543f8f6281928d7c9a4b3 Mon Sep 17 00:00:00 2001 From: Tim Wootton Date: Wed, 18 Dec 2013 21:55:53 +0000 Subject: Adds unhide to profile menu context menu Unhide menu is only shown when hidden events exist. Also updates relavent manual section. Signed-off-by: Tim Wootton Signed-off-by: Dirk Hohndel --- qt-ui/profilegraphics.cpp | 20 ++++++++++++++++++++ qt-ui/profilegraphics.h | 1 + 2 files changed, 21 insertions(+) (limited to 'qt-ui') diff --git a/qt-ui/profilegraphics.cpp b/qt-ui/profilegraphics.cpp index 19fe81d91..2db6d9009 100644 --- a/qt-ui/profilegraphics.cpp +++ b/qt-ui/profilegraphics.cpp @@ -161,6 +161,17 @@ void ProfileGraphicsView::contextMenuEvent(QContextMenuEvent* event) m.addAction(action); break; } + bool some_hidden = false; + for (int i = 0; i < evn_used; i++) { + if (ev_namelist[i].plot_ev == false) { + some_hidden = true; + break; + } + } + if (some_hidden) { + action = m.addAction(tr("Unhde all events"), this, SLOT(unhideEvents())); + action->setData(event->globalPos()); + } m.exec(event->globalPos()); } @@ -213,6 +224,15 @@ void ProfileGraphicsView::hideEvents() } } +void ProfileGraphicsView::unhideEvents() +{ + QAction *action = qobject_cast(sender()); + for (int i = 0; i < evn_used; i++) { + ev_namelist[i].plot_ev = true; + } + plot(current_dive, TRUE); +} + void ProfileGraphicsView::removeEvent() { QAction *action = qobject_cast(sender()); diff --git a/qt-ui/profilegraphics.h b/qt-ui/profilegraphics.h index 29315a749..c9d1ef2e6 100644 --- a/qt-ui/profilegraphics.h +++ b/qt-ui/profilegraphics.h @@ -150,6 +150,7 @@ public slots: void on_scaleAction(); void changeGas(); void hideEvents(); + void unhideEvents(); void removeEvent(); void addBookmark(); private: -- cgit v1.2.3-70-g09d2