qt: playlist: use item title if available
[vlc.git] / modules / gui / qt / medialibrary / mlgenremodel.hpp
blobf0e781a28dff71cb00eee03c8714b0c5181afb30
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 MLGENREMODEL_HPP
20 #define MLGENREMODEL_HPP
22 #ifdef HAVE_CONFIG_H
23 #include "config.h"
24 #endif
26 #include <memory>
27 #include <QObject>
28 #include "mlbasemodel.hpp"
29 #include "mlgenre.hpp"
31 class MLGenreModel : public MLBaseModel
33 Q_OBJECT
35 public:
36 enum Roles
38 GENRE_ID = Qt::UserRole + 1,
39 GENRE_NAME,
40 GENRE_NB_TRACKS,
41 GENRE_ARTISTS,
42 GENRE_TRACKS,
43 GENRE_ALBUMS,
44 GENRE_COVER
47 public:
48 explicit MLGenreModel(QObject *parent = nullptr);
49 virtual ~MLGenreModel() = default;
51 QHash<int, QByteArray> roleNames() const override;
52 QVariant data(const QModelIndex &index, int role) const override;
54 protected:
55 ListCacheLoader<std::unique_ptr<MLItem>> *createLoader() const override;
57 private:
58 void onVlcMlEvent(const MLEvent &event) override;
59 void thumbnailUpdated(int idx) override;
60 vlc_ml_sorting_criteria_t roleToCriteria(int role) const override;
61 vlc_ml_sorting_criteria_t nameToCriteria(QByteArray name) const override;
64 static QHash<QByteArray, vlc_ml_sorting_criteria_t> M_names_to_criteria;
66 struct Loader : public BaseLoader
68 Loader(const MLGenreModel &model) : BaseLoader(model) {}
69 size_t count() const override;
70 std::vector<std::unique_ptr<MLItem>> load(size_t index, size_t count) const override;
75 #endif // MLGENREMODEL_HPP