/src/libtomahawk/database/DatabaseCommand_RenamePlaylist.h

http://github.com/tomahawk-player/tomahawk · C Header · 64 lines · 32 code · 15 blank · 17 comment · 0 complexity · db8afd0a9a09803715c66c2da678f920 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 DATABASECOMMAND_RENAMEPLAYLIST_H
  19. #define DATABASECOMMAND_RENAMEPLAYLIST_H
  20. #include "Typedefs.h"
  21. #include "DatabaseCommandLoggable.h"
  22. #include "DllMacro.h"
  23. namespace Tomahawk
  24. {
  25. class DatabaseImpl;
  26. class DLLEXPORT DatabaseCommand_RenamePlaylist : public DatabaseCommandLoggable
  27. {
  28. Q_OBJECT
  29. Q_PROPERTY( QString playlistguid READ playlistguid WRITE setPlaylistguid )
  30. Q_PROPERTY( QString playlistTitle READ playlistTitle WRITE setPlaylistTitle )
  31. public:
  32. explicit DatabaseCommand_RenamePlaylist( QObject* parent = 0 )
  33. : DatabaseCommandLoggable( parent )
  34. {}
  35. explicit DatabaseCommand_RenamePlaylist( const Tomahawk::source_ptr& source, const QString& playlistguid, const QString& playlistTitle );
  36. QString commandname() const { return "renameplaylist"; }
  37. virtual void exec( DatabaseImpl* lib );
  38. virtual void postCommitHook();
  39. virtual bool doesMutates() const { return true; }
  40. QString playlistguid() const { return m_playlistguid; }
  41. void setPlaylistguid( const QString& s ) { m_playlistguid = s; }
  42. QString playlistTitle() const { return m_playlistTitle; }
  43. void setPlaylistTitle( const QString& s ) { m_playlistTitle = s; }
  44. private:
  45. QString m_playlistguid;
  46. QString m_playlistTitle;
  47. };
  48. }
  49. #endif // DATABASECOMMAND_RENAMEPLAYLIST_H