/* * Strawberry Music Player * This file was part of Clementine. * Copyright 2012, David Sansome * Copyright 2012, 2014, John Maguire * 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 APPLICATION_H #define APPLICATION_H #include "config.h" #include #include #include #include #include "settings/settingsdialog.h" class QThread; class TaskManager; class ApplicationImpl; class TagReaderClient; class Database; class DeviceFinders; class Player; class SCollection; class CollectionBackend; class CollectionModel; class PlaylistBackend; class PlaylistManager; #ifndef Q_OS_WIN class DeviceManager; #endif class CoverProviders; class AlbumCoverLoader; class CurrentAlbumCoverLoader; class CoverProviders; class LyricsProviders; class AudioScrobbler; class LastFMImport; class InternetServices; class RadioServices; #ifdef HAVE_MOODBAR class MoodbarController; class MoodbarLoader; #endif class Application : public QObject { Q_OBJECT public: explicit Application(QObject *parent = nullptr); ~Application() override; TagReaderClient *tag_reader_client() const; Database *database() const; TaskManager *task_manager() const; Player *player() const; DeviceFinders *device_finders() const; #ifndef Q_OS_WIN DeviceManager *device_manager() const; #endif SCollection *collection() const; CollectionBackend *collection_backend() const; CollectionModel *collection_model() const; PlaylistBackend *playlist_backend() const; PlaylistManager *playlist_manager() const; CoverProviders *cover_providers() const; AlbumCoverLoader *album_cover_loader() const; CurrentAlbumCoverLoader *current_albumcover_loader() const; LyricsProviders *lyrics_providers() const; AudioScrobbler *scrobbler() const; InternetServices *internet_services() const; RadioServices *radio_services() const; #ifdef HAVE_MOODBAR MoodbarController *moodbar_controller() const; MoodbarLoader *moodbar_loader() const; #endif LastFMImport *lastfm_import() const; void Exit(); QThread *MoveToNewThread(QObject *object); static void MoveToThread(QObject *object, QThread *thread); private slots: void ExitReceived(); public slots: void AddError(const QString &message); void ReloadSettings(); void OpenSettingsDialogAtPage(SettingsDialog::Page page); signals: void ErrorAdded(QString message); void SettingsChanged(); void SettingsDialogRequested(SettingsDialog::Page page); void ExitFinished(); void ClearPixmapDiskCache(); private: std::unique_ptr p_; QList threads_; QList wait_for_exit_; }; #endif // APPLICATION_H