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