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{
40 class LocalPathPlaylistCreator;
41
43 {
44 public:
45 virtual ~Accessor() = default;
46
47 [[nodiscard]] virtual int activeIndex() const = 0;
48 [[nodiscard]] virtual PlaylistPtr activePlaylist() = 0;
49
50 [[nodiscard]] virtual int currentIndex() const = 0;
51 virtual void setCurrentIndex(int playlistIndex) = 0;
52
53 [[nodiscard]] virtual PlaylistPtr playlist(int playlistIndex) = 0;
54 [[nodiscard]] virtual PlaylistPtr playlistById(int playlistId) = 0;
55
56 [[nodiscard]] virtual int count() const = 0;
57 };
58
59 class Creator
60 {
61 public:
62 virtual ~Creator() = default;
63
64 [[nodiscard]] virtual PlaylistPtr playlist(int playlistIndex) = 0;
65 [[nodiscard]] virtual PlaylistPtr playlistById(int playlistId) = 0;
66
67 [[nodiscard]] virtual QString requestNewPlaylistName(const QString& prefix = QString()) const = 0;
68
69 virtual int
70 createPlaylist(const MetaDataList& tracks, const QString& name = QString(), bool temporary = true,
71 bool isLocked = false) = 0;
72 virtual int
73 createPlaylist(const QStringList& pathList, const QString& name = QString(), bool temporary = true,
74 LocalPathPlaylistCreator* playlistFromPathCreator = nullptr) = 0;
75 virtual int createPlaylist(const CustomPlaylist& customPlaylist) = 0;
76 virtual int createEmptyPlaylist(bool override = false) = 0;
77 virtual int createCommandLinePlaylist(const QStringList& pathList,
78 LocalPathPlaylistCreator* playlistFromPathCreator) = 0;
79 };
80}
81#endif //SAYONARA_PLAYER_PLAYLISTINTERFACE_H
Definition: CustomPlaylist.h:30
Definition: MetaDataList.h:34
Definition: PlaylistInterface.h:43
Definition: PlaylistInterface.h:60
Definition: LocalPathPlaylistCreator.h:36