/src/libtomahawk/context/pages/TopTracksContext.h

http://github.com/tomahawk-player/tomahawk · C Header · 69 lines · 34 code · 17 blank · 18 comment · 0 complexity · 096c5b3973e73d657ebe4a8b1312a1eb 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 TOPTRACKSCONTEXT_H
  20. #define TOPTRACKSCONTEXT_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 PlaylistModel;
  28. class PlaylistView;
  29. class DLLEXPORT TopTracksContext : public Tomahawk::ContextPage
  30. {
  31. Q_OBJECT
  32. public:
  33. TopTracksContext();
  34. ~TopTracksContext();
  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( "Top Hits" ); }
  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 onTracksFound( const QList<Tomahawk::query_ptr>& queries, Tomahawk::ModelMode mode );
  46. private:
  47. PlaylistView* m_topHitsView;
  48. PlaylistModel* m_topHitsModel;
  49. QGraphicsProxyWidget* m_proxy;
  50. Tomahawk::artist_ptr m_artist;
  51. };
  52. #endif // TOPTRACKSCONTEXT_H