2010-10-02 18:23:33 +02:00
|
|
|
/* This file is part of Clementine.
|
2010-11-20 14:27:10 +01:00
|
|
|
Copyright 2010, David Sansome <me@davidsansome.com>
|
2010-10-02 18:23:33 +02:00
|
|
|
|
|
|
|
Clementine 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.
|
|
|
|
|
|
|
|
Clementine 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 Clementine. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
2010-10-10 18:09:20 +02:00
|
|
|
#ifndef SONGINFOVIEW_H
|
|
|
|
#define SONGINFOVIEW_H
|
2010-10-02 18:23:33 +02:00
|
|
|
|
2010-10-10 18:09:20 +02:00
|
|
|
#include "songinfobase.h"
|
2010-10-02 18:23:33 +02:00
|
|
|
|
2010-10-10 18:09:20 +02:00
|
|
|
#include <boost/scoped_ptr.hpp>
|
2010-10-09 14:39:49 +02:00
|
|
|
|
2010-10-10 18:46:35 +02:00
|
|
|
class UltimateLyricsProvider;
|
2010-10-10 18:09:20 +02:00
|
|
|
class UltimateLyricsReader;
|
|
|
|
|
|
|
|
class SongInfoView : public SongInfoBase {
|
2010-10-02 18:23:33 +02:00
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
2010-10-16 19:20:54 +02:00
|
|
|
SongInfoView(QWidget* parent = 0);
|
2010-10-10 18:09:20 +02:00
|
|
|
~SongInfoView();
|
|
|
|
|
2010-10-10 18:46:35 +02:00
|
|
|
static const char* kSettingsGroup;
|
|
|
|
|
|
|
|
QList<const UltimateLyricsProvider*> lyric_providers() const;
|
|
|
|
|
|
|
|
public slots:
|
|
|
|
void ReloadSettings();
|
|
|
|
|
2010-10-10 20:57:23 +02:00
|
|
|
protected:
|
|
|
|
bool NeedsUpdate(const Song& old_metadata, const Song& new_metadata) const;
|
|
|
|
|
2010-10-10 18:09:20 +02:00
|
|
|
protected slots:
|
|
|
|
void ResultReady(int id, const SongInfoFetcher::Result& result);
|
2010-10-02 18:23:33 +02:00
|
|
|
|
2010-10-10 18:46:35 +02:00
|
|
|
private:
|
|
|
|
SongInfoProvider* ProviderByName(const QString& name) const;
|
|
|
|
|
2010-10-10 18:09:20 +02:00
|
|
|
private slots:
|
|
|
|
void UltimateLyricsParsed();
|
2010-10-02 18:23:33 +02:00
|
|
|
|
2010-10-10 18:09:20 +02:00
|
|
|
private:
|
|
|
|
boost::scoped_ptr<UltimateLyricsReader> ultimate_reader_;
|
2010-10-02 18:23:33 +02:00
|
|
|
};
|
|
|
|
|
2010-10-10 18:09:20 +02:00
|
|
|
#endif // SONGINFOVIEW_H
|