cmake: Autogenerate most of the .qrc resource files
[quassel.git] / src / client / treemodel.cpp
1 /***************************************************************************
2  *   Copyright (C) 2005-2018 by the Quassel Project                        *
3  *   devel@quassel-irc.org                                                 *
4  *                                                                         *
5  *   This program is free software; you can redistribute it and/or modify  *
6  *   it under the terms of the GNU General Public License as published by  *
7  *   the Free Software Foundation; either version 2 of the License, or     *
8  *   (at your option) version 3.                                           *
9  *                                                                         *
10  *   This program is distributed in the hope that it will be useful,       *
11  *   but WITHOUT ANY WARRANTY; without even the implied warranty of        *
12  *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *
13  *   GNU General Public License for more details.                          *
14  *                                                                         *
15  *   You should have received a copy of the GNU General Public License     *
16  *   along with this program; if not, write to the                         *
17  *   Free Software Foundation, Inc.,                                       *
18  *   51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.         *
19  ***************************************************************************/
20
21 #include "treemodel.h"
22
23 #include <QCoreApplication>
24 #include <QDebug>
25
26 #include "quassel.h"
27
28 class RemoveChildLaterEvent : public QEvent
29 {
30 public:
31     RemoveChildLaterEvent(AbstractTreeItem *child) : QEvent(QEvent::User), _child(child) {};
32     inline AbstractTreeItem *child() { return _child; }
33 private:
34     AbstractTreeItem *_child;
35 };
36
37
38 /*****************************************
39  *  Abstract Items of a TreeModel
40  *****************************************/
41 AbstractTreeItem::AbstractTreeItem(AbstractTreeItem *parent)
42     : QObject(parent),
43     _flags(Qt::ItemIsSelectable | Qt::ItemIsEnabled),
44     _treeItemFlags(0)
45 {
46 }
47
48
49 bool AbstractTreeItem::newChild(AbstractTreeItem *item)
50 {
51     int newRow = childCount();
52     emit beginAppendChilds(newRow, newRow);
53     _childItems.append(item);
54     emit endAppendChilds();
55     return true;
56 }
57
58
59 bool AbstractTreeItem::newChilds(const QList<AbstractTreeItem *> &items)
60 {
61     if (items.isEmpty())
62         return false;
63
64     int nextRow = childCount();
65     int lastRow = nextRow + items.count() - 1;
66
67     emit beginAppendChilds(nextRow, lastRow);
68     _childItems << items;
69     emit endAppendChilds();
70
71     return true;
72 }
73
74
75 bool AbstractTreeItem::removeChild(int row)
76 {
77     if (row < 0 || childCount() <= row)
78         return false;
79
80     child(row)->removeAllChilds();
81     emit beginRemoveChilds(row, row);
82     AbstractTreeItem *treeitem = _childItems.takeAt(row);
83     delete treeitem;
84     emit endRemoveChilds();
85
86     checkForDeletion();
87
88     return true;
89 }
90
91
92 void AbstractTreeItem::removeAllChilds()
93 {
94     const int numChilds = childCount();
95
96     if (numChilds == 0)
97         return;
98
99     AbstractTreeItem *child;
100
101     QList<AbstractTreeItem *>::iterator childIter;
102
103     childIter = _childItems.begin();
104     while (childIter != _childItems.end()) {
105         child = *childIter;
106         child->setTreeItemFlags(0); // disable self deletion, as this would only fuck up consitency and the child gets deleted anyways
107         child->removeAllChilds();
108         ++childIter;
109     }
110
111     emit beginRemoveChilds(0, numChilds - 1);
112     childIter = _childItems.begin();
113     while (childIter != _childItems.end()) {
114         child = *childIter;
115         childIter = _childItems.erase(childIter);
116         delete child;
117     }
118     emit endRemoveChilds();
119
120     checkForDeletion();
121 }
122
123
124 void AbstractTreeItem::removeChildLater(AbstractTreeItem *child)
125 {
126     Q_ASSERT(child);
127     QCoreApplication::postEvent(this, new RemoveChildLaterEvent(child));
128 }
129
130
131 void AbstractTreeItem::customEvent(QEvent *event)
132 {
133     if (event->type() != QEvent::User)
134         return;
135
136     event->accept();
137
138     RemoveChildLaterEvent *removeEvent = static_cast<RemoveChildLaterEvent *>(event);
139     int childRow = _childItems.indexOf(removeEvent->child());
140     if (childRow == -1)
141         return;
142
143     // since we are called asynchronously we have to recheck if the item in question still has no childs
144     if (removeEvent->child()->childCount())
145         return;
146
147     removeChild(childRow);
148 }
149
150
151 bool AbstractTreeItem::reParent(AbstractTreeItem *newParent)
152 {
153     // currently we support only re parenting if the child that's about to be
154     // adopted does not have any children itself.
155     if (childCount() != 0) {
156         qDebug() << "AbstractTreeItem::reParent(): cannot reparent"  << this << "with children.";
157         return false;
158     }
159
160     int oldRow = row();
161     if (oldRow == -1)
162         return false;
163
164     emit parent()->beginRemoveChilds(oldRow, oldRow);
165     parent()->_childItems.removeAt(oldRow);
166     emit parent()->endRemoveChilds();
167
168     AbstractTreeItem *oldParent = parent();
169     setParent(newParent);
170
171     bool success = newParent->newChild(this);
172     if (!success)
173         qWarning() << "AbstractTreeItem::reParent(): failed to attach to new parent after removing from old parent! this:" << this << "new parent:" << newParent;
174
175     if (oldParent)
176         oldParent->checkForDeletion();
177
178     return success;
179 }
180
181
182 AbstractTreeItem *AbstractTreeItem::child(int row) const
183 {
184     if (childCount() <= row)
185         return 0;
186     else
187         return _childItems[row];
188 }
189
190
191 int AbstractTreeItem::childCount(int column) const
192 {
193     if (column > 0)
194         return 0;
195     else
196         return _childItems.count();
197 }
198
199
200 int AbstractTreeItem::row() const
201 {
202     if (!parent()) {
203         qWarning() << "AbstractTreeItem::row():" << this << "has no parent AbstractTreeItem as it's parent! parent is" << QObject::parent();
204         return -1;
205     }
206
207     int row_ = parent()->_childItems.indexOf(const_cast<AbstractTreeItem *>(this));
208     if (row_ == -1)
209         qWarning() << "AbstractTreeItem::row():" << this << "is not in the child list of" << QObject::parent();
210     return row_;
211 }
212
213
214 void AbstractTreeItem::dumpChildList()
215 {
216     qDebug() << "==== Childlist for Item:" << this << "====";
217     if (childCount() > 0) {
218         AbstractTreeItem *child;
219         QList<AbstractTreeItem *>::const_iterator childIter = _childItems.constBegin();
220         while (childIter != _childItems.constEnd()) {
221             child = *childIter;
222             qDebug() << "Row:" << child->row() << child << child->data(0, Qt::DisplayRole);
223             ++childIter;
224         }
225     }
226     qDebug() << "==== End Of Childlist ====";
227 }
228
229
230 /*****************************************
231  * SimpleTreeItem
232  *****************************************/
233 SimpleTreeItem::SimpleTreeItem(const QList<QVariant> &data, AbstractTreeItem *parent)
234     : AbstractTreeItem(parent),
235     _itemData(data)
236 {
237 }
238
239
240 SimpleTreeItem::~SimpleTreeItem()
241 {
242 }
243
244
245 QVariant SimpleTreeItem::data(int column, int role) const
246 {
247     if (column >= columnCount() || role != Qt::DisplayRole)
248         return QVariant();
249     else
250         return _itemData[column];
251 }
252
253
254 bool SimpleTreeItem::setData(int column, const QVariant &value, int role)
255 {
256     if (column > columnCount() || role != Qt::DisplayRole)
257         return false;
258
259     if (column == columnCount())
260         _itemData.append(value);
261     else
262         _itemData[column] = value;
263
264     emit dataChanged(column);
265     return true;
266 }
267
268
269 int SimpleTreeItem::columnCount() const
270 {
271     return _itemData.count();
272 }
273
274
275 /*****************************************
276  * PropertyMapItem
277  *****************************************/
278 PropertyMapItem::PropertyMapItem(AbstractTreeItem *parent)
279     : AbstractTreeItem(parent)
280 {
281 }
282
283
284 QVariant PropertyMapItem::data(int column, int role) const
285 {
286     if (column >= columnCount())
287         return QVariant();
288
289     switch (role) {
290     case Qt::ToolTipRole:
291         return toolTip(column);
292     case Qt::DisplayRole:
293     case TreeModel::SortRole: // fallthrough, since SortRole should default to DisplayRole
294         return property(propertyOrder()[column].toLatin1());
295     default:
296         return QVariant();
297     }
298 }
299
300
301 bool PropertyMapItem::setData(int column, const QVariant &value, int role)
302 {
303     if (column >= columnCount() || role != Qt::DisplayRole)
304         return false;
305
306     setProperty(propertyOrder()[column].toLatin1(), value);
307     emit dataChanged(column);
308     return true;
309 }
310
311
312 int PropertyMapItem::columnCount() const
313 {
314     return propertyOrder().count();
315 }
316
317
318 /*****************************************
319  * TreeModel
320  *****************************************/
321 TreeModel::TreeModel(const QList<QVariant> &data, QObject *parent)
322     : QAbstractItemModel(parent),
323     _childStatus(QModelIndex(), 0, 0, 0),
324     _aboutToRemoveOrInsert(false)
325 {
326     rootItem = new SimpleTreeItem(data, 0);
327     connectItem(rootItem);
328
329     if (Quassel::isOptionSet("debugmodel")) {
330         connect(this, SIGNAL(rowsAboutToBeInserted(const QModelIndex &, int, int)),
331             this, SLOT(debug_rowsAboutToBeInserted(const QModelIndex &, int, int)));
332         connect(this, SIGNAL(rowsAboutToBeRemoved(const QModelIndex &, int, int)),
333             this, SLOT(debug_rowsAboutToBeRemoved(const QModelIndex &, int, int)));
334         connect(this, SIGNAL(rowsInserted(const QModelIndex &, int, int)),
335             this, SLOT(debug_rowsInserted(const QModelIndex &, int, int)));
336         connect(this, SIGNAL(rowsRemoved(const QModelIndex &, int, int)),
337             this, SLOT(debug_rowsRemoved(const QModelIndex &, int, int)));
338         connect(this, SIGNAL(dataChanged(const QModelIndex &, const QModelIndex &)),
339             this, SLOT(debug_dataChanged(const QModelIndex &, const QModelIndex &)));
340     }
341 }
342
343
344 TreeModel::~TreeModel()
345 {
346     delete rootItem;
347 }
348
349
350 QModelIndex TreeModel::index(int row, int column, const QModelIndex &parent) const
351 {
352     if (row < 0 || row >= rowCount(parent) || column < 0 || column >= columnCount(parent))
353         return QModelIndex();
354
355     AbstractTreeItem *parentItem;
356
357     if (!parent.isValid())
358         parentItem = rootItem;
359     else
360         parentItem = static_cast<AbstractTreeItem *>(parent.internalPointer());
361
362     AbstractTreeItem *childItem = parentItem->child(row);
363
364     if (childItem)
365         return createIndex(row, column, childItem);
366     else
367         return QModelIndex();
368 }
369
370
371 QModelIndex TreeModel::indexByItem(AbstractTreeItem *item) const
372 {
373     if (item == 0) {
374         qWarning() << "TreeModel::indexByItem(AbstractTreeItem *item) received NULL-Pointer";
375         return QModelIndex();
376     }
377
378     if (item == rootItem)
379         return QModelIndex();
380     else
381         return createIndex(item->row(), 0, item);
382 }
383
384
385 QModelIndex TreeModel::parent(const QModelIndex &index) const
386 {
387     if (!index.isValid()) {
388         // ModelTest does this
389         // qWarning() << "TreeModel::parent(): has been asked for the rootItems Parent!";
390         return QModelIndex();
391     }
392
393     AbstractTreeItem *childItem = static_cast<AbstractTreeItem *>(index.internalPointer());
394     AbstractTreeItem *parentItem = childItem->parent();
395
396     Q_ASSERT(parentItem);
397     if (parentItem == rootItem)
398         return QModelIndex();
399
400     return createIndex(parentItem->row(), 0, parentItem);
401 }
402
403
404 int TreeModel::rowCount(const QModelIndex &parent) const
405 {
406     AbstractTreeItem *parentItem;
407     if (!parent.isValid())
408         parentItem = rootItem;
409     else
410         parentItem = static_cast<AbstractTreeItem *>(parent.internalPointer());
411
412     return parentItem->childCount(parent.column());
413 }
414
415
416 int TreeModel::columnCount(const QModelIndex &parent) const
417 {
418     Q_UNUSED(parent)
419     return rootItem->columnCount();
420     // since there the Qt Views don't draw more columns than the header has columns
421     // we can be lazy and simply return the count of header columns
422     // actually this gives us more freedom cause we don't have to ensure that a rows parent
423     // has equal or more columns than that row
424
425 //   AbstractTreeItem *parentItem;
426 //   if(!parent.isValid())
427 //     parentItem = rootItem;
428 //   else
429 //     parentItem = static_cast<AbstractTreeItem*>(parent.internalPointer());
430 //   return parentItem->columnCount();
431 }
432
433
434 QVariant TreeModel::data(const QModelIndex &index, int role) const
435 {
436     if (!index.isValid())
437         return QVariant();
438
439     AbstractTreeItem *item = static_cast<AbstractTreeItem *>(index.internalPointer());
440     return item->data(index.column(), role);
441 }
442
443
444 bool TreeModel::setData(const QModelIndex &index, const QVariant &value, int role)
445 {
446     if (!index.isValid())
447         return false;
448
449     AbstractTreeItem *item = static_cast<AbstractTreeItem *>(index.internalPointer());
450     return item->setData(index.column(), value, role);
451 }
452
453
454 Qt::ItemFlags TreeModel::flags(const QModelIndex &index) const
455 {
456     if (!index.isValid()) {
457         return rootItem->flags() & Qt::ItemIsDropEnabled;
458     }
459     else {
460         AbstractTreeItem *item = static_cast<AbstractTreeItem *>(index.internalPointer());
461         return item->flags();
462     }
463 }
464
465
466 QVariant TreeModel::headerData(int section, Qt::Orientation orientation, int role) const
467 {
468     if (orientation == Qt::Horizontal && role == Qt::DisplayRole)
469         return rootItem->data(section, role);
470     else
471         return QVariant();
472 }
473
474
475 void TreeModel::itemDataChanged(int column)
476 {
477     AbstractTreeItem *item = qobject_cast<AbstractTreeItem *>(sender());
478     QModelIndex leftIndex, rightIndex;
479
480     if (item == rootItem)
481         return;
482
483     if (column == -1) {
484         leftIndex = createIndex(item->row(), 0, item);
485         rightIndex = createIndex(item->row(), item->columnCount() - 1, item);
486     }
487     else {
488         leftIndex = createIndex(item->row(), column, item);
489         rightIndex = leftIndex;
490     }
491
492     emit dataChanged(leftIndex, rightIndex);
493 }
494
495
496 void TreeModel::connectItem(AbstractTreeItem *item)
497 {
498     connect(item, SIGNAL(dataChanged(int)),
499         this, SLOT(itemDataChanged(int)));
500
501     connect(item, SIGNAL(beginAppendChilds(int, int)),
502         this, SLOT(beginAppendChilds(int, int)));
503     connect(item, SIGNAL(endAppendChilds()),
504         this, SLOT(endAppendChilds()));
505
506     connect(item, SIGNAL(beginRemoveChilds(int, int)),
507         this, SLOT(beginRemoveChilds(int, int)));
508     connect(item, SIGNAL(endRemoveChilds()),
509         this, SLOT(endRemoveChilds()));
510 }
511
512
513 void TreeModel::beginAppendChilds(int firstRow, int lastRow)
514 {
515     AbstractTreeItem *parentItem = qobject_cast<AbstractTreeItem *>(sender());
516     if (!parentItem) {
517         qWarning() << "TreeModel::beginAppendChilds(): cannot append Children to unknown parent";
518         return;
519     }
520
521     QModelIndex parent = indexByItem(parentItem);
522     Q_ASSERT(!_aboutToRemoveOrInsert);
523
524     _aboutToRemoveOrInsert = true;
525     _childStatus = ChildStatus(parent, rowCount(parent), firstRow, lastRow);
526     beginInsertRows(parent, firstRow, lastRow);
527 }
528
529
530 void TreeModel::endAppendChilds()
531 {
532     AbstractTreeItem *parentItem = qobject_cast<AbstractTreeItem *>(sender());
533     if (!parentItem) {
534         qWarning() << "TreeModel::endAppendChilds(): cannot append Children to unknown parent";
535         return;
536     }
537     Q_ASSERT(_aboutToRemoveOrInsert);
538     ChildStatus cs = _childStatus;
539 #ifndef QT_NO_DEBUG
540     QModelIndex parent = indexByItem(parentItem);
541     Q_ASSERT(cs.parent == parent);
542     Q_ASSERT(rowCount(parent) == cs.childCount + cs.end - cs.start + 1);
543 #endif
544     _aboutToRemoveOrInsert = false;
545     for (int i = cs.start; i <= cs.end; i++) {
546         connectItem(parentItem->child(i));
547     }
548     endInsertRows();
549 }
550
551
552 void TreeModel::beginRemoveChilds(int firstRow, int lastRow)
553 {
554     AbstractTreeItem *parentItem = qobject_cast<AbstractTreeItem *>(sender());
555     if (!parentItem) {
556         qWarning() << "TreeModel::beginRemoveChilds(): cannot append Children to unknown parent";
557         return;
558     }
559
560     for (int i = firstRow; i <= lastRow; i++) {
561         disconnect(parentItem->child(i), 0, this, 0);
562     }
563
564     // consitency checks
565     QModelIndex parent = indexByItem(parentItem);
566     Q_ASSERT(firstRow <= lastRow);
567     Q_ASSERT(parentItem->childCount() > lastRow);
568     Q_ASSERT(!_aboutToRemoveOrInsert);
569     _aboutToRemoveOrInsert = true;
570     _childStatus = ChildStatus(parent, rowCount(parent), firstRow, lastRow);
571
572     beginRemoveRows(parent, firstRow, lastRow);
573 }
574
575
576 void TreeModel::endRemoveChilds()
577 {
578     AbstractTreeItem *parentItem = qobject_cast<AbstractTreeItem *>(sender());
579     if (!parentItem) {
580         qWarning() << "TreeModel::endRemoveChilds(): cannot remove Children from unknown parent";
581         return;
582     }
583
584     // concistency checks
585     Q_ASSERT(_aboutToRemoveOrInsert);
586 #ifndef QT_NO_DEBUG
587     ChildStatus cs = _childStatus;
588     QModelIndex parent = indexByItem(parentItem);
589     Q_ASSERT(cs.parent == parent);
590     Q_ASSERT(rowCount(parent) == cs.childCount - cs.end + cs.start - 1);
591 #endif
592     _aboutToRemoveOrInsert = false;
593
594     endRemoveRows();
595 }
596
597
598 void TreeModel::clear()
599 {
600     rootItem->removeAllChilds();
601 }
602
603
604 void TreeModel::debug_rowsAboutToBeInserted(const QModelIndex &parent, int start, int end)
605 {
606     qDebug() << "debug_rowsAboutToBeInserted" << parent << parent.internalPointer() << parent.data().toString() << rowCount(parent) << start << end;
607 }
608
609
610 void TreeModel::debug_rowsAboutToBeRemoved(const QModelIndex &parent, int start, int end)
611 {
612     AbstractTreeItem *parentItem;
613     parentItem = static_cast<AbstractTreeItem *>(parent.internalPointer());
614     if (!parentItem)
615         parentItem = rootItem;
616     qDebug() << "debug_rowsAboutToBeRemoved" << parent << parentItem << parent.data().toString() << rowCount(parent) << start << end;
617
618     QModelIndex child;
619     for (int i = end; i >= start; i--) {
620         child = parent.child(i, 0);
621         Q_ASSERT(parentItem->child(i));
622         qDebug() << ">>>" << i << child << child.data().toString();
623     }
624 }
625
626
627 void TreeModel::debug_rowsInserted(const QModelIndex &parent, int start, int end)
628 {
629     AbstractTreeItem *parentItem;
630     parentItem = static_cast<AbstractTreeItem *>(parent.internalPointer());
631     if (!parentItem)
632         parentItem = rootItem;
633     qDebug() << "debug_rowsInserted:" << parent << parentItem << parent.data().toString() << rowCount(parent) << start << end;
634
635     QModelIndex child;
636     for (int i = start; i <= end; i++) {
637         child = parent.child(i, 0);
638         Q_ASSERT(parentItem->child(i));
639         qDebug() << "<<<" << i << child << child.data().toString();
640     }
641 }
642
643
644 void TreeModel::debug_rowsRemoved(const QModelIndex &parent, int start, int end)
645 {
646     qDebug() << "debug_rowsRemoved" << parent << parent.internalPointer() << parent.data().toString() << rowCount(parent) << start << end;
647 }
648
649
650 void TreeModel::debug_dataChanged(const QModelIndex &topLeft, const QModelIndex &bottomRight)
651 {
652     qDebug() << "debug_dataChanged" << topLeft << bottomRight;
653     QStringList displayData;
654     for (int row = topLeft.row(); row <= bottomRight.row(); row++) {
655         displayData = QStringList();
656         for (int column = topLeft.column(); column <= bottomRight.column(); column++) {
657             displayData << data(topLeft.sibling(row, column), Qt::DisplayRole).toString();
658         }
659         qDebug() << "  row:" << row << displayData;
660     }
661 }