2009-04-09 18:55:47 +00:00
|
|
|
/*
|
2015-06-10 21:27:11 +00:00
|
|
|
* This file Copyright (C) 2009-2015 Mnemosyne LLC
|
2009-04-09 18:55:47 +00:00
|
|
|
*
|
2014-01-21 03:10:30 +00:00
|
|
|
* It may be used under the GNU GPL versions 2 or 3
|
2014-01-19 01:09:44 +00:00
|
|
|
* or any future license endorsed by Mnemosyne LLC.
|
2009-04-09 18:55:47 +00:00
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2016-03-29 16:37:21 +00:00
|
|
|
#pragma once
|
2009-04-09 18:55:47 +00:00
|
|
|
|
2020-11-08 19:54:40 +00:00
|
|
|
#include <memory>
|
2020-09-08 03:52:29 +00:00
|
|
|
#include <unordered_set>
|
|
|
|
|
2009-04-09 18:55:47 +00:00
|
|
|
#include <QApplication>
|
|
|
|
#include <QTimer>
|
2010-11-25 03:00:25 +00:00
|
|
|
#include <QTranslator>
|
2010-08-01 18:55:04 +00:00
|
|
|
|
2015-06-10 21:27:11 +00:00
|
|
|
#include "FaviconCache.h"
|
2020-08-11 18:11:55 +00:00
|
|
|
#include "Macros.h"
|
2019-11-12 01:37:05 +00:00
|
|
|
#include "Typedefs.h"
|
2020-09-08 03:52:29 +00:00
|
|
|
#include "Utils.h" // std::hash<QString>
|
2009-04-09 18:55:47 +00:00
|
|
|
|
2010-08-01 18:55:04 +00:00
|
|
|
class AddData;
|
2009-04-09 18:55:47 +00:00
|
|
|
class Prefs;
|
|
|
|
class Session;
|
2019-11-12 23:13:42 +00:00
|
|
|
class Torrent;
|
2009-04-09 18:55:47 +00:00
|
|
|
class TorrentModel;
|
2015-06-10 21:27:11 +00:00
|
|
|
class MainWindow;
|
2009-04-09 18:55:47 +00:00
|
|
|
class WatchDir;
|
|
|
|
|
2017-04-19 12:04:45 +00:00
|
|
|
class Application : public QApplication
|
2009-04-09 18:55:47 +00:00
|
|
|
{
|
2013-01-26 01:19:54 +00:00
|
|
|
Q_OBJECT
|
2020-08-11 18:11:55 +00:00
|
|
|
TR_DISABLE_COPY_MOVE(Application)
|
2009-04-09 18:55:47 +00:00
|
|
|
|
2017-04-19 12:04:45 +00:00
|
|
|
public:
|
|
|
|
Application(int& argc, char** argv);
|
2009-04-09 18:55:47 +00:00
|
|
|
|
2020-11-08 19:54:40 +00:00
|
|
|
void raise() const;
|
2017-04-20 16:02:19 +00:00
|
|
|
bool notifyApp(QString const& title, QString const& body) const;
|
2010-04-27 03:10:32 +00:00
|
|
|
|
2021-08-15 09:41:48 +00:00
|
|
|
QString const& intern(QString const& in)
|
|
|
|
{
|
|
|
|
return *interned_strings_.insert(in).first;
|
|
|
|
}
|
|
|
|
|
2017-04-19 12:04:45 +00:00
|
|
|
FaviconCache& faviconCache();
|
2015-06-12 22:12:12 +00:00
|
|
|
|
2017-04-19 12:04:45 +00:00
|
|
|
public slots:
|
2020-11-08 19:54:40 +00:00
|
|
|
void addTorrent(AddData const&) const;
|
|
|
|
void addTorrent(QString const&) const;
|
2010-07-25 17:16:03 +00:00
|
|
|
|
2017-04-19 12:04:45 +00:00
|
|
|
private slots:
|
2020-11-08 19:54:40 +00:00
|
|
|
void consentGiven(int result) const;
|
|
|
|
void onSessionSourceChanged() const;
|
2020-11-02 01:13:32 +00:00
|
|
|
void onTorrentsAdded(torrent_ids_t const& torrents) const;
|
|
|
|
void onTorrentsCompleted(torrent_ids_t const& torrents) const;
|
2020-11-08 19:54:40 +00:00
|
|
|
void onTorrentsEdited(torrent_ids_t const& torrents) const;
|
|
|
|
void onTorrentsNeedInfo(torrent_ids_t const& torrents) const;
|
|
|
|
void refreshPref(int key) const;
|
2019-11-12 23:13:42 +00:00
|
|
|
void refreshTorrents();
|
2020-11-08 19:54:40 +00:00
|
|
|
void saveGeometry() const;
|
2019-11-09 14:44:40 +00:00
|
|
|
|
|
|
|
private:
|
2020-11-08 19:54:40 +00:00
|
|
|
void maybeUpdateBlocklist() const;
|
2019-11-09 14:44:40 +00:00
|
|
|
void loadTranslations();
|
2019-11-12 01:37:05 +00:00
|
|
|
QStringList getNames(torrent_ids_t const& ids) const;
|
2020-11-02 01:13:32 +00:00
|
|
|
void quitLater() const;
|
2010-04-27 03:10:32 +00:00
|
|
|
|
2020-11-08 19:54:40 +00:00
|
|
|
std::unique_ptr<Prefs> prefs_;
|
|
|
|
std::unique_ptr<Session> session_;
|
|
|
|
std::unique_ptr<TorrentModel> model_;
|
|
|
|
std::unique_ptr<MainWindow> window_;
|
|
|
|
std::unique_ptr<WatchDir> watch_dir_;
|
2020-05-27 21:53:12 +00:00
|
|
|
QTimer model_timer_;
|
|
|
|
QTimer stats_timer_;
|
|
|
|
QTimer session_timer_;
|
|
|
|
time_t last_full_update_time_ = {};
|
|
|
|
QTranslator qt_translator_;
|
|
|
|
QTranslator app_translator_;
|
|
|
|
FaviconCache favicons_;
|
2020-08-15 15:42:51 +00:00
|
|
|
|
2020-11-02 01:13:32 +00:00
|
|
|
QString const config_name_ = QStringLiteral("transmission");
|
|
|
|
QString const display_name_ = QStringLiteral("transmission-qt");
|
2020-09-08 03:52:29 +00:00
|
|
|
|
|
|
|
std::unordered_set<QString> interned_strings_;
|
2009-04-09 18:55:47 +00:00
|
|
|
};
|
|
|
|
|
2020-11-08 19:54:40 +00:00
|
|
|
#define trApp static_cast<Application*>(Application::instance())
|