mirror of
				https://github.com/subsurface/subsurface.git
				synced 2025-02-19 22:16:15 +00:00 
			
		
		
		
	Preparation primarily for mobile. When we want to switch in one session from BT to cable connection and vise versa, we need a way to clear the model data containing the possible connections in use. Signed-off-by: Jan Mulder <jlmulder@xs4all.nl>
		
			
				
	
	
		
			23 lines
		
	
	
	
		
			589 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			23 lines
		
	
	
	
		
			589 B
		
	
	
	
		
			C++
		
	
	
	
	
	
| #ifndef CONNECTIONLISTMODEL_H
 | |
| #define CONNECTIONLISTMODEL_H
 | |
| 
 | |
| #include <QAbstractListModel>
 | |
| 
 | |
| class ConnectionListModel : public QAbstractListModel {
 | |
| 	Q_OBJECT
 | |
| public:
 | |
| 	enum CLMRole {
 | |
| 		AddressRole = Qt::UserRole + 1
 | |
| 	};
 | |
| 	ConnectionListModel(QObject *parent = 0);
 | |
| 	QHash<int, QByteArray> roleNames() const;
 | |
| 	QVariant data(const QModelIndex &index, int role = AddressRole) const;
 | |
| 	QString address(int idx) const;
 | |
| 	int rowCount(const QModelIndex &parent = QModelIndex()) const;
 | |
| 	void addAddress(const QString address);
 | |
| 	void removeAllAddresses();
 | |
| private:
 | |
| 	QStringList m_addresses;
 | |
| };
 | |
| 
 | |
| #endif
 |