2011-08-28 22:33:59 +02:00
|
|
|
/* This file is part of Clementine.
|
|
|
|
Copyright 2010, David Sansome <me@davidsansome.com>
|
|
|
|
|
|
|
|
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/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef LIBRARYSEARCHPROVIDER_H
|
|
|
|
#define LIBRARYSEARCHPROVIDER_H
|
|
|
|
|
|
|
|
#include "searchprovider.h"
|
|
|
|
|
|
|
|
class LibraryBackendInterface;
|
|
|
|
|
|
|
|
class LibrarySearchProvider : public BlockingSearchProvider {
|
2014-02-07 16:34:20 +01:00
|
|
|
public:
|
2011-08-28 22:33:59 +02:00
|
|
|
LibrarySearchProvider(LibraryBackendInterface* backend, const QString& name,
|
2011-11-28 15:18:20 +01:00
|
|
|
const QString& id, const QIcon& icon,
|
2014-02-07 16:34:20 +01:00
|
|
|
bool enabled_by_default, Application* app,
|
2014-02-10 16:03:54 +01:00
|
|
|
QObject* parent = nullptr);
|
2011-08-28 22:33:59 +02:00
|
|
|
|
2011-09-24 21:40:50 +02:00
|
|
|
ResultList Search(int id, const QString& query);
|
2012-06-10 21:55:51 +02:00
|
|
|
MimeData* LoadTracks(const ResultList& results);
|
2012-06-11 00:05:30 +02:00
|
|
|
QStringList GetSuggestions(int count);
|
2011-08-28 22:33:59 +02:00
|
|
|
|
2014-02-07 16:34:20 +01:00
|
|
|
private:
|
2011-08-28 22:33:59 +02:00
|
|
|
LibraryBackendInterface* backend_;
|
|
|
|
};
|
|
|
|
|
2014-02-07 16:34:20 +01:00
|
|
|
#endif // LIBRARYSEARCHPROVIDER_H
|