1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158
|
/*
EventModelAdapter.cpp
This file is part of Charm, a task-based time tracking application.
Copyright (C) 2007-2018 Klarälvdalens Datakonsult AB, a KDAB Group company, info@kdab.com
Author: Mirko Boehm <mirko.boehm@kdab.com>
Author: Frank Osterfeld <frank.osterfeld@kdab.com>
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 2 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#include "EventModelAdapter.h"
#include "ApplicationCore.h"
#include "Core/CharmCommand.h"
#include "Core/CharmDataModel.h"
EventModelAdapter::EventModelAdapter(CharmDataModel *parent)
: QAbstractListModel(parent)
, m_dataModel(parent)
{
m_dataModel->registerAdapter(this);
}
EventModelAdapter::~EventModelAdapter()
{
if (m_dataModel)
m_dataModel->unregisterAdapter(this);
}
int EventModelAdapter::rowCount(const QModelIndex &) const
{
return m_events.size();
}
QVariant EventModelAdapter::data(const QModelIndex &index, int role) const
{
if (!index.isValid() || index.row() < 0 || index.row() > m_events.size())
return QVariant(); // beware of stale persistent indexes
switch (role) {
case Qt::DisplayRole:
{
EventId eventId = m_events[index.row()];
const Event &event = m_dataModel->eventForId(eventId);
QString text;
QTextStream stream(&text);
stream << event.taskId() << " - " << event.comment();
return text;
break;
}
default:
return QVariant();
}
}
void EventModelAdapter::resetEvents()
{
beginResetModel();
m_events.clear();
for (EventMap::const_iterator it = m_dataModel->eventMap().begin();
it != m_dataModel->eventMap().end(); ++it)
m_events.append(it->first);
endResetModel();
}
void EventModelAdapter::eventAboutToBeAdded(EventId)
{
int position = m_events.size();
beginInsertRows(QModelIndex(), position, position);
}
void EventModelAdapter::eventAdded(EventId id)
{
m_events.append(id);
endInsertRows();
}
void EventModelAdapter::eventModified(EventId id, Event)
{
// nothing to do, except:
int row = m_events.indexOf(id);
Q_ASSERT(row != -1); // inconsistency between model and adapter
emit(dataChanged(index(row), index(row)));
}
void EventModelAdapter::eventAboutToBeDeleted(EventId id)
{
int row = m_events.indexOf(id);
Q_ASSERT(row != -1); // inconsistency between model and adapter
beginRemoveRows(QModelIndex(), row, row);
}
void EventModelAdapter::eventDeleted(EventId id)
{
int position = m_events.indexOf(id);
Q_ASSERT(position != -1); // inconsistency between model and adapter
m_events.removeAt(position);
Q_ASSERT(m_events.indexOf(id) == -1); // cannot be in there
endRemoveRows();
}
void EventModelAdapter::eventActivated(EventId id)
{
emit eventActivationNotice(id);
}
void EventModelAdapter::eventDeactivated(EventId id)
{
emit eventDeactivationNotice(id);
}
void EventModelAdapter::commitCommand(CharmCommand *command)
{
command->finalize();
}
const Event &EventModelAdapter::eventForIndex(const QModelIndex &index) const
{
if (index.row() >= 0 && index.row() < m_events.size()) {
EventId eventId = m_events.at(index.row());
const Event &event = m_dataModel->eventForId(eventId);
return event;
} else {
static Event InvalidEvent;
return InvalidEvent;
}
}
QModelIndex EventModelAdapter::indexForEvent(const Event &event) const
{
int position = m_events.indexOf(event.id());
if (position >= 0 && position < m_events.size()) {
return index(position);
} else {
return QModelIndex();
}
}
|