/src/libtomahawk/database/DatabaseCommand_TrackAttributes.h

http://github.com/tomahawk-player/tomahawk · C Header · 56 lines · 26 code · 11 blank · 19 comment · 0 complexity · f13eff4267b65cdb7acfe73e776dfb51 MD5 · raw file

  1. /* === This file is part of Tomahawk Player - <http://tomahawk-player.org> ===
  2. *
  3. * Copyright 2010-2011, Leo Franchi <lfranchi@kde.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 DATABASECOMMAND_TRACKATTRIBUTES_H
  19. #define DATABASECOMMAND_TRACKATTRIBUTES_H
  20. #include "Typedefs.h"
  21. #include "DatabaseCommand.h"
  22. #include "DatabaseCommand_CollectionAttributes.h"
  23. #include "DatabaseCommand_SetTrackAttributes.h"
  24. #include <QByteArray>
  25. namespace Tomahawk
  26. {
  27. class DatabaseCommand_TrackAttributes : public DatabaseCommand
  28. {
  29. Q_OBJECT
  30. public:
  31. // Get all tracks with this attribute
  32. DatabaseCommand_TrackAttributes( DatabaseCommand_SetTrackAttributes::AttributeType type );
  33. // Get the specific tracks with this attribute
  34. DatabaseCommand_TrackAttributes( DatabaseCommand_SetTrackAttributes::AttributeType type, const QList< Tomahawk::QID > ids );
  35. virtual void exec( DatabaseImpl* lib );
  36. virtual bool doesMutates() const { return false; }
  37. virtual QString commandname() const { return "trackattributes"; }
  38. signals:
  39. void trackAttributes( PairList );
  40. private:
  41. DatabaseCommand_SetTrackAttributes::AttributeType m_type;
  42. QList< Tomahawk::QID > m_ids;
  43. };
  44. }
  45. #endif