23 #ifndef STANDARDCOVERFETCHER_H 24 #define STANDARDCOVERFETCHER_H 26 #include "CoverFetcherInterface.h" 40 QString
get_album_address(
const QString& artist,
const QString& album)
const override;
50 #endif // STANDARDCOVERFETCHER_H bool is_album_supported() const override
is album search supported
QString get_artist_address(const QString &artist) const override
Get the artist search url. This is called if is_artist_supported returns true.
int get_estimated_size() const override
get_estimated_size. Rough image size of the CoverFetchInterface
QString get_keyword() const override
get name of CoverFetcherInterface like e.g. Discogs
QStringList calc_addresses_from_website(const QByteArray &website) const override
Get addresses from the downloaded website. If can_fetch_cover_directly returns true, this method is not called.
The CoverFetcherInterface interface.
Definition: CoverFetcherInterface.h:35
bool is_artist_supported() const override
is artist search supported
QString get_album_address(const QString &artist, const QString &album) const override
Get the album search url. This is called if is_album_supported returns true.
The StandardCoverFetcher class. Convenience class for local cover search. See CoverFetcherInterface.
Definition: StandardCoverFetcher.h:33
bool is_search_supported() const override
Is text search supported.
QString get_search_address(const QString &str) const override
Get a custom search address This is called if is_search_supported returns true.
bool can_fetch_cover_directly() const override
Can the cover be fetched from the adress without starting a two-stage query?