#pragma once #include class PlaylistManager : public QObject { Q_OBJECT public: enum PlaylistType { PL_USERPLAYLIST, // Regular playlist, managed by user. PL_SAMEFOLDER // PlaylistManager managed playlist, loaded from files from same folder. }; explicit PlaylistManager(PlaylistType type = PL_USERPLAYLIST, QObject *parent = nullptr); ~PlaylistManager(); void setPlaylistType(PlaylistType type); PlaylistType playlistType() const; QStringList autoLoadFilterSuffix() const; void setAutoLoadFilterSuffix(const QStringList &nameFilters); void clear(); void setPlaylist(const QList & urls); void setCurrentFile(const QString & filePath); void setCurrentIndex(int index); int appendFile(const QString & filePath); int indexOf(const QString & filePath); std::tuple previousFile() const; std::tuple nextFile() const; std::tuple currentFile() const; std::tuple currentFileUrl() const; static QList convertToUrlList(const QStringList & files); signals: void loaded(int length); private: QList m_playlist; PlaylistType m_type; QString m_currentDir; int m_currentIndex = -1; QStringList m_autoLoadSuffix = {}; };