Warning, file /network/ruqola/src/core/model/notificationhistorymodelfilterproxymodel.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: 2022-2024 Laurent Montel <montel@kde.org> 0003 0004 SPDX-License-Identifier: LGPL-2.0-or-later 0005 */ 0006 0007 #pragma once 0008 0009 #include "model/sortfilterproxymodelbase.h" 0010 0011 #include "libruqolacore_export.h" 0012 0013 class LIBRUQOLACORE_EXPORT NotificationHistoryModelFilterProxyModel : public SortFilterProxyModelBase 0014 { 0015 Q_OBJECT 0016 public: 0017 explicit NotificationHistoryModelFilterProxyModel(QObject *parent = nullptr); 0018 ~NotificationHistoryModelFilterProxyModel() override; 0019 0020 void setAccountNameFilter(const QString &newAccountNameFilter); 0021 0022 protected: 0023 [[nodiscard]] bool filterAcceptsRow(int source_row, const QModelIndex &source_parent) const override; 0024 0025 private: 0026 QString mAccountNameFilter; 0027 };