mirror of
				https://github.com/subsurface/subsurface.git
				synced 2025-02-19 22:16:15 +00:00 
			
		
		
		
	qt-models/models.h included dive.h and divelist.h. Remove these unnecessary includes, to reduce interdependencies. A drop in the bucket, for sure. Signed-off-by: Berthold Stoeger <bstoeger@mail.tuwien.ac.at>
		
			
				
	
	
		
			57 lines
		
	
	
	
		
			1.2 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			57 lines
		
	
	
	
		
			1.2 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
| // SPDX-License-Identifier: GPL-2.0
 | |
| /*
 | |
|  * models.h
 | |
|  *
 | |
|  * header file for the equipment models of Subsurface
 | |
|  *
 | |
|  */
 | |
| #ifndef MODELS_H
 | |
| #define MODELS_H
 | |
| 
 | |
| #include <QAbstractTableModel>
 | |
| #include <QStringList>
 | |
| #include <QStringListModel>
 | |
| #include <QSortFilterProxyModel>
 | |
| #include <QPixmap>
 | |
| 
 | |
| #include "core/metrics.h"
 | |
| 
 | |
| #include "cleanertablemodel.h"
 | |
| #include "treemodel.h"
 | |
| 
 | |
| class GasSelectionModel : public QStringListModel {
 | |
| 	Q_OBJECT
 | |
| public:
 | |
| 	static GasSelectionModel *instance();
 | |
| 	Qt::ItemFlags flags(const QModelIndex &index) const;
 | |
| 	QVariant data(const QModelIndex &index, int role) const override;
 | |
| public
 | |
| slots:
 | |
| 	void repopulate();
 | |
| };
 | |
| 
 | |
| class DiveTypeSelectionModel : public QStringListModel {
 | |
| 	Q_OBJECT
 | |
| public:
 | |
| 	static DiveTypeSelectionModel *instance();
 | |
| 	Qt::ItemFlags flags(const QModelIndex &index) const;
 | |
| 	QVariant data(const QModelIndex &index, int role) const override;
 | |
| public
 | |
| slots:
 | |
| 	void repopulate();
 | |
| };
 | |
| 
 | |
| class LanguageModel : public QAbstractListModel {
 | |
| 	Q_OBJECT
 | |
| public:
 | |
| 	static LanguageModel *instance();
 | |
| 	QVariant data(const QModelIndex &index, int role = Qt::DisplayRole) const override;
 | |
| 	int rowCount(const QModelIndex &parent = QModelIndex()) const override;
 | |
| 
 | |
| private:
 | |
| 	LanguageModel(QObject *parent = 0);
 | |
| 
 | |
| 	QStringList languages;
 | |
| };
 | |
| 
 | |
| #endif // MODELS_H
 |