Sayonara Player
Loading...
Searching...
No Matches
PlaylistInterface.h
1/* ${CLASS_NAME}.h */
2/*
3 * Copyright (C) 2011-2024 Michael Lugmair
4 *
5 * This file is part of sayonara player
6 *
7 * This program is free software: you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation, either version 3 of the License, or
10 * (at your option) any later version.
11
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
16
17 * You should have received a copy of the GNU General Public License
18 * along with this program. If not, see <http://www.gnu.org/licenses/>.
19 */
20#ifndef SAYONARA_PLAYER_PLAYLISTINTERFACE_H
21#define SAYONARA_PLAYER_PLAYLISTINTERFACE_H
22
23#include <QString>
24
25#include <memory>
26
27class CustomPlaylist;
28class MetaDataList;
29class QStringList;
30
31namespace Playlist
32{
33 class Playlist;
34}
35
36using PlaylistPtr = std::shared_ptr<::Playlist::Playlist>;
37
38namespace Playlist
39{
41
43 {
44 public:
45 virtual ~Accessor() = default;
46
47 [[nodiscard]] virtual int activeIndex() const = 0;
48
49 [[nodiscard]] virtual int currentIndex() const = 0;
50 virtual void setCurrentIndex(int playlistIndex) = 0;
51
52 [[nodiscard]] virtual PlaylistPtr playlist(int playlistIndex) = 0;
53 [[nodiscard]] virtual PlaylistPtr playlistById(int playlistId) = 0;
54
55 [[nodiscard]] virtual int count() const = 0;
56 };
57
58 class Creator
59 {
60 public:
61 virtual ~Creator() = default;
62
63 [[nodiscard]] virtual PlaylistPtr playlist(int playlistIndex) = 0;
64 [[nodiscard]] virtual PlaylistPtr playlistById(int playlistId) = 0;
65
66 [[nodiscard]] virtual QString requestNewPlaylistName(const QString& prefix = QString()) const = 0;
67
68 virtual int
69 createPlaylist(const MetaDataList& tracks, const QString& name = QString(), bool temporary = true,
70 bool isLocked = false) = 0;
71 virtual int
72 createPlaylist(const QStringList& pathList, const QString& name = QString(), bool temporary = true,
73 LocalPathPlaylistCreator* playlistFromPathCreator = nullptr) = 0;
74 virtual int createPlaylist(const CustomPlaylist& customPlaylist) = 0;
75 virtual int createEmptyPlaylist(bool override = false) = 0;
76 virtual int createCommandLinePlaylist(const QStringList& pathList,
77 LocalPathPlaylistCreator* playlistFromPathCreator) = 0;
78 };
79}
80#endif //SAYONARA_PLAYER_PLAYLISTINTERFACE_H
Definition CustomPlaylist.h:30
Definition MetaDataList.h:34
Definition PlaylistInterface.h:43
Definition PlaylistInterface.h:59
Definition LocalPathPlaylistCreator.h:36
Definition Playlist.h:49