| 
									
										
										
										
											2017-10-06 07:51:30 -07:00
										 |  |  | #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); | 
					
						
							| 
									
										
										
										
											2017-10-11 19:31:45 +02:00
										 |  |  | 	void removeAllAddresses(); | 
					
						
							| 
									
										
										
										
											2017-10-06 07:51:30 -07:00
										 |  |  | private: | 
					
						
							|  |  |  | 	QStringList m_addresses; | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #endif
 |