Files
cantata/playlists/playlistspage.h
2018-01-08 22:51:48 +01:00

55 lines
1.5 KiB
C++

/*
* Cantata
*
* Copyright (c) 2011-2018 Craig Drummond <craig.p.drummond@gmail.com>
*
* ----
*
* 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; see the file COPYING. If not, write to
* the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
* Boston, MA 02110-1301, USA.
*/
#ifndef PLAYLISTS_PAGE_H
#define PLAYLISTS_PAGE_H
#include "widgets/multipagewidget.h"
class Action;
class StoredPlaylistsPage;
class DynamicPlaylistsPage;
class SmartPlaylistsPage;
class PlaylistsPage : public MultiPageWidget
{
Q_OBJECT
public:
PlaylistsPage(QWidget *p);
~PlaylistsPage() override;
#ifdef ENABLE_DEVICES_SUPPORT
void addSelectionToDevice(const QString &udi) override;
#endif
Q_SIGNALS:
void addToDevice(const QString &from, const QString &to, const QList<Song> &songs);
private:
StoredPlaylistsPage *stored;
DynamicPlaylistsPage *dynamic;
SmartPlaylistsPage *smart;
};
#endif