/src/libtomahawk/context/pages/RelatedArtistsContext.h

http://github.com/tomahawk-player/tomahawk · C Header · 69 lines · 34 code · 17 blank · 18 comment · 0 complexity · 7a640dc549da35702b8b379424c56fdb 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 RELATEDARTISTSCONTEXT_H
  20. #define RELATEDARTISTSCONTEXT_H
  21. #include <QGraphicsProxyWidget>
  22. #include "DllMacro.h"
  23. #include "Artist.h"
  24. #include "Album.h"
  25. #include "Query.h"
  26. #include "context/ContextPage.h"
  27. class TreeModel;
  28. class TreeView;
  29. class DLLEXPORT RelatedArtistsContext : public Tomahawk::ContextPage
  30. {
  31. Q_OBJECT
  32. public:
  33. RelatedArtistsContext();
  34. ~RelatedArtistsContext();
  35. virtual QGraphicsWidget* widget() { return m_proxy; }
  36. virtual Tomahawk::playlistinterface_ptr playlistInterface() const { return Tomahawk::playlistinterface_ptr(); }
  37. virtual QString title() const { return tr( "Related Artists" ); }
  38. virtual QString description() const { return QString(); }
  39. virtual bool jumpToCurrentTrack() { return false; }
  40. public slots:
  41. virtual void setArtist( const Tomahawk::artist_ptr& artist );
  42. virtual void setAlbum( const Tomahawk::album_ptr& album );
  43. virtual void setQuery( const Tomahawk::query_ptr& query );
  44. private slots:
  45. void onSimilarArtistsLoaded();
  46. private:
  47. TreeView* m_relatedView;
  48. TreeModel* m_relatedModel;
  49. QGraphicsProxyWidget* m_proxy;
  50. Tomahawk::artist_ptr m_artist;
  51. };
  52. #endif // RELATEDARTISTSCONTEXT_H