blob: 6681ada13768674a2337bba63fd344aa7cfbee4a [file] [log] [blame]
agsantos655d8e22020-08-10 17:36:47 -04001/**
2 * Copyright (C) 2020 by Savoir-faire Linux
agsantosdc25dfa2020-08-28 12:04:45 -04003 * Author: Aline Gondim Santos <aline.gondimsantos@savoirfairelinux.com>
agsantos655d8e22020-08-10 17:36:47 -04004 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 3 of the License, or
8 * (at your option) any later version.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with this program. If not, see <http://www.gnu.org/licenses/>.
17 */
18
19#pragma once
20
21#include "qmladapterbase.h"
22//#include "smartlistmodel.h"
23#include "mediahandleritemlistmodel.h"
agsantosdc25dfa2020-08-28 12:04:45 -040024#include "mediahandlerlistpreferencemodel.h"
25#include "preferenceitemlistmodel.h"
agsantos655d8e22020-08-10 17:36:47 -040026
27#include <QObject>
28#include <QSortFilterProxyModel>
29#include <QString>
30
31class MediaHandlerAdapter : public QmlAdapterBase
32{
33 Q_OBJECT
34
35public:
agsantosdc25dfa2020-08-28 12:04:45 -040036 explicit MediaHandlerAdapter(QObject* parent = nullptr);
agsantos655d8e22020-08-10 17:36:47 -040037 ~MediaHandlerAdapter();
38
39 Q_INVOKABLE QVariant getMediaHandlerSelectableModel();
agsantosdc25dfa2020-08-28 12:04:45 -040040 Q_INVOKABLE QVariant getMediaHandlerPreferencesModel(QString pluginId, QString mediaHandlerName);
41 Q_INVOKABLE QVariant getMediaHandlerPreferencesSelectableModel(QString pluginId);
agsantos655d8e22020-08-10 17:36:47 -040042
43private:
44 void initQmlObject();
45
46 std::unique_ptr<MediaHandlerItemListModel> mediaHandlerListModel_;
agsantosdc25dfa2020-08-28 12:04:45 -040047 std::unique_ptr<PreferenceItemListModel> mediaHandlerPreferenceItemListModel_;
48 std::unique_ptr<MediaHandlerListPreferenceModel> mediaHandlerListPreferenceModel_;
agsantos655d8e22020-08-10 17:36:47 -040049};