Re-enable the dive site edit

Since now we found the perfect way to deal with dive site handling on the
dive, we can reenable this widget.

Signed-off-by: Tomaz Canabrava <tomaz.canabrava@gmail.com>
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
Tomaz Canabrava 2015-07-25 12:30:20 -03:00 committed by Dirk Hohndel
parent 156ad42a3c
commit 1aaa37e511
3 changed files with 19 additions and 1 deletions

View file

@ -39,6 +39,8 @@
#include "usersurvey.h"
#include "divesitehelpers.h"
#include "windowtitleupdate.h"
#include "locationinformation.h"
#ifndef NO_USERMANUAL
#include "usermanual.h"
#endif
@ -107,11 +109,16 @@ MainWindow::MainWindow() : QMainWindow(),
profLayout->addWidget(toolBar);
profLayout->addWidget(profileWidget);
profileContainer->setLayout(profLayout);
LocationInformationWidget * diveSiteEdit = new LocationInformationWidget();
QWidget *diveSitePictures = new QWidget(); // Placeholder
registerApplicationState("Default", mainTab, profileContainer, diveListView, globeGps );
registerApplicationState("AddDive", mainTab, profileContainer, diveListView, globeGps );
registerApplicationState("EditDive", mainTab, profileContainer, diveListView, globeGps );
registerApplicationState("PlanDive", plannerWidget, profileContainer, plannerSettings, plannerDetails );
registerApplicationState("EditPlannedDive", plannerWidget, profileContainer, diveListView, globeGps );
registerApplicationState("EditDiveSite", diveSiteEdit, diveSitePictures, diveListView, globeGps);
setApplicationState("Default");
@ -197,6 +204,10 @@ MainWindow::~MainWindow()
m_Instance = NULL;
}
void MainWindow::on_actionDiveSiteEdit_triggered() {
setApplicationState("EditDiveSite");
}
void MainWindow::enableDisableCloudActions()
{
#ifdef USE_LIBGIT23_API