qt: notify dataChanged when a thumbnail is updated from the medialibrary
[vlc.git] / modules / gui / qt / medialibrary / mlartistmodel.hpp
blob66ca9b35ce6960167bedef22f70cd896b7630d1a
1 /*****************************************************************************
2 * Copyright (C) 2019 VLC authors and VideoLAN
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation; either version 2 of the License, or
7 * ( at your option ) any later version.
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write to the Free Software
16 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
17 *****************************************************************************/
19 #ifndef MLARTISTMODEL_HPP
20 #define MLARTISTMODEL_HPP
22 #ifdef HAVE_CONFIG_H
23 #include "config.h"
24 #endif
26 #include <QObject>
27 #include "mlbasemodel.hpp"
28 #include "mlartist.hpp"
30 class MLArtistModel : public MLSlidingWindowModel<MLArtist>
32 Q_OBJECT
34 public:
35 explicit MLArtistModel(QObject *parent = nullptr);
36 virtual ~MLArtistModel() = default;
38 QVariant data(const QModelIndex &index, int role) const override;
39 QHash<int, QByteArray> roleNames() const override;
41 private:
42 std::vector<std::unique_ptr<MLArtist>> fetch() override;
43 size_t countTotalElements() const override;
44 vlc_ml_sorting_criteria_t roleToCriteria(int role) const override;
45 vlc_ml_sorting_criteria_t nameToCriteria(QByteArray name) const override;
46 QByteArray criteriaToName(vlc_ml_sorting_criteria_t criteria) const override;
47 virtual void onVlcMlEvent(const vlc_ml_event_t* event) override;
48 void thumbnailUpdated(int idx) override;
50 static QHash<QByteArray, vlc_ml_sorting_criteria_t> M_names_to_criteria;
53 #endif // MLARTISTMODEL_HPP