Warning, file /network/ruqola/src/core/model/rocketchataccountfilterproxymodel.h was not indexed or was modified since last indexation (in which case cross-reference links may be missing, inaccurate or erroneous).
0001 /* 0002 SPDX-FileCopyrightText: 2018-2024 Laurent Montel <montel@kde.org> 0003 0004 SPDX-License-Identifier: LGPL-2.0-or-later 0005 */ 0006 0007 #pragma once 0008 0009 #include <QSortFilterProxyModel> 0010 0011 #include "libruqolacore_export.h" 0012 0013 class LIBRUQOLACORE_EXPORT RocketChatAccountFilterProxyModel : public QSortFilterProxyModel 0014 { 0015 Q_OBJECT 0016 public: 0017 explicit RocketChatAccountFilterProxyModel(QObject *parent = nullptr); 0018 0019 ~RocketChatAccountFilterProxyModel() override; 0020 0021 [[nodiscard]] QStringList accountOrder() const; 0022 void setAccountOrder(const QStringList &newAccountOrder); 0023 0024 protected: 0025 [[nodiscard]] bool lessThan(const QModelIndex &left, const QModelIndex &right) const override; 0026 0027 private: 0028 QStringList mAccountOrder; 0029 };