diff options
Diffstat (limited to 'core/connectionlistmodel.h')
-rw-r--r-- | core/connectionlistmodel.h | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/core/connectionlistmodel.h b/core/connectionlistmodel.h new file mode 100644 index 000000000..ec3a785fa --- /dev/null +++ b/core/connectionlistmodel.h @@ -0,0 +1,22 @@ +#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); +private: + QStringList m_addresses; +}; + +#endif |