/src/libtomahawk/database/DatabaseResolver.h

http://github.com/tomahawk-player/tomahawk · C Header · 52 lines · 25 code · 10 blank · 17 comment · 0 complexity · 7751bed6c9202ea2ca7829cf84d53319 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. *
  5. * Tomahawk is free software: you can redistribute it and/or modify
  6. * it under the terms of the GNU General Public License as published by
  7. * the Free Software Foundation, either version 3 of the License, or
  8. * (at your option) any later version.
  9. *
  10. * Tomahawk is distributed in the hope that it will be useful,
  11. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  13. * GNU General Public License for more details.
  14. *
  15. * You should have received a copy of the GNU General Public License
  16. * along with Tomahawk. If not, see <http://www.gnu.org/licenses/>.
  17. */
  18. #ifndef DATABASERESOLVER_H
  19. #define DATABASERESOLVER_H
  20. #include "resolvers/Resolver.h"
  21. #include "Result.h"
  22. #include "Artist.h"
  23. #include "Album.h"
  24. #include "DllMacro.h"
  25. class DLLEXPORT DatabaseResolver : public Tomahawk::Resolver
  26. {
  27. Q_OBJECT
  28. public:
  29. explicit DatabaseResolver( int weight );
  30. QString name() const override;
  31. virtual unsigned int weight() const override{ return m_weight; }
  32. virtual unsigned int timeout() const override{ return 0; }
  33. public slots:
  34. virtual void resolve( const Tomahawk::query_ptr& query ) override;
  35. private slots:
  36. void gotResults( const Tomahawk::QID qid, QList< Tomahawk::result_ptr> results );
  37. void gotAlbums( const Tomahawk::QID qid, QList< Tomahawk::album_ptr> albums );
  38. void gotArtists( const Tomahawk::QID qid, QList< Tomahawk::artist_ptr> artists );
  39. private:
  40. int m_weight;
  41. };
  42. #endif // DATABASERESOLVER_H