2009-12-26 16:13:38 +01:00
|
|
|
#include "radioitem.h"
|
2009-12-30 00:17:54 +01:00
|
|
|
#include "radioservice.h"
|
2009-12-26 16:13:38 +01:00
|
|
|
|
2009-12-30 01:31:00 +01:00
|
|
|
RadioItem::RadioItem(SimpleTreeModel<RadioItem> *model)
|
|
|
|
: SimpleTreeItem<RadioItem>(Type_Root, model),
|
|
|
|
service(NULL)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2009-12-26 16:13:38 +01:00
|
|
|
RadioItem::RadioItem(RadioService* _service, int type, const QString& key,
|
|
|
|
RadioItem* parent)
|
|
|
|
: SimpleTreeItem<RadioItem>(type, key, parent),
|
2009-12-26 22:35:45 +01:00
|
|
|
service(_service),
|
|
|
|
playable(false)
|
2009-12-26 16:13:38 +01:00
|
|
|
{
|
|
|
|
}
|
2009-12-30 00:17:54 +01:00
|
|
|
|
|
|
|
QUrl RadioItem::Url() const {
|
|
|
|
return service->UrlForItem(this);
|
|
|
|
}
|
|
|
|
|
|
|
|
QString RadioItem::Title() const {
|
|
|
|
return service->TitleForItem(this);
|
|
|
|
}
|
2010-01-18 03:23:55 +01:00
|
|
|
|
|
|
|
QString RadioItem::Artist() const {
|
|
|
|
return service->ArtistForItem(this);
|
|
|
|
}
|