Newer
Older
/*****************************************************************************
* Copyright (C) 2019 VLC authors and VideoLAN
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* ( at your option ) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
*****************************************************************************/
#ifndef ML_FOLDERS_MODEL_HPP
#define ML_FOLDERS_MODEL_HPP
#ifdef HAVE_CONFIG_H
# include "config.h"
#endif
#include "qt.hpp"
#include <QAbstractListModel>
#include <QUrl>
#include <QList>
class MLFoldersBaseModel : public QAbstractListModel
Q_PROPERTY(MainCtx* ctx READ getCtx WRITE setCtx NOTIFY ctxChanged FINAL)
enum Roles
{
Banned = Qt::UserRole + 1,
DisplayUrl,
MRL
};
enum Operation
{
Add,
Remove,
Ban,
Unban
};
MLFoldersBaseModel( QObject *parent = nullptr );
void setCtx(MainCtx* ctx);
inline MainCtx* getCtx() { return m_ctx; }
int rowCount( QModelIndex const &parent = {} ) const override;
QVariant data( QModelIndex const &index , const int role = Qt::DisplayRole ) const override;
QHash<int, QByteArray> roleNames() const override;
virtual void remove( const QUrl &mrl ) = 0;
virtual void add( const QUrl &mrl ) = 0;
void removeAt( int index );
void operationFailed( int op, QUrl url ) const;
void onMLEntryPointModified(QPrivateSignal);
EntryPoint(const vlc_ml_folder_t &entryPoint );
bool banned;
};
virtual std::vector<EntryPoint> entryPoints() const = 0;
virtual bool failed( const vlc_ml_event_t* event ) const = 0; // will be called outside the main thread
static void onMlEvent( void* data , const vlc_ml_event_t* event );
void update();
using EventCallbackPtr = std::unique_ptr<vlc_ml_event_callback_t, std::function<void( vlc_ml_event_callback_t* )>>;
std::vector<EntryPoint> m_mrls;
MediaLib *m_mediaLib = nullptr;
class MLFoldersModel : public MLFoldersBaseModel
{
public:
using MLFoldersBaseModel::MLFoldersBaseModel;
void remove( const QUrl &mrl ) override;
void add( const QUrl &mrl ) override;
private:
std::vector<EntryPoint> entryPoints() const final;
bool failed( const vlc_ml_event_t* event ) const override;
class MLBannedFoldersModel : public MLFoldersBaseModel
{
public:
using MLFoldersBaseModel::MLFoldersBaseModel;
void remove( const QUrl &mrl ) override;
void add( const QUrl &mrl ) override;
private:
std::vector<EntryPoint> entryPoints() const final;
bool failed( const vlc_ml_event_t* event ) const override;