File indexing completed on 2024-05-12 15:54:49

0001 /*
0002  * SPDX-FileCopyrightText: (C) 2021 Mikel Johnson <mikel5764@gmail.com>
0003  *
0004  * SPDX-License-Identifier: LGPL-2.0-or-later
0005  */
0006 
0007 #ifndef IMAGEFAVORITESMODEL_H
0008 #define IMAGEFAVORITESMODEL_H
0009 
0010 #include <QAbstractListModel>
0011 
0012 #include "openfilemodel.h"
0013 
0014 class ImageFavoritesModel : public OpenFileModel
0015 {
0016     Q_OBJECT
0017 
0018 public:
0019     explicit ImageFavoritesModel(QObject *parent = nullptr);
0020 
0021 private slots:
0022     void slotPopulate();
0023 };
0024 
0025 #endif // IMAGEFAVORITESMODEL_H