/* This file is part of Clementine. Copyright 2010, David Sansome 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 RADIOVIEWCONTAINER_H #define RADIOVIEWCONTAINER_H #include #include class LibraryFilterWidget; class RadioModel; class RadioService; class RadioView; class Ui_RadioViewContainer; class QTimeLine; class QModelIndex; class RadioViewContainer : public QWidget { Q_OBJECT public: RadioViewContainer(QWidget* parent = 0); ~RadioViewContainer(); static const int kAnimationDuration; void SetModel(RadioModel* model); RadioView* tree() const; private slots: void Collapsed(const QModelIndex& index); void Expanded(const QModelIndex& index); void CurrentIndexChanged(const QModelIndex& index); void SetHeaderHeight(int height); private: void ServiceChanged(const QModelIndex& index); void SetHeaderVisible(QWidget* header, bool visible); private: Ui_RadioViewContainer* ui_; RadioModel* model_; RadioService* current_service_; QWidget* current_header_; struct HeaderData { bool visible_; QTimeLine* animation_; }; QMap headers_; }; #endif // RADIOVIEWCONTAINER_H