Clementine-audio-player-Mac.../src/playlistitem.h

42 lines
1015 B
C
Raw Normal View History

2009-12-24 20:16:07 +01:00
#ifndef PLAYLISTITEM_H
#define PLAYLISTITEM_H
#include <QStandardItem>
#include <QUrl>
class QSettings;
class PlaylistItem {
public:
PlaylistItem() {}
virtual ~PlaylistItem() {}
static PlaylistItem* NewFromType(const QString& type);
enum Type {
Type_Song,
2009-12-26 22:35:45 +01:00
Type_Radio,
2009-12-24 20:16:07 +01:00
};
virtual Type type() const = 0;
QString type_string() const;
virtual void Save(QSettings& settings) const = 0;
virtual void Restore(const QSettings& settings) = 0;
virtual QString Title() const = 0;
virtual QString Artist() const = 0;
virtual QString Album() const = 0;
virtual int Length() const = 0;
virtual int Track() const = 0;
2009-12-26 22:35:45 +01:00
// If the item needs to do anything special before it can play (eg. start
// streaming the radio stream), then it should implement StartLoading() and
// return true. If it returns false then the URL from Url() will be passed
// directly to xine instead.
virtual bool StartLoading() { return false; }
2009-12-24 20:16:07 +01:00
virtual QUrl Url() = 0;
};
#endif // PLAYLISTITEM_H