/src/libtomahawk/database/DatabaseCommand_Resolve.h
http://github.com/tomahawk-player/tomahawk · C Header · 63 lines · 32 code · 14 blank · 17 comment · 0 complexity · 3096e48ca4b48ddc429f7f7a1812e75c MD5 · raw file
- /* === This file is part of Tomahawk Player - <http://tomahawk-player.org> ===
- *
- * Copyright 2010-2011, Christian Muehlhaeuser <muesli@tomahawk-player.org>
- *
- * Tomahawk is free software: you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation, either version 3 of the License, or
- * (at your option) any later version.
- *
- * Tomahawk is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with Tomahawk. If not, see <http://www.gnu.org/licenses/>.
- */
- #ifndef DATABASECOMMAND_RESOLVE_H
- #define DATABASECOMMAND_RESOLVE_H
- #include "DatabaseCommand.h"
- #include "DatabaseImpl.h"
- #include "Result.h"
- #include "Artist.h"
- #include "Album.h"
- #include <QVariant>
- #include "DllMacro.h"
- namespace Tomahawk
- {
- class DLLEXPORT DatabaseCommand_Resolve : public DatabaseCommand
- {
- Q_OBJECT
- public:
- explicit DatabaseCommand_Resolve( const Tomahawk::query_ptr& query );
- virtual ~DatabaseCommand_Resolve();
- QString commandname() const override { return "dbresolve"; }
- bool doesMutates() const override { return false; }
- void exec( DatabaseImpl *lib ) override;
- signals:
- void results( Tomahawk::QID qid, QList<Tomahawk::result_ptr> results );
- void albums( Tomahawk::QID qid, QList<Tomahawk::album_ptr> albums );
- void artists( Tomahawk::QID qid, QList<Tomahawk::artist_ptr> artists );
- private:
- DatabaseCommand_Resolve();
- void fullTextResolve( DatabaseImpl* lib );
- void resolve( DatabaseImpl* lib );
- Tomahawk::query_ptr m_query;
- };
- }
- #endif // DATABASECOMMAND_RESOLVE_H