mirror of
				https://github.com/subsurface/subsurface.git
				synced 2025-02-19 22:16:15 +00:00 
			
		
		
		
	Rename the Dive class in divelistmodel.h to a void a conflict with the Dive class in templatelayout.h Signed-off-by: Grace Karanja <gracie.karanja89@gmail.com> Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
		
			
				
	
	
		
			127 lines
		
	
	
	
		
			2.5 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			127 lines
		
	
	
	
		
			2.5 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
| #ifndef DIVELISTMODEL_H
 | |
| #define DIVELISTMODEL_H
 | |
| 
 | |
| #include <QAbstractListModel>
 | |
| #include "dive.h"
 | |
| 
 | |
| class MobileDive {
 | |
| public:
 | |
| 	MobileDive(dive* d);
 | |
| 
 | |
| 	QString date() const;
 | |
| 	void setDate(const QString &date);
 | |
| 
 | |
| 	QString location() const;
 | |
| 	void setLocation(const QString &location);
 | |
| 
 | |
| 	QString sac() const;
 | |
| 	void setSac(const QString &sac);
 | |
| 
 | |
| 	QString gas() const;
 | |
| 	void setGas(const QString &gas);
 | |
| 
 | |
| 	QString cylinder() const;
 | |
| 	void setCylinder(const QString &cylinder);
 | |
| 
 | |
| 	QString suit() const;
 | |
| 	void setSuit(const QString &suit);
 | |
| 
 | |
| 	QString weight() const;
 | |
| 	void setWeight(const QString &weight);
 | |
| 
 | |
| 	QString airtemp() const;
 | |
| 	void setAirTemp(const QString &airtemp);
 | |
| 
 | |
| 	QString duration() const;
 | |
| 	void setDuration(const QString &duration);
 | |
| 
 | |
| 	QString depth() const;
 | |
| 	void setDepth(const QString &depth);
 | |
| 
 | |
| 	QString rating() const;
 | |
| 	void setRating(const QString &rating);
 | |
| 
 | |
| 	dive *thisDive() const;
 | |
| 	void setThisDive(dive *thisDive);
 | |
| 
 | |
| 	QString diveNumber() const;
 | |
| 	void setDiveNumber(const QString &diveNumber);
 | |
| 
 | |
| 	QString notes() const;
 | |
| 	void setNotes(const QString ¬es);
 | |
| 
 | |
| 	QString trip() const;
 | |
| 	void setTrip(const QString &trip);
 | |
| 
 | |
| 	QString buddy() const;
 | |
| 	void setBuddy(const QString &buddy);
 | |
| 
 | |
| 	QString divemaster() const;
 | |
| 	void setDivemaster(const QString &divemaster);
 | |
| 
 | |
| 	QString watertemp() const;
 | |
| 	void setWatertemp(const QString &watertemp);
 | |
| 
 | |
| private:
 | |
| 	void setupDiveTempDetails();
 | |
| 
 | |
| 	QString m_diveNumber;
 | |
| 	QString m_trip;
 | |
| 	QString m_date;
 | |
| 	QString m_rating;
 | |
| 	QString m_depth;
 | |
| 	QString m_duration;
 | |
| 	QString m_airtemp;
 | |
| 	QString m_watertemp;
 | |
| 	QString m_weight;
 | |
| 	QString m_suit;
 | |
| 	QString m_cylinder;
 | |
| 	QString m_gas;
 | |
| 	QString m_sac;
 | |
| 	QString m_location;
 | |
| 	QString m_notes;
 | |
| 	QString m_buddy;
 | |
| 	QString m_divemaster;
 | |
| 
 | |
| 
 | |
| 	dive *m_thisDive;
 | |
| };
 | |
| 
 | |
| class DiveListModel : public QAbstractListModel
 | |
| {
 | |
| 	Q_OBJECT
 | |
| public:
 | |
| 
 | |
| 	enum DiveListRoles {
 | |
| 		DiveNumberRole = Qt::UserRole + 1,
 | |
| 		DiveTripRole,
 | |
| 		DiveDateRole,
 | |
| 		DiveRatingRole,
 | |
| 		DiveDepthRole,
 | |
| 		DiveDurationRole,
 | |
| 		DiveWaterTemperatureRole,
 | |
| 		DiveAirTemperatureRole,
 | |
| 		DiveWeightRole,
 | |
| 		DiveSuitRole,
 | |
| 		DiveCylinderRole,
 | |
| 		DiveGasRole,
 | |
| 		DiveSacRole,
 | |
| 		DiveLocationRole,
 | |
| 		DiveNotesRole,
 | |
| 		DiveBuddyRole,
 | |
| 		DiveMasterRole
 | |
| 	};
 | |
| 
 | |
| 	static DiveListModel *instance();
 | |
| 	DiveListModel(QObject *parent = 0);
 | |
| 	void addDive(dive *d);
 | |
| 	int rowCount(const QModelIndex &parent = QModelIndex()) const;
 | |
| 	QVariant data(const QModelIndex &index, int role = Qt::DisplayRole) const;
 | |
| 	QHash<int, QByteArray> roleNames() const;
 | |
| 
 | |
| private:
 | |
| 	QList<MobileDive> m_dives;
 | |
| 	static DiveListModel *m_instance;
 | |
| };
 | |
| 
 | |
| #endif // DIVELISTMODEL_H
 |