summaryrefslogtreecommitdiffstats
path: root/qt-ui/profile/profilewidget2.cpp
diff options
context:
space:
mode:
authorGravatar Yosef Hamza <jo.adam.93@gmail.com>2014-04-03 21:16:15 +0200
committerGravatar Dirk Hohndel <dirk@hohndel.org>2014-04-03 12:49:22 -0700
commit0f5664e584fc402be13754d9ee4ee33e1eca3e25 (patch)
tree3fcbf7460e56a56b5f512ad3cf158a473029ac6e /qt-ui/profile/profilewidget2.cpp
parentc268b757dfc0aa9aa4d1b7fcd500660709e4d284 (diff)
downloadsubsurface-0f5664e584fc402be13754d9ee4ee33e1eca3e25.tar.gz
Edit name option for bookmarks
Add the option to edit the name of a bookmark to be more meaningful for the user they prefer. It works just as simple bookmarks and can be removed and hidden. It won't accept names longer than 22 characters because longer names will display as garbage text. Also changed the code from displaying flag depending on event name to depending on event type. Signed-off-by: Yousef Hamza <jo.adama.93@gmail.com> Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'qt-ui/profile/profilewidget2.cpp')
-rw-r--r--qt-ui/profile/profilewidget2.cpp32
1 files changed, 32 insertions, 0 deletions
diff --git a/qt-ui/profile/profilewidget2.cpp b/qt-ui/profile/profilewidget2.cpp
index a58244689..922836d65 100644
--- a/qt-ui/profile/profilewidget2.cpp
+++ b/qt-ui/profile/profilewidget2.cpp
@@ -23,6 +23,7 @@
#include <QScrollBar>
#include <QtCore/qmath.h>
#include <QMessageBox>
+#include <QInputDialog>
#ifndef QT_NO_DEBUG
#include <QTableView>
@@ -709,6 +710,13 @@ void ProfileWidget2::contextMenuEvent(QContextMenuEvent *event)
action->setData(QVariant::fromValue<void *>(item));
connect(action, SIGNAL(triggered(bool)), this, SLOT(hideEvents()));
m.addAction(action);
+ if(item->getEvent()->type == SAMPLE_EVENT_BOOKMARK){
+ action = new QAction(&m);
+ action->setText(tr("Edit name"));
+ action->setData(QVariant::fromValue<void *>(item));
+ connect(action, SIGNAL(triggered(bool)), this, SLOT(editName()));
+ m.addAction(action);
+ }
}
bool some_hidden = false;
for (int i = 0; i < evn_used; i++) {
@@ -810,3 +818,27 @@ void ProfileWidget2::setPrintMode(bool mode, bool grayscale)
printMode = mode;
isGrayscale = mode ? grayscale : false;
}
+
+void ProfileWidget2::editName()
+{
+ QAction *action = qobject_cast<QAction *>(sender());
+ DiveEventItem *item = static_cast<DiveEventItem *>(action->data().value<void *>());
+ struct event *event = item->getEvent();
+ bool ok;
+ QString newName = QInputDialog::getText(MainWindow::instance(), tr("Edit name of bookmark"),
+ tr("Custom name:"), QLineEdit::Normal,
+ event->name, &ok);
+ if(ok && !newName.isEmpty()){
+ if(newName.length() > 22){//longer names will display as garbage.
+ QMessageBox lengthWarning;
+ lengthWarning.setText("Name is too long!");
+ lengthWarning.exec();
+ return;
+ }
+ const char* temp;
+ temp = newName.toStdString().c_str();
+ strcpy(event->name, temp);
+ remember_event(temp);
+ }
+ replot();
+}