2010-04-14 23:03:00 +02:00
|
|
|
/* This file is part of Clementine.
|
2010-11-20 14:27:10 +01:00
|
|
|
Copyright 2010, David Sansome <me@davidsansome.com>
|
2010-04-14 23:03:00 +02:00
|
|
|
|
|
|
|
Clementine 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 3 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
Clementine 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 Clementine. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef LIBRARYPLAYLISTITEM_H
|
|
|
|
#define LIBRARYPLAYLISTITEM_H
|
|
|
|
|
2010-05-10 23:50:31 +02:00
|
|
|
#include "core/song.h"
|
|
|
|
#include "playlist/playlistitem.h"
|
2010-04-14 23:03:00 +02:00
|
|
|
|
|
|
|
class LibraryPlaylistItem : public PlaylistItem {
|
|
|
|
public:
|
|
|
|
LibraryPlaylistItem(const QString& type);
|
|
|
|
LibraryPlaylistItem(const Song& song);
|
|
|
|
|
2010-08-03 20:57:17 +02:00
|
|
|
bool InitFromQuery(const SqlRow& query);
|
2010-04-14 23:03:00 +02:00
|
|
|
void Reload();
|
|
|
|
|
2010-07-10 21:45:29 +02:00
|
|
|
Song Metadata() const;
|
2010-06-18 16:26:46 +02:00
|
|
|
void SetMetadata(const Song& song) { song_ = song; }
|
2010-04-14 23:03:00 +02:00
|
|
|
|
|
|
|
QUrl Url() const;
|
|
|
|
|
2011-03-20 17:07:24 +01:00
|
|
|
bool IsLocalLibraryItem() const { return true; }
|
2010-10-17 23:56:19 +02:00
|
|
|
|
2010-04-14 23:03:00 +02:00
|
|
|
protected:
|
|
|
|
QVariant DatabaseValue(DatabaseColumn column) const;
|
|
|
|
|
2010-05-10 16:19:43 +02:00
|
|
|
protected:
|
2010-04-14 23:03:00 +02:00
|
|
|
Song song_;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // LIBRARYPLAYLISTITEM_H
|