Create a media model for all the media message in the timeline and then setup `NeoChatMaximizeComponent` so that it can use the media model to scroll through all loaded images and video in the current room. Depends upon libraries/kirigami-addons!105 FEATURE: 467411
81 lines
2.5 KiB
C++
81 lines
2.5 KiB
C++
// SPDX-FileCopyrightText: 2022 Tobias Fella <tobias.fella@kde.org>
|
|
// SPDX-License-Identifier: LGPL-2.0-or-later
|
|
|
|
#pragma once
|
|
|
|
#include "messageeventmodel.h"
|
|
#include <QSortFilterProxyModel>
|
|
|
|
/**
|
|
* @class CollapseStateProxyModel
|
|
*
|
|
* This model aggregates multiple sequential state events into a single entry.
|
|
*
|
|
* Events are only aggregated if they happened on the same day.
|
|
*
|
|
* @sa MessageEventModel
|
|
*/
|
|
class CollapseStateProxyModel : public QSortFilterProxyModel
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
/**
|
|
* @brief Defines the model roles.
|
|
*/
|
|
enum Roles {
|
|
AggregateDisplayRole = MessageEventModel::LastRole + 1, /**< Single line aggregation of all the state events. */
|
|
StateEventsRole, /**< List of state events in the aggregated state. */
|
|
AuthorListRole, /**< List of the first 5 unique authors of the aggregated state event. */
|
|
ExcessAuthorsRole, /**< The number of unique authors beyond the first 5. */
|
|
LastRole, // Keep this last
|
|
};
|
|
|
|
/**
|
|
* @brief Whether a row should be shown out or not.
|
|
*
|
|
* @sa QSortFilterProxyModel::filterAcceptsRow
|
|
*/
|
|
[[nodiscard]] bool filterAcceptsRow(int source_row, const QModelIndex &source_parent) const override;
|
|
|
|
/**
|
|
* @brief Get the given role value at the given index.
|
|
*
|
|
* @sa QSortFilterProxyModel::data
|
|
*/
|
|
[[nodiscard]] QVariant data(const QModelIndex &idx, int role = Qt::DisplayRole) const override;
|
|
|
|
/**
|
|
* @brief Returns a mapping from Role enum values to role names.
|
|
*
|
|
* @sa Roles, QAbstractProxyModel::roleNames()
|
|
*/
|
|
[[nodiscard]] QHash<int, QByteArray> roleNames() const override;
|
|
|
|
private:
|
|
/**
|
|
* @brief Aggregation of the text of consecutive state events starting at row.
|
|
*
|
|
* If state events happen on different days they will be split into two aggregate
|
|
* events.
|
|
*/
|
|
[[nodiscard]] QString aggregateEventToString(int row) const;
|
|
|
|
/**
|
|
* @brief Return a list of consecutive state events starting at row.
|
|
*
|
|
* If state events happen on different days they will be split into two aggregate
|
|
* events.
|
|
*/
|
|
[[nodiscard]] QVariantList stateEventsList(int row) const;
|
|
|
|
/**
|
|
* @brief List of the first 5 unique authors for the aggregate state events starting at row.
|
|
*/
|
|
[[nodiscard]] QVariantList authorList(int row) const;
|
|
|
|
/**
|
|
* @brief The number of unique authors beyond the first 5 for the aggregate state events starting at row.
|
|
*/
|
|
[[nodiscard]] QString excessAuthors(int row) const;
|
|
};
|