diff options
author | Dirk Hohndel <dirk@hohndel.org> | 2017-10-06 07:51:30 -0700 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2017-10-07 10:06:47 -0700 |
commit | 7aacaf60da7e73b9c57012e1846f709acb4d0ac2 (patch) | |
tree | 5dd0515de3f0bfebcc9f22a976089f8f2555b0f9 /core/connectionlistmodel.cpp | |
parent | 030c094854aeab4aaade523d7126728d9ce98a5b (diff) | |
download | subsurface-7aacaf60da7e73b9c57012e1846f709acb4d0ac2.tar.gz |
Move ConnectionListModel into its own source file
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'core/connectionlistmodel.cpp')
-rw-r--r-- | core/connectionlistmodel.cpp | 44 |
1 files changed, 44 insertions, 0 deletions
diff --git a/core/connectionlistmodel.cpp b/core/connectionlistmodel.cpp new file mode 100644 index 000000000..3e1e0d71c --- /dev/null +++ b/core/connectionlistmodel.cpp @@ -0,0 +1,44 @@ +// SPDX-License-Identifier: GPL-2.0 + +#include "core/connectionlistmodel.h" + +ConnectionListModel::ConnectionListModel(QObject *parent) : + QAbstractListModel(parent) +{ +} + +QHash <int, QByteArray> ConnectionListModel::roleNames() const +{ + QHash<int, QByteArray> roles; + roles[AddressRole] = "address"; + return roles; +} + +QVariant ConnectionListModel::data(const QModelIndex &index, int role) const +{ + if (index.row() < 0 || index.row() >= m_addresses.count()) + return QVariant(); + if (role != AddressRole) + return QVariant(); + return m_addresses[index.row()]; +} + +QString ConnectionListModel::address(int idx) const +{ + if (idx < 0 || idx >> m_addresses.count()) + return QString(); + return m_addresses[idx]; +} + +int ConnectionListModel::rowCount(const QModelIndex &parent) const +{ + Q_UNUSED(parent) + return m_addresses.count(); +} + +void ConnectionListModel::addAddress(const QString address) +{ + beginInsertRows(QModelIndex(), rowCount(), rowCount()); + m_addresses.append(address); + endInsertRows(); +} |