aboutsummaryrefslogtreecommitdiff
path: root/src/RWAHostModel.cpp
diff options
context:
space:
mode:
authorDaniel Teichmann <daniel.teichmann@das-netzwerkteam.de>2021-08-10 14:56:44 +0200
committerDaniel Teichmann <daniel.teichmann@das-netzwerkteam.de>2021-08-10 14:56:44 +0200
commit6ae4c71032e6b15dedd631dfff0c0c4cc4a8522a (patch)
treecd2c53b90bb13375df387414e99e6d8e7509e2a9 /src/RWAHostModel.cpp
parentafeb0381f568b4c9f51296cd5de325c8c8aac3f2 (diff)
downloadRWA.Support.DesktopApp-6ae4c71032e6b15dedd631dfff0c0c4cc4a8522a.tar.gz
RWA.Support.DesktopApp-6ae4c71032e6b15dedd631dfff0c0c4cc4a8522a.tar.bz2
RWA.Support.DesktopApp-6ae4c71032e6b15dedd631dfff0c0c4cc4a8522a.zip
Complete restructure of current code tree
Diffstat (limited to 'src/RWAHostModel.cpp')
-rw-r--r--src/RWAHostModel.cpp37
1 files changed, 0 insertions, 37 deletions
diff --git a/src/RWAHostModel.cpp b/src/RWAHostModel.cpp
deleted file mode 100644
index 5f62adc..0000000
--- a/src/RWAHostModel.cpp
+++ /dev/null
@@ -1,37 +0,0 @@
-#include "RWAHostModel.h"
-
-RWAHostModel::RWAHostModel(QObject *parent) {
- Q_UNUSED(parent)
-}
-
-int RWAHostModel::rowCount(const QModelIndex& parent) const {
- Q_UNUSED(parent);
- return mDatas.size();
-}
-
-int RWAHostModel::columnCount(const QModelIndex& parent) const {
- Q_UNUSED(parent);
- return 1;
-}
-
-QVariant RWAHostModel::data(const QModelIndex &index, int role) const
- {
- if (!index.isValid())
- return QVariant();
- if ( role == Qt::DisplayRole) {
- return mDatas[index.row()];
- }
- return QVariant();
-}
-
-void RWAHostModel::populate() {
- beginResetModel();
- mDatas.clear();
- RWAHost *host1 = new RWAHost("uuid-1", "Erster Server", "url1");
- RWAHost *host2 = new RWAHost("uuid-2", "Zweiter Server", "url2");
- RWAHost *host3 = new RWAHost("uuid-3", "Dritter Server", "url3");
- mDatas.append(host1->alias());
- mDatas.append(host2->alias());
- mDatas.append(host3->alias());
- endResetModel();
-}