[b431d47] | 1 | /* |
---|
| 2 | * Copyright (C) 2010 Ixonos Plc. |
---|
[ffb6be7] | 3 | * Copyright (C) 2011-2021 Philipp Spitzer, gregor herrmann, Stefan Stahl |
---|
[b431d47] | 4 | * |
---|
[6df32f2] | 5 | * This file is part of ConfClerk. |
---|
[b431d47] | 6 | * |
---|
[6df32f2] | 7 | * ConfClerk is free software: you can redistribute it and/or modify it |
---|
[b431d47] | 8 | * under the terms of the GNU General Public License as published by the Free |
---|
| 9 | * Software Foundation, either version 2 of the License, or (at your option) |
---|
| 10 | * any later version. |
---|
| 11 | * |
---|
[6df32f2] | 12 | * ConfClerk is distributed in the hope that it will be useful, but |
---|
[b431d47] | 13 | * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY |
---|
| 14 | * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for |
---|
| 15 | * more details. |
---|
| 16 | * |
---|
| 17 | * You should have received a copy of the GNU General Public License along with |
---|
[6df32f2] | 18 | * ConfClerk. If not, see <http://www.gnu.org/licenses/>. |
---|
[b431d47] | 19 | */ |
---|
| 20 | |
---|
| 21 | #include "conferencemodel.h" |
---|
| 22 | |
---|
| 23 | ConferenceModel::ConferenceModel(QObject* parent) |
---|
| 24 | : QAbstractListModel(parent) |
---|
| 25 | , conferences(Conference::getAll()) |
---|
| 26 | { } |
---|
| 27 | |
---|
| 28 | int ConferenceModel::rowCount(const QModelIndex& parent) const |
---|
| 29 | { |
---|
| 30 | if (parent.isValid()) { |
---|
| 31 | return 0; |
---|
| 32 | } else { |
---|
| 33 | return conferences.size(); |
---|
| 34 | } |
---|
| 35 | } |
---|
| 36 | |
---|
| 37 | QVariant ConferenceModel::data(const QModelIndex& index, int role) const |
---|
| 38 | { |
---|
| 39 | if (role != Qt::DisplayRole) { |
---|
| 40 | return QVariant(); |
---|
| 41 | } |
---|
| 42 | return conferences[index.row()].title(); |
---|
[5b7fa79] | 43 | } |
---|
[b431d47] | 44 | |
---|
[5b7fa79] | 45 | const Conference& ConferenceModel::conferenceFromIndex(const QModelIndex& index) const |
---|
| 46 | { |
---|
| 47 | if (index.parent().isValid() |
---|
| 48 | or index.column() != 0 |
---|
| 49 | or index.row() >= conferences.size()) |
---|
| 50 | { |
---|
| 51 | throw OrmNoObjectException(); |
---|
[b431d47] | 52 | } |
---|
[5b7fa79] | 53 | return conferences[index.row()]; |
---|
[b431d47] | 54 | } |
---|
| 55 | |
---|
[5b7fa79] | 56 | Conference& ConferenceModel::conferenceFromIndex(const QModelIndex& index) |
---|
[b431d47] | 57 | { |
---|
| 58 | if (index.parent().isValid() |
---|
| 59 | or index.column() != 0 |
---|
| 60 | or index.row() >= conferences.size()) |
---|
| 61 | { |
---|
| 62 | throw OrmNoObjectException(); |
---|
| 63 | } |
---|
| 64 | return conferences[index.row()]; |
---|
| 65 | } |
---|
| 66 | |
---|
| 67 | QModelIndex ConferenceModel::indexFromId(int id) const |
---|
| 68 | { |
---|
| 69 | for (int i = 0; i < conferences.size(); ++i) { |
---|
| 70 | if (conferences[i].id() == id) { |
---|
| 71 | return index(i, 0); |
---|
| 72 | } |
---|
| 73 | } |
---|
| 74 | |
---|
| 75 | return QModelIndex(); |
---|
| 76 | } |
---|
| 77 | |
---|
| 78 | void ConferenceModel::newConferenceBegin() |
---|
| 79 | { |
---|
| 80 | } |
---|
| 81 | |
---|
[e2c612c] | 82 | void ConferenceModel::newConferenceEnd(int conferenceId) { |
---|
| 83 | Q_UNUSED(conferenceId); |
---|
[b431d47] | 84 | reinit(); |
---|
| 85 | } |
---|
| 86 | |
---|
| 87 | void ConferenceModel::conferenceRemoved() |
---|
| 88 | { |
---|
| 89 | reinit(); |
---|
| 90 | } |
---|