aboutsummaryrefslogtreecommitdiffstats
path: root/qt-ui/profile/profilewidget2.cpp
diff options
context:
space:
mode:
authorGravatar Tomaz Canabrava <tomaz.canabrava@intel.com>2014-05-25 15:12:00 -0300
committerGravatar Dirk Hohndel <dirk@hohndel.org>2014-05-26 13:18:00 -0700
commitc4d022356ea9f128b71633d64dbb5f81a83bf1db (patch)
tree3bfda215c997d1a641103a0b37178475e6a76a66 /qt-ui/profile/profilewidget2.cpp
parentfeff22c2228d56cd75594e1a20d9a2181f9f9a6b (diff)
downloadsubsurface-c4d022356ea9f128b71633d64dbb5f81a83bf1db.tar.gz
Planner: states Add and Plan have a similar behavior
So, the code is equal. Signed-off-by: Tomaz Canabrava <tomaz.canabrava@intel.com> Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'qt-ui/profile/profilewidget2.cpp')
-rw-r--r--qt-ui/profile/profilewidget2.cpp12
1 files changed, 10 insertions, 2 deletions
diff --git a/qt-ui/profile/profilewidget2.cpp b/qt-ui/profile/profilewidget2.cpp
index 71a2f4856..c3e010c83 100644
--- a/qt-ui/profile/profilewidget2.cpp
+++ b/qt-ui/profile/profilewidget2.cpp
@@ -770,9 +770,17 @@ void ProfileWidget2::setPlanState()
{
if (currentState == PLAN)
return;
+
setProfileState();
disconnectTemporaryConnections();
- /* show the same stuff that the profile shows. */
+ //TODO: Move this method to another place, shouldn't be on mainwindow.
+ MainWindow::instance()->disableDcShortcuts();
+ actionsForKeys[Qt::Key_Left]->setShortcut(Qt::Key_Left);
+ actionsForKeys[Qt::Key_Right]->setShortcut(Qt::Key_Right);
+ actionsForKeys[Qt::Key_Up]->setShortcut(Qt::Key_Up);
+ actionsForKeys[Qt::Key_Down]->setShortcut(Qt::Key_Down);
+ actionsForKeys[Qt::Key_Escape]->setShortcut(Qt::Key_Escape);
+ actionsForKeys[Qt::Key_Delete]->setShortcut(Qt::Key_Delete);
DivePlannerPointsModel *plannerModel = DivePlannerPointsModel::instance();
connect(plannerModel, SIGNAL(dataChanged(QModelIndex, QModelIndex)), this, SLOT(replot()));
@@ -781,7 +789,7 @@ void ProfileWidget2::setPlanState()
this, SLOT(pointInserted(const QModelIndex &, int, int)));
connect(plannerModel, SIGNAL(rowsRemoved(const QModelIndex &, int, int)),
this, SLOT(pointsRemoved(const QModelIndex &, int, int)));
-
+ /* show the same stuff that the profile shows. */
currentState = PLAN; /* enable the add state. */
setBackgroundBrush(QColor(Qt::green).light());
}