2019-05-27 21:10:37 +02:00
|
|
|
/*
|
|
|
|
* Strawberry Music Player
|
|
|
|
* Copyright 2018, 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 INTERNETCOLLECTIONVIEWCONTAINER_H
|
|
|
|
#define INTERNETCOLLECTIONVIEWCONTAINER_H
|
|
|
|
|
|
|
|
#include "config.h"
|
|
|
|
|
2020-02-09 02:29:35 +01:00
|
|
|
#include <QObject>
|
2019-05-27 21:10:37 +02:00
|
|
|
#include <QWidget>
|
2020-02-09 02:29:35 +01:00
|
|
|
#include <QString>
|
2019-05-27 21:10:37 +02:00
|
|
|
|
2020-02-09 02:29:35 +01:00
|
|
|
#include "internetcollectionview.h"
|
2019-05-27 21:10:37 +02:00
|
|
|
#include "ui_internetcollectionviewcontainer.h"
|
|
|
|
|
|
|
|
class QStackedWidget;
|
|
|
|
class QPushButton;
|
|
|
|
class QLabel;
|
|
|
|
class QProgressBar;
|
2020-02-09 02:29:35 +01:00
|
|
|
class QContextMenuEvent;
|
2019-05-27 21:10:37 +02:00
|
|
|
class Application;
|
|
|
|
class CollectionFilterWidget;
|
|
|
|
class InternetService;
|
|
|
|
|
|
|
|
class InternetCollectionViewContainer : public QWidget {
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
2020-04-07 16:49:15 +02:00
|
|
|
explicit InternetCollectionViewContainer(QWidget *parent = nullptr);
|
2020-06-15 21:55:05 +02:00
|
|
|
~InternetCollectionViewContainer() override;
|
2019-05-27 21:10:37 +02:00
|
|
|
|
2020-06-28 18:36:48 +02:00
|
|
|
void ReloadSettings();
|
|
|
|
|
2019-05-27 21:10:37 +02:00
|
|
|
QStackedWidget *stacked() const { return ui_->stacked; }
|
|
|
|
QWidget *help_page() const { return ui_->help_page; }
|
|
|
|
QWidget *internetcollection_page() const { return ui_->internetcollection_page; }
|
|
|
|
InternetCollectionView *view() const { return ui_->view; }
|
|
|
|
CollectionFilterWidget *filter() const { return ui_->filter; }
|
2019-05-30 18:06:48 +02:00
|
|
|
QPushButton *button_refresh() const { return ui_->refresh; }
|
|
|
|
QPushButton *button_close() const { return ui_->close; }
|
|
|
|
QPushButton *button_abort() const { return ui_->abort; }
|
2019-05-27 21:10:37 +02:00
|
|
|
QLabel *status() const { return ui_->status; }
|
|
|
|
QProgressBar *progressbar() const { return ui_->progressbar; }
|
|
|
|
|
|
|
|
private slots:
|
2020-06-15 21:55:05 +02:00
|
|
|
void contextMenuEvent(QContextMenuEvent *e) override;
|
2019-05-27 21:10:37 +02:00
|
|
|
|
|
|
|
private:
|
|
|
|
Ui_InternetCollectionViewContainer *ui_;
|
|
|
|
Application *app_;
|
|
|
|
InternetService *service_;
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // INTERNETCOLLECTIONVIEWCONTAINER_H
|