mirror of
https://github.com/subsurface/subsurface.git
synced 2024-11-30 22:20:21 +00:00
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:
parent
156ad42a3c
commit
1aaa37e511
3 changed files with 19 additions and 1 deletions
|
@ -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
|
||||
|
|
|
@ -139,6 +139,7 @@ slots:
|
|||
void on_actionReplanDive_triggered();
|
||||
void on_action_Check_for_Updates_triggered();
|
||||
|
||||
void on_actionDiveSiteEdit_triggered();
|
||||
void current_dive_changed(int divenr);
|
||||
void initialUiSetup();
|
||||
|
||||
|
|
|
@ -62,7 +62,7 @@
|
|||
<x>0</x>
|
||||
<y>0</y>
|
||||
<width>861</width>
|
||||
<height>29</height>
|
||||
<height>22</height>
|
||||
</rect>
|
||||
</property>
|
||||
<widget class="QMenu" name="menuFile">
|
||||
|
@ -119,6 +119,7 @@
|
|||
<addaction name="actionViewGlobe"/>
|
||||
<addaction name="separator"/>
|
||||
<addaction name="actionYearlyStatistics"/>
|
||||
<addaction name="actionDiveSiteEdit"/>
|
||||
<addaction name="actionPreviousDC"/>
|
||||
<addaction name="actionNextDC"/>
|
||||
<addaction name="separator"/>
|
||||
|
@ -731,6 +732,11 @@
|
|||
<string>&Manage dive sites</string>
|
||||
</property>
|
||||
</action>
|
||||
<action name="actionDiveSiteEdit">
|
||||
<property name="text">
|
||||
<string>Dive Site Edit</string>
|
||||
</property>
|
||||
</action>
|
||||
</widget>
|
||||
<customwidgets>
|
||||
<customwidget>
|
||||
|
|
Loading…
Reference in a new issue