/src/libtomahawk/infosystem/infoplugins/generic/musicbrainzPlugin.h
http://github.com/tomahawk-player/tomahawk · C Header · 69 lines · 36 code · 16 blank · 17 comment · 0 complexity · ae9a46bdd6794a7e338d0a2836c3b3e0 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 MUSICBRAINZPLUGIN_H
- #define MUSICBRAINZPLUGIN_H
- #include "infosystem/infosystem.h"
- #include "infosystem/infosystemworker.h"
- class QNetworkReply;
- namespace Tomahawk
- {
- namespace InfoSystem
- {
- class MusicBrainzPlugin : public InfoPlugin
- {
- Q_OBJECT
- public:
- MusicBrainzPlugin();
- virtual ~MusicBrainzPlugin();
- protected slots:
- virtual void getInfo( Tomahawk::InfoSystem::InfoRequestData requestData );
- virtual void notInCacheSlot( InfoStringHash criteria, InfoRequestData requestData );
- virtual void pushInfo( QString caller, Tomahawk::InfoSystem::InfoType type, QVariant data )
- {
- Q_UNUSED( caller );
- Q_UNUSED( type );
- Q_UNUSED( data );
- }
- private slots:
- void artistSearchSlot();
- void albumSearchSlot();
- void tracksSearchSlot();
- void albumFoundSlot();
- void tracksFoundSlot();
- private:
- bool isValidTrackData( Tomahawk::InfoSystem::InfoRequestData requestData );
- };
- }
- }
- #endif // MUSICBRAINZPLUGIN_H