mirror of
https://github.com/subsurface/subsurface.git
synced 2024-11-30 22:20:21 +00:00
Map: split void MapWidget::setEditMode()
The setEditMode(bool) function behaves very differently, when entering and exiting edit mode. Therefore, split it in two versions. This will allow to pass arguments that make sense only when entering the edit mode. Since setEditMode() doesn't exist anymore, turn the editMode Q_PROPERTY line to the MEMBER version. Accordingly, remove the reader function. If QML wants to enter edit mode, it should invoke the appropriate function and not simply set the flag. Signed-off-by: Berthold Stoeger <bstoeger@mail.tuwien.ac.at>
This commit is contained in:
parent
754160d625
commit
8091497745
4 changed files with 21 additions and 29 deletions
|
@ -82,27 +82,21 @@ void MapWidget::repopulateLabels()
|
|||
void MapWidget::reload()
|
||||
{
|
||||
CHECK_IS_READY_RETURN_VOID();
|
||||
setEditMode(false);
|
||||
m_mapHelper->exitEditMode();
|
||||
if (!skipReload)
|
||||
m_mapHelper->reloadMapLocations();
|
||||
}
|
||||
|
||||
void MapWidget::setEditMode(bool editMode)
|
||||
{
|
||||
CHECK_IS_READY_RETURN_VOID();
|
||||
m_mapHelper->setEditMode(editMode);
|
||||
}
|
||||
|
||||
void MapWidget::endGetDiveCoordinates()
|
||||
{
|
||||
CHECK_IS_READY_RETURN_VOID();
|
||||
setEditMode(false);
|
||||
m_mapHelper->exitEditMode();
|
||||
}
|
||||
|
||||
void MapWidget::prepareForGetDiveCoordinates()
|
||||
{
|
||||
CHECK_IS_READY_RETURN_VOID();
|
||||
setEditMode(true);
|
||||
m_mapHelper->enterEditMode();
|
||||
}
|
||||
|
||||
void MapWidget::selectedDivesChanged(QList<int> list)
|
||||
|
|
|
@ -40,7 +40,6 @@ public slots:
|
|||
void updateDiveSiteCoordinates(uint32_t uuid, degrees_t latitude, degrees_t longitude);
|
||||
|
||||
private:
|
||||
void setEditMode(bool editMode);
|
||||
static MapWidget *m_instance;
|
||||
QQuickItem *m_rootItem;
|
||||
MapWidgetHelper *m_mapHelper;
|
||||
|
|
|
@ -285,28 +285,27 @@ void MapWidgetHelper::updateDiveSiteCoordinates(uint32_t uuid, degrees_t latitud
|
|||
QMetaObject::invokeMethod(m_map, "centerOnCoordinate", Q_ARG(QVariant, QVariant::fromValue(coord)));
|
||||
}
|
||||
|
||||
bool MapWidgetHelper::editMode()
|
||||
void MapWidgetHelper::exitEditMode()
|
||||
{
|
||||
return m_editMode;
|
||||
m_editMode = false;
|
||||
emit editModeChanged();
|
||||
}
|
||||
|
||||
void MapWidgetHelper::setEditMode(bool editMode)
|
||||
void MapWidgetHelper::enterEditMode()
|
||||
{
|
||||
m_editMode = editMode;
|
||||
m_editMode = true;
|
||||
MapLocation *exists = m_mapLocationModel->getMapLocationForUuid(displayed_dive_site.uuid);
|
||||
if (editMode) {
|
||||
QGeoCoordinate coord;
|
||||
// if divesite uuid doesn't exist in the model, add a new MapLocation.
|
||||
if (!exists) {
|
||||
coord = m_map->property("center").value<QGeoCoordinate>();
|
||||
m_mapLocationModel->add(new MapLocation(displayed_dive_site.uuid, coord,
|
||||
QString(displayed_dive_site.name)));
|
||||
} else {
|
||||
coord = exists->coordinate();
|
||||
}
|
||||
emit coordinatesChanged(degrees_t { (int)lrint(coord.latitude() * 1000000.0) },
|
||||
degrees_t { (int)lrint(coord.longitude() * 1000000.0) });
|
||||
QGeoCoordinate coord;
|
||||
// if divesite uuid doesn't exist in the model, add a new MapLocation.
|
||||
if (!exists) {
|
||||
coord = m_map->property("center").value<QGeoCoordinate>();
|
||||
m_mapLocationModel->add(new MapLocation(displayed_dive_site.uuid, coord,
|
||||
QString(displayed_dive_site.name)));
|
||||
} else {
|
||||
coord = exists->coordinate();
|
||||
}
|
||||
emit coordinatesChanged(degrees_t { (int)lrint(coord.latitude() * 1000000.0) },
|
||||
degrees_t { (int)lrint(coord.longitude() * 1000000.0) });
|
||||
emit editModeChanged();
|
||||
}
|
||||
|
||||
|
|
|
@ -21,7 +21,7 @@ class MapWidgetHelper : public QObject {
|
|||
Q_OBJECT
|
||||
Q_PROPERTY(QObject *map MEMBER m_map)
|
||||
Q_PROPERTY(MapLocationModel *model MEMBER m_mapLocationModel NOTIFY modelChanged)
|
||||
Q_PROPERTY(bool editMode READ editMode WRITE setEditMode NOTIFY editModeChanged)
|
||||
Q_PROPERTY(bool editMode MEMBER m_editMode NOTIFY editModeChanged)
|
||||
Q_PROPERTY(QString pluginObject READ pluginObject NOTIFY pluginObjectChanged)
|
||||
|
||||
public:
|
||||
|
@ -37,8 +37,8 @@ public:
|
|||
Q_INVOKABLE void updateCurrentDiveSiteCoordinatesFromMap(quint32 uuid, QGeoCoordinate coord);
|
||||
Q_INVOKABLE void selectVisibleLocations();
|
||||
void updateDiveSiteCoordinates(uint32_t uuid, degrees_t latitude, degrees_t longitude);
|
||||
bool editMode();
|
||||
void setEditMode(bool editMode);
|
||||
void enterEditMode();
|
||||
void exitEditMode();
|
||||
QString pluginObject();
|
||||
|
||||
private:
|
||||
|
|
Loading…
Reference in a new issue