mirror of
				https://github.com/subsurface/subsurface.git
				synced 2025-02-19 22:16:15 +00:00 
			
		
		
		
	There are two updateDiveSiteCoordinates() member-functions, viz. in MapWidget and MapWidgetHelper. Adapt them to take a pointer to dive_site instead of a UUID. This is part of an effort to replace UUIDs by pointers. Signed-off-by: Berthold Stoeger <bstoeger@mail.tuwien.ac.at>
		
			
				
	
	
		
			48 lines
		
	
	
	
		
			1 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			48 lines
		
	
	
	
		
			1 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
| // SPDX-License-Identifier: GPL-2.0
 | |
| #ifndef MAPWIDGET_H
 | |
| #define MAPWIDGET_H
 | |
| 
 | |
| #include "core/units.h"
 | |
| #include <QQuickWidget>
 | |
| #include <QList>
 | |
| 
 | |
| #undef IGNORE
 | |
| 
 | |
| class QResizeEvent;
 | |
| class QQuickItem;
 | |
| class MapWidgetHelper;
 | |
| struct dive_site;
 | |
| 
 | |
| class MapWidget : public QQuickWidget {
 | |
| 
 | |
| 	Q_OBJECT
 | |
| 
 | |
| public:
 | |
| 	MapWidget(QWidget *parent = NULL);
 | |
| 	~MapWidget();
 | |
| 
 | |
| 	static MapWidget *instance();
 | |
| 	void reload();
 | |
| 
 | |
| signals:
 | |
| 	void coordinatesChanged(const location_t &);
 | |
| 
 | |
| public slots:
 | |
| 	void centerOnSelectedDiveSite();
 | |
| 	void centerOnDiveSite(struct dive_site *);
 | |
| 	void centerOnIndex(const QModelIndex& idx);
 | |
| 	void endGetDiveCoordinates();
 | |
| 	void repopulateLabels();
 | |
| 	void prepareForGetDiveCoordinates(struct dive_site *ds);
 | |
| 	void selectedDivesChanged(QList<int>);
 | |
| 	void coordinatesChangedLocal(const location_t &);
 | |
| 	void doneLoading(QQuickWidget::Status status);
 | |
| 	void updateDiveSiteCoordinates(struct dive_site *ds, const location_t &);
 | |
| 
 | |
| private:
 | |
| 	static MapWidget *m_instance;
 | |
| 	QQuickItem *m_rootItem;
 | |
| 	MapWidgetHelper *m_mapHelper;
 | |
| };
 | |
| 
 | |
| #endif // MAPWIDGET_H
 |