81 lines
2.4 KiB
C++
81 lines
2.4 KiB
C++
/*
|
|
* Strawberry Music Player
|
|
* Copyright 2018-2021, Jonas Kvinge <jonas@jkvinge.net>
|
|
*
|
|
* 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 <http://www.gnu.org/licenses/>.
|
|
*
|
|
*/
|
|
|
|
#ifndef INTERNETTABSVIEW_H
|
|
#define INTERNETTABSVIEW_H
|
|
|
|
#include "config.h"
|
|
|
|
#include <QObject>
|
|
#include <QWidget>
|
|
#include <QMap>
|
|
#include <QString>
|
|
|
|
#include "settings/settingsdialog.h"
|
|
#include "internetcollectionviewcontainer.h"
|
|
#include "ui_internettabsview.h"
|
|
#include "core/song.h"
|
|
|
|
class QContextMenuEvent;
|
|
|
|
class Application;
|
|
class InternetService;
|
|
class InternetCollectionView;
|
|
class InternetSearchView;
|
|
|
|
class InternetTabsView : public QWidget {
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit InternetTabsView(Application *app, InternetService *service, const QString &settings_group, const SettingsDialog::Page settings_page, QWidget *parent = nullptr);
|
|
~InternetTabsView() override;
|
|
|
|
void ReloadSettings();
|
|
|
|
InternetCollectionView *artists_collection_view() const { return ui_->artists_collection->view(); }
|
|
InternetCollectionView *albums_collection_view() const { return ui_->albums_collection->view(); }
|
|
InternetCollectionView *songs_collection_view() const { return ui_->songs_collection->view(); }
|
|
InternetSearchView *search_view() const { return ui_->search_view; }
|
|
|
|
bool SearchFieldHasFocus() const;
|
|
void FocusSearchField();
|
|
|
|
private slots:
|
|
void OpenSettingsDialog();
|
|
void GetArtists();
|
|
void GetAlbums();
|
|
void GetSongs();
|
|
void AbortGetArtists();
|
|
void AbortGetAlbums();
|
|
void AbortGetSongs();
|
|
void ArtistsFinished(const SongMap &songs, const QString &error);
|
|
void AlbumsFinished(const SongMap &songs, const QString &error);
|
|
void SongsFinished(const SongMap &songs, const QString &error);
|
|
|
|
private:
|
|
Application *app_;
|
|
InternetService *service_;
|
|
QString settings_group_;
|
|
SettingsDialog::Page settings_page_;
|
|
Ui_InternetTabsView *ui_;
|
|
|
|
};
|
|
|
|
#endif // INTERNETTABSVIEW_H
|