2012-02-12 14:41:50 +01:00
|
|
|
/* This file is part of Clementine.
|
2014-11-01 19:30:40 +01:00
|
|
|
Copyright 2012-2013, Andreas <asfa194@gmail.com>
|
|
|
|
Copyright 2012-2013, David Sansome <me@davidsansome.com>
|
|
|
|
Copyright 2013, Arnaud Bienner <arnaud.bienner@gmail.com>
|
|
|
|
Copyright 2014, Krzysztof Sobiecki <sobkas@gmail.com>
|
|
|
|
Copyright 2014, John Maguire <john.maguire@gmail.com>
|
2012-02-12 14:41:50 +01:00
|
|
|
|
|
|
|
Clementine 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.
|
|
|
|
|
|
|
|
Clementine 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 Clementine. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
2014-11-01 19:26:05 +01:00
|
|
|
#ifndef CORE_APPLICATION_H_
|
|
|
|
#define CORE_APPLICATION_H_
|
2012-02-12 14:41:50 +01:00
|
|
|
|
2016-02-15 18:41:39 +01:00
|
|
|
#include <memory>
|
|
|
|
|
2016-02-15 18:35:45 +01:00
|
|
|
#include <QObject>
|
|
|
|
|
2012-03-10 23:39:24 +01:00
|
|
|
#include "ui/settingsdialog.h"
|
|
|
|
|
2016-02-15 18:35:45 +01:00
|
|
|
class AlbumCoverLoader;
|
|
|
|
class Appearance;
|
|
|
|
class ApplicationImpl;
|
|
|
|
class CoverProviders;
|
|
|
|
class CurrentArtLoader;
|
|
|
|
class Database;
|
|
|
|
class DeviceManager;
|
|
|
|
class GlobalSearch;
|
|
|
|
class GPodderSync;
|
|
|
|
class InternetModel;
|
|
|
|
class Library;
|
|
|
|
class LibraryBackend;
|
|
|
|
class LibraryModel;
|
|
|
|
class MoodbarController;
|
|
|
|
class MoodbarLoader;
|
|
|
|
class NetworkRemote;
|
|
|
|
class NetworkRemoteHelper;
|
|
|
|
class Player;
|
|
|
|
class PlaylistBackend;
|
|
|
|
class PlaylistManager;
|
|
|
|
class PodcastBackend;
|
|
|
|
class PodcastDeleter;
|
|
|
|
class PodcastDownloader;
|
|
|
|
class PodcastUpdater;
|
|
|
|
class Scrobbler;
|
|
|
|
class TagReaderClient;
|
|
|
|
class TaskManager;
|
2012-02-12 14:41:50 +01:00
|
|
|
|
|
|
|
class Application : public QObject {
|
|
|
|
Q_OBJECT
|
|
|
|
|
2014-02-07 16:34:20 +01:00
|
|
|
public:
|
2013-09-29 10:43:34 +02:00
|
|
|
static bool kIsPortable;
|
|
|
|
|
2014-11-01 19:26:05 +01:00
|
|
|
explicit Application(QObject* parent = nullptr);
|
2012-02-12 14:41:50 +01:00
|
|
|
~Application();
|
|
|
|
|
2013-07-27 19:23:55 +02:00
|
|
|
const QString& language_name() const { return language_name_; }
|
2014-02-07 16:34:20 +01:00
|
|
|
// Same as language_name, but remove the region code at the end if there is
|
|
|
|
// one
|
2013-07-27 19:23:55 +02:00
|
|
|
QString language_without_region() const;
|
2013-07-27 07:27:08 +02:00
|
|
|
void set_language_name(const QString& name) { language_name_ = name; }
|
|
|
|
|
2016-02-15 18:35:45 +01:00
|
|
|
AlbumCoverLoader* album_cover_loader() const;
|
|
|
|
Appearance* appearance() const;
|
|
|
|
CoverProviders* cover_providers() const;
|
|
|
|
CurrentArtLoader* current_art_loader() const;
|
|
|
|
Database* database() const;
|
|
|
|
DeviceManager* device_manager() const;
|
|
|
|
GlobalSearch* global_search() const;
|
|
|
|
GPodderSync* gpodder_sync() const;
|
|
|
|
InternetModel* internet_model() const;
|
|
|
|
Library* library() const;
|
2012-02-12 14:41:50 +01:00
|
|
|
LibraryBackend* library_backend() const;
|
|
|
|
LibraryModel* library_model() const;
|
2016-02-15 18:35:45 +01:00
|
|
|
MoodbarController* moodbar_controller() const;
|
|
|
|
MoodbarLoader* moodbar_loader() const;
|
|
|
|
NetworkRemoteHelper* network_remote_helper() const;
|
|
|
|
NetworkRemote* network_remote() const;
|
|
|
|
Player* player() const;
|
|
|
|
PlaylistBackend* playlist_backend() const;
|
|
|
|
PlaylistManager* playlist_manager() const;
|
|
|
|
PodcastBackend* podcast_backend() const;
|
|
|
|
PodcastDeleter* podcast_deleter() const;
|
|
|
|
PodcastDownloader* podcast_downloader() const;
|
|
|
|
PodcastUpdater* podcast_updater() const;
|
|
|
|
Scrobbler* scrobbler() const;
|
|
|
|
TagReaderClient* tag_reader_client() const;
|
|
|
|
TaskManager* task_manager() const;
|
2012-02-12 14:41:50 +01:00
|
|
|
|
2012-02-13 21:44:04 +01:00
|
|
|
void MoveToNewThread(QObject* object);
|
|
|
|
void MoveToThread(QObject* object, QThread* thread);
|
|
|
|
|
2014-02-07 16:34:20 +01:00
|
|
|
public slots:
|
2012-02-12 14:41:50 +01:00
|
|
|
void AddError(const QString& message);
|
2012-03-09 13:15:24 +01:00
|
|
|
void ReloadSettings();
|
2012-03-10 23:39:24 +01:00
|
|
|
void OpenSettingsDialogAtPage(SettingsDialog::Page page);
|
2012-02-12 14:41:50 +01:00
|
|
|
|
2016-02-11 16:11:31 +01:00
|
|
|
signals:
|
2012-02-12 14:41:50 +01:00
|
|
|
void ErrorAdded(const QString& message);
|
2012-03-09 13:15:24 +01:00
|
|
|
void SettingsChanged();
|
2012-03-10 23:39:24 +01:00
|
|
|
void SettingsDialogRequested(SettingsDialog::Page page);
|
2012-02-12 14:41:50 +01:00
|
|
|
|
2014-02-07 16:34:20 +01:00
|
|
|
private:
|
2013-07-27 07:27:08 +02:00
|
|
|
QString language_name_;
|
2016-02-15 18:41:39 +01:00
|
|
|
std::unique_ptr<ApplicationImpl> p_;
|
2012-02-12 14:41:50 +01:00
|
|
|
QList<QThread*> threads_;
|
|
|
|
};
|
|
|
|
|
2014-11-01 19:26:05 +01:00
|
|
|
#endif // CORE_APPLICATION_H_
|