/* 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 . */ #ifndef SAVEDRADIO_H #define SAVEDRADIO_H #include "radioservice.h" #include class QMenu; class AddStreamDialog; class SavedRadio : public RadioService { Q_OBJECT public: SavedRadio(RadioModel* parent); ~SavedRadio(); enum ItemType { Type_Stream = 2000, }; static const char* kServiceName; static const char* kSettingsGroup; RadioItem* CreateRootItem(RadioItem* parent); void LazyPopulate(RadioItem* item); void ShowContextMenu(RadioItem* item, const QModelIndex& index, const QPoint& global_pos); void Add(const QUrl& url, const QString& name = QString()); signals: void ShowAddStreamDialog(); private slots: void AddToPlaylist(); void Remove(); void Edit(); private: struct Stream { Stream(const QUrl& url, const QString& name = QString()) : url_(url), name_(name) {} // For QList::contains bool operator ==(const Stream& other) const { return url_ == other.url_; } QUrl url_; QString name_; }; void LoadStreams(); void SaveStreams(); RadioItem* ItemForStream(const Stream& stream, RadioItem* parent); private: RadioItem* root_; QMenu* context_menu_; RadioItem* context_item_; QAction* add_action_; QAction* remove_action_; QAction* edit_action_; QList streams_; boost::scoped_ptr edit_dialog_; }; #endif // SAVEDRADIO_H