2022-01-20 12:27:56 -06:00
|
|
|
// This file Copyright © 2009-2022 Mnemosyne LLC.
|
2022-08-08 13:05:39 -05:00
|
|
|
// It may be used under GPLv2 (SPDX: GPL-2.0-only), GPLv3 (SPDX: GPL-3.0-only),
|
2022-01-20 12:27:56 -06:00
|
|
|
// or any future license endorsed by Mnemosyne LLC.
|
|
|
|
// License text can be found in the licenses/ folder.
|
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
|
|
|
|
2022-01-12 20:13:58 -06:00
|
|
|
#include <ctime>
|
2020-11-08 13:54:40 -06:00
|
|
|
#include <memory>
|
2020-09-07 22:52:29 -05:00
|
|
|
#include <unordered_set>
|
|
|
|
|
2009-04-09 18:55:47 +00:00
|
|
|
#include <QApplication>
|
2021-10-24 18:52:50 -05:00
|
|
|
#include <QRegularExpression>
|
2009-04-09 18:55:47 +00:00
|
|
|
#include <QTimer>
|
2010-11-25 03:00:25 +00:00
|
|
|
#include <QTranslator>
|
2010-08-01 18:55:04 +00:00
|
|
|
|
2021-12-14 11:43:27 +03:00
|
|
|
#include <libtransmission/tr-macros.h>
|
|
|
|
|
2015-06-10 21:27:11 +00:00
|
|
|
#include "FaviconCache.h"
|
2019-11-11 19:37:05 -06:00
|
|
|
#include "Typedefs.h"
|
2020-09-07 22:52:29 -05: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 17:13:42 -06: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;
|
2021-10-23 16:26:28 +02:00
|
|
|
class Torrent;
|
2009-04-09 18:55:47 +00:00
|
|
|
|
2017-04-19 15:04:45 +03: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 13:11:55 -05:00
|
|
|
TR_DISABLE_COPY_MOVE(Application)
|
2009-04-09 18:55:47 +00:00
|
|
|
|
2017-04-19 15:04:45 +03:00
|
|
|
public:
|
|
|
|
Application(int& argc, char** argv);
|
2009-04-09 18:55:47 +00:00
|
|
|
|
2020-11-08 13:54:40 -06:00
|
|
|
void raise() const;
|
2021-10-23 16:26:28 +02:00
|
|
|
bool notifyApp(QString const& title, QString const& body, QStringList const& actions = {}) const;
|
2010-04-27 03:10:32 +00:00
|
|
|
|
2021-08-15 12:41:48 +03:00
|
|
|
QString const& intern(QString const& in)
|
|
|
|
{
|
|
|
|
return *interned_strings_.insert(in).first;
|
|
|
|
}
|
|
|
|
|
2017-04-19 15:04:45 +03:00
|
|
|
FaviconCache& faviconCache();
|
2015-06-12 22:12:12 +00:00
|
|
|
|
2017-04-19 15:04:45 +03:00
|
|
|
public slots:
|
2020-11-08 13:54:40 -06:00
|
|
|
void addTorrent(AddData const&) const;
|
|
|
|
void addTorrent(QString const&) const;
|
2010-07-25 17:16:03 +00:00
|
|
|
|
2017-04-19 15:04:45 +03:00
|
|
|
private slots:
|
2020-11-08 13:54:40 -06:00
|
|
|
void consentGiven(int result) const;
|
|
|
|
void onSessionSourceChanged() const;
|
2020-11-01 19:13:32 -06:00
|
|
|
void onTorrentsAdded(torrent_ids_t const& torrents) const;
|
|
|
|
void onTorrentsCompleted(torrent_ids_t const& torrents) const;
|
2020-11-08 13:54:40 -06: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 17:13:42 -06:00
|
|
|
void refreshTorrents();
|
2020-11-08 13:54:40 -06:00
|
|
|
void saveGeometry() const;
|
2021-10-23 16:26:28 +02:00
|
|
|
#ifdef QT_DBUS_LIB
|
|
|
|
void onNotificationActionInvoked(quint32 notification_id, QString action_key);
|
|
|
|
#endif
|
2019-11-09 08:44:40 -06:00
|
|
|
|
|
|
|
private:
|
2020-11-08 13:54:40 -06:00
|
|
|
void maybeUpdateBlocklist() const;
|
2019-11-09 08:44:40 -06:00
|
|
|
void loadTranslations();
|
2019-11-11 19:37:05 -06:00
|
|
|
QStringList getNames(torrent_ids_t const& ids) const;
|
2020-11-01 19:13:32 -06:00
|
|
|
void quitLater() const;
|
2021-10-23 16:26:28 +02:00
|
|
|
void notifyTorrentAdded(Torrent const*) const;
|
2010-04-27 03:10:32 +00:00
|
|
|
|
2020-11-08 13:54:40 -06: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 16:53:12 -05: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 10:42:51 -05:00
|
|
|
|
2020-11-01 19:13:32 -06:00
|
|
|
QString const config_name_ = QStringLiteral("transmission");
|
|
|
|
QString const display_name_ = QStringLiteral("transmission-qt");
|
2020-09-07 22:52:29 -05:00
|
|
|
|
|
|
|
std::unordered_set<QString> interned_strings_;
|
2021-10-24 18:52:50 -05:00
|
|
|
|
|
|
|
#ifdef QT_DBUS_LIB
|
|
|
|
QString const fdo_notifications_service_name_ = QStringLiteral("org.freedesktop.Notifications");
|
|
|
|
QString const fdo_notifications_path_ = QStringLiteral("/org/freedesktop/Notifications");
|
|
|
|
QString const fdo_notifications_interface_name_ = QStringLiteral("org.freedesktop.Notifications");
|
|
|
|
QRegularExpression const start_now_regex_;
|
|
|
|
#endif
|
2009-04-09 18:55:47 +00:00
|
|
|
};
|
|
|
|
|
2022-02-07 21:56:04 -06:00
|
|
|
#define trApp dynamic_cast<Application*>(Application::instance())
|