2010-03-24 00:11:46 +01:00
|
|
|
/* This file is part of Clementine.
|
|
|
|
|
|
|
|
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/>.
|
|
|
|
*/
|
|
|
|
|
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),
|
2010-06-16 18:11:23 +02:00
|
|
|
service(NULL),
|
|
|
|
use_song_loader(false)
|
2009-12-30 01:31:00 +01:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
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);
|
|
|
|
}
|