mirror of
https://github.com/subsurface/subsurface.git
synced 2025-02-19 22:16:15 +00:00
Code Cleanup: Buttons on Graphical Planner
Removed a bunch of non-used graphics buttons, since the new widget now contains everything needed for the creation / cancelation of the dive plan. Signed-off-by: Tomaz Canabrava <tcanabrava@kde.org>
This commit is contained in:
parent
0a043528f7
commit
6cb1f1a250
2 changed files with 4 additions and 17 deletions
|
@ -114,13 +114,7 @@ DivePlannerGraphics::DivePlannerGraphics(QWidget* parent): QGraphicsView(parent)
|
|||
ADDBTN(plusTime, ":plus", "" , 95, 5, tr("Increase minimum time by 10m"), increaseTime());
|
||||
ADDBTN(lessDepth, ":minimum","" , 2, 5, tr("Decreases maximum depth by 10m"), decreaseDepth());
|
||||
ADDBTN(lessTime, ":minimum","" , 92, 95, tr("Decreases minimum time by 10m"), decreaseTime());
|
||||
ADDBTN(okBtn, "", tr("Ok"), 1, 95, "", okClicked());
|
||||
ADDBTN(cancelBtn, "", tr("Cancel"), 0,0, "", cancelClicked());
|
||||
#undef ADDBTN
|
||||
|
||||
cancelBtn->setPos(okBtn->pos().x() + okBtn->boundingRect().width()
|
||||
+ fromPercent(2, Qt::Horizontal), fromPercent(95, Qt::Vertical));
|
||||
|
||||
minMinutes = TIME_INITIAL_MAX;
|
||||
|
||||
QAction *action = NULL;
|
||||
|
@ -265,7 +259,7 @@ void DivePlannerGraphics::keyEscAction()
|
|||
return;
|
||||
}
|
||||
|
||||
cancelClicked();
|
||||
cancelPlan();
|
||||
}
|
||||
|
||||
qreal DivePlannerGraphics::fromPercent(qreal percent, Qt::Orientation orientation)
|
||||
|
@ -275,7 +269,7 @@ qreal DivePlannerGraphics::fromPercent(qreal percent, Qt::Orientation orientatio
|
|||
return result;
|
||||
}
|
||||
|
||||
void DivePlannerGraphics::cancelClicked()
|
||||
void DivePlannerGraphics::cancelPlan()
|
||||
{
|
||||
if (handles.size()){
|
||||
if (QMessageBox::warning(mainWindow(), tr("Save the Plan?"),
|
||||
|
@ -287,11 +281,6 @@ void DivePlannerGraphics::cancelClicked()
|
|||
mainWindow()->showProfile();
|
||||
}
|
||||
|
||||
void DivePlannerGraphics::okClicked()
|
||||
{
|
||||
// todo.
|
||||
}
|
||||
|
||||
void DivePlannerGraphics::increaseDepth()
|
||||
{
|
||||
if (depthLine->maximum() + 10 > MAX_DEEPNESS)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue