/* * Strawberry Music Player * This code was part of Clementine (GlobalSearch) * Copyright 2012, David Sansome * Copyright 2018-2021, Jonas Kvinge * * Strawberry 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. * * Strawberry 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 Strawberry. If not, see . * */ #ifndef INTERNETSEARCHVIEW_H #define INTERNETSEARCHVIEW_H #include "config.h" #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include "core/song.h" #include "collection/collectionmodel.h" #include "covermanager/albumcoverloaderoptions.h" #include "covermanager/albumcoverloaderresult.h" #include "settings/settingsdialog.h" class QSortFilterProxyModel; class QMimeData; class QTimer; class QMenu; class QAction; class QActionGroup; class QEvent; class QKeyEvent; class QShowEvent; class QContextMenuEvent; class QTimerEvent; class Application; class MimeData; class GroupByDialog; class InternetService; class InternetSearchModel; class Ui_InternetSearchView; class InternetSearchView : public QWidget { Q_OBJECT public: explicit InternetSearchView(QWidget *parent = nullptr); ~InternetSearchView() override; enum SearchType { SearchType_Artists = 1, SearchType_Albums = 2, SearchType_Songs = 3, }; struct Result { Song metadata_; QString pixmap_cache_key_; }; typedef QList ResultList; void Init(Application *app, InternetService *service); bool SearchFieldHasFocus() const; void FocusSearchField(); void LazyLoadAlbumCover(const QModelIndex &proxy_index); protected: struct PendingState { PendingState() : orig_id_(-1) {} PendingState(int orig_id, const QStringList &tokens) : orig_id_(orig_id), tokens_(tokens) {} int orig_id_; QStringList tokens_; bool operator<(const PendingState &b) const { return orig_id_ < b.orig_id_; } bool operator==(const PendingState &b) const { return orig_id_ == b.orig_id_; } }; void showEvent(QShowEvent *e) override; bool eventFilter(QObject *object, QEvent *e) override; void timerEvent(QTimerEvent *e) override; // These functions treat queries in the same way as CollectionQuery. // They're useful for figuring out whether you got a result because it matched in the song title or the artist/album name. static QStringList TokenizeQuery(const QString &query); static bool Matches(const QStringList &tokens, const QString &string); private: struct DelayedSearch { int id_; QString query_; SearchType type_; }; bool SearchKeyEvent(QKeyEvent *e); bool ResultsContextMenuEvent(QContextMenuEvent *e); MimeData *SelectedMimeData(); void SetSearchType(const SearchType type); int SearchAsync(const QString &query, SearchType type); void SearchAsync(const int id, const QString &query, const SearchType type); void SearchError(const int id, const QString &error); void CancelSearch(const int id); QString PixmapCacheKey(const Result &result) const; bool FindCachedPixmap(const Result &result, QPixmap *pixmap) const; int LoadAlbumCoverAsync(const Result &result); signals: void AddToPlaylist(QMimeData*); void AddArtistsSignal(SongList); void AddAlbumsSignal(SongList); void AddSongsSignal(SongMap); private slots: void SwapModels(); void TextEdited(const QString &text); void StartSearch(const QString &query); void SearchDone(const int service_id, const SongMap &songs, const QString &error); void UpdateStatus(const int service_id, const QString &text); void ProgressSetMaximum(const int service_id, const int max); void UpdateProgress(const int service_id, const int progress); void AddResults(const int service_id, const InternetSearchView::ResultList &results); void FocusOnFilter(QKeyEvent *e); void AddSelectedToPlaylist(); void LoadSelected(); void OpenSelectedInNewPlaylist(); void AddSelectedToPlaylistEnqueue(); void AddArtists(); void AddAlbums(); void AddSongs(); void SearchForThis(); void OpenSettingsDialog(); void SearchArtistsClicked(const bool); void SearchAlbumsClicked(const bool); void SearchSongsClicked(const bool); void GroupByClicked(QAction *action); void SetGroupBy(const CollectionModel::Grouping g); void AlbumCoverLoaded(const quint64 id, const AlbumCoverLoaderResult &albumcover_result); public slots: void ReloadSettings(); private: static const int kSwapModelsTimeoutMsec; static const int kDelayedSearchTimeoutMs; static const int kArtHeight; private: Application *app_; InternetService *service_; Ui_InternetSearchView *ui_; std::unique_ptr group_by_dialog_; QMenu *context_menu_; QList context_actions_; QActionGroup *group_by_actions_; // Like graphics APIs have a front buffer and a back buffer, there's a front model and a back model // The front model is the one that's shown in the UI and the back model is the one that lies in wait. // current_model_ will point to either the front or the back model. InternetSearchModel *front_model_; InternetSearchModel *back_model_; InternetSearchModel *current_model_; QSortFilterProxyModel *front_proxy_; QSortFilterProxyModel *back_proxy_; QSortFilterProxyModel *current_proxy_; QTimer *swap_models_timer_; bool use_pretty_covers_; SearchType search_type_; bool search_error_; int last_search_id_; int searches_next_id_; QMap delayed_searches_; QMap pending_searches_; AlbumCoverLoaderOptions cover_loader_options_; QMap> cover_loader_tasks_; }; Q_DECLARE_METATYPE(InternetSearchView::Result) Q_DECLARE_METATYPE(InternetSearchView::ResultList) #endif // INTERNETSEARCHVIEW_H