/src/libtomahawk/widgets/infowidgets/sourceinfowidget.h

http://github.com/tomahawk-player/tomahawk · C Header · 79 lines · 42 code · 19 blank · 18 comment · 0 complexity · 335b6709537c009ca1528daab188add2 MD5 · raw file

  1. /* === This file is part of Tomahawk Player - <http://tomahawk-player.org> ===
  2. *
  3. * Copyright 2010-2011, Christian Muehlhaeuser <muesli@tomahawk-player.org>
  4. * Copyright 2010-2011, Jeff Mitchell <jeff@tomahawk-player.org>
  5. *
  6. * Tomahawk is free software: you can redistribute it and/or modify
  7. * it under the terms of the GNU General Public License as published by
  8. * the Free Software Foundation, either version 3 of the License, or
  9. * (at your option) any later version.
  10. *
  11. * Tomahawk is distributed in the hope that it will be useful,
  12. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  14. * GNU General Public License for more details.
  15. *
  16. * You should have received a copy of the GNU General Public License
  17. * along with Tomahawk. If not, see <http://www.gnu.org/licenses/>.
  18. */
  19. #ifndef SOURCEINFOWIDGET_H
  20. #define SOURCEINFOWIDGET_H
  21. #include <QWidget>
  22. #include "PlaylistInterface.h"
  23. #include "ViewPage.h"
  24. #include "DllMacro.h"
  25. class AlbumModel;
  26. class CollectionFlatModel;
  27. class RecentlyAddedModel;
  28. class RecentlyPlayedModel;
  29. namespace Ui
  30. {
  31. class SourceInfoWidget;
  32. }
  33. class DLLEXPORT SourceInfoWidget : public QWidget, public Tomahawk::ViewPage
  34. {
  35. Q_OBJECT
  36. public:
  37. SourceInfoWidget( const Tomahawk::source_ptr& source, QWidget* parent = 0 );
  38. ~SourceInfoWidget();
  39. virtual QWidget* widget() { return this; }
  40. virtual Tomahawk::playlistinterface_ptr playlistInterface() const { return Tomahawk::playlistinterface_ptr(); }
  41. virtual QString title() const { return m_title; }
  42. virtual QString description() const { return m_description; }
  43. virtual QPixmap pixmap() const { return m_pixmap; }
  44. virtual bool jumpToCurrentTrack() { return false; }
  45. protected:
  46. void changeEvent( QEvent* e );
  47. private slots:
  48. void loadRecentAdditions();
  49. void onCollectionChanged();
  50. private:
  51. Ui::SourceInfoWidget *ui;
  52. RecentlyAddedModel* m_recentTracksModel;
  53. RecentlyPlayedModel* m_historyModel;
  54. AlbumModel* m_recentAlbumModel;
  55. Tomahawk::source_ptr m_source;
  56. QString m_title;
  57. QString m_description;
  58. QPixmap m_pixmap;
  59. };
  60. #endif // SOURCEINFOWIDGET_H